query
stringlengths
7
5.25k
document
stringlengths
15
1.06M
metadata
dict
negatives
listlengths
3
101
negative_scores
listlengths
3
101
document_score
stringlengths
3
10
document_rank
stringclasses
102 values
Array of attributes to setter functions (for deserialization of responses).
public static function setters() : array { return self::$setters; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function setAttributes();", "public static function setters();", "public function setAttributes(array $attributes);", "public function setAttributes(array $attributes);", "public function setAttributes(array $attributes);", "public static function setters()\n {\n return [\n 'application_id' => 'setApplicationId',\n 'is_default' => 'setIsDefault',\n 'role' => 'setRole',\n 'type' => 'setType',\n '_issues' => 'setIssues'\n ];\n }", "public static function setters()\n {\n return [\n 'status' => 'setStatus',\n 'quota' => 'setQuota'\n ];\n }", "public static function setters()\n {\n return [\n 'status' => 'setStatus',\n 'time' => 'setTime'\n ];\n }", "public function setAttributes($attributes){ }", "public static function setters()\n {\n return parent::setters() + self::$setters;\n }", "public static function setters()\n {\n return parent::setters() + self::$setters;\n }", "public static function setters()\n {\n return parent::setters() + self::$setters;\n }", "public static function setters()\n {\n return parent::setters() + self::$setters;\n }", "public static function setters()\n {\n return parent::setters() + self::$setters;\n }", "public static function setters()\n {\n return parent::setters() + self::$setters;\n }", "public static function setters()\n {\n return parent::setters() + self::$setters;\n }", "public static function setters()\n {\n return parent::setters() + self::$setters;\n }", "public static function setters()\n {\n return parent::setters() + self::$setters;\n }", "public static function setters()\n {\n return parent::setters() + self::$setters;\n }", "public static function setters()\n {\n return parent::setters() + self::$setters;\n }", "public static function setters()\n {\n return parent::setters() + self::$setters;\n }", "public static function setters()\n {\n return parent::setters() + self::$setters;\n }", "public static function setters()\n {\n return [\n 'tenant_id' => 'setTenantId',\n 'expires_in' => 'setExpiresIn',\n 'scopes' => 'setScopes'\n ];\n }", "public function setAttributes($arr) {\n foreach($arr as $key => $val) {\n switch($key) {\n case \"id\":\n case \"user_id\":\n //casting null to int will return 0; don't want that\n if ($val !== null) {\n $this->id_ = (int) $val;\n }\n break; \n case \"username\":\n $this->username_ = $val;\n break; \n case \"email\":\n $this->email_ = $val;\n break; \n case \"displayName\":\n case \"display_name\":\n $this->displayName_ = $val;\n break; \n case \"firstName\":\n case \"first_name\":\n $this->firstName_ = $val;\n break; \n case \"lastName\":\n case \"last_name\":\n $this->lastName_ = $val;\n break; \n case \"postalCode\":\n case \"postal_code\":\n $this->postalCode_ = $val;\n break; \n case \"isVerified\":\n case \"is_verified\":\n $this->isVerified_ = (int) $val;\n break; \n case \"privileges\":\n //might be a string of comma-separated numbers, or an array\n if (is_array($val)) {\n $this->privileges_ = $val;\n } else if ($val !== null) {\n //clear array first\n unset($this->privileges_);\n $this->privileges_ = array();\n $tmp = explode(\",\", $val);\n foreach($tmp as $v){\n if (is_numeric($v)) {\n //$this->privileges_[(int) $v] = 1;\n $this->privileges_[] = (int) $v;\n }\n }\n \n }\n break;\n\n default:\n //ignore any others\n }\n }\n }", "public function __construct($daten = array())\n{\n if ($daten) {\n foreach ($daten as $k => $v) {\n $setterName = 'set' . ucfirst($k);\n // wenn ein ungültiges Attribut übergeben wurde\n // (ohne Setter), ignoriere es\n if (method_exists($this, $setterName)) {\n $this->$setterName($v);\n }\n }\n }\n}", "public function setAttributes($values)\n {\n if (is_array($values)) {\n foreach ($values as $name => $value) {\n $setter = 'set' . ucfirst($name);\n if (method_exists($this, $setter)) {\n // set property\n $this->$setter($value);\n }\n }\n }\n }", "public function setAttributes($attributes);", "public function setAttributes($attributes)\n {\n foreach($attributes as $key => $value) {\n $this->$key = $value;\n }\n }", "abstract protected function setValidationCustomAttributes(): array;", "abstract function attributes(): array;", "protected abstract function initializeAttributes(): array;", "public function getAttributes(): array\n {\n // Get all attributes using all the getters.\n $attributes = [];\n foreach(\\array_keys(\\get_object_vars($this)) as $attribute) {\n\n // Construct the getter name.\n $getter = \\lcfirst(\\str_replace('_', '', \\ucwords($attribute, '_')));\n\n // Get the attribute's value from the getter.\n $attributes[$attribute] = $this->{$getter}();\n }\n\n return $attributes;\n }", "abstract protected function setRequiredGetters();", "public function setAttributes(array $attributes)\n\t{\n\t\t$allowedAttributes = array('usuario','correo','cedula');\n\t\tforeach($attributes as $name=>$value) {\n\t\t\tif (in_array($name, $allowedAttributes))\n\t\t\t\t\t$this->$name = $value;\n\t\t}\n\t\treturn true;\n\t}", "public function defineAttributes()\n\t{\n\t\treturn array();\n\t}", "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 setAttrs($attrs);", "function update_attributes($array = array())\n {\n foreach ($array as $key => $value) {\n $this->_stdObject->{$key} = $value;\n }\n }", "public function __construct(array $attributes)\n {\n foreach ($attributes as $attribute => $value){\n $this->$attributes = $value;\n }\n }", "public function getCustomAttributes(): array;", "public function attributes() : array;", "public function attributes()\n {\n return $this->morphToMany(Attribute::class, 'attribute_able');\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 prepAttributesForUse()\n\t{\n\t\t$attributes = $this->defineAttributes();\n\t\t$attributes['dateUpdated'] = array('0' => AttributeType::DateTime, 'required' => true);\n\t\t$attributes['dateCreated'] = array('0' => AttributeType::DateTime, 'required' => true);\n\n\t\tforeach ($attributes as $name => $config)\n\t\t{\n\t\t\t$config = ModelHelper::normalizeAttributeConfig($config);\n\t\t\t$value = $this->getAttribute($name);\n\n\t\t\tswitch ($config['type'])\n\t\t\t{\n\t\t\t\tcase AttributeType::DateTime:\n\t\t\t\t{\n\t\t\t\t\tif ($value)\n\t\t\t\t\t{\n\t\t\t\t\t\tif (DateTimeHelper::isValidTimeStamp($value))\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$dateTime = new DateTime('@'.$value);\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\t// TODO: MySQL specific.\n\t\t\t\t\t\t\t$dateTime = DateTime::createFromFormat(DateTime::MYSQL_DATETIME, $value);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t$this->setAttribute($name, $dateTime);\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tcase AttributeType::Mixed:\n\t\t\t\t{\n\t\t\t\t\tif (!empty($value) && is_string($value))\n\t\t\t\t\t{\n\t\t\t\t\t\t$this->setAttribute($name, JsonHelper::decode($value));\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->setAttribute($name, array());\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "public function getFieldDeserializers(): array {\n $o = $this;\n return array_merge(parent::getFieldDeserializers(), [\n 'bold' => fn(ParseNode $n) => $o->setBold($n->getBooleanValue()),\n 'color' => fn(ParseNode $n) => $o->setColor($n->getStringValue()),\n 'italic' => fn(ParseNode $n) => $o->setItalic($n->getBooleanValue()),\n 'name' => fn(ParseNode $n) => $o->setName($n->getStringValue()),\n 'size' => fn(ParseNode $n) => $o->setSize($n->getFloatValue()),\n 'underline' => fn(ParseNode $n) => $o->setUnderline($n->getStringValue()),\n ]);\n }", "public function attributes(): array\n {\n return [\n //\n ];\n }", "public function attributes(): array\n {\n return [\n //\n ];\n }", "abstract protected function attributes();", "public function getFieldDeserializers(): array {\n $o = $this;\n return array_merge(parent::getFieldDeserializers(), [\n 'updateCategory' => fn(ParseNode $n) => $o->setUpdateCategory($n->getEnumValue(UpdateCategory::class)),\n ]);\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function testMagicMethodSetThrowsExceptionValuesNotAnArray()\n\t{\n\t\t$stub = new \\Orchestra\\Support\\Form\\Fieldset(function ($f) {});\n\n\t\t$stub->attributes = 'foo';\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()\n {\n return [\n ];\n }", "public function set_attributes($attributes)\n {\n }", "public function setAttributes($values)\n {\n if (!empty($values)) {\n foreach ($values as $name => $value) {\n $this->setAttribute($name, $value);\n }\n }\n }", "protected function attributes()\n {\n return [];\n }", "public function getFieldDeserializers(): array {\n $o = $this;\n return array_merge(parent::getFieldDeserializers(), [\n 'mailExchange' => fn(ParseNode $n) => $o->setMailExchange($n->getStringValue()),\n 'preference' => fn(ParseNode $n) => $o->setPreference($n->getIntegerValue()),\n ]);\n }", "public function setAttributes(array $params)\n {\n foreach($params as $name => $value) {\n $this->setAttribute($name, $value);\n }\n }", "public function initAttribute();", "public function getAttributes(): array;", "public function getAttributes(): array;", "public function getAttributes(): array;", "public function getAttributes(): array;", "public function getFieldDeserializers(): array {\n $o = $this;\n return array_merge(parent::getFieldDeserializers(), [\n 'recipientActionDateTime' => fn(ParseNode $n) => $o->setRecipientActionDateTime($n->getDateTimeValue()),\n 'recipientActionMessage' => fn(ParseNode $n) => $o->setRecipientActionMessage($n->getStringValue()),\n 'recipientUserId' => fn(ParseNode $n) => $o->setRecipientUserId($n->getStringValue()),\n 'senderShiftId' => fn(ParseNode $n) => $o->setSenderShiftId($n->getStringValue()),\n ]);\n }", "public function getFieldDeserializers(): array {\n $o = $this;\n return array_merge(parent::getFieldDeserializers(), [\n 'urls' => function (ParseNode $n) {\n $val = $n->getCollectionOfPrimitiveValues();\n if (is_array($val)) {\n TypeUtils::validateCollectionValues($val, 'string');\n }\n /** @var array<string>|null $val */\n $this->setUrls($val);\n },\n ]);\n }", "public function attributes() // atribūtu savi nosaukumi\n {\n return[ \n 'fname' => 'Vārds',\n 'lname' => 'Uzvārds',\n 'email' => 'E-pasts',\n 'oldpassword' => 'Paroles lauks',\n 'password' => 'Jaunas paroles lauks',\n 'buttontitle' => 'Pogas virsraksts',\n 'buttonlink' => 'Pogas links',\n 'reciever' => 'Saņēmēju lauks',\n 'emailtitle' => 'Ziņas virsrsksts',\n 'emailtext' => 'Ziņas teksts',\n 'transport' => 'Pasākumu lauks'\n ];\n }", "public function getRestHookableAttributes(): array\n {\n return [];\n }", "public function getFieldDeserializers(): array {\n $o = $this;\n return array_merge(parent::getFieldDeserializers(), [\n 'callEventType' => fn(ParseNode $n) => $o->setCallEventType($n->getEnumValue(TeamworkCallEventType::class)),\n 'callId' => fn(ParseNode $n) => $o->setCallId($n->getStringValue()),\n 'initiator' => fn(ParseNode $n) => $o->setInitiator($n->getObjectValue([IdentitySet::class, 'createFromDiscriminatorValue'])),\n ]);\n }", "public function setAttributes(Array $attributes): self\n {\n\t\tforeach($attributes as $k => $v) {\n\t\t\t$this->setAttribute($k, $v);\n\t\t}\n\t\treturn $this;\n\t}", "protected function defineAttributes()\n\t{\n\t\treturn array(\n\t\t\t'id' => AttributeType::Number,\n\t\t\t'type' => AttributeType::String,\n\t\t\t'date' => AttributeType::DateTime,\n\t\t\t'context' => AttributeType::String,\n\t\t\t'settings' => AttributeType::Mixed,\n\t\t);\n\t}", "private function fillArray($array) {\n\t\t$result = array();\n\t\tforeach ($array as $attr => $val) {\n\t\t\t$setMethod = 'set' . ucfirst($attr);\n\t\t\t$returnType = $this->getReturnTypeOfSetMethod($setMethod);\n\t\t\tif ($returnType) {\n\t\t\t\t$result[$attr] = new $returnType(); \n\t\t\t} else {\n\t\t\t\t$result[$attr] = 'abc';\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $result;\n\t}", "public function setAttr($attributes = array())\n {\n foreach ($attributes as $key => $value) {\n if (property_exists(get_class($this), $key))\n $this->$key = $value;\n }\n return $this;\n }", "public function getFieldDeserializers(): array {\n $o = $this;\n return [\n '@odata.type' => fn(ParseNode $n) => $o->setOdataType($n->getStringValue()),\n 'response' => fn(ParseNode $n) => $o->setResponse($n->getEnumValue(ResponseType::class)),\n 'time' => fn(ParseNode $n) => $o->setTime($n->getDateTimeValue()),\n ];\n }", "protected function getAttributes()\n {\n return [];\n }", "public static function attributeMap()\n {\n return [\n 'tenant_id' => 'tenant_id',\n 'expires_in' => 'expires_in',\n 'scopes' => 'scopes'\n ];\n }", "protected function defineAttributes()\n {\n return array_merge(parent::defineAttributes(), array(\n 'Amount' => array(AttributeType::Number, 'decimals' => 0),\n 'GrossNet' => AttributeType::String,\n 'Id' => AttributeType::String,\n 'Period' => AttributeType::String,\n 'Type' => AttributeType::String\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 getFieldDeserializers(): array {\n $o = $this;\n return [\n 'clickAction' => fn(ParseNode $n) => $o->setClickAction($n->getStringValue()),\n 'clickDateTime' => fn(ParseNode $n) => $o->setClickDateTime($n->getDateTimeValue()),\n 'id' => fn(ParseNode $n) => $o->setId($n->getStringValue()),\n '@odata.type' => fn(ParseNode $n) => $o->setOdataType($n->getStringValue()),\n 'sourceId' => fn(ParseNode $n) => $o->setSourceId($n->getStringValue()),\n 'uriDomain' => fn(ParseNode $n) => $o->setUriDomain($n->getStringValue()),\n 'verdict' => fn(ParseNode $n) => $o->setVerdict($n->getStringValue()),\n ];\n }", "public function getFieldDeserializers(): array {\n $o = $this;\n return array_merge(parent::getFieldDeserializers(), [\n 'assignmentState' => fn(ParseNode $n) => $o->setAssignmentState($n->getStringValue()),\n 'duration' => fn(ParseNode $n) => $o->setDuration($n->getStringValue()),\n 'reason' => fn(ParseNode $n) => $o->setReason($n->getStringValue()),\n 'requestedDateTime' => fn(ParseNode $n) => $o->setRequestedDateTime($n->getDateTimeValue()),\n 'roleId' => fn(ParseNode $n) => $o->setRoleId($n->getStringValue()),\n 'roleInfo' => fn(ParseNode $n) => $o->setRoleInfo($n->getObjectValue([PrivilegedRole::class, 'createFromDiscriminatorValue'])),\n 'schedule' => fn(ParseNode $n) => $o->setSchedule($n->getObjectValue([GovernanceSchedule::class, 'createFromDiscriminatorValue'])),\n 'status' => fn(ParseNode $n) => $o->setStatus($n->getStringValue()),\n 'ticketNumber' => fn(ParseNode $n) => $o->setTicketNumber($n->getStringValue()),\n 'ticketSystem' => fn(ParseNode $n) => $o->setTicketSystem($n->getStringValue()),\n 'type' => fn(ParseNode $n) => $o->setType($n->getStringValue()),\n 'userId' => fn(ParseNode $n) => $o->setUserId($n->getStringValue()),\n ]);\n }", "protected function defineAttributes()\n {\n $this->dbAttributes = (object) [\n 'safe' => [\n 'nombre',\n 'estado',\n 'pais_idpais'\n ],\n 'date' => []\n ];\n }", "function protected_attributes() {\n\t\treturn array();\n\n\t}", "public function fill(array $attributes)\n {\n $existingAttributes = get_object_vars($this);\n\n foreach ($existingAttributes as $attributeName => $oldAttributeValue) {\n array_key_exists($attributeName, $attributes) ? $this->$attributeName = $attributes[$attributeName] : NULL;\n }\n }", "public static function setters() {\n return self::$setters;\n }", "public function setAttributes ($attributes)\n {\n\n $this->attributes = array_merge($this->attributes, $attributes);\n\n }", "function set(array $array){\n foreach($this as $atributo => $valor){\n if(isset($array[$atributo])){\n $this->$atributo = $array[$atributo];\n }\n }\n }", "protected function hydrate($array){\r\n\t\tforeach ($array as $key => $value) {\r\n\t\t\t$methodName = 'set'.ucfirst($key);\r\n\t\t\tif(method_exists($this, $methodName)){\r\n\t\t\t\t$this->$methodName($value);\r\n\t\t\t}\r\n\t\t}\r\n\t}" ]
[ "0.67861605", "0.6602939", "0.6596105", "0.6596105", "0.6596105", "0.6549202", "0.6546527", "0.6433981", "0.6337804", "0.63287914", "0.63287914", "0.63287914", "0.63287914", "0.63287914", "0.63287914", "0.63287914", "0.63287914", "0.63287914", "0.63287914", "0.63287914", "0.63287914", "0.63287914", "0.62148166", "0.6209754", "0.62060654", "0.6120846", "0.6115355", "0.60497296", "0.5977547", "0.5970163", "0.5953286", "0.59281594", "0.5915005", "0.58477205", "0.58284014", "0.58283585", "0.5821642", "0.57770526", "0.5772", "0.5766634", "0.5758722", "0.57501113", "0.57371676", "0.573421", "0.56964844", "0.5694835", "0.5694835", "0.56937087", "0.5684559", "0.5665934", "0.5665934", "0.5665934", "0.5665934", "0.5665934", "0.5665934", "0.5665934", "0.5665934", "0.5665934", "0.5657848", "0.56489277", "0.5646588", "0.5646436", "0.56431144", "0.56358427", "0.56171846", "0.56108314", "0.5603991", "0.5598156", "0.5598156", "0.5598156", "0.5598156", "0.5591472", "0.5576224", "0.55756694", "0.5565682", "0.5565194", "0.5564763", "0.55588126", "0.5557399", "0.5553788", "0.5551898", "0.5551329", "0.5536904", "0.5523803", "0.55228585", "0.55228585", "0.5521154", "0.55189764", "0.55186504", "0.5518315", "0.55179876", "0.55121833", "0.55063426", "0.5505467", "0.55027133" ]
0.6052429
32
Array of attributes to getter functions (for serialization of requests).
public static function getters() : array { return self::$getters; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getAttributes(): array\n {\n // Get all attributes using all the getters.\n $attributes = [];\n foreach(\\array_keys(\\get_object_vars($this)) as $attribute) {\n\n // Construct the getter name.\n $getter = \\lcfirst(\\str_replace('_', '', \\ucwords($attribute, '_')));\n\n // Get the attribute's value from the getter.\n $attributes[$attribute] = $this->{$getter}();\n }\n\n return $attributes;\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 getAttributes(): array;", "public function getAttributes(): array;", "public function getAttributes(): array;", "public function getAttributes(): array;", "abstract protected function getDirectGetters();", "abstract function attributes(): array;", "public static function getters()\n {\n return [\n 'status' => 'getStatus',\n 'time' => 'getTime'\n ];\n }", "public static function getters()\n {\n return [\n 'status' => 'getStatus',\n 'quota' => 'getQuota'\n ];\n }", "public static function getters();", "protected function getAttributeSavedMethods()\n {\n $attributes = [];\n foreach($this->getDirty() as $attribute => $value) {\n if($this->hasAttributeSavedMethod($attribute)) {\n $attributes[] = $attribute;\n }\n }\n return $attributes;\n }", "public function attributes() : array;", "public function getAttributes();", "public function getAttributes();", "public function getAttributes();", "public function getAttributes();", "public function getAttributes();", "public function getAttributes();", "public function getAttributes();", "public function getAttributes();", "public function getAttributes();", "public function getCustomAttributes(): array;", "public function getAttributes() {}", "public function getAttributes() {}", "function getAttributes()\n {\n }", "public function getAttributes()\n {\n }", "public function getAttributes(){ }", "public static function attributes()\n {\n $class = self::loadDelegationClass();\n \n return call_user_func($class.'::attributes');\n }", "public function getAttributes(): iterable;", "public static function getters()\n {\n return [\n 'application_id' => 'getApplicationId',\n 'is_default' => 'getIsDefault',\n 'role' => 'getRole',\n 'type' => 'getType',\n '_issues' => 'getIssues'\n ];\n }", "public static function getters()\n {\n return parent::getters() + self::$getters;\n }", "public static function getters()\n {\n return parent::getters() + self::$getters;\n }", "public static function getters()\n {\n return parent::getters() + self::$getters;\n }", "public static function getters()\n {\n return parent::getters() + self::$getters;\n }", "public static function getters()\n {\n return parent::getters() + self::$getters;\n }", "public static function getters()\n {\n return parent::getters() + self::$getters;\n }", "public static function getters()\n {\n return parent::getters() + self::$getters;\n }", "public static function getters()\n {\n return parent::getters() + self::$getters;\n }", "public static function getters()\n {\n return parent::getters() + self::$getters;\n }", "public static function getters()\n {\n return parent::getters() + self::$getters;\n }", "public static function getters()\n {\n return parent::getters() + self::$getters;\n }", "public static function getters()\n {\n return parent::getters() + self::$getters;\n }", "public static function getters()\n {\n return parent::getters() + self::$getters;\n }", "public static function getters()\n {\n return [\n 'tenant_id' => 'getTenantId',\n 'expires_in' => 'getExpiresIn',\n 'scopes' => 'getScopes'\n ];\n }", "protected function getAttributes()\n {\n return [];\n }", "public function attributes(): array\n {\n return [\n //\n ];\n }", "public function attributes(): array\n {\n return [\n //\n ];\n }", "public function getCustomAttributes() {}", "protected function attributes() {\n\t $attributes = array();\n\t foreach(static::$table_fields as $field) {\n\t if(property_exists( $this, $field)) {\n\t $attributes[$field] = $this->$field;\n\t }\n\t }\n\t return $attributes;\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 getRestHookableAttributes(): array\n {\n return [];\n }", "public static function attributeMap();", "public function getAttributes() {\n $attr = array();\n \n $attr[\"id\"] = $this->id_;\n $attr[\"taxonId\"] = $this->taxonId_;\n $attr[\"dbh\"] = $this->dbh_;\n $attr[\"lat\"] = $this->lat_;\n $attr[\"lng\"] = $this->lng_;\n $attr[\"layers\"] = $this->layers_;\n \n return $attr;\n }", "public function get_attributes()\n {\n }", "public function get_attributes()\n {\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 getAttributesFields(): array\n {\n $fields = [];\n\n // Only fields without relations\n foreach ($this->fieldsArray(false) as $attribute) {\n $fields[$attribute] = [\n 'name' => $attribute,\n 'type' => $this->overrideMethod(\n 'set'.Str::studly($attribute).'Type',\n [$this, 'callGraphQLType'],\n $attribute\n ),\n 'privacy' => function (array $args) use ($attribute): bool {\n $method = 'get'.Str::studly($attribute).'Privacy';\n\n return $this->$method($args);\n },\n ];\n }\n\n return $fields;\n }", "public function getAttributes()\n {\n $return = [];\n foreach ($this->attr as $attr => $info) {\n $return[$attr] = $this->getAttribute($attr);\n }\n\n return $return;\n }", "protected function attributes() {\n $attributes = array();\n foreach(static::$db_fields as $field) {\n if(property_exists($this, $field)) {\n $attributes[$field] = $this->$field;\n }\n }\n return $attributes;\n }", "public function attributes();", "public function attributes()\n {\n return [];\n }", "public function attributes()\n {\n return [];\n }", "public function attributes()\n {\n return [];\n }", "private function getApiAttributeNamesArray()\n {\n $array = [\n 'firstname',\n 'lastname',\n 'email',\n 'id',\n 'website_id',\n 'group_id',\n 'prefix',\n 'middlename',\n 'suffix',\n 'dob',\n 'taxvat',\n 'gender',\n 'is_active',\n 'company',\n 'city',\n 'country_id',\n 'region',\n 'postcode',\n 'telephone',\n 'fax',\n 'vat_id',\n 'street_1',\n 'street_2',\n 'subaccounts',\n 'manage_subaccounts',\n 'account_data_modification_permission',\n 'account_order_history_view_permission',\n 'checkout_order_create_permission',\n 'checkout_order_approval_permission',\n 'checkout_cart_view_permission',\n 'checkout_view_permission',\n 'checkout_order_placed_notification_permission',\n 'force_usage_parent_company_name_permission',\n 'force_usage_parent_vat_permission',\n 'force_usage_parent_addresses_permission',\n 'password',\n 'parent_email',\n 'promote',\n 'can_manage_subaccounts',\n ];\n\n return $array;\n }", "protected function attributes()\n {\n return [];\n }", "public function getAttributes()\n {\n return [\n Attributes\\IdAttribute::make(),\n Attributes\\CreatedAtAttribute::make(),\n Attributes\\UpdatedAtAttribute::make(),\n ];\n }", "public function getData ()\n {\n\n $data = [];\n\n foreach ($this as $key => $value) {\n\n $method = 'get' . ucfirst(camel_case($key));\n\n if (method_exists($this, $method)) {\n\n $data[$key] = $this->{$method}();\n\n }\n\n }\n\n $data['request_data'] = $this->hideProtectedFields($data['request_data']);\n\n return $data;\n }", "public function getAttributes() {\n return array_merge($this->getFields(), $this->getProperties());\n }", "public function attributes()\n {\n $attributes = array();\n foreach(self::$db_fields as $field)\n {\n if(property_exists($this,$field))\n {\n $attributes[$field] = $this->$field;\n }\n }\n return $attributes;\n }", "protected function attributes() {\n\t\t$attributes = array();\n\t\tforeach(self::$db_fields as $field) {\n\t\t\tif(property_exists($this, $field)){\n\t\t\t\t$attributes[$field] = $this->$field;\n\t\t\t}\n\t\t}\n\t\treturn $attributes;\n\t}", "public function getAttributeList(): array;", "protected function attributes() {\n\t $attributes = array();\n\t foreach(self::$db_fields as $field) {\n\t if(property_exists($this, $field)) {\n\t $attributes[$field] = $this->$field;\n\t }\n\t }\n\t return $attributes;\n\t}", "protected function attributes() {\n\t\t$attributes = array();\n\t\tforeach (self::$db_fields as $field) {\n\t\t\tif (property_exists($this, $field)) {\n\t\t\t\t$attributes[$field] = $this->$field;\n\t\t\t}\n\t\t}\n\t\treturn $attributes;\n\t}", "public function attributes()\n {\n return [\n ];\n }", "public function __get($method)\n\t{\n\t\treturn array($this, $method);\t\t\n\t}", "public function getAttributesList()\n {\n }", "public function getGetterNames(): array\n {\n return [['document'], ['documentManager']];\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 attributes(): array\n {\n return ['firstname', 'lastname', 'email', 'password', 'isAdmin'];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes()\n {\n return [\n //\n ];\n }", "public function attributes(): array\n {\n return [\n $this->attributePrefix.'target' => $this->target(),\n $this->attributePrefix.'filterByType' => $this->filterByType,\n ];\n }", "abstract public function attributeNames();", "public static function attributeMap()\n {\n return [\n 'tenant_id' => 'tenant_id',\n 'expires_in' => 'expires_in',\n 'scopes' => 'scopes'\n ];\n }" ]
[ "0.7377387", "0.6819236", "0.6653509", "0.6653509", "0.6653509", "0.6653509", "0.6606956", "0.6575728", "0.65064317", "0.64890575", "0.6463668", "0.642166", "0.64178026", "0.63993233", "0.63993233", "0.63993233", "0.63993233", "0.63993233", "0.63993233", "0.63993233", "0.63993233", "0.63993233", "0.6375036", "0.6348478", "0.6348444", "0.6346626", "0.63355106", "0.6320193", "0.62792367", "0.62737656", "0.6239281", "0.6227959", "0.6227959", "0.6227959", "0.6227959", "0.6227959", "0.6227959", "0.6227959", "0.6227959", "0.6227959", "0.6227959", "0.6227959", "0.6227959", "0.6227959", "0.6197557", "0.6132301", "0.6117337", "0.6117337", "0.6068999", "0.6068181", "0.6056619", "0.6056619", "0.6056619", "0.6056619", "0.6054615", "0.60487074", "0.6027995", "0.6025159", "0.6025159", "0.601774", "0.5989448", "0.59814304", "0.59813815", "0.597504", "0.59555596", "0.59555596", "0.59555596", "0.5948449", "0.59391534", "0.59369135", "0.5931128", "0.5928238", "0.5924297", "0.592218", "0.5921124", "0.59061617", "0.5897637", "0.5876376", "0.5873609", "0.5872004", "0.58642375", "0.5855299", "0.5849618", "0.5841543", "0.5841543", "0.5841543", "0.5841543", "0.5841543", "0.5841543", "0.5841543", "0.5841543", "0.5841543", "0.58240503", "0.5818519", "0.58182937" ]
0.62760985
34
Gets the string presentation of the object.
public function __toString() : string { return \json_encode( ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT ); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function __toString() {\r\n\t\treturn $this->getPrint();\r\n\t}", "public function __toString() {\r\n\t\treturn $this->getPrint();\r\n\t}", "public function __toString()\n {\n $result = $this->show();\n return $result ? $result : '';\n }", "public function __toString() {\n\t\treturn $this->getPrint();\n\t}", "function asString () {\n \t\treturn $this->printableString();\n \t}", "public function getToString()\n {\n return $this->toString();\n }", "public function toString()\n {\n $data = $this->origin->data();\n $out = '';\n if (is_scalar($data) || is_null($data)) {\n $out = (string) $data;\n } elseif (is_object($data) && method_exists($data, '__toString')) {\n $out = (string) $data;\n }\n return $out;\n }", "public function visualize()\n {\n \n return new StringWrapper('object('.$this->name().')');\n \n }", "public function to_string() { return $this->__toString(); }", "public function __toString()\n {\n return $this->formatAsString();\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 toString()\n {\n return $this->__toString();\n }", "public function __toString()\n {\n try {\n return $this->toString();\n } catch (\\Exception $e) {\n return '';\n }\n }", "public function __toString() {\n\t\t\treturn Core\\Convert::toString($this->render());\n\t\t}", "public function __toString()\r\n {\r\n return $this->getFormattedString();\r\n }", "public function __toString()\n {\n return sprintf('%s -> %s', $this->getLugar(), $this->getMotivo());\n }", "public function toString()\n {\n return $this->cast('string');\n }", "public function __toString(): string\n {\n return (string) $this->format();\n }", "public function __toString()\n {\n return $this->toFormattedString();\n }", "public function __toString()\n {\n return $this->adaptor->render();\n }", "public function __toString()\n {\n return (string) $this->getContents();\n }", "public function __toString() { return $this->as_string(); }", "public function __toString()\n {\n try {\n return (string) $this->render();\n } catch (Exception $e) {\n return '';\n }\n }", "public function __toString()\n\t{\n\t\treturn $this->get();\n\t}", "public function __toString() {\r\n return $this->toString();\r\n }", "public function display(){\n return $this->string;\n }", "public function __toString()\n {\n return $this->make()->toString();\n }", "public function __toString()\n {\n return $this->assemble();\n }", "public function __toString()\n {\n return $this->_render();\n }", "public function toString()\n {\n $data = $this->getProperties();\n $out = get_class($this).' ('.CRLF;\n foreach ($data as $key => $value) {\n $type = gettype($value);\n $value = is_bool($value) ? (int) $value : $value;\n $value = is_string($value) ? '\"'.$value.'\"' : $value;\n $value = is_object($value) ? implode(CRLF.TAB, explode(CRLF, (string) $value)) : $value;\n $value = is_array($value) ? print_r($value, true) : $value;\n $out .= TAB.$key.' ('.$type.')';\n $out .= ': '.$value.CRLF;\n }\n\n return $out.');';\n }", "public function __toString() {\n return $this->toString();\n }", "public function __toString() {\n return $this->toString();\n }", "function __toString() {\n return $this->string();\n }", "public function __toString() {\n return $this->assemble();\n }", "public function __toString(): string\n {\n return $this -> text;\n }", "public function __toString() : string\n {\n return $this->render();\n }", "public function __toString()\n {\n return (string) $this->exportTo(SekolahPaudPeer::DEFAULT_STRING_FORMAT);\n }", "public function __toString()\n {\n return $this->render(true);\n }", "public function __toString() {\n \n return $this->toString();\n }", "public function __tostring() {\r\n return (string) $this->object->getId();\r\n }", "public function __toString() {\n\t\treturn $this->toString();\n\t}", "public function __toString() {\n\t\treturn $this->toString();\n\t}", "public function __toString() {\n\t\treturn get_class($this) . '-object ' . \"\\n\";\n\t}", "public function __toString()\n {\n return (string) $this->exportTo(JadwalPeer::DEFAULT_STRING_FORMAT);\n }", "public function __toString()\n {\n return $this->make()->render();\n }", "public function __toString(): string\n {\n return $this->render();\n }", "public function __toString()\n {\n return (string) $this->exportTo(SanitasiPeer::DEFAULT_STRING_FORMAT);\n }", "public function __toString () {\r\n\t\treturn '';\r\n\t}", "public function __toString() {\n return $this->as_string();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString()\n {\n return $this->render();\n }", "public function __toString() {\n\t\treturn $this->render();\n\t}", "public function __toString()\n {\n return $this->_;\n }", "public function __toString()\n {\n return $this->_;\n }", "public function __toString()\n {\n return $this->_;\n }", "public function toString() {\n return $this->getClassName().'<'.$this->name.'>';\n }", "public function __tostring()\n {\n return get_class($this) . '#' . $this->get_id() . ' (' . $this->get_title() . ')';\n }", "public function __toString() : string {\n return $this->box . ' ' . $this->created->format('c');\n }", "public function toString()\n\t{\n\t\treturn (string) $this;\n\t}", "public function toString()\n\t{\n\t\treturn (string) $this;\n\t}", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->toString();\n }", "public function toString()\n {\n return json_encode($this->obj);\n }", "public function __toString()\r\n\t{\r\n\t\treturn $this->render();\r\n\t}", "public function __toString()\r\n\t{\r\n\t\treturn $this->render();\r\n\t}", "public function __toString()\r\n\t{\r\n\t\treturn $this->render();\r\n\t}", "public function toString() {\n \n return $this->toScalar();\n }", "public function __toString()\n {\n return $this->toNative();\n }", "public function __toString() {\n return $this->toString();\n }", "public function __toString() : string\n {\n return $this->toString();\n }", "public function __toString()\n {\n return $this->output();\n }", "public function __toString()\n {\n return Text::format(self::DEFAULT_TO_STRING, get_class($this));\n }", "public function __toString(): string\n\t{\n\t\treturn $this->getText();\n\t}", "public function __toString()\n {\n return $this->str;\n }" ]
[ "0.76999485", "0.76999485", "0.7677313", "0.7667521", "0.76529694", "0.7647193", "0.76099914", "0.76000375", "0.75458145", "0.7534987", "0.7503392", "0.7503392", "0.7503392", "0.7501123", "0.74604076", "0.7459576", "0.7456136", "0.7455916", "0.74448484", "0.74132824", "0.73564094", "0.7352955", "0.7338764", "0.73273206", "0.73175824", "0.7314778", "0.730734", "0.72958714", "0.7290095", "0.728864", "0.7288515", "0.7283392", "0.7266884", "0.7266884", "0.72631764", "0.725864", "0.7257626", "0.7249365", "0.7244928", "0.7241449", "0.7238798", "0.7235711", "0.72327757", "0.72327757", "0.7221381", "0.7219209", "0.7218379", "0.7217887", "0.72175425", "0.7216045", "0.72143525", "0.7212652", "0.7212652", "0.7212652", "0.7212652", "0.7212652", "0.7212652", "0.7212652", "0.7212652", "0.7212652", "0.7212652", "0.7212652", "0.7212652", "0.7212652", "0.7212652", "0.7210113", "0.7206153", "0.7206153", "0.7206153", "0.720434", "0.71947396", "0.7190792", "0.7190493", "0.7190493", "0.7187326", "0.7187326", "0.7187326", "0.7187326", "0.7187326", "0.7187326", "0.7187326", "0.7187326", "0.7187326", "0.7187326", "0.7187326", "0.7187326", "0.7187326", "0.7187326", "0.7187326", "0.71779394", "0.7166714", "0.7166714", "0.7166714", "0.7166394", "0.7159526", "0.71571726", "0.7154875", "0.71518123", "0.71508706", "0.71470207", "0.7142957" ]
0.0
-1
The original name of the model.
public function getModelName() : string { return self::$openAPIModelName; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getOriginalName(): string\n {\n return $this->originalName;\n }", "public function getOriginalName(): string\n {\n\t\treturn $this->originalName;\n\t}", "public function getOriginalName();", "protected function getModelName()\n {\n $fullyQualifiedClassName = substr(static::class, 0, -10); // \\App\\Repositories\\{name}Repository => \\App\\Repositories\\{name}\n $nameArray = explode('\\\\', $fullyQualifiedClassName); // [App, Repositories, {name}]\n return array_pop($nameArray); // {name}\n }", "private function getModelName() : string\n {\n return collect(explode('\\\\', get_class($this)))->last();\n }", "public function getOrigName()\n\t{\n\t\treturn $this->orig_name;\n\t}", "public function getName()\n {\n return empty($this->model->name) ? $this->id : $this->model->name;\n }", "private function getModelName()\n {\n $function = new \\ReflectionClass( $this->model ); \n return $function->getShortName();\n }", "public function modelName(): string\n {\n return class_basename($this->model);\n }", "public function getModelName() {\n\t\treturn $this->getSourceName();\n\t}", "protected function getModelName()\n {\n return ucwords(str_singular(camel_case($this->meta['table'])));\n }", "protected function get_model_name()\n {\n }", "public function getModelName()\n {\n return $this->getModel()->name;\n }", "public function getName()\r\n\t{\r\n\t\treturn $this->_modelName;\r\n\r\n\t}", "public function getModelName()\n {\n if (!$name = $this->modelName) {\n $tableName = $this->getName();\n\n $modelNames = [];\n foreach (explode('_', $tableName) as $word) {\n $modelNames[] = ucfirst(Inflector::singularize($word));\n } //foreach\n $modelName = implode('', $modelNames);\n\n $this->setModelName($name = ucfirst($this->isReservedPHPWord($modelName) ? $tableName : $modelName));\n } // if\n\n return $name;\n }", "public function getModelName() ;", "public function getNomeOriginal()\n {\n return $this->nome_original;\n }", "public function getModelName();", "public static function getNameModel()\n {\n return Yii::t('app', 'My model');\n }", "protected function modelClassName()\n {\n if (!$this->isValidModelName()) return null;\n\n return str_replace('{model}', $this->modelName, $this->modelPath);\n }", "public function getRealName() {\n\t\treturn $this->name;\n\t}", "public static function getModelName() {\r\n\t\t\treturn static::ModelName;\r\n\t\t}", "public function getRealName()\n {\n\treturn $this->name;\n }", "public function getOriginalQualifiedName() {}", "public function getOriginalQualifiedName() {}", "protected function name() {\n\t\treturn strtolower(str_replace('\\\\', '_', get_class($this)));\n\t}", "public function getModelName()\n {\n return self::$axerveModelName;\n }", "public function getRawName()\n {\n return $this->rawName;\n }", "protected function getCrudName(): string\n {\n return strtolower(Str::plural(class_basename($this->option('model'))));\n }", "protected function getNameInput()\n {\n return Str::singular(parent::getNameInput());\n }", "public function getOriginalClassName(): string\n {\n return $this->originalClassName;\n }", "public function getModelSingular()\n {\n return strtolower($this->getModelSimpleName());\n }", "public function getOriginalLabel()\n {\n return $this->originalLabel;\n }", "public function getNameAttribute()\n {\n return $this->translateOrNew($this->locale())->name;\n }", "public function getNameAttribute()\n {\n return $this->translateOrNew($this->locale())->name;\n }", "public function getModelSimpleName()\n {\n return end(explode('\\\\', $this->modelName));\n }", "public function getOriginalQualifiedName();", "public function getRealName()\n\t{\n\t\treturn $this->real_name;\n\t}", "public function getModelNameBasedOnClassName(): string\n {\n $fqn = explode(\"\\\\\", get_class($this));\n\n return strtolower(end($fqn));\n }", "public function getModelName()\n {\n return $this->getConfig()->modelName;\n }", "public function getSingularModelName()\n {\n\n return strtolower(class_basename($this->model));\n }", "public function getModelName()\n {\n return self::$modelName;\n }", "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 getTranslationModelName(): string\n {\n return rtrim(app('locale')->translationNamespace(), '\\\\')\n . '\\\\' . class_basename(get_called_class()) . 'Translation';\n }", "public function name()\n {\n return $this->getName();\n }", "public function name()\n {\n return $this->getName();\n }", "protected function getShortModel(): string\n {\n return class_basename($this->option('model'));\n }", "public function getRealName() {}", "private function guessName () : string {\n return $this->inflector()->pluralize($this->inflector()->tableize(class_basename($this)));\n }", "abstract protected function getModelName(): string;", "public function getModel()\n\t{\n\t\treturn $this->resource->name;\n\t}", "protected function getTypeName(): string\n {\n if (isset($this->typeName)) {\n return $this->typeName;\n }\n\n return $this->getModelNameBasedOnClassName();\n }", "public function getName()\n\t{\n\t\treturn $this->neoeloquent->getConfigOption('name');\n\t}", "public function getModelClassName()\n {\n \treturn $this->modelClassName;\n }", "protected function filterName(): string\n {\n return Str::snake(class_basename($this));\n }", "public function getName() {\n $path = explode('\\\\', get_class($this->object[\"data\"]));\n return array_pop($path);\n }", "public function getName()\n {\n return $this->attributes->name;\n }", "public function name() {\n\t\treturn $this->name;\n\t}", "public function get_name() {\n return $this->name;\n }", "protected function getNameInput()\n {\n $model = $this->option('model') ? $this->option('model') : $this->argument('model');\n\n $dir = $this->option('dir');\n if (strlen($dir) && !Str::endsWith($dir, DIRECTORY_SEPARATOR)) {\n $dir .= DIRECTORY_SEPARATOR;\n }\n\n return (strlen($dir) ? $dir : 'Models/') . $model;\n }", "public function getNewName()\n {\n return $this->newName;\n }", "public function get_name() {\n\t\treturn $this->name;\n\t}", "public function get_name() {\n\t\treturn $this->name;\n\t}", "public function get_name() {\n\t\treturn $this->name;\n\t}", "public function get_name() {\n\t\treturn $this->name;\n\t}", "function __toString()\r\n\t{\r\n\t\treturn ucfirst($this->model);\r\n\t}", "public static function modelName()\n {\n // strip namespacing\n $paths = explode('\\\\', get_called_class());\n\n return end($paths);\n }", "public function get_name() {\n\n\t\treturn $this->name;\n\t}", "public function get_name() {\r\n\t\treturn '';\r\n\t}", "public function name() {\n return $this->name;\n }", "public function get_name()\n {\n\n return $this->name;\n }", "public function name()\n {\n if (isset($this->attributes[self::NAME])) {\n return $this->attributes[self::NAME];\n }\n\n return $this->path();\n }", "public function name()\n {\n $name = get_class($this);\n\n return substr($name, strrpos($name, '\\\\') + 1);\n }", "function get_name () {\n return $this -> name;\n }", "public function get_name() {\n return $this->_name;\n }", "public function get_name() {\r\n return $this->name;\r\n }", "protected function getNameInput()\n {\n $this->model = trim($this->argument('name'));\n return $this->model . 'Controller';\n }", "public function get_name()\n {\n return $this->name;\n }", "public function get_name()\n {\n return $this->name;\n }", "public function getModelName() : string\n {\n $config_key = 'scheduleable.repositories.' . snake_case(class_basename(static::class)) . '.model_class';\n return config($config_key);\n }", "public function getSingularName()\n {\n return rtrim($this->name, 's');\n }", "public function getOriginalModel()\n {\n return $this->originalModel;\n }", "public function getName()\n {\n return $this->internalName;\n }", "public function getName() {\n return $this->__name;\n }", "public function get_name()\n\t{\n\t\treturn $this->name;\n\t}", "public function name()\n\t{\n\t\treturn $this->name;\n\t}", "public function name()\n\t{\n\t\treturn $this->name;\n\t}", "public function name()\n\t{\n\t\treturn $this->name;\n\t}", "public function name()\n {\n return $this->name;\n }", "public function name()\n {\n return $this->name;\n }", "public function name()\n {\n return $this->name;\n }", "public function name()\n {\n return $this->name;\n }", "public function name()\n {\n return $this->name;\n }", "public function name()\n {\n return $this->name;\n }", "public function name()\n {\n return $this->name;\n }" ]
[ "0.8051171", "0.80107665", "0.7829159", "0.763725", "0.7625556", "0.7594126", "0.75220734", "0.75203615", "0.7520026", "0.74983907", "0.74457127", "0.7406896", "0.7395408", "0.7392189", "0.7380455", "0.73451596", "0.7309523", "0.7268473", "0.72646457", "0.7194995", "0.7167137", "0.71553016", "0.7140629", "0.71194506", "0.71194506", "0.7116858", "0.7109867", "0.7099409", "0.70911926", "0.7072344", "0.7059802", "0.7051722", "0.70447934", "0.7024198", "0.7024198", "0.7021268", "0.7020034", "0.6969556", "0.69690603", "0.6946308", "0.6930546", "0.68827796", "0.6880001", "0.6872213", "0.6870931", "0.6870931", "0.6865482", "0.68314034", "0.68245137", "0.681967", "0.681544", "0.68117666", "0.6801664", "0.68013585", "0.6791115", "0.6768164", "0.67647326", "0.6763626", "0.67618877", "0.67585194", "0.67581475", "0.6756782", "0.6756782", "0.6756782", "0.6756782", "0.67544204", "0.67522943", "0.67437685", "0.67366743", "0.6730203", "0.6721843", "0.6716729", "0.6713311", "0.6710085", "0.67037696", "0.6701496", "0.66909015", "0.66899174", "0.66899174", "0.66834587", "0.66795844", "0.6674899", "0.6672843", "0.66700023", "0.66612804", "0.6657571", "0.6657571", "0.6657571", "0.6653286", "0.6653286", "0.6653286", "0.6653286", "0.6653286", "0.6653286", "0.6653286" ]
0.68043435
57
Returns true if offset exists. False otherwise.
public function offsetExists($offset) : bool { return isset($this->container[$offset]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function offsetExists($offset): bool\n {\n return false;\n }", "public function hasOffset(){\n return $this->_has(1);\n }", "public function offsetExists($offset): bool;", "public function offsetExists($offset) {\n\t\t$result = false;\n\t\t\n\t\tif($this->_data[$offset]) {\n\t\t\t$result = true;\n\t\t}\n\t\t\n\t\treturn $result;\n\t}", "public function offsetExists($offset)\n {\n return isset($this->data[$offset]) ? true : false;\n }", "public function offsetExists($offset)\n {\n return true;\n }", "public function offsetExists($offset): bool\n {\n return isset($this->contents[$offset]);\n }", "public function offsetExists($offset){\n\t\treturn $this->has($offset);\n\t}", "public function offsetExists($offset)\n {\n return !is_null($this->getAttribute($offset));\n }", "public function offsetExists($offset)\n {\n return !is_null($this->getAttribute($offset));\n }", "public function offsetExists($offset): bool\n {\n return isset($this->json()[$offset]);\n }", "public function offsetExists($offset) {\n\t\treturn $this->hasValueForKey($offset);\n\t}", "public function offsetExists($offset): bool\n {\n return $this->__isset($offset);\n }", "public function offsetExists($offset)\n {\n // init\n $length = $this->length();\n $offset = (int) $offset;\n\n if ($offset >= 0) {\n return ($length > $offset);\n }\n\n return ($length >= abs($offset));\n }", "public function offsetExists($offset): bool\n {\n return $this->getAttribute($offset) !== null;\n }", "public function offsetExists($offset): bool\n {\n return $this->has($offset);\n }", "public function exists($offset): bool\n {\n return $this->get($offset) !== null;\n }", "public function offsetExists($offset): bool\n {\n return isset($this->{$offset});\n }", "public function offsetExists($offset) {\n\t\treturn isset($this->data[$offset]);\n\t}", "public function offsetExists($offset) {\n\t\treturn isset($this->data[$offset]);\n\t}", "public function offsetExists($offset): bool\n {\n return isset($this->array[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return (bool) $this->get($offset);\n }", "public function offsetExists($offset)\n {\n return isset($this->$offset);\n }", "public function offsetExists($offset) : bool\n {\n return isset($this->attributes[$offset]);\n }", "public function offsetExists(mixed $offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists(mixed $offset): bool\n {\n return $this->has((string) $offset);\n }", "public function offsetExists($offset) {\n return $this->__isset($offset);\n }", "public function offsetExists($offset) {\n\t\treturn isset($this->tokens[$offset]);\n\t}", "public function offsetExists($offset) {\n $value = $this->{\"get$offset\"}();\n return $value !== null;\n }", "public function offsetExists($offset) {\n\t\treturn isset($this->pile[$offset]);\n\t}", "public function offsetExists($offset)\n {\n return ! is_null($this->getAttribute($offset));\n }", "public function offsetExists($offset) {\n return isset(current($this->_data)[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return array_key_exists($offset, $this->array);\n }", "public function offsetExists ($offset)\n {\n try\n {\n $this->get ($offset);\n }\n catch (InvalidArgumentException $exception)\n {\n return false;\n }\n catch (UnexpectedValueException $exception)\n {\n return false;\n }\n \n return true;\n }", "public function offsetExists($offset)\n {\n return $this->__isset($offset);\n }", "public function offsetExists($offset)\n {\n return $this->__isset($offset);\n }", "public function offsetExists($offset)\n {\n return $this->__isset($offset);\n }", "public function offsetExists($offset) {\n\t\tsettype($offset, 'integer');\n\n\t\tif ($offset >= 0 && $offset < $this->indexMax) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->container[$offset]);\n }", "public function has($offset) {\n return $this->offsetExists($offset);\n }", "public function offsetExists($offset): bool\n {\n return isset($this->items()[$offset]);\n }", "public function offsetExists($offset):bool\n {\n return isset($this->container[$offset]);\n }", "public function offsetExists($offset)\n {\n return isset($this->$offset);\n\n }", "public function offsetExists($offset);", "public function offsetExists($offset);" ]
[ "0.8555834", "0.8536144", "0.84876734", "0.8325894", "0.8322583", "0.8300258", "0.821515", "0.81559885", "0.8143132", "0.8143132", "0.81348807", "0.81315136", "0.8130816", "0.8128181", "0.8118165", "0.81153667", "0.81060076", "0.8103301", "0.80874085", "0.80874085", "0.8082012", "0.80752295", "0.8074589", "0.8064161", "0.80609185", "0.80597305", "0.8058638", "0.8055913", "0.80540025", "0.805388", "0.8049724", "0.80424815", "0.8039266", "0.803328", "0.803072", "0.803072", "0.803072", "0.80282956", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.8023719", "0.80212057", "0.80201447", "0.801126", "0.80099213", "0.80095094", "0.80095094" ]
0.0
-1
Sets value based on offset.
public function offsetSet($offset, $value) : void { if (null === $offset) { $this->container[] = $value; } else { $this->container[$offset] = $value; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function set($offset, $value);", "public function set($offset, $value = null);", "function setOffset($value) {\n $this->offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->$offset = $value;\n }", "public function offsetSet($offset,$value) {\n if (is_null($offset)) {\n current($this->_data)[] = $value;\n } else {\n current($this->_data)[$offset] = $value;\n }\n }", "public function offsetSet($offset, $value)\n {\n $this->getValue()[$offset] = $value;\n }", "public function offsetSet( $offset, $value ) {\n\t\t// ...\n\t}", "public function offsetSet($offset, $value);", "public function offsetSet($offset, $value);", "public function offsetSet($offset, $value){\n\t\t$this->set($offset, $value);\n\t}", "public function offsetSet($offset, $value) {}", "public function offsetSet($offset, $value) {}", "public function offsetSet($offset, $value) {}", "public function offsetSet($offset, $value) {}", "public function offsetSet(mixed $offset, mixed $value): void\n {\n if (Arr::accessible($this->value)) {\n $this->value[$offset] = $value;\n }\n }", "public function offsetSet($offset, $value) { }", "public function offsetSet($offset, $value)\r\n {\r\n $this->data[$offset] = $value;\r\n }", "public function offsetSet($offset, $value)\n\t{\n\t\t$this->{$offset} = $value;\n\t}", "public function offsetSet($offset, $value)\n {\n $this->_data[$offset] = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->_data[$offset] = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->data[$offset] = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->data[$offset] = $value;\n }", "public function offsetSet($offset, $value)\n {\n\n\n $this->__set($offset, $value);\n }", "public\t\tfunction\tsetValue($offset, $value)\n\t\t{\n\t\t\tif(array_key_exists($offset, $this->_values) && $this->_values[$offser] !== $value) {\n\t\t\t\t$this->_values[$offset]\t=\t$value;\n\t\t\t\t$this->_saved\t\t\t=\tfalse;\n\t\t\t}\n\t\t}", "public function offsetSet($offset,$value) {\n if ($offset == \"\") {\n\t $this->_data[] = $value;\n\t}else {\n\t $this->_data[$offset] = $value;\n\t}\n }", "public function setOffset($offset, $value, $container = 'default');", "public function offsetSet($offset, $value)\n {\n }", "public function offsetSet($offset, $value)\n {\n $this->setModel($value, $offset);\n }", "public function offsetSet($offset, $value) \n {\n }", "public function offsetSet($offset, $value) { \n if (is_null($offset)) {\n $this->insert($value);\n $this->incrementLength();\n } else {\n if (is_null($this->offsetGet($offset))) {\n $this->incrementLength();\n }\n\n $this->update($offset, $value); \n }\n }", "public function offsetSet($offset, $value)\n {\n if (!is_null($offset)) {\n $this->data[$offset] = $value;\n }\n }", "public function offsetSet ($offset, $value) {\n $this->__set($offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n $this->setAttribute($offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n }", "public function offsetSet($offset, $value) {\n $this->__set($offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n $this->item[$offset] = $value;\n }", "public function offsetSet($offset, $value)\n {\n $this->setAttribute($offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n $this->setAttribute($offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n $this->setAttribute($offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n $this->elements[$offset] = $offset;\n }", "public function offsetSet($offset, $value)\n {\n if ($offset == null)\n {\n $this->data[] = $offset;\n }\n else\n {\n $this->data[$offset] = $value;\n }\n $this->size++;\n }", "public function offsetSet($offset, $value): void;", "final public function offsetSet($offset, $value)\n\t{\n\t\t$this->__set($offset, $value);\n\t}", "public function offsetSet($offset, $value)\n {\n $this->__set($offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n $this->__set($offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n $this->__set($offset, $value);\n }", "public function offsetSet($offset , $value) {\n $this->_items[$offset] = $value;\n }", "public function offsetSet($offset, $value)\n {\n $method = 'set' . str_replace(\" \", \"\", ucwords(strtr($offset, \"_-\", \" \")));\n if(method_exists($this, $method)){\n $this->$method($value);\n }\n }", "public function offsetSet($offset, $value)\n\t{\n\t\t// TODO: Implement offsetSet() method.\n\t}", "public function offsetSet($offset, $value)\n {\n if (is_null($offset)) {\n $this->data[] = $value;\n } else {\n $this->data[$offset] = $value;\n }\n }", "public function offsetSet($offset, $value)\n {\n if (is_null($offset)) {\n $this->data[] = $value;\n } else {\n $this->data[$offset] = $value;\n }\n }", "public function offsetSet($offset, $value)\n {\n $this->set($offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n $this->set($offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n $this->set($offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n $this->set($offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n $this->set($offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n $this->set($offset, $value);\n }", "public function offsetSet($offset,$value)\n\t{\n\t\t$this->store()->offsetSet($offset,$value);\n\t}", "public function offsetSet($offset, $value): void\n {\n $this->update($offset, $value);\n }", "public function offsetSet($offset, $value): void\n {\n }", "public function offsetSet($offset, $value)\n {\n if ($offset === null) {\n $this->data[] = $value;\n } else {\n $this->data[$offset] = $value;\n }\n }", "public function set($offset, $value): void\n {\n $this->store->set($offset, $value);\n }", "public function offsetSet($offset, $value)\n\t\t{\n\t\t\tif(is_null($offset))\n\t\t\t\t$this->source[] = $value;\n\t\t\telse\n\t\t\t\t$this->source[$offset] = $value;\n\t\t}", "public function offsetSet(mixed $offset, mixed $value)\n {\n $this->set((string) $offset, $value);\n }", "public function offsetSet($offset, $value)\n {\n\n // add the data depending an offset has been passed or not\n if (is_null($offset)) {\n $offset = apc_inc($this->serial);\n }\n\n // store the data back to the property\n $this->__set($offset, $value);\n }", "public function offsetSet($offset, $value) {\n\t\tif(!array_key_exists($offset, $this->_data)) {\n\t\t\tthrow new \\Bedrock\\Model\\Record\\Exception('The specified column \"' . $offset . '\" is not a part of this record, the value was not assigned.');\n\t\t}\n\t\t\n\t\t$this->_data[$offset] = $value;\n\t}", "public function offsetSet($offset, $value)\n {\n parent::offsetSet($offset, $value);\n $this->performHook('modified');\n }", "public function offsetSet($offset, $value): void\n {\n $items = &$this->items();\n $items[$offset] = $value;\n }", "public /*void*/ function offsetSet(/*scalar*/ $offset, /*mixed*/ $value)\n\t{\n\t\tif($offset === null) {\n\t\t\t$this->_data[] = $value;\n\t\t} else {\n\t\t\t$this->_data[$offset] = $value;\n\t\t}\n\t}", "function offsetSet($offset, $value) {\n $property = defined('static::$DOMAIN_PROPERTY') ? static::$DOMAIN_PROPERTY : 'data';\n if(!isset($this->{$property})) {\n $this->{$property} = [];\n }\n \n if (is_null($offset)) {\n $offset = 0;\n if (!empty($this->{$property})) {\n $keys = \\preg_grep( '#^(0|([1-9][0-9]*))$#', \\array_keys($this->{$property}));\n if (!empty($keys)) {\n $offset = \\max($keys) + 1;\n }\n }\n }\n\n $this->{$property}[$offset] = $value;\n }", "public function offsetSet($offset, $value)\r\n {\r\n if ( ! isset($offset)) {\r\n $this->add($value);\r\n } else {\r\n $this->set($offset, $value);\r\n }\r\n }" ]
[ "0.8670502", "0.84270954", "0.821386", "0.8191476", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.8170767", "0.81676894", "0.8118936", "0.8105677", "0.80739844", "0.80739844", "0.8055169", "0.8049614", "0.8049066", "0.8049066", "0.8049066", "0.8047941", "0.80345124", "0.8014046", "0.8012902", "0.80005074", "0.80005074", "0.79962283", "0.79962283", "0.7993535", "0.7988586", "0.79849035", "0.79569495", "0.79568005", "0.7947382", "0.7944527", "0.79422164", "0.7940082", "0.79384965", "0.7937125", "0.7935071", "0.7918337", "0.7916076", "0.7908293", "0.7908293", "0.7908293", "0.79033184", "0.78849", "0.787758", "0.7874427", "0.78388196", "0.78388196", "0.78388196", "0.78323215", "0.78242445", "0.78159875", "0.78142", "0.78142", "0.7813506", "0.7813506", "0.7813506", "0.7813506", "0.7813506", "0.7813506", "0.78095996", "0.7808172", "0.78012717", "0.779916", "0.77978307", "0.7793151", "0.7784688", "0.7784433", "0.7757673", "0.77549654", "0.77270854", "0.7702829", "0.7696581", "0.7691455" ]
0.0
-1
Serializes the object to a value that can be serialized natively by json_encode().
#[\ReturnTypeWillChange] public function jsonSerialize() : string { return \json_encode(ObjectSerializer::sanitizeForSerialization($this), JSON_THROW_ON_ERROR); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function jsonSerialize() {\n return json_encode($this->value);\n }", "public function jsonSerialize()\n {\n return $this->getValue();\n }", "public function jsonSerialize() : mixed\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize() : mixed\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize(): mixed\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize(): mixed\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "function toJSON($value);", "public function _jsonSerialize();", "#[\\ReturnTypeWillChange]\n public function jsonSerialize() {\n return $this->__toString();\n }", "final public function jsonSerialize() {}", "public function jsonSerialize()\n {\n return (string)$this;\n }", "public function SerializeObject () {\n return serialize ($this);\n }", "public function json(){ return json_encode( $this->objectify() ); }", "public static function encode($value)\n {\n if ($value instanceof Encodable) {\n return $value->encode();\n }\n\n return json_encode($value);\n }", "public function serialize() {\r\n return json_encode($this);\r\n }", "public function jsonSerialize();", "public function jsonSerialize();", "public function jsonSerialize();", "public function jsonSerialize();", "public function jsonSerialize();", "public function jsonSerialize();", "public function jsonSerialize();", "public function jsonSerialize();", "public function serialize()\n {\n return json_encode($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize():mixed\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return $this->toWei();\n }", "function encode($object) {\n if ($this->error()) {\n $this->json=json_encode($object);\n return $this->json;\n }\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "public function jsonSerialize()\n {\n return ObjectSerializer::sanitizeForSerialization($this);\n }", "function encode($value = false) {\n\t\t// Use the native function if possible\n\t\tif (function_exists('json_encode')) return json_encode($value);\n\n\t\t// Otherwise fall back on the JSON services library\n\t\t$jsonServices = $this->_getJsonServices();\n\t\treturn $jsonServices->encode($value);\n\t}", "public function serialize($value){\n return parent::serialize($value);\n }", "public function jsonEncode()\n {\n return json_encode($this->activeValue);\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\Voximplant\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\Voximplant\\ObjectSerializer::sanitizeForSerialization($this));\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\Voximplant\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\Voximplant\\ObjectSerializer::sanitizeForSerialization($this));\n }", "public function jsonSerialize()\n {\n return $this->toJson();\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\Yext\\Client\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\Yext\\Client\\ObjectSerializer::sanitizeForSerialization($this));\n }", "#[\\ReturnTypeWillChange]\n public function jsonSerialize()\n {\n return $this->formatAsString();\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\Progrupa\\Azure\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\Progrupa\\Azure\\ObjectSerializer::sanitizeForSerialization($this));\n }", "function to_json(tSerializable $object){\r\n return json_encode($object->jsonData());\r\n}", "public function toJSON(): string\n {\n $this->update();\n\n // Copied from DataObjectToJSONTrait. Do not modify here !!!\n $toJSON = function($object): string {\n $result = [];\n\n $vars = get_object_vars($object);\n foreach ($vars as $name => $value) {\n if ($name !== 'internalDataObjectData') {\n $reflectionProperty = new \\ReflectionProperty($object, $name);\n if ($reflectionProperty->isPublic()) {\n $result[$name] = null;\n }\n }\n }\n $propertiesToEncode = [];\n if (isset($object->internalDataObjectData)) {\n foreach ($object->internalDataObjectData as $name => $value) {\n $result[substr($name, 1)] = null;\n if (substr($name, 0, 1) === 'p' && isset($value[7])) { // encodeInJSON is set\n $propertiesToEncode[substr($name, 1)] = true;\n }\n }\n }\n ksort($result);\n foreach ($result as $name => $null) {\n $value = $object instanceof \\ArrayAccess ? $object[$name] : (isset($object->$name) ? $object->$name : null);\n if (method_exists($value, 'toJSON')) {\n $result[$name] = $value->toJSON();\n } else {\n if ($value instanceof \\DateTime) {\n $value = $value->format('c');\n }\n if (isset($propertiesToEncode[$name]) && $value !== null) {\n if (is_string($value)) {\n $value = 'data:;base64,' . base64_encode($value);\n } else {\n throw new \\Exception('The value of the ' . $name . ' property cannot be JSON encoded. It must be of type string!');\n }\n }\n $result[$name] = json_encode($value);\n if ($result[$name] === false) {\n throw new \\Exception('Invalid characters in ' . $name . '! Cannot JSON encode the value: ' . print_r($value, true));\n }\n }\n }\n $json = '';\n foreach ($result as $name => $value) {\n $json .= '\"' . addcslashes($name, '\"\\\\') . '\":' . $value . ',';\n }\n $json = '{' . rtrim($json, ',') . '}';\n return $json;\n };\n\n $json = '';\n foreach ($this->data as $index => $object) {\n $object = $this->updateValueIfNeeded($this->data, $index);\n if (method_exists($object, 'toJSON')) {\n $json .= $object->toJSON() . ',';\n } else {\n $json .= $toJSON($object) . ',';\n }\n }\n $json = '[' . rtrim($json, ',') . ']';\n return $json;\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\ChrisHemmings\\Electio\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\ChrisHemmings\\Electio\\ObjectSerializer::sanitizeForSerialization($this));\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) {\n return json_encode(\\Infoplus\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n } else {\n return json_encode(\\Infoplus\\ObjectSerializer::sanitizeForSerialization($this));\n }\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\Tweak\\Api\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\Tweak\\Api\\ObjectSerializer::sanitizeForSerialization($this));\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\Tweak\\Api\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\Tweak\\Api\\ObjectSerializer::sanitizeForSerialization($this));\n }", "public function serialize()\r\n\t{\r\n\t\treturn $this->getJSONString();\r\n\t}", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) {\n return json_encode(\\Nomad\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n } else {\n return json_encode(\\Nomad\\ObjectSerializer::sanitizeForSerialization($this));\n }\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\UniversityOfAdelaide\\OpenShift\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\UniversityOfAdelaide\\OpenShift\\ObjectSerializer::sanitizeForSerialization($this));\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\UniversityOfAdelaide\\OpenShift\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\UniversityOfAdelaide\\OpenShift\\ObjectSerializer::sanitizeForSerialization($this));\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\Secuconnect\\Client\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\Secuconnect\\Client\\ObjectSerializer::sanitizeForSerialization($this));\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\Secuconnect\\Client\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\Secuconnect\\Client\\ObjectSerializer::sanitizeForSerialization($this));\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\Ubo\\Client\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\Ubo\\Client\\ObjectSerializer::sanitizeForSerialization($this));\n }", "public function __toString()\n {\n if (is_array($this->value)) {\n return (string)json_encode($this->value);\n }\n return (string)$this->value;\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\CyberSource\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\CyberSource\\ObjectSerializer::sanitizeForSerialization($this));\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\CyberSource\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\CyberSource\\ObjectSerializer::sanitizeForSerialization($this));\n }", "public function __toString()\n {\n //if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n // return json_encode(\n // ObjectSerializer::sanitizeForSerialization($this),\n // JSON_PRETTY_PRINT\n // );\n //}\n\n return json_encode(ObjectSerializer::sanitizeForSerialization($this));\n }", "public function jsonSerialize()\n {\n }", "public function jsonSerialize()\n {\n }", "public function __toString()\n {\n if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print\n return json_encode(\\SquareConnect\\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);\n }\n\n return json_encode(\\SquareConnect\\ObjectSerializer::sanitizeForSerialization($this));\n }" ]
[ "0.79128116", "0.75058365", "0.72963285", "0.72963285", "0.72670996", "0.72670996", "0.7259109", "0.72524434", "0.7242914", "0.72170264", "0.7206062", "0.71979064", "0.7185794", "0.71520025", "0.71309674", "0.71147335", "0.71147335", "0.71147335", "0.71147335", "0.71147335", "0.71147335", "0.71147335", "0.71147335", "0.70953006", "0.7027744", "0.7027744", "0.70209527", "0.6998298", "0.6994017", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.69809765", "0.6973112", "0.69698805", "0.6965506", "0.69585896", "0.69585896", "0.6955428", "0.69515663", "0.69408166", "0.6939615", "0.6937194", "0.6926254", "0.6922363", "0.6917271", "0.69155073", "0.69155073", "0.69093496", "0.690924", "0.68981177", "0.68981177", "0.6893332", "0.6893332", "0.6892609", "0.68914205", "0.6889966", "0.6889966", "0.6889252", "0.6887667", "0.6887667", "0.68857116" ]
0.71841425
18
Gets a headersafe presentation of the object.
public function toHeaderValue() : string { return \json_encode(ObjectSerializer::sanitizeForSerialization($this), JSON_THROW_ON_ERROR); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getPresentation();", "public function presentHeader() {\r\n $html = parent::presentHeader();\r\n\r\n return $html;\r\n }", "\n using \\IngwiePhoenix\\UniterMPC\\Models\\Displayable;\n\n public function __toDOM() {\n return (<div>\n <p>We present to you:</p>\n <span class=\"title\">{$this->title}</div>\n </div>);\n }", "public function visualize()\n {\n \n return new StringWrapper('object('.$this->name().')');\n \n }", "protected function _toHtml()\n {\n $this->assign('headline', $this->getData('slide_headline'));\n $this->assign('content', $this->getData('slide_content'));\n\n $this->assign('med_img', $this->getData('slide_image_medium'));\n $this->assign('small_img', $this->getData('slide_image_small'));\n $this->assign('large_img', $this->getData('slide_image_large'));\n\n return parent::_toHtml();\n }", "public function getHeading(): string;", "public function present() {\n\t\t$data = [\n\t\t\t'key'=>$this->key,\n\t\t\t'team'=>$this->team,\n\t\t\t'views'=>$this->views,\n 'after'=>$this->after\n\t\t];\n\n\t\tif($this->cards !== null) {\n\t\t $data['cards'] = $this->cards;\n }\n\n\t\t$json = htmlspecialchars(json_encode($data), ENT_NOQUOTES);\n\t\treturn <<<HTML\n<div class=\"cl-trello-sprinter\" style=\"display:none\">$json</div>\t\t\nHTML;\n\t}", "public function getPreview();", "function newsroom_elated_get_header() {\n $id = newsroom_elated_get_page_id();\n\n //will be read from options\n $header_type = 'header-type3';\n $header_behavior = newsroom_elated_options()->getOptionValue('header_behaviour');\n\n if(HeaderFactory::getInstance()->validHeaderObject()) {\n $parameters = array(\n 'hide_logo' => newsroom_elated_options()->getOptionValue('hide_logo') == 'yes' ? true : false,\n 'header_in_grid' => newsroom_elated_options()->getOptionValue('header_in_grid') == 'yes' ? true : false,\n 'logo_position' => newsroom_elated_get_meta_field_intersect('logo_position',$id),\n 'show_sticky' => in_array($header_behavior, array(\n 'sticky-header-on-scroll-up',\n 'sticky-header-on-scroll-down-up'\n )) ? true : false,\n );\n\n $parameters = apply_filters('newsroom_elated_header_type_parameters', $parameters, $header_type);\n\n HeaderFactory::getInstance()->getHeaderObject()->loadTemplate($parameters);\n }\n }", "public function presenter()\n {\n return null;\n }", "public function __toString()\n { \n if (in_array($this->object->extension(), ['html', 'twig', 'md'])) {\n return $this->render();\n } else {\n return $this->content();\n }\n }", "function biagiotti_mikado_get_header() {\n\t\t$id = biagiotti_mikado_get_page_id();\n\t\t\n\t\t//will be read from options\n\t\t$header_type = biagiotti_mikado_get_meta_field_intersect( 'header_type', $id );\n\t\t\n\t\t$menu_area_in_grid = biagiotti_mikado_get_meta_field_intersect( 'menu_area_in_grid', $id );\n\t\t\n\t\t$header_behavior = biagiotti_mikado_get_meta_field_intersect( 'header_behaviour', $id );\n\t\t\n\t\tif ( HeaderFactory::getInstance()->validHeaderObject() ) {\n\t\t\t$parameters = array(\n\t\t\t\t'hide_logo' => biagiotti_mikado_options()->getOptionValue( 'hide_logo' ) == 'yes',\n\t\t\t\t'menu_area_in_grid' => $menu_area_in_grid == 'yes',\n\t\t\t\t'show_sticky' => in_array( $header_behavior, array( 'sticky-header-on-scroll-up', 'sticky-header-on-scroll-down-up' ) ),\n\t\t\t\t'show_fixed_wrapper' => in_array( $header_behavior, array( 'fixed-on-scroll' ) ),\n\t\t\t);\n\t\t\t\n\t\t\t$parameters = apply_filters( 'biagiotti_mikado_filter_header_type_parameters', $parameters, $header_type );\n\t\t\t\n\t\t\tHeaderFactory::getInstance()->getHeaderObject()->loadTemplate( $parameters );\n\t\t}\n\t}", "public function get_display() {\n return $this->view->display_handler;\n }", "public function getHtml()\n {\n if ($html = $this->forgeIframe()) return $html;\n if ($html = $this->forgeVideo()) return $html;\n if ($html = $this->forgeObject()) return $html;\n }", "public function getDisplay();", "public function presentMam()\n {\n return $this->render('static/presentation.html.twig');\n }", "function getDisplay() {\n return $this->display;\n }", "public function render()\n {\n return view('components.jet-heading');\n }", "public function show()\n {\n $imprimir = vehiculos::get();\n $pdf = PDF::loadView('vehiculos.imprimir',compact('imprimir'));\n\n return $pdf->stream();\n \n }", "public function show()\n {\n return $this->view();\n }", "function createHeader($options = array()) {\n $header = new Header( $options );\n $html = $header->html();\n return $html;\n}", "public function as_text ()\n {\n $opts = $this->context->text_options;\n \n if ($this->subject)\n {\n $pieces [] = $opts->convert_to_html_entities ($this->subject);\n }\n \n if (!empty($this->_objects))\n {\n $objs = array_reverse($this->_objects);\n $titles = null;\n \n foreach ($objs as $obj)\n {\n if (empty($titles))\n {\n // Do not truncate the first, most important title in the list\n \n $formatter = $obj->title_formatter ();\n $formatter->max_visible_output_chars = 0;\n $title = $opts->convert_to_html_entities ($obj->title_as_plain_text ($formatter));\n }\n else \n {\n $title = $opts->convert_to_html_entities ($obj->title_as_plain_text ());\n }\n \n $titles [] = $title; \n }\n \n $text = join ($this->separator, $titles);\n \n if (! empty($text))\n {\n $pieces [] = $text;\n }\n }\n\n if ($this->group)\n {\n $pieces [] = $opts->convert_to_html_entities ($this->group);\n }\n \n if (isset ($pieces))\n {\n $Result = $this->prefix . join ($this->separator, $pieces) . $this->suffix;\n }\n else\n {\n $Result = $this->prefix . $this->suffix;\n }\n \n return $Result; \n }", "public function displayData()\r\n {\r\n $htmlContent = '';\r\n $htmlContent .= html_entity_decode($this->content);\r\n return $htmlContent;\r\n }", "public function headings() {\n\t\t$vals = array_keys(get_object_vars($this));\n\t\treturn( array_reduce($vals,\n\t\t\t\tcreate_function('$a,$b','return is_null($a) ? \"$b\" : \"$a\".\"\\t\".\"$b\";')));\n\t}", "public function headings() {\n\t\t$vals = array_keys(get_object_vars($this));\n\t\treturn( array_reduce($vals, create_function('$a,$b','return is_null($a) ? \"$b\" : \"$a\".\"\\t\".\"$b\";')));\n\t}", "public function getAmfHeaders();", "public function index()\n {\n return view(\"pages.admin.specification.hdr.hdr\",$this->data);\n }", "function get_page_heading()\n {\n return $this->object->get_page_title();\n }", "public function getDisplayData()\n {\n return $this->displayData;\n }", "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 displayType(): object\n {\n return $this->displayType;\n }", "public function deliverPresentationA()\n {\n return $this->mailer->deliverPresentationA($this->data);\n }", "public function hideHeading()\n {\n return $this->withMeta(['hideHeading' => true]);\n }", "public function hideHeading()\n {\n return $this->withMeta(['hideHeading' => true]);\n }", "public function render()\n {\n return $this->toJson();\n }", "public function getEnhanced();", "public function __toString()\n {\n return $this->getTitle();\n }", "public function __toString()\n {\n return $this->getTitle();\n }", "public function toHTML() {\n\t\treturn rtrim( static::buildHTML( get_object_vars($this) ), PHP_EOL );\n\t}", "public function getDisplayable() {\n\t\treturn $this->displayable;\n\t}", "public function getDisplayable() {\n\t\treturn $this->displayable;\n\t}", "public function __toString()\n {\n return $this->view->fetch($this->template);\n }", "public function getPropertiesPreview() {\n return '';\n }", "public function get_heading() {\n\t\tif ( $this->object['voucher_count'] == 1 ) {\n\t\t\treturn apply_filters( 'woocommerce_email_heading_' . $this->id, $this->format_string( $this->heading ), $this->object );\n\t\t} else {\n\t\t\treturn apply_filters( 'woocommerce_email_heading_' . $this->id, $this->format_string( $this->heading_multiple ), $this->object );\n\t\t}\n\t}", "public function __toString()\n {\n return $this->getTitle();\n }", "public function show()\n {\n try {\n header(sprintf('Content-Type: %s', $this->getMimeType(), true));\n $this->save(null);\n } catch (\\Exception $ex) {\n header(sprintf('Content-Type: text/html'), true);\n /* rethrow it */\n throw $ex;\n }\n }", "public function create()\n {\n return view(\"pages.admin.specification.hdr.create-hdr\",$this->data);\n }", "public function toHTML();", "public function toHTML($object){\n\t\t$title = Resource::get_title($object);\n\t\t$url = Resource::get_url($object);\n\t\t$html = \"<a href='{$url}'>{$title}</a>\";\n\t\treturn $html;\n\t}", "public function header() {\n\t\tRequirements::clear();\n\n\t\t$templates = ['Grasenhiller\\WkHtmlToX\\PdfHeader'];\n\t\t$data = $this->getHeaderFooterVariables();\n\n\t\tif (isset($data['template']) && $data['template']) {\n\t\t\t$templates[] = $data['template'];\n\t\t}\n\n\t\t$this->extend('updateHeader', $templates, $data);\n\n\t\treturn $this\n\t\t\t->customise($data)\n\t\t\t->renderWith(array_reverse($templates));\n\t}", "public function display()\n {\n return $this->page->output();\n }", "function InstructorBody()\n\t{\treturn $this->instructor->MultiMediaDisplay();\n\t}", "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}", "public function show()\n\t{\n\t\treturn $this;\n\t}", "public function format_for_header()\n {\n }", "public function getHtmlResponse() {\n return \\Lib\\Format::forge($this->_response)->to_html();\n }", "function get_a($object, $html_format = true)\n{\n if (is_array($object)) {\n $content = print_r($object, true);\n } else {\n ob_start();\n var_dump($object);\n $content = ob_get_contents();\n ob_end_clean();\n }\n if ($html_format) {\n $content = \"<pre>\".htmlentities($content).\"</pre>\";\n }\n return $content;\n}", "public function getDisplayFront()\n {\n return $this->getData(self::DISPLAY_FRONT);\n }", "function getContent() {\t \r\n\t \t$content = isSet($this->headery) ? '\\headery'.round(TWIPS_IN_CM * $this->headery).' ' : '';\t \r\n\t\t$content .= '{\\\\'.$this->type.' ';\t\t\t\t\t\t\r\n\t\t$content .= parent::getContent();\r\n\t\t$content .= '\\par ';\r\n\t\t$content .= '}';\r\n\t\treturn $content.\"\\r\\n\";\r\n\t}", "public function asHtml()\n {\n return $this->asStatic();\n }", "public function getContentObject() {}", "public function getCaption() {}", "public function present()\n {\n if (! isset($this->presenterInstance)) {\n $this->presenterInstance = (new ReflectionClass($this->presenter))\n ->newInstanceArgs([$this]);\n }\n\n return $this->presenterInstance;\n }", "public function __toString()\n {\n return $this->adaptor->render();\n }", "public function header() {\r\n $html = <<<HTML\r\n\r\n <header>\r\n <p class=\"welcomeScreen\" ><img src=\"images/title.png\" alt=\"\" ></p>\r\n <h1 class=\"welcomeScreen\">$this->title</h1>\r\n </header>\r\nHTML;\r\n return $html;\r\n }", "public function presenter()\n {\n // Return empty is close presenter default transformer.\n return \"App\\\\Presenters\\\\Receipt\\\\OperatePresenter\";\n }", "public function print_header() {\n return $this->header();\n }", "private function getMenuObjectRender()\n {\n return (object)$this->getMenuArrayRender();\n }", "public function docHeaderContent() {}", "public function __toString()\n {\n return $this->make()->render();\n }", "public function show()\n {\n header('Content-Type: image/' . $this->config->mimeType);\n echo $this;\n }", "public function fieldDisplay(): FieldDisplay;", "function showHeader(){\n\t\t$header = \"\";\n\t\t// print the header row\n\t\t$header .= \"\t<tr>\\n\";\n\t\t// loop the fields\n\t\tforeach ($this->fields as $field) {\n\t\t\t// print each field\n\t\t\t$header .= \"\t\t<th>\".$field.\"</th>\\n\";\n\t\t}\n\t\t// end the header row\n\t\t$header .= \"\t</tr>\\n\";\n\t\treturn $header;\n\t}", "public function getPanose() {}", "private function _View() {\n\t \n // $this->_View;\n\t\t\t//$View = ClassRegistry::getObject('');\n\t\treturn $this->_View;\n\t}", "public function getContentObjectRenderer()\n {\n // @extensionScannerIgnoreLine\n $contentObject = $this->configurationManager->getContentObject();\n\n return $contentObject;\n }", "public function getFatContent()\n {\n return $this->fatContent;\n }", "public function getHeading()\n {\n return $this->heading;\n }", "public function toHtml();", "public function presenter()\n {\n\n return AudioPresenter::class;\n }", "public function getHeaderHTML()\n\t{\n\t\tif(!is_array($this->elements['header'])){\n\t\t\t// Headers are optional\n\t\t\treturn false;\n\t\t}\n\n\t\t# Header buttons can also be defined outside of the header key when defining modal vales.\n\t\t$this->elements['header']['buttons'] = array_merge($this->elements['header']['buttons'] ?: [], $this->buttons ?: []);\n\n\t\t# Add the required Bootstrap header class very first\n\t\t$this->elements['header']['class'] = str::getAttrArray($this->elements['header']['class'], \"modal-header\", $this->elements['header']['only_class']);\n\n\t\t# Draggable\n\t\t$this->elements['header']['class'][] = $this->draggable ? \"modal-header-draggable\" : false;\n\n\t\t# Styles\n\t\t$this->elements['header']['style'] = str::getAttrArray($this->elements['header']['style'], NULL, $this->elements['header']['only_style']);\n\n\t\t# Dropdown buttons\n\t\tif($this->elements['header']['buttons']){\n\t\t\t$buttons = Button::get($this->elements['header']);\n\t\t}\n\n\t\t# Button(s) in a row\n\t\t$button = Button::generate($this->elements['header']['button']);\n\n\t\tif($button){\n\t\t\t$button = \"<div class=\\\"btn-float-right\\\">{$button}</div>\";\n\t\t}\n\n\t\t# Accent\n\t\t$this->elements['header']['class'][] = str::getColour($this->accent, \"bg\");\n\n\t\t# Icon\n\t\tif(!$icon = Icon::generate($this->elements['header']['icon'])){\n\t\t\t//the icon attribute can either be in the header or in the main modal\n\t\t\t$icon = Icon::generate($this->icon);\n\t\t}\n\n\t\t# Badge\n\t\t$badge = Badge::generate($this->elements['header']['badge']);\n\n\t\t# ID\n\t\t$id = str::getAttrTag(\"id\", $this->elements['header']['id']);\n\n\t\t# Style\n\t\t$style = str::getAttrTag(\"style\", $this->elements['header']['style']);\n\n\t\t# Title colour\n\t\t$class[] = str::getColour($this->elements['header']['colour']);\n\n\t\t# Script\n\t\t$script = str::getScriptTag($this->elements['header']['script']);\n\n\t\t# The header title itself\n\t\t$title = $this->elements['header']['header'] . $this->elements['header']['title'] . $this->elements['header']['html'];\n\n\t\t# Title class\n\t\tif(!empty(array_filter($class))){\n\t\t\t$title_class = str::getAttrTag(\"class\", $class);\n\t\t\t$title = \"<span{$title_class}>$title</span>\";\n\t\t}\n\n\t\t# The div class\n\t\t$class = str::getAttrTag(\"class\", $this->elements['header']['class']);\n\n\t\t# If the modal can be dismissed\n\t\tif($this->dismissible !== false){\n\t\t\t$dismiss = <<<EOF\n<button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\" title=\"Close this window\"></button>\nEOF;\n\t\t}\n\n\t\treturn <<<EOF\n<div{$id}{$class}{$style}>\n\t<div class=\"container\">\n \t\t<div class=\"row\">\n \t\t<div class=\"col-auto modal-title\">\n \t\t\t{$icon}{$title}{$badge}\n \t\t</div>\n \t\t<div class=\"col\">\n \t\t\t{$buttons}{$button}{$dismiss}\n \t\t</div>\n \t</div>\n\t</div>{$script}\n</div>\nEOF;\n\t}", "public function present(){\n return new MessagePresenter($this);\n }", "public function getShowcase()\n {\n return $this->showcase;\n }", "public function getShowcase()\n {\n return $this->showcase;\n }", "function viewHeader() {\n\t$view = new viewModel(); \n\t$view->showHeader();\n}", "public function render()\n {\n if ( ! empty($this->images)) {\n $this->loadImages();\n }\n\n return $this->metas->render();\n }", "public function render()\n {\n if ($this->isEmpty()) {\n return '';\n }\n\n $attributes = array_intersect_key(get_object_vars($this), array_flip([\n 'card',\n 'site',\n 'creator',\n 'title',\n 'description',\n 'url',\n 'image0',\n 'image1',\n 'image2',\n 'image3',\n ]));\n\n return Builder::html($attributes);\n }", "public function format()\n {\n return json_decode($this->renderer->format(), false, JSON_FORCE_OBJECT);\n }", "public function getContent() {\n return $this->formatLinks($this->getTitle());\n }", "public function get_name() {\n return 'apr_modern_heading';\n }", "protected function getHeader()\n\t{\n\t\t$header = new Header();\n\t\t$header->title = $this->title;\n\t\t$header->meta(\"Content-Type\", \"text/html; charset=utf-8\", true);\n\t\t$header->meta(\"description\", $this->meta_desc, false);\n\t\t$header->meta(\"keywords\", $this->meta_key, false);\n\t\t$header->meta(\"viewport\", \"width=device-width\", false);\n\t\t$header->favicon = \"favicon.ico\";\n\t\t$header->css = array(\"/styles/main.css\", \"/styles/prettify.css\");\n\t\t$header->js = array(\"/js/jquery-1.10.2.min.js\", \"/js/functions.js\", \"/js/validator.js\", \"/js/prettify.js\");\n\n\t\treturn $header;\n\t}", "public function toHTML($object){\n\t\t$html = '<a href=\"'.get_permalink($object->ID).'\">'.$object->post_title.'</a>';\n\t\treturn $html;\n\t}", "protected function getTableHeader() {\n /** @var \\Drupal\\webform\\WebformInterface $webform */\n $webform = $this->getEntity();\n $header = [];\n $header['title'] = $this->t('Title');\n\n $header['key'] = [\n 'data' => $this->t('Key'),\n 'class' => [RESPONSIVE_PRIORITY_LOW],\n ];\n $header['type'] = [\n 'data' => $this->t('Type'),\n 'class' => [RESPONSIVE_PRIORITY_LOW],\n ];\n $header['correct_answer'] = $this->t('Answer');\n $header['weight'] = $this->t('Weight');\n $header['operations'] = $this->t('Operations');\n// $header['answer'] = [\n// 'data' => $this->t('Answer'),\n// 'class' => [RESPONSIVE_PRIORITY_LOW],\n// ];\n//\n// $header['required'] = [\n// 'data' => $this->t('Required'),\n// 'class' => ['webform-ui-element-required', RESPONSIVE_PRIORITY_LOW],\n// ];\n// $header['parent'] = $this->t('Parent');\n// $header['operations'] = [\n// 'data' => $this->t('Operations'),\n// 'class' => ['webform-ui-element-operations'],\n// ];\n return $header;\n }", "public function with()\n\t{\n\t\t$status = get_post_status();\n\t\t$title = $status !== 'auto-draft' ? get_the_title() : null;\n\n\t\treturn [\n\t\t\t'title' => get_field('title') ?: $title,\n\t\t\t'image' => get_field('image') ?: get_post_thumbnail_id()\n\t\t];\n\t}", "public function getShowTitle()\n {\n return sprintf($this->_('Showing %s'), $this->getTopic(1));\n }", "function display_header() {}", "public function render()\n {\n return $this->content;\n }", "public function render() {\n\n\t\t$result = '';\n\n\t\t// Retrieve object or array.\n\t\t$formObjectName = $this->viewHelperVariableContainer->get('TYPO3\\CMS\\Fluid\\ViewHelpers\\FormViewHelper', 'formObjectName');\n\t\tif ($this->templateVariableContainer->exists($formObjectName)) {\n\n\t\t\t$object = $this->templateVariableContainer->get($formObjectName);\n\n\t\t\tif (!empty($object)) {\n\t\t\t\t// Retrieve the property name.\n\t\t\t\t$property = $this->templateVariableContainer->get('property');\n\t\t\t\t$result = ObjectAccess::getProperty($object, $property);\n\t\t\t} else {\n\t\t\t\t// Fetch defaults from TCA\n\t\t\t\t$dataType = $this->templateVariableContainer->get('dataType');\n\t\t\t\t$property = $this->templateVariableContainer->get('property');\n\t\t\t\t$fieldName = GeneralUtility::camelCaseToLowerCaseUnderscored($property);\n\t\t\t\t$result = Tca::table($dataType)->field($fieldName)->get('default');\n\t\t\t}\n\t\t}\n\n\t\treturn $result;\n\t}", "public function buildHeader() {\n return [\n ['data' => t('Teaching format'), 'class' => ['align-middle']],\n ['data' => t('Event'), 'class' => ['align-middle']],\n ['data' => t('Tutor'), 'class' => ['align-middle']],\n ['data' => t('Location'), 'class' => ['align-middle']],\n ['data' => t('Room'), 'class' => ['align-middle']],\n [\n 'data' => t('Date/time'),\n 'field' => 'time.field_event_time_value',\n 'sort' => 'desc',\n 'class' => ['align-middle'],\n ],\n ['data' => t('Registration status'), 'class' => ['align-middle']],\n ];\n }", "public function render() {\n return [\n 'command' => 'slideCommand',\n 'action' => $this->action,\n 'bo_view_dom_id' => $this->bo_view_dom_id,\n 'entity_id' => $this->entity_id,\n ];\n }" ]
[ "0.6413742", "0.60431796", "0.5863456", "0.5586695", "0.55306524", "0.54814816", "0.5407699", "0.53856856", "0.5352012", "0.5326618", "0.5316098", "0.52931714", "0.52702653", "0.52506196", "0.52308345", "0.5219529", "0.5191985", "0.51775163", "0.51657736", "0.5151271", "0.5129568", "0.5121013", "0.51196545", "0.5094879", "0.5089494", "0.50619364", "0.50579476", "0.5053131", "0.50440013", "0.5038924", "0.5038924", "0.50301355", "0.5025621", "0.5008206", "0.5008206", "0.5004632", "0.49988228", "0.4979829", "0.4979829", "0.49780682", "0.4974712", "0.4974712", "0.49703106", "0.49642634", "0.4964038", "0.49604455", "0.4958322", "0.49575865", "0.49560264", "0.494512", "0.49450368", "0.49445912", "0.4934456", "0.4930651", "0.49281874", "0.4927222", "0.4912005", "0.4903421", "0.49015516", "0.48991308", "0.48984993", "0.4890595", "0.48879215", "0.4880991", "0.48794094", "0.48726627", "0.48645735", "0.48629993", "0.4862951", "0.4862482", "0.48620918", "0.4862074", "0.48588476", "0.48541313", "0.48540354", "0.48511717", "0.48454505", "0.48447487", "0.4842875", "0.4842752", "0.48399004", "0.48394915", "0.4838045", "0.4837877", "0.4837877", "0.48377678", "0.48348072", "0.48341575", "0.48329136", "0.48298305", "0.48258308", "0.4823919", "0.48210448", "0.48204327", "0.48184505", "0.48168173", "0.4814821", "0.48140964", "0.48136532", "0.48114905", "0.48114657" ]
0.0
-1
Display a listing of the resource.
public function 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
Store a newly created resource in storage.
public function store(Request $request){ $validator = Validator::make($request->all(), [ 'feeling' => 'required', 'knowledge' => 'required', 'activity' => 'required', 'nextdayplan' => 'required', 'goal' => 'required', 'nextdream' => 'required' ]); if ($validator->fails()) { return response()->json([ "error" => true , "statusCode" => 3 , "message"=> "can't get data", "tasks"=> [] ] , 203); }else{ try{ $uid = $request['user']->uid; $credentials = $validator->validated(); $responseData = DB::affectingStatement('CALL insertonezeroeight( ? , ? , ? , ? , ? , ? , ? )',array( $uid , $credentials['feeling'] , $credentials['knowledge'] , $credentials['activity'] , $credentials['nextdayplan'] , $credentials['goal'] , $credentials['nextdream'] )); if($responseData >0){ return response()->json([ "error"=> false, "statusCode" => 1, "message"=> "data Inserted" , "tasks"=>[] ],201); }else{ return response()->json([ "error"=> false, "statusCode" => 2, "message"=> " data not inserted" , "tasks"=> [] ],304); } }catch(\PDOException $ex){ return response()->json([ "error" => true , "statusCode" => 3 , "message"=> "can't get data", "apikey"=> [] ] , 203); } } }
{ "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
Update the specified resource in storage.
public function update(Request $request, $id) { // }
{ "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($id) { // }
{ "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
this up() migration is autogenerated, please modify it to your needs
public function up(Schema $schema) : void { $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); $this->addSql('ALTER TABLE famille ADD head_family_id INT DEFAULT NULL'); $this->addSql('ALTER TABLE famille ADD CONSTRAINT FK_2473F2134351DB49 FOREIGN KEY (head_family_id) REFERENCES user (id)'); $this->addSql('CREATE INDEX IDX_2473F2134351DB49 ON famille (head_family_id)'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "abstract protected function up();", "abstract public function up();", "abstract public function up();", "abstract public function up();", "public function up()\n {\n $this->execute(\"\n ALTER TABLE `tcmn_communication` \n CHANGE `tcmn_pprs_id` `tcmn_pprs_id` SMALLINT(5) UNSIGNED NULL COMMENT 'person',\n CHANGE `tcmn_tmed_id` `tcmn_tmed_id` TINYINT(4) UNSIGNED NULL COMMENT 'medijs';\n \");\n }", "public function up()\n {\n // This migration was removed, but fails when uninstalling plugin\n }", "public function up()\n {\n $this->execute(\"\n\n ALTER TABLE `cucp_user_company_position` \n ADD COLUMN `cucp_role` CHAR(20) NULL AFTER `cucp_name`;\n\n \");\n }", "public function up()\n\t{\n\t\t$this->dbforge->add_column($this->table, $this->field);\n\t}", "public function migrateUp()\n {\n //$this->migrate('up');\n $this->artisan('migrate');\n }", "public function up()\n {\n dbexec('ALTER TABLE #__subscriptions_coupons\n ADD `created_on` datetime DEFAULT NULL AFTER `usage`,\n ADD `created_by` bigint(11) unsigned DEFAULT NULL AFTER `created_on`,\n ADD INDEX `created_by` (`created_by`),\n ADD `modified_on` datetime DEFAULT NULL AFTER `created_by`,\n ADD `modified_by` bigint(11) unsigned DEFAULT NULL AFTER `modified_on`,\n ADD INDEX `modified_by` (`modified_by`) \n ');\n \n dbexec('ALTER TABLE #__subscriptions_vats\n ADD `created_on` datetime DEFAULT NULL AFTER `data`,\n ADD `created_by` bigint(11) unsigned DEFAULT NULL AFTER `created_on`,\n ADD INDEX `created_by` (`created_by`),\n ADD `modified_on` datetime DEFAULT NULL AFTER `created_by`,\n ADD `modified_by` bigint(11) unsigned DEFAULT NULL AFTER `modified_on`,\n ADD INDEX `modified_by` (`modified_by`) \n ');\n }", "public function up()\n\t{\n\t\t$this->dbforge->modify_column($this->table, $this->field);\n\t}", "public function safeUp()\n {\n $this->createTable(\n $this->tableName,\n [\n 'id' => $this->primaryKey(),\n 'user_id' => $this->integer(). ' UNSIGNED NOT NULL' ,\n 'source' => $this->string()->notNull(),\n 'source_id' => $this->string()->notNull(),\n ],\n 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB'\n );\n\n $this->addForeignKey('fk_social_auth_user_id_to_user_id', $this->tableName, 'user_id', '{{%user}}', 'id', 'CASCADE', 'CASCADE');\n }", "public function up()\n {\n }", "public function up()\n {\n $user = $this->table('products', ['collation' => 'utf8mb4_persian_ci', 'engine' => 'InnoDB']);\n $user\n ->addColumn('name', STRING, [LIMIT => 20])\n ->addColumn('count', STRING, [LIMIT => 75])\n ->addColumn('code', STRING, [LIMIT => 100])\n ->addColumn('buy_price', STRING, [LIMIT => 30])\n ->addColumn('sell_price', STRING, [LIMIT => 30])\n ->addColumn('aed_price', STRING, [LIMIT => 50])\n ->addTimestamps()\n ->save();\n }", "public function up()\n {\n // Drop table 'table_name' if it exists\n $this->dbforge->drop_table('lecturer', true);\n\n // Table structure for table 'table_name'\n $this->dbforge->add_field(array(\n 'nip' => array(\n \t'type' => 'VARCHAR(16)',\n\t\t\t\t'null' => true,\n\t\t\t\t'unique' => true\n\t\t\t),\n 'nik' => array(\n \t'type' => 'VARCHAR(16)',\n\t\t\t\t'null' => false,\n\t\t\t\t'unique' => true\n\t\t\t),\n 'name' => array(\n 'type' => 'VARCHAR(24)',\n 'null' => false,\n ),\n\t\t\t'id_study_program' => array(\n\t\t\t\t'type' => 'VARCHAR(24)',\n\t\t\t\t'null' => false,\n\t\t\t)\n\n ));\n $this->dbforge->add_key('nik', true);\n $this->dbforge->create_table('lecturer');\n }", "public function up()\n\t{\n\t\t// are not setting the foreign key constraint, to allow the examination module to work without the intravitreal\n\t\t// injection module being installed\n\t\t$this->addColumn('et_ophciexamination_injectionmanagementcomplex', 'left_treatment_id', 'int(10) unsigned');\n\t\t$this->addColumn('et_ophciexamination_injectionmanagementcomplex', 'right_treatment_id', 'int(10) unsigned');\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 }", "public function preUp()\n {\n }", "public function up()\n\t{\n\t\t// create the purchase_order_details table\n\t\tSchema::create('purchase_order_details', function($table) {\n\t\t\t$table->engine = 'InnoDB';\n\t\t $table->increments('id');\t\t \n\t\t $table->integer('purchase_order_id')->unsigned();//->foreign()->references('id')->on('orders');\n\t\t $table->integer('product_id')->unsigned();//->foreign()->references('id')->on('products');\n\t\t $table->integer('quantity');\t\t \t \n\t\t $table->integer('created_by')->unsigned();//->foreign()->references('id')->on('users');\t\t \n\t\t $table->integer('updated_by')->unsigned();\n\t\t $table->timestamps();\t\t \n\t\t});\t\n\t}", "public function up()\n {\n if (!$this->isEdu()) {\n return;\n }\n \n $this->edu_up();\n }", "public function up()\n\t{\t\t\n\t\tDB::table('professor')->insert(array(\n\t\t\t'user_id'=>'2',\t\t\t\n\t\t\t'created_at'=>date('Y-m-d H:m:s'),\n\t\t\t'updated_at'=>date('Y-m-d H:m:s')\n\t\t));\t\t\n\n\t\tDB::table('professor')->insert(array(\n\t\t\t'user_id'=>'3',\t\t\t\n\t\t\t'created_at'=>date('Y-m-d H:m:s'),\n\t\t\t'updated_at'=>date('Y-m-d H:m:s')\n\t\t));\n\t\t//\n\t}", "public function up()\n {\n $table = $this->table('qobo_translations_translations');\n $table->renameColumn('object_foreign_key', 'foreign_key');\n $table->renameColumn('object_model', 'model');\n $table->renameColumn('object_field', 'field');\n $table->renameColumn('translation', 'content');\n\n if (!$table->hasColumn('locale')) {\n $table->addColumn('locale', 'char', [\n 'default' => null,\n 'limit' => 6,\n ]);\n }\n $table->update();\n\n $table = TableRegistry::getTableLocator()->get(\"Translations.Translations\");\n $entities = $table->find()->all();\n foreach($entities as $entity) {\n $entity->setDirty('locale', true);\n $table->save($entity);\n }\n }", "public function up()\n {\n $this->addForeignKey('tours_fk', 'tours', 'id', 'tour_to_hotel', 'tour_id');\n\n $this->addForeignKey('t2h_fkh', 'tour_to_hotel', 'hotel_id', 'hotels', 'id');\n $this->addForeignKey('t2h_fkt', 'tour_to_hotel', 'tour_id', 'tours', 'id');\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 up()\n {\n $fields = array(\n 'first_login' => array('type' => 'char', 'constraint' => '1', 'default' => '1'),\n );\n $this->dbforge->add_column('user', $fields);\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 safeUp()\n {\n $this->alterColumn('item_keuangan', 'created_at', \"TIMESTAMP NOT NULL DEFAULT '2000-01-01 00:00:00'\");\n\n /* Tambah Field */\n $this->addColumn('item_keuangan', 'status', \"TINYINT(1) NOT NULL DEFAULT '1' COMMENT '0=tidak aktif; 1=aktif;' AFTER `jenis`\");\n }", "public function up()\n {\n $this->addForeignKey(\n 'fk_category_product_from_category',\n 'category_product',\n 'category_id',\n 'category',\n 'id',\n 'NO ACTION',\n 'NO ACTION'\n );\n\n $this->addForeignKey(\n 'fk_category_product_from_product',\n 'category_product',\n 'product_id',\n 'product',\n 'id',\n 'NO ACTION',\n 'NO ACTION'\n );\n }", "public function up()\n\t{\n\t\t$this->dropColumn('korzet','utca'); \n\t\t$this->addColumn('korzet','utca','string NOT NULL');\n\t}", "public function up()\n {\n Schema::table($this->table, function (Blueprint $table) {\n // $table->bigInteger('user_id')->default(0)->after('id'); // Example\n $table->dropColumn([\n // 'user_id', // Example\n ]);\n });\n }", "public function up()\n {\n // $this->fields()->create([]);\n // $this->streams()->create([]);\n // $this->assignments()->create([]);\n }", "public function up()\n {\n $table = $this->table('admins');\n $table->addColumn('name', 'string')\n ->addColumn('role', 'string')\n ->addColumn('username', 'string')\n ->addColumn('password', 'string')\n ->addColumn('created', 'datetime')\n ->addColumn('modified', 'datetime', ['null' => true])\n ->create();\n\n\n $data = [ \n [\n 'name' => 'Pedro Santos', \n 'username' => '[email protected]',\n 'password' => '101010',\n 'role' => 'Suporte',\n 'modified' => false\n ],\n ];\n\n $adminTable = TableRegistry::get('Admins');\n foreach ($data as $value) {\n $adminTable->save($adminTable->newEntity($value));\n }\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\t// Add data to committee-members\n\t\tDB::table('committee_members')->insert(array(\n\t\t\t'name' => 'Brian O\\'Sullivan',\n\t\t\t'role' => 'Chairman',\n\t\t\t'telephone' => '087-1234567',\n\t\t\t'email' => '[email protected]'\n\t\t));\n\t\tDB::table('committee_members')->insert(array(\n\t\t\t'name' => 'Anthony Barker',\n\t\t\t'role' => 'PRO',\n\t\t\t'telephone' => '087-1234567',\n\t\t\t'email' => '[email protected]'\n\t\t));\t\t\n\t}", "public function up()\n {\n $this->query(\"UPDATE `subscription_types` SET `user_label` = `name` WHERE `user_label` = '' OR `user_label` IS NULL;\");\n\n $this->table('subscription_types')\n ->changeColumn('user_label', 'string', ['null' => false])\n ->update();\n }", "public function safeUp()\n\t{\n $sql = <<<SQL\n alter table r add R8 inte;\nSQL;\n\t\t//$this->execute($sql);\n $sql = <<<SQL\n ALTER TABLE r ADD constraint FK_r8_elgz1 FOREIGN KEY (r8) REFERENCES elgz (elgz1) ON DELETE SET DEFAULT ON UPDATE CASCADE;\nSQL;\n //$this->execute($sql);\n\t}", "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 up()\n {\n\t\t$this->addColumn('{{%user}}', 'is_super', Schema::TYPE_SMALLINT . \"(1) NULL DEFAULT '0' AFTER `status`\");\n\t\t\n\t\t//Add new column for Option Group table\n\t\t$this->addColumn('{{%option_group}}', 'option_type', Schema::TYPE_STRING . \"(25) NULL DEFAULT 'text' AFTER `title`\");\n\t\t\n\t\t//Add new column for Order table\n\t\t$this->addColumn('{{%order}}', 'is_readed', Schema::TYPE_SMALLINT . \"(1) NULL DEFAULT '0' AFTER `shipment_method`\");\n }", "public function up()\n {\n $this->addColumn(\\backend\\models\\VodProfile::tableName(), 'language', \"char(5) not null default 'en-US'\");\n }", "public function up()\n {\n if (!Schema::hasTable($this->table))\n Schema::create($this->table, function (Blueprint $table)\n {\n $table->integer('parent_id')->unsigned()->index();\n $table->foreign('parent_id')->references('id')->on('organisations')->onDelete('restrict');\n\n $table->integer('child_id')->unsigned()->index();\n $table->foreign('child_id')->references('id')->on('organisations')->onDelete('restrict');\n\n $table->primary(['parent_id','child_id'],'organisation_relations_primary');\n\n $table->timestamps();\n $table->softDeletes();\n\n $table->engine = 'InnoDB';\n });\n }", "public function up(){\n $table = $this->table('users', array('id'=>false, 'primary_key'=>'id'));\n $table->addColumn('id', 'integer', array('identity'=>true, 'signed'=>false));\n $table->addColumn('email', 'string', array('limit'=>100));\n $table->save();\n }", "public function up() { return $this->run('up'); }", "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'l_id' => 'INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT',\n\t\t\t\t'model_id' => 'INT UNSIGNED NOT NULL',\n\t\t\t\t'lang_id' => 'VARCHAR(5) NULL DEFAULT NULL',\n\n\t\t\t\t// examples:\n\t\t\t\t'l_label' => 'VARCHAR(200) NULL DEFAULT NULL',\n\t\t\t\t'l_announce' => 'TEXT NULL DEFAULT NULL',\n\t\t\t\t//'l_content' => 'TEXT NULL DEFAULT NULL',\n\n\t\t\t\t'INDEX key_model_id_lang_id (model_id, lang_id)',\n\t\t\t\t'INDEX key_model_id (model_id)',\n\t\t\t\t'INDEX key_lang_id (lang_id)',\n\n\t\t\t\t'CONSTRAINT fk_principles_lang_model_id_to_main_model_id FOREIGN KEY (model_id) REFERENCES ' . $this->relatedTableName . ' (id) ON DELETE CASCADE ON UPDATE CASCADE',\n\t\t\t\t'CONSTRAINT fk_principles_lang_lang_id_to_language_id FOREIGN KEY (lang_id) REFERENCES {{language}} (code) ON DELETE RESTRICT ON UPDATE CASCADE',\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 up()\n\t{\n\t\t// create the purchase_orders table\n\t\tSchema::create('purchase_orders', function($table) {\n\t\t\t$table->engine = 'InnoDB';\n\t\t $table->increments('id');\n\t\t $table->string('order_number', 128);\n\t\t $table->string('approved',50);\n\t\t $table->date('purchase_date');\t\t \t \t\t \t \n\t\t $table->integer('created_by')->unsigned();//->foreign()->references('id')->on('users');\t\t \t\t \n\t\t $table->integer('updated_by')->unsigned();\t\t \n\t\t $table->timestamps();\t\t \n\t\t});\t\n\t}", "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 up()\n {\n $this->execute('Update goods SET price_rub = price WHERE currency_id = 1');\n }", "public function up()\n\t{\n $this->dropColumn('calculo','fecha');\n\n //add column fecha in producto\n $this->addColumn('producto','fecha','date');\n\t}", "public function up(){\n Schema::table('entries', function (Blueprint $table) {\n $table->renameColumn('value', 'entry_value');\n });\n }", "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 getUpSQL()\n {\n return array (\n 'default' => '\n# This is a fix for InnoDB in MySQL >= 4.1.x\n# It \"suspends judgement\" for fkey relationships until are tables are set.\nSET FOREIGN_KEY_CHECKS = 0;\n\nALTER TABLE `department_summary`\n\n CHANGE `twitter_account` `positive_twitter_account` TEXT NOT NULL,\n\n ADD `negative_twitter_account` TEXT NOT NULL AFTER `positive_twitter_account`;\n\nALTER TABLE `tweets`\n\n CHANGE `positive_twitter_account` `twitter_account` TEXT NOT NULL,\n\n DROP `negative_twitter_account`;\n\n# This restores the fkey checks, after having unset them earlier\nSET FOREIGN_KEY_CHECKS = 1;\n',\n);\n }", "public function up()\n {\n $this->db->createCommand($this->DROP_SQL)->execute();\n $this->db->createCommand($this->CREATE_SQL)->execute();\n }", "public function up()\n {\n $this->db->createCommand($this->DROP_SQL)->execute();\n $this->db->createCommand($this->CREATE_SQL)->execute();\n }", "public function safeUp()\n {\n $this->addColumn('{{%organization}}', 'legal_entity', $this->string()->null());\n $this->addColumn('{{%organization}}', 'contact_name', $this->string()->null());\n $this->addColumn('{{%organization}}', 'about', $this->text()->null());\n $this->addColumn('{{%organization}}', 'picture', $this->string()->null());\n }", "public function up()\n {\n $this->table('agent_order_consignee_address')\n ->addColumn(Column::string('order_number')->setUnique()->setComment('订单编号'))\n \t\t->addColumn(Column::integer('agent_id')->setComment('代理商ID'))\n\t ->addColumn(Column::integer('create_time')->setDefault(1)->setComment('创建时间'))\n\t \n\t ->addColumn(Column::string('consignee_name')->setComment('收货人姓名'))\n\t ->addColumn(Column::string('consignee_phone')->setComment('收货人电话'))\n\t ->addColumn(Column::string('province')->setComment('省份'))\n\t ->addColumn(Column::string('city')->setComment('城市'))\n\t ->addColumn(Column::string('area')->setComment('地区'))\n\t ->addColumn(Column::string('address')->setComment('收货人详细地址'))\n ->create(); \n }", "public function up()\n\t{\n\t\t$this->createTable(\n\t\t\t$this->tableName,\n\t\t\tarray(\n\t\t\t\t'l_id' => 'INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT',\n\t\t\t\t'model_id' => 'INT UNSIGNED NOT NULL',\n\t\t\t\t'lang_id' => 'VARCHAR(5) NULL DEFAULT NULL',\n\n\t\t\t\t'l_value' => 'TEXT NULL DEFAULT NULL',\n\n\t\t\t\t'INDEX key_model_id_lang_id (model_id, lang_id)',\n\t\t\t\t'INDEX key_model_id (model_id)',\n\t\t\t\t'INDEX key_lang_id (lang_id)',\n\n\t\t\t\t'CONSTRAINT fk_configuration_lang_model_id_to_main_model_id FOREIGN KEY (model_id) REFERENCES ' . $this->relatedTableName . ' (id) ON DELETE CASCADE ON UPDATE CASCADE',\n\t\t\t\t'CONSTRAINT fk_configuration_lang_lang_id_to_language_id FOREIGN KEY (lang_id) REFERENCES {{language}} (code) ON DELETE RESTRICT ON UPDATE CASCADE',\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 safeUp()\r\n {\r\n $this->up();\r\n }", "public function up(){\n // $table->table('kelas')\n // ->addColumn('Id', 'int', \"11\", false, null, true, true)\n // ->addColumn('NamaKelas', 'varchar', \"100\")\n // ->create();\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 safeUp()\n\t{\n\t\t$this->up();\n\t}", "public function safeUp()\n {\n $this->up();\n }", "public function safeUp()\n {\n $this->up();\n }", "public function up(){\n // $table->table('kelassiswa')\n // ->addColumn('Id', 'int', \"11\", false, null, true, true)\n // ->addColumn('Kelas_Id', 'int', \"11\")\n // ->addColumn('Peserta_Id', 'int', \"11\")\n // ->addForeignKey('Peserta_Id', 'peserta', \"Id\", \"CASCADE\")\n // ->addForeignKey('Kelas_Id', 'kelas', \"Id\")\n // ->create();\n\n }", "public function up()\n\t{\n\t\tSchema::table('project_sections', function($t){\n\t\t\t$t->integer('created_by_project_id')->nullable()->unsigned();\n\t\t\t$t->boolean('public')->default(0);\n\n $t->foreign('created_by_project_id')->references('id')->on('projects')->on_delete('SET NULL');\n\t\t});\n\t}", "public function up(){\n\t\tglobal $wpdb;\n\n\t\t$wpdb->query('ALTER TABLE `btm_tasks` ADD COLUMN `last_run` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP AFTER `date_created`;');\n\t}", "public function up()\n {\n Schema::table('user_permissions', function ($table) {\n $table->dropColumn('solder_create');\n });\n\n Schema::table('user_permissions', function ($table) {\n $table->dropColumn('solder_mods');\n });\n\n Schema::table('user_permissions', function ($table) {\n $table->dropColumn('solder_modpacks');\n });\n\n Schema::table('user_permissions', function ($table) {\n $table->boolean('solder_keys')->default(0);\n $table->boolean('solder_clients')->default(0);\n $table->boolean('modpacks_create')->default(0);\n $table->boolean('modpacks_manage')->default(0);\n $table->boolean('modpacks_delete')->default(0);\n });\n }", "public function up()\n {\n Schema::dropIfExists('db_question_new.t_answer_type');\n Schema::create('db_question_new.t_answer_type', function (Blueprint $table){\n $table->increments('id');\n t_field($table->integer('answer_type_no'),\"答案序号\");\n t_field($table->string('name'),\"步骤名字\");\n t_field($table->integer('subject'),\"科目id\");\n t_field($table->integer('open_flag')->default(1),\"开启与否\");\n }); \n }", "public function up()\n\t{\n\t\t$sql = \"create table tbl_rights\n\t\t\t\t(\n\t\t\t\t\titemname varchar(64) not null,\n\t\t\t\t\ttype integer not null,\n\t\t\t\t\tweight integer not null,\n\t\t\t\t\tprimary key (itemname),\n\t\t\t\t\tforeign key (itemname) references tbl_auth_item (name) on delete cascade on update cascade\n\t\t\t\t)\";\n\t\t $this->execute($sql);\n\t\t \n\t}", "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 up()\n {\n // add foreign key for table `articles`\n $this->addForeignKey(\n 'fk-comments-article_id',\n 'comments',\n 'article_id',\n 'article',\n 'id'\n );\n }", "public function safeUp()\r\n\t{\r\n\t\t$this->up();\r\n\t}", "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 up()\n\t{\n\t\tSchema::table('user_hasil', function($table)\n\t\t{\n\t\t\t$table->create();\n\t\t\t$table->integer('user_id');\n\t\t\t$table->string('grade', 2);\n\t\t\t$table->decimal('hasil', 5, 2);\n\t\t\t$table->year('tahun');\n\t\t\t$table->timestamps();\n\n\t\t\t$table->foreign('user_id')->references('id')->on('users')->on_update('cascade');\n\t\t});\n\t}", "public function safeUp()\r\n {\r\n $tableOptions = null;\r\n if ($this->db->driverName === 'mysql') {\r\n $tableOptions = 'CHARACTER SET utf8 COLLATE utf8_general_ci ENGINE=InnoDB';\r\n }\r\n\r\n $this->createTable('{{%contact_msg}}', [\r\n 'id' => Schema::TYPE_PK,\r\n 'from_email' => Schema::TYPE_STRING . \"(320) NOT NULL\",\r\n 'to_email' => Schema::TYPE_STRING . \"(320) NULL\",\r\n 'subject' => Schema::TYPE_STRING . \"(300) NOT NULL\",\r\n 'text' => Schema::TYPE_TEXT,\r\n 'viewed' => Schema::TYPE_BOOLEAN . \"(1) NOT NULL DEFAULT '0'\",\r\n 'created_at' => Schema::TYPE_TIMESTAMP . \" NULL\",\r\n 'updated_at' => Schema::TYPE_TIMESTAMP . \" NULL\",\r\n ], $tableOptions);\r\n }", "public function up()\n {\n $this->alterColumn('{{%hystorical_data}}', 'project_id', $this->integer());\n\n $this->dropForeignKey('fk-hystorical_data-project_id',\n '{{%hystorical_data}}');\n\n $this->addForeignKey(\n 'fk-hystorical_data-project_id',\n '{{%hystorical_data}}',\n 'project_id',\n '{{%projects}}',\n 'id',\n 'SET NULL'\n );\n }", "public function up()\n\t{\n\t\tSchema::create('flows_steps', function($table) {\n\n\t\t\t$table->engine = 'InnoDB';\n\n\t\t $table->increments('stepid');\n\t\t $table->integer('flowid');\n\t\t $table->string('step', 100);\n\t\t $table->integer('roleid');\n\t\t $table->integer('parentid');\n\t\t $table->integer('state');\n\t\t $table->integer('page');\n\t\t $table->integer('condition2');\n\t\t $table->timestamps();\n\n\t\t});\n\t}", "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 up()\n\t{\n\t\tSchema::table('devices', function($table)\n\t\t{\n\t\t\t$table->string('uuid')->unique;\n\t\t\t$table->drop_column('uid');\n\t\t});\n\t}", "public function up()\n\t{\n\t\t$this->execute(\"\n INSERT INTO `authitem` VALUES('D2finv.FiitInvoiceItem.*', 0, 'Edit invoice items', NULL, 'N;');\n INSERT INTO `authitem` VALUES('D2finv.FiitInvoiceItem.View', 0, 'View invoice items', NULL, 'N;');\n INSERT INTO `authitem` VALUES('D2finv.FinvInvoice.*', 0, 'Edit invoice records', NULL, 'N;');\n INSERT INTO `authitem` VALUES('D2finv.FinvInvoice.View', 0, 'View invoice records', NULL, 'N;');\n \n INSERT INTO `authitem` VALUES('InvoiceEdit', 2, 'Edit invoice records', NULL, 'N;');\n INSERT INTO `authitem` VALUES('InvoiceView', 2, 'View invoice records', NULL, 'N;');\n \n INSERT INTO `authitemchild` VALUES('InvoiceEdit', 'D2finv.FiitInvoiceItem.*');\n INSERT INTO `authitemchild` VALUES('InvoiceView', 'D2finv.FiitInvoiceItem.View');\n INSERT INTO `authitemchild` VALUES('InvoiceEdit', 'D2finv.FinvInvoice.*');\n INSERT INTO `authitemchild` VALUES('InvoiceView', 'D2finv.FinvInvoice.View');\n \");\n\t}", "public function up()\n {\n $this->createTable('post',[\n 'id' => $this->primaryKey(),\n 'author_id' => $this->integer(),\n 'title' => $this->string(255)->notNull()->unique(),\n 'content' => $this->text(),\n 'published_at' => $this->dateTime()->defaultExpression('CURRENT_TIMESTAMP'),\n 'updated_at' => $this->dateTime()->defaultExpression('CURRENT_TIMESTAMP'),\n 'status' => \"ENUM('draft','published')\",\n 'image' => $this->string(255)\n ]); \n\n $this->addForeignKey(\n 'fk_post_author_id',\n 'post',\n 'author_id',\n 'user',\n 'id',\n 'CASCADE',\n 'NO ACTION'\n );\n }", "public function up()\n\t{\n// $import->import();\n\t}", "public function up()\n\t{\n\t\tif(Yii::app()->db->getSchema()->getTable(\"{{rights}}\")){\n\t\t\t$this->dropTable(\"authItem\");\n\t\t}\n\n\t\t$this->createTable(\"{{rights}}\", array(\n\t\t\t\"itemname\" => \"varchar(64) CHARACTER SET UTF8 NOT NULL\",\n\t\t\t\"type\"\t => \"int not null\",\n\t\t\t\"weight\" => \"int not null\",\n\t\t\t\"PRIMARY KEY (itemname)\"\n\t\t\t));\n\t}", "public function up() {\r\n\t\t// UP\r\n\t\t$column = parent::Column();\r\n\t\t$column->setName('id')\r\n\t\t\t\t->setType('biginteger')\r\n\t\t\t\t->setIdentity(true);\r\n\t\tif (!$this->hasTable('propertystorage')) {\r\n\t\t\t$this->table('propertystorage', [\r\n\t\t\t\t\t\t'id' => false,\r\n\t\t\t\t\t\t'primary_key' => 'id'\r\n\t\t\t\t\t])->addColumn($column)\r\n\t\t\t\t\t->addColumn('path', 'text', ['limit' => 1024])\r\n\t\t\t\t\t->addColumn('name', 'text', ['limit' => 100])\r\n\t\t\t\t\t->addColumn('valuetype', 'integer',[])\r\n\t\t\t\t\t->addColumn('value', 'text', [])\r\n\t\t\t\t\t->create();\r\n\t\t}\r\n\t}", "public function up()\n {\n $perfis = [\n [\n 'id' => 1,\n 'perfil' => 'Genérico',\n 'ativo' => 1\n ]\n ];\n\n $this->insert('singular_perfil', $perfis);\n\n $usuarios = [\n [\n 'id' => 1,\n 'nome' => 'Singular Framework',\n 'login' => 'singular',\n 'senha' => 'singular',\n 'perfil_id' => 1\n ]\n ];\n\n $this->insert('singular_usuario', $usuarios);\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 }", "public function up()\n\t{\n\t\t$demoUser = new User();\n\t\t$demoUser->username = \"demo\";\n\t\t$demoUser->email = '[email protected]';\n\t\t$demoUser->password = 'password';\n\t\t$demoUser->create_time = new CDbExpression('NOW()');\n\t\t$demoUser->update_time = new CDbExpression('NOW()');\n\n\t\t$demoUser->save();\n\n\t\t$adminUser = new User();\n\t\t$adminUser->username = \"admin\";\n\t\t$adminUser->email = '[email protected]';\n\t\t$adminUser->password = 'password';\n\t\t$adminUser->create_time = new CDbExpression('NOW()');\n\t\t$adminUser->update_time = new CDbExpression('NOW()');\n\n\t\t$adminUser->save();\n\n\t}", "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 safeUp()\n\t{\n\t\t$this->createTable(\n\t\t\t'like',\n\t\t\tarray(\n\t\t\t\t'id'=>'int(11) UNSIGNED NOT NULL AUTO_INCREMENT',\n\t\t\t\t'user_id' => 'int(11) UNSIGNED NOT NULL',\n\t\t\t\t'post_id' => 'int (11) NOT NULL',\n\t\t\t\t'status' => 'TINYINT(1)',\n\t\t\t\t'created_at' => 'int(11)',\n\t\t\t\t'updated_at' => 'int(11)',\n\t\t\t\t'PRIMARY KEY (id)',\n\t\t\t\t),\n\t\t\t'ENGINE=InnoDB'\n\n\t\t\t);\n\t}", "public function up()\n\t{\n\t\tSchema::table('entries', function($table) {\n $table->create();\n $table->increments('id');\n $table->string('title', 128);\n $table->string('body');\n $table->integer('users_id')->unsigned();\n $table->index('users_id');\n $table->integer('last_edited_by');\n $table->foreign('users_id')->references('id')->on('users')->on_delete('no action');\n $table->timestamps();\n });\n\t}", "public function up()\n {\n $this->alterColumn(\\app\\models\\EmailImportLead::tableName(), 'password', $this->string()->null());\n $this->alterColumn(\\app\\models\\EmailImportLead::tableName(), 'status', $this->integer()->null());\n }", "public function up()\n {\n\t\t$tableOptions = null;\n if ($this->db->driverName === 'mysql') {\n $tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB';\n }\n\t\t\n\t\t$TABLE_NAME = 'HaberDeneme12';\n $this->createTable($TABLE_NAME, [\n 'HaberID' => $this->integer(10)->notNull(),\n 'Kategori' => $this->string(12)->notNull(),\n 'Baslik' => $this->string(128)->notNull(),\n 'Ozet' => $this->text()->notNull(),\n 'Detay' => $this->text()->notNull(),\n 'Resim' => $this->text()->notNull(),\n 'EklenmeTarihi' => $this->date(),\n 'GuncellenmeTarihi' => $this->date()\n ], $tableOptions);\n\t\t\n\t\t\n\t\t$TABLE_NAME = 'HaberKategoriDeneme12';\n\t\t $this->createTable($TABLE_NAME, [\n 'KategoriID' => $this->integer(10)->notNull(),\n 'Kategori' => $this->string(20)->notNull()\n ], $tableOptions);\n\t\t\n }", "public function up()\n\t{\n\t\t$fields = array(\n \"`piezas` DECIMAL(3,2) DEFAULT NULL\",\n\n\t\t);\n\t\t$this->dbforge->add_column('rel_monto_servicios', $fields);\n\n\t}", "public function up()\n {\n $this->insert('key_value', [\n 'key' => 'day_feed_count_dnr',\n 'value' => '15',\n ]);\n }", "public function up()\n {\n // 创建操作记录表\n $tables = $this->table('history');\n // 用户动作\n $tables->addColumn('action', 'string', ['limit' => 20])\n ->addColumn('ip', 'string', ['limit' => 129])\n // 建立用户\n ->addColumn('user_id', 'integer')\n // 登录时间\n ->addColumn('operation_time', 'datetime')\n // 操作详情\n ->addColumn('desc', 'string',['limit'=>500,'null' => true])\n ->create();\n }", "public function up()\n {\n $table = $this->table('vehicle_model_suggestions');\n\n if (!$table->exists()) {\n $table\n ->addPrimaryKey('id')\n ->addColumn('vehicle_id', 'integer', ['null' => false])\n ->addColumn('vehicle_model_id', 'integer', ['null' => false])\n ->addColumn('suggestion', 'text')\n ->addTimestamps()\n ->addColumn('deleted_at', 'datetime')\n ->create();\n }\n }", "public function safeUp()\n {\n $this->insert('category',['name'=>'Uncategorized', 'slug'=>'uncategorized', 'description'=>'Default Category', 'created_at'=> new Expression('NOW()'),\n 'updated_at'=> new Expression('NOW()')]);\n $this->insert('user',['username'=>'Administrator', 'password_hash'=>'$2y$13$6yoLjvVORp/7EO1u8phYTuWYzhMSM4LVVsebZgcqEKj/EQLvo5nJK',\n 'email'=>'[email protected]',\n 'created_at'=> new Expression('NOW()'),\n 'updated_at'=> new Expression('NOW()'),\n 'status'=>1\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 up()\n {\n Schema::table('categories', function(Blueprint $table)\n {\n $table->integer('parent_id', false, true)->nullable()->after('cat_order');\n });\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 up()\n\t{\n\t\t//\n\t\tSchema::create('options',function($table){\n\t\t\t$table->increments('id');\n\t\t\t$table->boolean('activate_pn');\n\t\t\t$table->string('basic_name');\n\t\t\t$table->string('basic_pass');\n\t\t\t$table->timestamps();\n\t\t});\n\n\t\t$o = new Option;\n\t\t$o->activate_pn = 0;\n\t\t$o->save();\n\t}", "public function up() {\n\t\t$this->dbforge->add_field(array(\n\t\t\t'id' => array(\n\t\t\t\t'type' => 'INT',\n\t\t\t\t'constraint' => '10',\n\t\t\t\t'unsigned' => TRUE,\n\t\t\t\t'auto_increment' => TRUE\n\t\t\t),\n\t\t\t'name' => array(\n\t\t\t\t'type' => 'VARCHAR',\n\t\t\t\t'constraint' => '100',\n\t\t\t),\n\t\t\t'path' => array(\n\t\t\t\t'type' => 'VARCHAR',\n\t\t\t\t'constraint' => '100',\n\t\t\t)\n\t\t));\n\t\t$this->dbforge->add_key('id', TRUE);\n\t\t$this->dbforge->add_key('path');\n\t\t$this->dbforge->create_table('categories');\n\n\t\t// Table structure for table 'event_categories'\n\t\t$this->dbforge->add_field(array(\n\t\t\t'event_id' => array(\n\t\t\t\t'type' => 'INT',\n\t\t\t\t'constraint' => '10',\n\t\t\t),\n\t\t\t'category_id' => array(\n\t\t\t\t'type' => 'INT',\n\t\t\t\t'constraint' => '10',\n\t\t\t\t'unsigned' => TRUE,\n\t\t\t),\n\t\t));\n\t\t$this->dbforge->add_key('event_id', TRUE);\n\t\t$this->dbforge->add_key('category_id', TRUE);\n\t\t$this->dbforge->create_table('event_categories');\n\t}", "public function up()\n\t{\n Laravel\\Database\\Schema::create(\"orbs\", function($table){\n $table->increments(\"id\");\n $table->string(\"name\");\n $table->string(\"description\");\n $table->integer(\"coins\");\n $table->integer(\"points\");\n $table->integer(\"min_level\");\n $table->integer(\"max_level\");\n $table->integer(\"owner_character\");\n $table->integer(\"acquisition_time\");\n $table->integer(\"last_attacker\");\n $table->integer(\"last_attack_time\");\n $table->string(\"image\");\n });\n\t}" ]
[ "0.80062366", "0.79145443", "0.79145443", "0.79145443", "0.7572342", "0.756089", "0.75283176", "0.7498379", "0.7493237", "0.7453656", "0.74463314", "0.7433381", "0.74307704", "0.7427088", "0.741794", "0.73779047", "0.7374933", "0.7370453", "0.73637444", "0.73505706", "0.7329024", "0.7313519", "0.7298817", "0.72950184", "0.72917736", "0.7291469", "0.72913444", "0.72849613", "0.72839737", "0.7272078", "0.7271878", "0.72659117", "0.7262893", "0.7261672", "0.7256839", "0.72505474", "0.7249633", "0.72441125", "0.724062", "0.72376186", "0.7218244", "0.72177947", "0.72046006", "0.7203395", "0.7196059", "0.7191219", "0.7189963", "0.7177052", "0.71761394", "0.7167738", "0.7164105", "0.7164105", "0.7159096", "0.7147647", "0.7136521", "0.7129768", "0.7124664", "0.7123368", "0.71168584", "0.7104628", "0.7104628", "0.7104618", "0.7097006", "0.70931643", "0.70886755", "0.7087018", "0.7086326", "0.70830804", "0.70829463", "0.70780045", "0.70702124", "0.70690626", "0.7066111", "0.7062268", "0.7058938", "0.705882", "0.70556235", "0.70549136", "0.7054758", "0.70498437", "0.70483595", "0.7047308", "0.7045881", "0.70445794", "0.7043173", "0.703882", "0.7038126", "0.703674", "0.7033728", "0.7032356", "0.7031423", "0.70257956", "0.70142514", "0.70101255", "0.7006208", "0.6988486", "0.6984963", "0.69629973", "0.69612974", "0.69587934", "0.6957519" ]
0.0
-1
this down() migration is autogenerated, please modify it to your needs
public function down(Schema $schema) : void { $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); $this->addSql('ALTER TABLE famille DROP FOREIGN KEY FK_2473F2134351DB49'); $this->addSql('DROP INDEX IDX_2473F2134351DB49 ON famille'); $this->addSql('ALTER TABLE famille DROP head_family_id'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function down()\n {\n //add your migration here \n }", "public function down()\n {\n //add your migration here\n }", "public function down()\n\t{\n $this->dropColumn('producto','fecha');\n\n //add column fecha in producto\n $this->addColumn('calculo','fecha','date');\n\t}", "public function down()\n {\n \t\n \t$this->createTable('os', [\n \t\t\t'id' => Schema::TYPE_PK,\n \t\t\t'name' => Schema::TYPE_STRING . ' NOT NULL',\n \t\t\t]);\n \t$this->insert('os', ['id' => 1, 'name' => 'Any']);\n \t$this->insert('os', ['id' => 2, 'name' => 'CentOS']);\n \t$this->insert('os', ['id' => 3, 'name' => 'RHEL']);\n \t$this->insert('os', ['id' => 4, 'name' => 'Fedora']);\n \t \n \t$this->createTable('os_bit', [\n \t\t\t'id' => Schema::TYPE_PK,\n \t\t\t'name' => Schema::TYPE_STRING . ' NOT NULL',\n \t\t\t]);\n\n return false;\n }", "public function down()\n {\n //Schema::dropIfExists('c');//回滚时执行\n\n }", "public function down()\n {\n $this->dbforge->drop_column('user', 'created_at');\n }", "public function down()\n {\n $this->dropForeignKey(\n 'fk-video-blog_id',\n 'video'\n );\n\n\n echo \"m160820_150846_video_create reverted.\\n\";\n\n }", "public function down()\n\t{\nDB::query(\n\"drop table haal;\");\nDB::query(\n\"drop table kandidaat;\");\nDB::query(\n\"drop table haaletaja;\");\nDB::query(\n\"drop table partei;\");\nDB::query(\n\"drop table valimisringkond;\");\n\t}", "public function down()\n\t{\n\t\t// Remove data from committee_members\n\t\tDB::table('committee_members')->where('id', '<', 3)->delete();\t\n\t}", "public function down(){\n $this->dropTable('users');\n }", "public function getDownSQL()\n {\n return array (\n 'default' => '\n# This is a fix for InnoDB in MySQL >= 4.1.x\n# It \"suspends judgement\" for fkey relationships until are tables are set.\nSET FOREIGN_KEY_CHECKS = 0;\n\nALTER TABLE `department_summary`\n\n CHANGE `positive_twitter_account` `twitter_account` TEXT NOT NULL,\n\n DROP `negative_twitter_account`;\n\nALTER TABLE `tweets`\n\n CHANGE `twitter_account` `positive_twitter_account` TEXT NOT NULL,\n\n ADD `negative_twitter_account` INTEGER NOT NULL AFTER `quality_tweet`;\n\n# This restores the fkey checks, after having unset them earlier\nSET FOREIGN_KEY_CHECKS = 1;\n',\n);\n }", "public function down()\n {\n Schema::table('attachments', function(Blueprint $table) {\n\n $table->dropColumn('viewable_id');\n $table->dropColumn('viewable_type');\n\n\n });\n }", "public function down()\n\t{\n\t\t//Schema::drop('purchase_order_details');\n\t}", "public function getDownSQL()\r\n {\r\n return array (\n 'propel' => '\r\n# This is a fix for InnoDB in MySQL >= 4.1.x\r\n# It \"suspends judgement\" for fkey relationships until are tables are set.\r\nSET FOREIGN_KEY_CHECKS = 0;\r\n\r\nDROP TABLE IF EXISTS `movimiento`;\r\n\r\n# This restores the fkey checks, after having unset them earlier\r\nSET FOREIGN_KEY_CHECKS = 1;\r\n',\n);\r\n }", "public function down()\n\t{\n//\t\t$this->dbforge->drop_table('blog');\n\n//\t\t// Dropping a Column From a Table\n\t\t$this->dbforge->drop_column('categories', 'icon');\n\t}", "public function down()\n\t{\n\t\t// nothing to do here.\n\t}", "public function down(){\r\n $this->dbforge->drop_table('users'); //eliminacion de la tabla users\r\n }", "public function down()\n\t{\n\t\tSchema::drop('student');\n\t\t//\n\t}", "public function down()\n{\n\nSchema::drop('event_user');\nSchema::drop('events');\nSchema::drop('file');\nSchema::drop('file_ref');\nSchema::drop('groups');\nSchema::drop('project_user');\nSchema::drop('projects');\nSchema::drop('quicknote');\nSchema::drop('subtasks');\nSchema::drop('task_user');\nSchema::drop('tasks');\nSchema::drop('throttle');\nSchema::drop('timesheet');\nSchema::drop('todos');\nSchema::drop('user_profile');\nSchema::drop('users');\nSchema::drop('users_groups');\nSchema::drop('users_groups');\nSchema::drop('users_groups');\nSchema::drop('users_groups');\nSchema::drop('users_groups');\nSchema::drop('users_groups');\nSchema::drop('users_groups');\nSchema::drop('users_groups');\nSchema::drop('users_groups');\n\n}", "public function down() \n {\n \n }", "public function down()\n\t{\n\t}", "public function down()\n\t{\n\t}", "public function down()\n {\n $this->table('contents')->drop()->save();\n }", "public function down()\n\t{\n\t\t//\n\t}", "public function down()\n\t{\n\t\t//\n\t}", "public function down()\n\t{\n\t\t//\n\t}", "public function down()\n\t{\n\t\tSchema::drop('education');\n\t}", "public function down()\n\t{\n\t\tSchema::drop('l_wardrobe_table');\n\t}", "public function down()\n\t{\n\t\techo $this->migration('down');\n\n\t\tci('o_role_model')->migration_remove($this->hash());\n\t\t\n\t\treturn true;\n\t}", "public function safeDown()\n\t{\n $sql=\" ALTER TABLE `tbl_venta` DROP `punto_venta_id` ;\";\n $this->execute($sql);\n //quitando la columna pto_venta de tbl_empleado\n $sql=\" ALTER TABLE `tbl_empleado` DROP `punto_venta_id` ;\";\n $this->execute($sql);\n\t}", "public function down()\n {\n\tSchema::drop('quizzes');\n }", "public function down()\n {\n $this->output->writeln('Down migration is not available.');\n }", "public function down()\n {\n $this->executeSQL('SET FOREIGN_KEY_CHECKS=0');\n\n $this->executeSQL('DROP TABLE link');\n $this->executeSQL('DROP TABLE link_category');\n\n $this->executeSQL('SET FOREIGN_KEY_CHECKS=1');\n }", "public function down ()\n {\n }", "abstract public function down();", "abstract public function down();", "abstract public function down();", "public function down()\n {\n // This migration was removed, but fails when uninstalling plugin\n }", "public function down()\r\n {\r\n $this->dbforge->drop_table('users');\r\n }", "public function down() {\n\n\t}", "public function down()\n {\n $this->dbforge->drop_table('lecturer', true);\n }", "public function down()\n\t{\n\t\tSchema::drop('flows_steps');\n\t}", "public function down(Schema $schema) : void\n {\n $this->addSql('CREATE TABLE galaxiee (id INT AUTO_INCREMENT NOT NULL, idu_id INT NOT NULL, nom VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, INDEX IDX_8576D2AF376A6230 (idu_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB COMMENT = \\'\\' ');\n $this->addSql('CREATE TABLE trou_noir (id INT AUTO_INCREMENT NOT NULL, id_g_id INT DEFAULT NULL, nom VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, INDEX IDX_AB27242D95951086 (id_g_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB COMMENT = \\'\\' ');\n $this->addSql('ALTER TABLE galaxiee ADD CONSTRAINT FK_8576D2AF376A6230 FOREIGN KEY (idu_id) REFERENCES univers (id)');\n $this->addSql('ALTER TABLE trou_noir ADD CONSTRAINT FK_AB27242D95951086 FOREIGN KEY (id_g_id) REFERENCES galaxie (id)');\n $this->addSql('DROP TABLE trounoir');\n $this->addSql('ALTER TABLE galaxie DROP FOREIGN KEY FK_1C880711376A6230');\n $this->addSql('DROP INDEX IDX_1C880711376A6230 ON galaxie');\n $this->addSql('ALTER TABLE galaxie CHANGE idu_id id_u_id INT NOT NULL');\n $this->addSql('ALTER TABLE galaxie ADD CONSTRAINT FK_1C8807116F858F92 FOREIGN KEY (id_u_id) REFERENCES univers (id)');\n $this->addSql('CREATE INDEX IDX_1C8807116F858F92 ON galaxie (id_u_id)');\n $this->addSql('ALTER TABLE planete DROP FOREIGN KEY FK_490E3E5712013DEC');\n $this->addSql('DROP INDEX IDX_490E3E5712013DEC ON planete');\n $this->addSql('ALTER TABLE planete ADD id_s_id INT NOT NULL, ADD nb_sattelite INT NOT NULL, DROP ids_id, DROP nb_satelite');\n $this->addSql('ALTER TABLE planete ADD CONSTRAINT FK_490E3E574AEED04E FOREIGN KEY (id_s_id) REFERENCES systeme (id)');\n $this->addSql('CREATE INDEX IDX_490E3E574AEED04E ON planete (id_s_id)');\n $this->addSql('ALTER TABLE systeme DROP FOREIGN KEY FK_95796DE3CD7AFD24');\n $this->addSql('DROP INDEX IDX_95796DE3CD7AFD24 ON systeme');\n $this->addSql('ALTER TABLE systeme CHANGE idg_id id_g_id INT NOT NULL');\n $this->addSql('ALTER TABLE systeme ADD CONSTRAINT FK_95796DE395951086 FOREIGN KEY (id_g_id) REFERENCES galaxie (id)');\n $this->addSql('CREATE INDEX IDX_95796DE395951086 ON systeme (id_g_id)');\n }", "public function down() {\n $this->dbforge->drop_column('timesheets_items', 'orgID', TRUE);\n $this->dbforge->drop_column('timesheets_items', 'brandID', TRUE);\n $this->dbforge->drop_column('timesheets_items', 'reason_desc', TRUE);\n $this->dbforge->drop_column('timesheets_expenses', 'orgID', TRUE);\n $this->dbforge->drop_column('timesheets_expenses', 'brandID', TRUE);\n $this->dbforge->drop_column('timesheets_expenses', 'reason_desc', TRUE);\n\n // change reason to note\n $fields = array(\n 'reason' => array(\n 'name' => 'note',\n 'type' => \"VARCHAR\",\n 'constraint' => 200,\n 'null' => TRUE\n )\n );\n $this->dbforge->modify_column('timesheets_items', $fields);\n $this->dbforge->modify_column('timesheets_expenses', $fields);\n }", "public function down(): void\n {\n // Remove your data\n }", "public function down()\n\t{\n\t\t//Schema::drop('purchase_orders');\n\t\t//Schema::drop('purchase_order_details');\n\t}", "public function down()\n {\n\tSchema::drop('activities');\n }", "public function down(){\n $this->dbforge->drop_table('subcategories_news'); //eliminacion de la tabla subcategories_news\n }", "public function down()\n {\n }", "public function down()\n {\n }", "public function down()\n {\n //return false;\n\t\t\n\t\t$TABLE_NAME = 'Haber';\n $this->dropTable($TABLE_NAME);\n\t\t\n\t\t$TABLE_NAME = 'HaberKategori';\n $this->dropTable($TABLE_NAME);\n }", "public function down()\n\t{\n\t\tDB::table('professor')->where('professor_id', '=', 1)->delete();\n\t\tDB::table('professor')->where('professor_id', '=', 2)->delete();\n\t\tDB::query('ALTER TABLE professor AUTO_INCREMENT = 1');\n\n\t\t//\n\t}", "public function down(): bool {\n\t\t// Remove & add logic to revert the migration here.\n\t\techo \"M230123030315BaseTables cannot be rolled back.\\n\";\n\t\treturn false;\n\t}", "public function getDownSQL()\r\n {\r\n return array (\n 'propel' => '\r\n# This is a fix for InnoDB in MySQL >= 4.1.x\r\n# It \"suspends judgement\" for fkey relationships until are tables are set.\r\nSET FOREIGN_KEY_CHECKS = 0;\r\n\r\nALTER TABLE `promocion` CHANGE `fecha_inicio` `fecha_inicio` DATE NOT NULL;\r\n\r\nALTER TABLE `promocion` CHANGE `fecha_fin` `fecha_fin` DATE NOT NULL;\r\n\r\nALTER TABLE `promocion` CHANGE `descuento` `descuento` DECIMAL;\r\n\r\nALTER TABLE `promocion`\r\n ADD `descripcion` VARCHAR(70) AFTER `id`,\r\n ADD `estado` VARCHAR(11) AFTER `fecha_fin`,\r\n ADD `promocion_global` TINYINT(1) NOT NULL AFTER `descuento`;\r\n\r\nALTER TABLE `promocion` DROP `activo`;\r\n\r\n# This restores the fkey checks, after having unset them earlier\r\nSET FOREIGN_KEY_CHECKS = 1;\r\n',\n);\r\n }", "public function down()\n\t{\n\t\t//return false;\n\t}", "public function down(): void\n {\n try {\n $this->db->ForeignKeyChecks(false);\n $statement=$this->db->prepare(\"DROP TABLE IF EXISTS prom2_pages\");\n $statement->execute();\n $statement->close();\n $this->db->ForeignKeyChecks(true);\n } catch (\\mysqli_sql_exception $exception) {\n throw $exception;\n }\n }", "public function down()\n\t{\n\t\t//\n\t\tSchema::drop('options');\n\t}", "public function change()\n {\n $this->schema->table('recurring_expenses',function($table){\n $table->date('end_repeat')->nullable();\n $table->boolean('ended')->default(false);\n $table->enum('repeat',['0','1','7','14','30','365'])->nullable();\n });\n\n $this->schema->table('expenses',function($table){\n $table->dropColumn('end_repeat');\n $table->dropColumn('repeat');\n $table->integer('parent_id')->nullable();\n $table->foreign('parent_id')->references('id')->on('expenses')->onDelete('cascade');\n });\n }", "public function down()\n {\n Schema::table('users', function (Blueprint $table) {\n $table->dropForeign('users_id_turma_foreign');\n });\n\n Schema::table('contato', function (Blueprint $table) {\n $table->dropForeign('contato_id_usuario_foreign');\n });\n\n Schema::table('monitores', function (Blueprint $table) {\n $table->dropForeign('monitores_id_turma_foreign');\n $table->dropForeign('monitores_id_usuario_foreign');\n });\n\n Schema::table('galeria_portifolio', function (Blueprint $table) {\n $table->dropForeign('galeria_portifolio_id_portifolio_foreign');\n });\n\n Schema::table('portifolio_alunos', function (Blueprint $table) {\n $table->dropForeign('portifolio_alunos_id_portifolio_foreign');\n $table->dropForeign('portifolio_alunos_id_usuario_foreign');\n });\n\n Schema::table('cobranca', function (Blueprint $table) {\n $table->dropForeign('cobranca_id_aluno_foreign');\n });\n\n Schema::table('lista_de_presenca', function (Blueprint $table) {\n $table->dropForeign('lista_de_presenca_id_usuario_foreign');\n });\n\n Schema::table('forum_da_turma', function (Blueprint $table) {\n $table->dropForeign('forum_da_turma_id_usuario_foreign');\n });\n\n Schema::table('posts_do_site', function (Blueprint $table) {\n $table->dropForeign('posts_do_site_id_usuario_foreign');\n });\n\n Schema::table('posts_do_forum', function (Blueprint $table) {\n $table->dropForeign('posts_do_forum_id_topico_foreign');\n $table->dropForeign('posts_do_forum_id_usuario_foreign');\n });\n }", "public function down()\n\t{\n\t\t$this->dropForeignKey('FK_task_creator','tbl_task');\n\n\t\t$this->dropTable('tbl_task');\n\t}", "public function down(){\n\t\tSchema::dropIfExists('cargo');\n\t}", "public function down()\n {\n $this->table('articles')->drop()->save();\n $this->table('categories')->drop()->save();\n $this->table('football_ragistrations')->drop()->save();\n $this->table('friends')->drop()->save();\n $this->table('menus')->drop()->save();\n $this->table('picnic_ragistrations')->drop()->save();\n $this->table('products')->drop()->save();\n $this->table('profiles')->drop()->save();\n $this->table('skills')->drop()->save();\n $this->table('spouses')->drop()->save();\n $this->table('students')->drop()->save();\n $this->table('submenus')->drop()->save();\n $this->table('users')->drop()->save();\n }", "public function down()\n {\n $this->table('users')\n ->dropForeignKey(\n 'role_id'\n )->save();\n\n $this->table('users')\n ->removeIndexByName('FK_users_roles')\n ->update();\n\n $this->table('users')\n ->addColumn('can_edit', 'boolean', [\n 'after' => 'enabled',\n 'default' => '0',\n 'length' => null,\n 'null' => false,\n ])\n ->removeColumn('role_id')\n ->update();\n\n $this->table('stundenplan')\n ->changeColumn('note', 'string', [\n 'default' => null,\n 'length' => 255,\n 'null' => true,\n ])\n ->removeColumn('loggedInNote')\n ->update();\n\n $this->table('roles')->drop()->save();\n }", "public function down()\n\t{\n\t\t//\n\t\tDB::query('TRUNCATE TABLE app_user_apps_publishes CASCADE');\n\t\tDB::query('TRUNCATE TABLE app_apps_fbapps CASCADE');\n\t\tDB::query('TRUNCATE TABLE app_apps_applications CASCADE');\n\t}", "public function down()\n\t{\n\t\t// Drop Table\n\t\tSchema::drop('activities_types');\n\t}", "protected abstract function do_down();", "public function down(Schema $schema) : void\n {\n $this->addSql('CREATE TABLE encherir_acheteur (encherir_id INT NOT NULL, acheteur_id INT NOT NULL, INDEX IDX_41ABAAFBB0BA17BB (encherir_id), INDEX IDX_41ABAAFB96A7BB5F (acheteur_id), PRIMARY KEY(encherir_id, acheteur_id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB COMMENT = \\'\\' ');\n $this->addSql('CREATE TABLE encherir_lot (encherir_id INT NOT NULL, lot_id INT NOT NULL, INDEX IDX_3C56919BB0BA17BB (encherir_id), INDEX IDX_3C56919BA8CBA5F7 (lot_id), PRIMARY KEY(encherir_id, lot_id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB COMMENT = \\'\\' ');\n $this->addSql('ALTER TABLE encherir_acheteur ADD CONSTRAINT FK_41ABAAFB96A7BB5F FOREIGN KEY (acheteur_id) REFERENCES acheteur (id) ON DELETE CASCADE');\n $this->addSql('ALTER TABLE encherir_acheteur ADD CONSTRAINT FK_41ABAAFBB0BA17BB FOREIGN KEY (encherir_id) REFERENCES encherir (id) ON DELETE CASCADE');\n $this->addSql('ALTER TABLE encherir_lot ADD CONSTRAINT FK_3C56919BA8CBA5F7 FOREIGN KEY (lot_id) REFERENCES lot (id) ON DELETE CASCADE');\n $this->addSql('ALTER TABLE encherir_lot ADD CONSTRAINT FK_3C56919BB0BA17BB FOREIGN KEY (encherir_id) REFERENCES encherir (id) ON DELETE CASCADE');\n $this->addSql('ALTER TABLE encherir DROP FOREIGN KEY FK_503B7C878EB576A8');\n $this->addSql('ALTER TABLE encherir DROP FOREIGN KEY FK_503B7C878EFC101A');\n $this->addSql('DROP INDEX IDX_503B7C878EB576A8 ON encherir');\n $this->addSql('DROP INDEX IDX_503B7C878EFC101A ON encherir');\n $this->addSql('ALTER TABLE encherir DROP id_acheteur_id, DROP id_lot_id');\n }", "public function down()\n {\n $this->table('accounting_entries')\n ->dropForeignKey(\n 'accounting_entry_type_id'\n )\n ->dropForeignKey(\n 'association_id'\n )->save();\n\n $this->table('associations_events')\n ->dropForeignKey(\n 'event_id'\n )\n ->dropForeignKey(\n 'association_id'\n )->save();\n\n $this->table('events')\n ->dropForeignKey(\n 'event_type_id'\n )->save();\n\n $this->table('members')\n ->dropForeignKey(\n 'association_id'\n )->save();\n\n $this->table('statistics')\n ->dropForeignKey(\n 'statistics_type_id'\n )\n ->dropForeignKey(\n 'association_id'\n )->save();\n\n $this->table('statistics_event')\n ->dropForeignKey(\n 'statistics_id'\n )\n ->dropForeignKey(\n 'event_id'\n )->save();\n\n $this->table('users')\n ->dropForeignKey(\n 'role_id'\n )\n ->dropForeignKey(\n 'association_id'\n )->save();\n\n $this->table('accounting_entries')->drop()->save();\n $this->table('accounting_entry_type')->drop()->save();\n $this->table('associations')->drop()->save();\n $this->table('associations_events')->drop()->save();\n $this->table('event_type')->drop()->save();\n $this->table('events')->drop()->save();\n $this->table('members')->drop()->save();\n $this->table('roles')->drop()->save();\n $this->table('statistics')->drop()->save();\n $this->table('statistics_event')->drop()->save();\n $this->table('statistics_type')->drop()->save();\n $this->table('users')->drop()->save();\n }", "public function down()\n\t{\n\t\tif(Yii::app()->db->getSchema()->getTable(\"{{user_block}}\")){\n\t\t\t$this->dropTable(\"{{user_block}}\");\n\t\t}\n\n\t}", "public function getDownSQL()\n {\n return array (\n 'default' => '\n# This is a fix for InnoDB in MySQL >= 4.1.x\n# It \"suspends judgement\" for fkey relationships until are tables are set.\nSET FOREIGN_KEY_CHECKS = 0;\n\nDROP TABLE IF EXISTS `user_login`;\n\nALTER TABLE `user` DROP `user_mname`;\n\nALTER TABLE `user` DROP `user_user`;\n\nALTER TABLE `user` DROP `user_password`;\n\nALTER TABLE `user` DROP `user_date_lastlogin`;\n\n# This restores the fkey checks, after having unset them earlier\nSET FOREIGN_KEY_CHECKS = 1;\n',\n);\n }", "public function down()\n\t{\n\t\tSchema::table('officers', function($t){\n\t\t\t$t->drop_column('role');\n\t\t});\n\t}", "public function safeDown()\n {\n $this->down();\n }", "public function safeDown()\n {\n $this->down();\n }", "public function down()\n\t{\n\t\tSchema::drop('refs');\n\t}", "public function down () {\n\t\treturn $this->rename_column ('headline', 'title', 'string', array ('limit' => 72));\n\t}", "public function down()\n\t{\n\t\tSchema::drop('appeals');\n\t}", "public function safeDown()\r\n {\r\n $this->down();\r\n }", "public function down(Schema $schema) : void\n {\n $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \\'mysql\\'.');\n\n<<<<<<< HEAD\n $this->addSql('ALTER TABLE affaire_liste_affaire DROP FOREIGN KEY FK_80DBABFCF082E755');\n $this->addSql('ALTER TABLE affaire DROP FOREIGN KEY FK_9C3F18EFED813170');\n=======\n<<<<<<< HEAD:src/Migrations/Version20200418121015.php\n $this->addSql('ALTER TABLE affaire_liste_affaire DROP FOREIGN KEY FK_80DBABFCF082E755');\n $this->addSql('ALTER TABLE affaire DROP FOREIGN KEY FK_9C3F18EFED813170');\n=======\n $this->addSql('ALTER TABLE liste_affaire_affaire DROP FOREIGN KEY FK_CA81ADF3F082E755');\n $this->addSql('ALTER TABLE enfant DROP FOREIGN KEY FK_34B70CA2463CD7C3');\n $this->addSql('ALTER TABLE enfant DROP FOREIGN KEY FK_34B70CA25D493FF4');\n $this->addSql('ALTER TABLE correspondant_administratif DROP FOREIGN KEY FK_E1E7152EBF396750');\n $this->addSql('ALTER TABLE enfant DROP FOREIGN KEY FK_34B70CA246135043');\n>>>>>>> e1e13eb645b79ada7517f9d2be860dc1655c42db:src/Migrations/Version20200318150734.php\n>>>>>>> 0c1c04bb7c2bbee076bc5fdb1e2456d1af817866\n $this->addSql('ALTER TABLE enfant_sejour DROP FOREIGN KEY FK_159E7E65450D2529');\n $this->addSql('ALTER TABLE enfant_sejour DROP FOREIGN KEY FK_159E7E6584CF0CF');\n $this->addSql('ALTER TABLE enfant DROP FOREIGN KEY FK_34B70CA2463CD7C3');\n $this->addSql('ALTER TABLE enfant DROP FOREIGN KEY FK_34B70CA25D493FF4');\n $this->addSql('ALTER TABLE enfant DROP FOREIGN KEY FK_34B70CA2FF631228');\n $this->addSql('ALTER TABLE affaire_liste_affaire DROP FOREIGN KEY FK_80DBABFCE2687AC3');\n $this->addSql('ALTER TABLE sejour DROP FOREIGN KEY FK_96F52028E2687AC3');\n $this->addSql('ALTER TABLE enfant DROP FOREIGN KEY FK_34B70CA246135043');\n $this->addSql('ALTER TABLE correspondant_administratif DROP FOREIGN KEY FK_E1E7152E46135043');\n $this->addSql('DROP TABLE affaire');\n<<<<<<< HEAD\n $this->addSql('DROP TABLE affaire_liste_affaire');\n $this->addSql('DROP TABLE type_affaire');\n=======\n<<<<<<< HEAD:src/Migrations/Version20200418121015.php\n $this->addSql('DROP TABLE affaire_liste_affaire');\n $this->addSql('DROP TABLE type_affaire');\n=======\n $this->addSql('DROP TABLE centre');\n $this->addSql('DROP TABLE correspondant_administratif');\n $this->addSql('DROP TABLE responsable_legal');\n>>>>>>> e1e13eb645b79ada7517f9d2be860dc1655c42db:src/Migrations/Version20200318150734.php\n>>>>>>> 0c1c04bb7c2bbee076bc5fdb1e2456d1af817866\n $this->addSql('DROP TABLE enfant');\n $this->addSql('DROP TABLE enfant_sejour');\n $this->addSql('DROP TABLE sejour');\n $this->addSql('DROP TABLE centre');\n $this->addSql('DROP TABLE correspondant_administratif');\n $this->addSql('DROP TABLE etablissement');\n $this->addSql('DROP TABLE liste_affaire');\n $this->addSql('DROP TABLE responsable_legal');\n $this->addSql('DROP TABLE user');\n }", "public function getDownSQL()\n {\n return array (\n 'default' => '\n# This is a fix for InnoDB in MySQL >= 4.1.x\n# It \"suspends judgement\" for fkey relationships until are tables are set.\nSET FOREIGN_KEY_CHECKS = 0;\n\nDROP TABLE IF EXISTS `user`;\n\nDROP TABLE IF EXISTS `question`;\n\nDROP TABLE IF EXISTS `answer`;\n\nDROP TABLE IF EXISTS `image`;\n\nDROP TABLE IF EXISTS `vote`;\n\n# This restores the fkey checks, after having unset them earlier\nSET FOREIGN_KEY_CHECKS = 1;\n',\n);\n }", "public function safeDown()\n\t{\n\t\t$this->dropTable($this->tableName);\n\t}", "public function safeDown()\n\t{\n\t\t$this->dropTable($this->tableName);\n\t}", "public function safeDown()\n\t{\n\t\t$this->dropTable($this->tableName);\n\t}", "public function down()\n {\n $this->table('mail_contents')->drop()->save();\n }", "public function down() {\n\t}", "public function down() {\n\t}", "public function down() {\n\t}", "public function down()\n {\n Schema::dropIfExists('reunion');\n }", "public function down(): void\n {\n $this->table('services')\n ->dropForeignKey(\n ['currency_id','billing_period_id']\n )->save();\n $this->execute('DELETE FROM currencies');\n $this->execute('DELETE FROM billing_periods');\n $this->table('services')->drop()->save();\n $this->table('currencies')->drop()->save();\n $this->table('billing_periods')->drop()->save();\n }", "public function down()\n\t{\n\t\tSchema::drop('article_category');\n\t}", "public function down()\n {\n Schema::table('users', function (Blueprint $table) {\n $table->renameColumn('first_name', 'name');\n $table->dropIndex('users_first_name_index');\n $table->dropIndex('users_created_at_index');\n $table->dropIndex('users_updated_at_index');\n $table->dropColumn(\"last_name\");\n $table->dropColumn(\"username\");\n $table->dropColumn(\"provider\");\n $table->dropColumn(\"provider_id\");\n $table->dropColumn(\"api_token\");\n $table->dropColumn(\"code\");\n $table->dropColumn(\"remember_token\");\n $table->dropColumn(\"role_id\");\n $table->dropColumn(\"last_login\");\n $table->dropColumn(\"status\");\n $table->dropColumn(\"root\");\n $table->dropColumn('backend');\n $table->dropColumn(\"photo_id\");\n $table->dropColumn(\"lang\");\n $table->dropColumn(\"color\");\n $table->dropColumn(\"about\");\n $table->dropColumn(\"facebook\");\n $table->dropColumn(\"twitter\");\n $table->dropColumn(\"linked_in\");\n $table->dropColumn(\"google_plus\");\n });\n }", "public function down()\n\t{\n\t\tSchema::drop('entries');\n\t}", "public function down()\n\t{\n\t\tSchema::table('precios_aterrizajes_despegues', function(Blueprint $table)\n\t\t{\n\t\t\t//\n\t\t});\n\t}", "public function down()\n{\nSchema::drop('statustype');\nSchema::drop('area');\nSchema::drop('region');\nSchema::drop('territory');\nSchema::drop('trackedevent');\nSchema::drop('zip_territory');\nSchema::drop('messagetype');\nSchema::drop('optintype');\nSchema::drop('representative');\nSchema::drop('pediatrician');\nSchema::drop('application_messagestatus');\nSchema::drop('application_optin');\nSchema::drop('application_trackedevent');\nSchema::drop('application');\n}", "public function down()\n\t{\n\t\tSchema::drop(Config::get('sentry::sentry.table.users_metadata'));\n\t}", "public function down(Schema $schema) : void\n {\n $this->addSql('ALTER TABLE classe_personne DROP FOREIGN KEY FK_350001418F5EA509');\n $this->addSql('ALTER TABLE matiere_classe DROP FOREIGN KEY FK_AF649A8B8F5EA509');\n $this->addSql('ALTER TABLE note DROP FOREIGN KEY FK_CFBDFA148F5EA509');\n $this->addSql('ALTER TABLE seance DROP FOREIGN KEY FK_DF7DFD0E8F5EA509');\n $this->addSql('ALTER TABLE cours DROP FOREIGN KEY FK_FDCA8C9CF46CD258');\n $this->addSql('ALTER TABLE matiere_classe DROP FOREIGN KEY FK_AF649A8BF46CD258');\n $this->addSql('ALTER TABLE note DROP FOREIGN KEY FK_CFBDFA14F46CD258');\n $this->addSql('ALTER TABLE personne_matiere DROP FOREIGN KEY FK_4E9BB3B7F46CD258');\n $this->addSql('ALTER TABLE absence DROP FOREIGN KEY FK_765AE0C9A21BD112');\n $this->addSql('ALTER TABLE classe_personne DROP FOREIGN KEY FK_35000141A21BD112');\n $this->addSql('ALTER TABLE contacte DROP FOREIGN KEY FK_C794A022A21BD112');\n $this->addSql('ALTER TABLE demande DROP FOREIGN KEY FK_2694D7A5A21BD112');\n $this->addSql('ALTER TABLE note DROP FOREIGN KEY FK_CFBDFA14A6CC7B2');\n $this->addSql('ALTER TABLE personne_matiere DROP FOREIGN KEY FK_4E9BB3B7A21BD112');\n $this->addSql('ALTER TABLE seance DROP FOREIGN KEY FK_DF7DFD0EE455FCC0');\n $this->addSql('ALTER TABLE seance DROP FOREIGN KEY FK_DF7DFD0EBDDFA3C9');\n $this->addSql('ALTER TABLE seance DROP FOREIGN KEY FK_DF7DFD0EDC304035');\n $this->addSql('ALTER TABLE absence DROP FOREIGN KEY FK_765AE0C9E3797A94');\n $this->addSql('ALTER TABLE personne DROP FOREIGN KEY FK_FCEC9EFA76ED395');\n $this->addSql('ALTER TABLE reset_password_request DROP FOREIGN KEY FK_7CE748AA76ED395');\n $this->addSql('DROP TABLE absence');\n $this->addSql('DROP TABLE classe');\n $this->addSql('DROP TABLE classe_personne');\n $this->addSql('DROP TABLE contacte');\n $this->addSql('DROP TABLE cours');\n $this->addSql('DROP TABLE demande');\n $this->addSql('DROP TABLE matiere');\n $this->addSql('DROP TABLE matiere_classe');\n $this->addSql('DROP TABLE news');\n $this->addSql('DROP TABLE note');\n $this->addSql('DROP TABLE personne');\n $this->addSql('DROP TABLE personne_matiere');\n $this->addSql('DROP TABLE reset_password_request');\n $this->addSql('DROP TABLE salle');\n $this->addSql('DROP TABLE seance');\n $this->addSql('DROP TABLE user');\n }", "public function down()\n\t{\n\t\tSchema::drop('stor_mem');\n\t}", "protected function tearDown(): void {\n $migration = include __DIR__.'/../database/migrations/create_all_visitors_tables.php.stub';\n $migration->down();\n\n $migrationTest = include __DIR__.'/Support/migrations/2023_01_12_000000_create_test_models_table.php';\n $migrationTest->down();\n }", "public function down(Schema $schema) : void\n {\n $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \\'mysql\\'.');\n\n $this->addSql('ALTER TABLE booking DROP FOREIGN KEY FK_E00CEDDEA76ED395');\n $this->addSql('ALTER TABLE booking DROP FOREIGN KEY FK_E00CEDDE19FCD424');\n $this->addSql('DROP TABLE booking');\n $this->addSql('DROP TABLE product_image');\n $this->addSql('DROP TABLE family_page_container');\n $this->addSql('DROP TABLE user');\n $this->addSql('DROP TABLE time_line');\n $this->addSql('ALTER TABLE family DROP FOREIGN KEY FK_A5E6215B727ACA70');\n $this->addSql('DROP INDEX IDX_A5E6215B727ACA70 ON family');\n $this->addSql('ALTER TABLE family ADD page_content_id INT NOT NULL, DROP parent_id, DROP has_uniques_prices, DROP has_seasonal_products');\n $this->addSql('ALTER TABLE family ADD CONSTRAINT FK_A5E6215B8F409273 FOREIGN KEY (page_content_id) REFERENCES page_content (id)');\n $this->addSql('CREATE INDEX IDX_A5E6215B8F409273 ON family (page_content_id)');\n $this->addSql('ALTER TABLE link ADD page_container_id INT DEFAULT NULL, DROP url');\n $this->addSql('ALTER TABLE link ADD CONSTRAINT FK_36AC99F123D5B0C FOREIGN KEY (page_container_id) REFERENCES page_container (id)');\n $this->addSql('CREATE INDEX IDX_36AC99F123D5B0C ON link (page_container_id)');\n $this->addSql('ALTER TABLE product DROP content, DROP order_by, DROP is_generic, DROP type, CHANGE title label VARCHAR(50) NOT NULL COLLATE utf8mb4_unicode_ci');\n $this->addSql('ALTER TABLE unit DROP duration');\n }", "public function down(Schema $schema) : void\n {\n $this->addSql('ALTER TABLE `order` DROP FOREIGN KEY FK_F5299398F5B7AF75');\n $this->addSql('ALTER TABLE suppliers DROP FOREIGN KEY FK_AC28B95C8486F9AC');\n $this->addSql('ALTER TABLE user DROP FOREIGN KEY FK_8D93D6498486F9AC');\n $this->addSql('ALTER TABLE stock DROP FOREIGN KEY FK_4B365660D629F605');\n $this->addSql('ALTER TABLE stock DROP FOREIGN KEY FK_4B365660E308AC6F');\n $this->addSql('ALTER TABLE order_detail DROP FOREIGN KEY FK_ED896F46CFFE9AD6');\n $this->addSql('ALTER TABLE product DROP FOREIGN KEY FK_D34A04ADEE45BDBF');\n $this->addSql('ALTER TABLE suppliers DROP FOREIGN KEY FK_AC28B95CEE45BDBF');\n $this->addSql('ALTER TABLE user DROP FOREIGN KEY FK_8D93D649EE45BDBF');\n $this->addSql('ALTER TABLE order_detail DROP FOREIGN KEY FK_ED896F464584665A');\n $this->addSql('ALTER TABLE product_theme DROP FOREIGN KEY FK_36299C544584665A');\n $this->addSql('ALTER TABLE user DROP FOREIGN KEY FK_8D93D649D60322AC');\n $this->addSql('ALTER TABLE order_detail DROP FOREIGN KEY FK_ED896F46DCD6110');\n $this->addSql('ALTER TABLE order_detail DROP FOREIGN KEY FK_ED896F462ADD6D8C');\n $this->addSql('ALTER TABLE product_theme DROP FOREIGN KEY FK_36299C5459027487');\n $this->addSql('ALTER TABLE `order` DROP FOREIGN KEY FK_F5299398A76ED395');\n $this->addSql('DROP TABLE address');\n $this->addSql('DROP TABLE format');\n $this->addSql('DROP TABLE material');\n $this->addSql('DROP TABLE `order`');\n $this->addSql('DROP TABLE order_detail');\n $this->addSql('DROP TABLE picture');\n $this->addSql('DROP TABLE product');\n $this->addSql('DROP TABLE product_theme');\n $this->addSql('DROP TABLE role');\n $this->addSql('DROP TABLE stock');\n $this->addSql('DROP TABLE suppliers');\n $this->addSql('DROP TABLE theme');\n $this->addSql('DROP TABLE user');\n }", "public function down()\n {\n Schema::dropIfExists('data');\n }", "public function down()\n\t{\n\t\tSchema::create('jobs',function($table){$table->increments('id');});\n\t\tSchema::create('job_location',function($table){$table->increments('id');});\n\t\tSchema::create('job_skill',function($table){$table->increments('id');});\n\t\tSchema::create('locations',function($table){$table->increments('id');});\n\t\tSchema::create('location_program',function($table){$table->increments('id');});\n\t\tSchema::create('location_scholarship',function($table){$table->increments('id');});\n\t\tSchema::create('positions',function($table){$table->increments('id');});\n\t\tSchema::create('programs',function($table){$table->increments('id');});\n\t\tSchema::create('program_subject',function($table){$table->increments('id');});\n\t\tSchema::create('scholarships',function($table){$table->increments('id');});\n\t\tSchema::create('scholarship_subject',function($table){$table->increments('id');});\n\t\tSchema::create('skills',function($table){$table->increments('id');});\n\t\tSchema::create('subjects',function($table){$table->increments('id');});\n\t}" ]
[ "0.79510754", "0.7864519", "0.7606075", "0.7493172", "0.7320076", "0.7245705", "0.71873933", "0.71527994", "0.7152543", "0.71410805", "0.7135595", "0.7121767", "0.7115081", "0.71048", "0.7097477", "0.70792973", "0.7077585", "0.707227", "0.70676", "0.7065651", "0.7052665", "0.7052665", "0.7041793", "0.70414674", "0.70414674", "0.70414674", "0.7039506", "0.70282745", "0.7025908", "0.7020137", "0.698775", "0.6986707", "0.6976976", "0.69711196", "0.69428045", "0.69428045", "0.69428045", "0.694231", "0.69402295", "0.6938704", "0.6934591", "0.6932852", "0.6927586", "0.69249535", "0.69244564", "0.691247", "0.6902264", "0.68973", "0.6897237", "0.6897237", "0.6896997", "0.6887604", "0.68823224", "0.68733674", "0.6869391", "0.6862686", "0.6857329", "0.6853974", "0.6843095", "0.68413496", "0.68363076", "0.6836013", "0.68342894", "0.6828999", "0.682782", "0.68278146", "0.682607", "0.68230146", "0.68178254", "0.68099844", "0.6807596", "0.68043476", "0.68043476", "0.6787987", "0.6776019", "0.6773517", "0.676367", "0.6759594", "0.6758692", "0.67551315", "0.67551315", "0.67551315", "0.6753037", "0.6752774", "0.6752774", "0.6752774", "0.6752695", "0.67447793", "0.674376", "0.6738522", "0.67335093", "0.6732361", "0.6730717", "0.6730413", "0.6726875", "0.67264163", "0.67262155", "0.6725712", "0.6716538", "0.67134446", "0.6711899" ]
0.0
-1
Given some HTML send a response.
public function renderHtml($html) { $response = new Response(); $response->setContent($html); return $response; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function htmlResponse($html) {\n $response = $this->getResponse()\n ->setStatusCode(200)\n ->setContent($html);\n return $response;\n }", "public function htmlResponse($html)\n {\n $response = $this->getResponse()\n ->setStatusCode(200)\n ->setContent($html);\n return $response;\n }", "public function process($html);", "private function __send_response(){\n http_response_code($this->response_code);\n if($this->_redirect) header(\"Location: \".Config::WEB_DIRECTORY.\"{$this->_redirect_location}\");\n elseif($this->_JSON){\n header('Content-Type: application/json; charset=UTF-8');\n print json_encode($this->_JSON_contents, JSON_PRETTY_PRINT);\n }elseif($this->_HTML){\n if($this->_HTML_load_view) $this->_template->render();\n } /** @noinspection PhpStatementHasEmptyBodyInspection */ else{\n // Do nothing\n }\n }", "public function sendResponse();", "private static function writeValidResponse($html, $log)\n {\n $response = new FTF_WebResponse();\n $response->hasError = false;\n $response->errorMessage = '';\n $response->html = $html;\n $response->log = $log;\n\n echo json_encode($response);\n exit(3);\n }", "protected function sendResponse() {}", "private function getHtmlResponse() {\r\n\t\t\r\n\t\t\t// check if a request has been made, else skip!\r\n\t\t\t$cmd = @$_POST['request'];\r\n\t\t\tif (!$cmd) {return '';}\r\n\t\t\t\r\n\t\t\t// get the connection\r\n\t\t\t$con = Factory::getVdrConnection();\r\n\t\t\t$resp = $con->request($cmd);\r\n\t\t\t\r\n\t\t\t// create the template\r\n\t\t\t$tpl = new Template('svdrp_response');\r\n\t\t\t$tpl->set('HEADER', LANG_SVDRP_RESPONSE_HEADER);\r\n\t\t\t$tpl->set('CONTENT', $resp->getLinesAsString());\r\n\t\t\treturn $tpl->get();\r\n\t\t\t\r\n\t\t}", "protected function htmlOrJson() {\n\t\tif ($this->isDataPost) {\n\t\t\t$response = array(\n\t\t\t\t'html' => $this->response);\n\t\t\t$this->jsonResult($response);\n\t\t} else {\n\t\t\techo $this->response;\n\t\t}\n\t}", "public function getReturnHTML($request, $response, $args)\n {\n }", "public function getReturnHTML($request, $response, $args)\n {\n }", "public function respond($output, $code = 200)\n {\n $this->response->setResponseCode($code);\n\n return $this->response->render($output);\n }", "public function send() {\n header('HTTP/1.0 404 Not Found');\n \n echo $this->getHtml();\n }", "public static function sendResponse(\n $html,\n $httpCode = Response::HTTP_FOUND,\n array $headers = [],\n $authToken = null\n ) {\n $response = new Response($html, $httpCode, $headers);\n\n if ($authToken) {\n $response->headers->setCookie($authToken);\n }\n\n // Replace old cookies\n foreach (self::$clearedCookies as $name) {\n $response->headers->clearCookie($name);\n }\n\n $expireTime = time() + 24 * 60 * 60; // one day\n foreach (self::$cookies as $name => $value) {\n if (is_array($value)) {\n $encoded = json_encode($value);\n } else {\n $encoded = $value;\n }\n\n $newCookie = new \\Symfony\\Component\\HttpFoundation\\Cookie(\n $name, $encoded, $expireTime\n );\n\n $response->headers->setCookie($newCookie);\n }\n\n $response->send();\n exit; // close current script execution after redirect\n }", "public static function contentHtml($code = 200): void\n {\n self::set(\"Content-Type\", \"text/html\", true, $code ?? self::$httpCode);\n }", "public function html(string $viewName, array $data = [], int $status = 200, array $headers = []): ResponseInterface;", "public function send_response($response) {\n global $OUTPUT;\n\n if ($response instanceof response_interface) {\n $response->send();\n } else if (!empty($response)) {\n echo $OUTPUT->header();\n echo $response;\n echo $OUTPUT->footer();\n }\n }", "public static function html($data = NULL)\n\t{\n\t\tif ($data === NULL)\n\t\t{\n\t\t\t$data = Request::current()->response()->body();\n\t\t}\n\n\t\t$data = (string) $data;\n\n\t\tRequest::current()->response()->body($data);\n\n\t\tKu_AJAX::headers('html');\n\t}", "public static function sendHttpError($errorCode, $htmlContent='') {\n if ($errorCode == 404) {\n header(\"HTTP/1.0 404 Not Found\");\n echo $htmlContent;\n exit;\n }\n }", "public function respond() {\n\t\thttp_response_code($this->code);\n\n\t\t// Additional headers\n\t\tforeach ($this->head as $header) {\n\t\t\theader($header);\n\t\t}\n\n\t\t// Write the body\n\t\tforeach ($this->body as $toStringable) {\n\t\t\techo $toStringable;\n\t\t}\n\t}", "private function respond($response)\n\t{\n\t\tob_start();\n\t\tif ($response['template']) {\n\t\t\techo $this->view($response['template'], $response['content']);\n\t\t} else {\n\t\t\techo $response;\n\t\t}\n\t\tob_end_flush();\n\t}", "public static function sendHttpError($errorCode, $htmlContent='') {\n // Error 404\n if ($errorCode == 404) {\n // Sending specific error status 404 HTTP\n header(\"HTTP/1.0 404 Not Found\");\n echo $htmlContent;\n exit;\n }\n }", "public function mostrar($html)\n\t\t{\n\t\t\techo $html;\n\t\t}", "public function send()\n {\n http_response_code( $this->getResultCode() );\n echo $this->getBody();\n }", "public function sendResponse()\n {\n $this->sendHeaders();\n\n if ($this->isException() && $this->renderExceptions()) {\n $exceptions = '';\n foreach ($this->getException() as $e) {\n $exceptions .= $e->__toString() . \"\\n\";\n }\n echo $exceptions;\n return;\n }\n\n $this->outputBody();\n }", "public function HtmlResponse ($output = '', $terminate = TRUE) {\n\t\t/** @var $this \\MvcCore\\Controller */\n\t\tif (!$this->response->HasHeader('Content-Type')) {\n\t\t\t$viewClass = $this->application->GetViewClass();\n\t\t\t$contentTypeHeaderValue = strpos(\n\t\t\t\t$viewClass::GetDoctype(), \\MvcCore\\IView::DOCTYPE_XHTML\n\t\t\t) !== FALSE ? 'application/xhtml+xml' : 'text/html' ;\n\t\t\t$this->response->SetHeader('Content-Type', $contentTypeHeaderValue);\n\t\t}\n\t\t$this->response\n\t\t\t->SetCode(\\MvcCore\\IResponse::OK)\n\t\t\t->SetBody($output);\n\t\tif ($terminate) $this->Terminate();\n\t}", "public function send()\n {\n if (function_exists('http_response_code')) {\n http_response_code($this->code);\n } else {\n header(' ', true, $this->code);\n }\n\n foreach ($this->headers as $name => $value) {\n header($name . ': ' . $value);\n }\n\n if (!is_null($this->content)) {\n echo $this->content;\n }\n }", "private function htmlResponse() {\n\n /*\n * In case of error, return json\n */\n if (is_array($this->response) && $this->response['ErrorCode'] === 500) {\n $this->request['content-type'] = self::DEFAULT_RESPONSE_FORMAT;\n return $this->jsonResponse();\n }\n \n /*\n * No collection set => renders home page\n */\n if (!$this->request['collection']) {\n $template = new Template(realpath(dirname(__FILE__)) . '/../templates/home.php', $this);\n }\n /*\n * Identifier set => renders resource page\n */ else if ($this->request['identifier']) {\n $template = new Template(realpath(dirname(__FILE__)) . '/../templates/' . $this->responseDescription['template'] . '/' . $this->request['method'] . 'Resource' . '.php', $this, $this->response, $this->responseDescription);\n }\n /*\n * Renders collection\n */ else {\n $template = new Template(realpath(dirname(__FILE__)) . '/../templates/' . $this->responseDescription['template'] . '/' . $this->request['method'] . 'Collection' . '.php', $this, $this->response, $this->responseDescription);\n }\n\n return $template->render();\n }", "abstract public function response();", "function sendResponse($status = 200, $body = '', $content_type = 'text/html') {\n $status_header = 'HTTP/1.1 ' . $status . ' ' . getStatusCodeMessage($status);\n header($status_header);\n header('Content-type: ' . $content_type);\n echo $body;\n}", "function output() {\n if (isset($this->status)) {\n $this->send_header(sprintf('HTTP/1.1 %d %s',\n $this->status, $this->reason),\n TRUE,\n $this->status);\n }\n\n foreach ($this->headers as $k => $v) {\n $this->send_header(\"$k: $v\");\n }\n\n echo $this->body;\n }", "protected function sendResponse() {\n $this->eventManager->triggerEvent(self::EVENT_PRE_RESPONSE, array('web' => $this));\n\n $this->setSessionCookie();\n\n $this->renderView();\n\n // send the response\n if ($this->log) {\n $this->log->logDebug('Sending response', 'Status code ' . $this->response->getStatusCode(), System::LOG_SOURCE);\n\n $headers = $this->response->getHeaders();\n foreach ($headers as $header) {\n $this->log->logDebug('Sending header', $header, System::LOG_SOURCE);\n }\n\n $cookies = $this->response->getCookies();\n foreach ($cookies as $cookie) {\n $this->log->logDebug('Sending header', Header::HEADER_SET_COOKIE . ': ' . $cookie, System::LOG_SOURCE);\n }\n\n $view = $this->response->getView();\n if ($view) {\n $this->log->logDebug('Rendering and sending view', get_class($view), System::LOG_SOURCE);\n }\n }\n\n $this->response->send($this->request);\n\n $this->eventManager->triggerEvent(self::EVENT_POST_RESPONSE, array('web' => $this));\n\n $this->writeSession();\n }", "public static function sendOkResponse(){\n http_response_code(200);\n die();\n }", "function respond() {\n\n $request = & $this->request;\n $response = false;\n\n // first check for page refresh or first load\n if ($this->request->source == REQ_INDEX) {\n $state = $request->to_state(true);\n $response = $this->_do_index($state);\n\n } else {\n\n // next try for action event\n if ( ! $response) {\n $response = $this->_do_action($request);\n }\n\n // then fall back to state event\n if ( ! $response) {\n $state = $request->to_state();\n $response = $this->_do_state($state);\n }\n }\n\n // send response content to browser\n if ($response !== false) {\n if ($request->source == REQ_AJAX) {\n header('Content-type: application/json', true, 200);\n // no caching for ajax responses\n header(\"Cache-Control: no-cache, must-revalidate\");\n header(\"Expires: Mon, 26 Jul 1997 05:00:00 GMT\");\n $response = json_encode($response);\n } else {\n header('Content-type: text/html; charset=utf-8');\n }\n echo $response;\n return true;\n } else {\n return false;\n }\n }", "public function setBodyHtml($html);", "protected abstract function handleResponse(View $view);", "protected abstract function render(Response $response);", "private function isHtml(Response $response): bool\n {\n return 0 === strpos($response->headers->get('Content-Type'), 'text/html');\n }", "public function reply($cleaned) {\n\t\tif (!Registry::get(\"sys\") -> getSecurityManager() -> securityCheck(\"MESSAGE_CENTRE\")) {\n\t\t\techo \"Sorry, you have sent too many requests in a short amount of time. Please wait.\";\n\t\t\treturn;\n\t\t}\n\t\tif (!isset($cleaned['id'])) {\n\t\t\techo \"Sorry, please a contact a system administrator. #454\";\n\t\t\treturn;\n\t\t}\n\t\t$this -> configure();\n\t\t$message = $this -> getMessage($cleaned['id']);\n\t\tif (!$message) {\n\t\t\techo \"Sorry, an error occured please contact your system administrator.\";\n\t\t\treturn;\n\t\t}\n\t\t$html = Utils::purify($cleaned['html']);\n\t\tif (strlen($html) < 6) {\n\t\t\techo \"Your message must be 6 or more characters.\";\n\t\t\treturn;\n\t\t} else if (strlen($html) > 10000) {\n\t\t\techo \"Your message can't exceed 10000 characters.\";\n\t\t\treturn;\n\t\t}\n\t\t$isMessage = $message -> getSender() == $this -> user -> getUsername();\n\t\t$subject = $message -> getSubject();\n\t\tif (!$isMessage && !$message -> isReply()) {\n\t\t\t$subject = \"RE: \" . $message -> getSubject();\n\t\t}\n\t\tif (!$this -> create($this -> user -> getUsername(), $isMessage ? $message -> getRecipient() : $message -> getSender(), $subject, $cleaned['html'])) {\n\t\t\techo \"Sorry, your request could not be approved at this time. Please try again later.\";\n\t\t\treturn;\n\t\t}\n\t\techo \"SUCCESS /account/message/index.php?id=\" . $this -> database-> getConnection() -> lastInsertId();\n\t}", "private function _rewriteLinksInResponse($html)\n {\n // Get response body\n //$body = $this->app()->response()->document()->body();\n $base_url = $this->app()->config()->get(\"base_url\");\n\n // Build sub patterns\n $controller = 'controller=([a-zA-Z]+)';\n $action = 'action=([a-zA-Z_]+)';\n $amp = '(&amp;|&)';\n\n // Build patterns and replacements\n $patterns[] = '/\"index.php\\?'.$controller.$amp.$action.$amp.'/';\n $replacements[] = '\"'.$base_url.'${1}/${3}?';\n\n $patterns[] = '/\"index.php\\?'.$controller.$amp.$action.'\"/';\n $replacements[] = '\"'.$base_url.'${1}/${3}\"';\n\n $patterns[] = '/\"index.php\\?'.$controller.$amp.'/';\n $replacements[] = '\"'.$base_url.'${1}?';\n\n $patterns[] = '/\"index.php\\?'.$controller.'\"/';\n $replacements[] = '\"'.$base_url.'${1}\"';\n\n // Replace the patterns in response body\n return preg_replace($patterns, $replacements, $html);\n }", "function send(ResponseInterface $response)\n{\n $heading = sprintf('HTTP/%s %s %s',\n $response->getProtocolVersion(),\n $response->getStatusCode(),\n $response->getReasonPhrase());\n\n if (!headers_sent()) {\n header($heading, true, 200);\n\n foreach ($response->getHeaders() as $key => $header) {\n foreach ($header as $value) {\n header($key.':'.$value);\n }\n }\n }\n\n $stream = $response->getBody();\n\n if ($stream->isWritable()) {\n $stream->rewind();\n }\n\n while (!$stream->eof()) {\n echo $stream->read(1024 * 8);\n }\n}", "public function respond()\n\t{\n\t\t$this->setTemplate();\n\t\t$this->template->setGuid( $this->request['guid'] );\n\t\t$this->template->setContent( $this->view->getContent() );\n\t\n\t\techo $this->template->request();\t\n\t}", "private function sendResponse(array $data)\r\n {\r\n $resp = new CustomHttpResponse([$_SERVER['SERVER_PROTOCOL'] . ' 200 OK', \"Content-Type: application/json\"], $data);\r\n $resp->send();\r\n }", "public function send()\n {\n http_response_code($this->statusCode);\n $this->sendContent();\n }", "abstract public function renderHtmlMessage();", "public function send() : void\n {\n \\http_response_code( $this->status );\n\n foreach ( $this->headers->all() as $name => $values ) {\n foreach ( $values as $index => $value ) {\n \\header( \"$name: $value\", $index === 0 );\n }\n }\n\n echo $this->content;\n }", "public function sendHtmlEmail()\n {\n try\n {\n $this->prepareHtmlEmail();\n $this->sendMail();\n }\n catch(Exception $e)\n {\n global $CFG;\n $CFG->current_app->gcError('Email Error: ' . $e->getMessage());\n }\n return true;\n }", "private function _finish($html) {\n $contents = $this->_defaultContentArray;\n\n if (preg_match('@\\[cakepress_http_status code=\"(.+)\"\\]@msiU', $html, $matches))\n $contents['http_status_code'] = $matches[1];\n\n if ($this->cleanOutput) {\n $contents['body'] = $html;\n } else {\n // Load the DOM_Query class, first looking in the usual Composer locations (for either standard and Bedrock layouts). \n // Sadly the composer autoloader doesn't work here.\n $loader_path = dirname(__FILE__) . '/vendor/rkaiser0324/dom-query/vendor/Loader.php';\n if (!file_exists($loader_path))\n $loader_path = ABSPATH . '/../../vendor/rkaiser0324/dom-query/vendor/Loader.php';\n $loader_path = apply_filters('cakepress_dom_query_loader_path', $loader_path);\n if (!file_exists($loader_path))\n throw new exception(\"Cannot load rkaiser0324/dom-query/vendor/Loader.php. Ensure the cakepress_dom_query_loader_path filter is set properly.\");\n \n require $loader_path;\n \\Loader::init(array(dirname($loader_path)), false);\n\n $H = new \\PowerTools\\DOM_Query($html);\n\n // Get elements within head\n $contents['head'] = $this->_parseHead($H);\n\n // Get the body\n // This avoids mangling HTML by auto-closing <div>s - a big no-no \n $body = $H->select('body');\n $body_inner_html = preg_replace('@<body(.*)>(.+)</body>@msiU', '$2', $body->DOM->saveHTML($body->nodes[0]));\n $contents['body'] = $body_inner_html;\n if (WP_DEBUG)\n $contents['body'] = sprintf('<!-- CakePress start -->%s<!-- CakePress end -->', $contents['body']);\n }\n return $contents;\n }", "private function _sendResponse($statusCode = 200, $body = '', $content_type = 'text/html')\r\n {\r\n $statusCode_header = 'HTTP/1.1 ' . $statusCode . ' ' . $this->_getStatusCodeMessage($statusCode);\r\n /* set the status */\r\n header($statusCode_header);\r\n /* set the content type */\r\n header('Content-type: ' . $content_type);\r\n \r\n if($body != '')\r\n {\r\n /* send the body */\r\n echo $body;\r\n exit;\r\n }\r\n /* Create the body if it is empty */\r\n else\r\n { \r\n $message = '';\r\n switch($statusCode)\r\n {\r\n case 401:\r\n $message = 'You must be authorized to view this page.';\r\n break;\r\n case 404:\r\n $message = 'The requested URL ' . $_SERVER['REQUEST_URI'] . ' was not found.';\r\n break;\r\n case 500:\r\n $message = 'The server encountered an error processing your request.';\r\n break;\r\n case 501:\r\n $message = 'The requested method is not implemented.';\r\n break;\r\n }\r\n\r\n /* Get servers signature */\r\n $signature = ($_SERVER['SERVER_SIGNATURE'] == '') ? $_SERVER['SERVER_SOFTWARE'] . ' Server at ' . $_SERVER['SERVER_NAME'] . ' Port ' . $_SERVER['SERVER_PORT'] : $_SERVER['SERVER_SIGNATURE'];\r\n \r\n $body = '<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\r\n <html>\r\n <head>\r\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n <title>' . $statusCode . ' ' . $this->_getStatusCodeMessage($statusCode) . '</title>\r\n </head>\r\n <body>\r\n <h1>' . $this->_getStatusCodeMessage($statusCode) . '</h1>\r\n <p>' . $message . '</p>\r\n <hr />\r\n <address>' . $signature . '</address>\r\n </body>\r\n </html>';\r\n\r\n echo $body;\r\n exit;\r\n }\r\n }", "public function send_response() {\n\t\n\t\t$return = $this->get_response();\n\t\t\n\t\t/* send it and terminate this instance */\n\t\tif($this->get_errors()) {\n\t\t\twp_send_json_error($return);\t\t\t\t\t\t\n\t\t} else {\n \t\tif( null === $this->wp_query ) {\n \t\t\twp_send_json_success($return); \t\t \t\t\n \t\t} else {\n \t\t\n \t\t\t$data = array(\n \t\t\t'success' => true,\n \t\t\t'data' => $return,\n \t\t\t'query' => $this->parse_wp_query_object_2_js( $this->wp_query )\n \t\t\t);\n \t\t\twp_send_json($data); // build a custom wp_send_json_success with an extra property \n \t\t}\t\t\t\n\t\t}\n\t}", "private function executeRequest()\r\n\t{\r\n\t\ttry {\r\n\t\t\t$html = curl_exec($this->getConnection());\r\n\t\t\tif (curl_error($this->getConnection())) {\r\n\t\t\t\tthrow new Exception(curl_error($this->getConnection()));\r\n\t\t\t}\r\n\t\t} catch (Exception $e) {\r\n\t\t\techo 'Error: ' . $e->getMessage();\r\n\t\t}\r\n\r\n\t\treturn $html;\r\n\t}", "private function sendResponseCode(): void\n {\n\n $http = sprintf(\n 'HTTP/%s %s %s',\n $this->versionProtocol,\n $this->responseCode,\n $this->httpCodeText[$this->responseCode]\n );\n\n header($http, true);\n http_response_code($this->responseCode);\n\n }", "public abstract function get_html();", "public function parse($html);", "public function parse($html);", "public function html($html)\n {\n return $this->type($html, \"text/html\");\n }", "function send($response)\n {\n }", "abstract function get_html();", "public function response($content = '', $code = 200, $type = NULL)\n\t{\n\t\t$this->response->setStatusCode($code, $type);\n\t\t$this->response->setContent($content);\n\t}", "protected function assertHtmlResponse($statusCode=self::STATUS_CODE_SUCCESS)\n {\n $this->assertSuccessResponse(self::CONTENT_TYPE_HTML, $statusCode);\n }", "public function render(DaGdHTMLResponse $response) {\n $help = $this->getHelp();\n if ($help instanceof DaGdHelp) {\n $help = $help->toOldHelp();\n }\n $body = tag('pre', $this->execute($response));\n $template = $this\n ->getBaseTemplate()\n ->setBody($body)\n ->setStyle($this->getStyle())\n ->setTitle(idx($help, 'title', 'Welcome!'))\n ->setDarkmode($this->getDarkmode())\n ->getHtmlTag();\n return $response->setBody($template);\n }", "public function OutputHtmlOnRequest($andExit=true){\r\n\t\tif(!$this->IsHtmlRequested())\r\n\t\t\treturn false;\r\n\t\t$this->OutputHtml();\r\n\t\tif($andExit){\r\n\t\t\tself::Debug('Exit script execution');\r\n\t\t\texit;\r\n\t\t}\r\n\t\treturn true;\r\n\t}", "private function send_response($data = [], $code = 200)\n {\n $this->output\n ->set_status_header($code)\n ->set_content_type('application/json', 'utf-8')\n ->set_output(json_encode($data, JSON_PRETTY_PRINT));\n }", "public function getHTML($data);", "protected function isHtmlResponse(Response $response)\n {\n $headers = $response->headers;\n\n // Check the content type of the response, when there is no content type\n // set just assume that it's html.\n return strtolower($headers->get('Content-Type', 'text/html')) === 'text/html';\n }", "function deliver_response(){\n\n // --- Step 1: Initialize variables and functions\n //\n // Deliver HTTP Response\n // The desired HTTP response content type: [json, html, xml]\n // The desired HTTP response data\n\n\n header('HTTP/1.1 '.$this->response['status'] . // Set HTTP Response\n ' '.$this->http_response_code[$this->response['status'] ]);\n header('Content-Type: application/json; charset=utf-8'); // Set HTTP Response Content Type\n $json_response = json_encode($this->response['data']); // Format data into a JSON response\n echo $json_response; // Deliver formatted data\n }", "function http_response($url, $opts = array()) {\n $url = preg_replace('/ /', '%20', $url);\n $ch = curl_init($url);\n curl_setopt($ch, CURLOPT_HEADER, FALSE);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);\n curl_setopt($ch, CURLOPT_USERAGENT, \"uw_transparancy, toolserver.org wikiproject parser\");\n $output = curl_exec($ch);\n // Check for errors\n if (curl_errno($ch)) {\n wpLog(\"Curl error: \" . curl_error($ch));\n return http_response($url);\n }\n\n curl_close($ch);\n\n return $output;\n}", "function exit_response($code, $text) {\n http_response_code($code);\n exit($text);\n}", "public function sendResponse()\n {\n $this->_response = Mage::app()->getResponse();\n\n //check redirect\n if ($this->_response->isRedirect()) {\n $headers = $this->_response->getHeaders();\n $redirect = '';\n foreach ($headers as $header) {\n if (\"Location\" == $header[\"name\"]) {\n $redirect = $header[\"value\"];\n break;\n }\n }\n if ($redirect) {\n $this->setRedirect($redirect);\n }\n }\n\n $this->_response->clearHeaders();\n $this->_response->setHeader('Content-Type', 'application/json');\n $this->_response->clearBody();\n $this->_response->setBody($this->toJson());\n $this->_response->sendResponse();\n exit;\n }", "public function reponse()\n {\n $paymentResponse = new Mercanet('S9i8qClCnb2CZU3y3Vn0toIOgz3z_aBi79akR30vM9o');\n\n $paymentResponse->setResponse($_POST);\n\n if ($paymentResponse->isValid() && $paymentResponse->isSuccessful()) {\n // Traitement pour les paiements valides\n return $this->render('shop/commande-ok.html.twig');\n } else {\n // Traitement pour les paiements en echec\n return $this->render('shop/commande-echec.html.twig');\n }\n }", "public function send_response( $response = 'api\\response_200', $rendered_view = null ) {\n\tif($rendered_view === null)\n\t\t$rendered_view = $this->rendered_view;\n\t$response = new $response;\n\t$response->send($rendered_view);\n }", "public function send(){\n\t\t\n\t\texit($this->page->generate());\n\t}", "public function reply()\n\t{\n\t\tif($this->return){\n\t\t\t$this->_reply(200, 'Ok', $this->return);\n\t\t}else{\n\t\t\t$this->_reply(200, 'Ok', $this->return);\n\t\t}\n\t\texit();\n\t}", "public function Response($httpCache = false)\n\t{\n\t\t\tif(!$httpCache)\n\t\t\t{\n\t\t\t\t$this->NoCache();\n\t\t\t}\n\t\t\t/** Get template and prepare to display**/\n\t\t\tob_start();\n\t\t\tTemplate::Render();\n\t\t\t$this->SetBody(ob_get_clean());\n\t\t\t/** Do we have any plugin to format this responses?**/\n\t\t\tHook::HangPlugin('afterPageRender',array($this));\n\t\t\techo $this->GetBody();\n\t}", "public function send()\n {\n $httpProtocol = $_SERVER['SERVER_PROTOCOL'];\n\n // Send the HTTP Status and Headers.\n\n if (! headers_sent()) {\n $status = $this->status();\n\n // Send the HTTP Status Header.\n header(\"$httpProtocol $status \" . self::$statuses[$status]);\n\n // Send the rest of the HTTP Headers.\n foreach ($this->headers as $name => $value) {\n header(\"$name: $value\", true);\n }\n }\n\n // Send the stringified Content.\n\n echo $this->render();\n }", "private function responseHandle() {\n // call hook function\n is_callable(config('hooks.onResponse')) && call_user_func(config('hooks.onResponse'), $this);\n // response data\n $this->responder->output();\n }", "public static function _sendResponse($status = 200, $body = '', $content_type = 'text/html')\n {\n $status_header = 'HTTP/1.1 ' . $status . ' ' . self::_getStatusCodeMessage($status);\n\n header($status_header);\n header('Content-Type: ' . $content_type);\n\n // pages with body are easy\n if ($body != '') {\n echo $body;\n exit;\n }\n else {\n // create some body messages\n $message = '';\n\n // this is purely optional, but makes the pages a little nicer to read\n // for your users. Since you won't likely send a lot of different status codes,\n // this also shouldn't be too ponderous to maintain\n switch ($status) {\n case 401:\n $message = 'You must be authorized to view this page.';\n break;\n case 404:\n $message = 'The requested URL ' . $_SERVER['REQUEST_URI'] . ' was not found.';\n break;\n case 500:\n $message = 'The server encountered an error processing your request.';\n break;\n case 501:\n $message = 'The requested method is not implemented.';\n break;\n }\n\n // servers don't always have a signature turned on (this is an apache directive \"ServerSignature On\")\n $signature = ($_SERVER['SERVER_SIGNATURE'] == '') ? $_SERVER['SERVER_SOFTWARE'] . ' Server at ' . $_SERVER['SERVER_NAME'] . ' Port ' . $_SERVER['SERVER_PORT'] : $_SERVER['SERVER_SIGNATURE'];\n\n // this should be templatized in a real-world solution\n $body = '<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\n <html>\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n <title>' . $status . ' ' . self::_getStatusCodeMessage($status) . '</title>\n </head>\n <body>\n <h1>' . self::_getStatusCodeMessage($status) . '</h1>\n <p>' . $message . '</p>\n <hr />\n <address>' . $signature . '</address>\n </body>\n </html>';\n\n echo $body;\n exit;\n }\n }", "public function response($isLoggedIn) {\n\t\tif(!$isLoggedIn) {\n\t\t\tif($this->byeMessageIsSet()) {\n\t\t\t\t$this->message = $this->getSavedMessage();\n\t\t\t}\n\t\t\t$this->tryToLoginWithoutPassword();\n\t\t\t$response = $this->generateLoginFormHTML();\n\t\t} else {\n\t\t\t$response = $this->generateLogoutButtonHTML();\n\t\t}\n\t\treturn $response;\n\t}", "public function getHtml(){\n if(req()->isAjax() || PHP_SAPI == \"cli\"){\n echo $this->getMessage().\"\\n\\n\".$this->getTraceAsString();\n return;\n }\n ?><!DOCTYPE html>\n <html>\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <title>Error</title>\n </head>\n <body>\n <h1>Well, something is going wrong!</h1>\n <h3 style=\"color:red;\"><?php echo nl2br(s($this->getMessage()))?></h3>\n <pre><?php echo $this->getTraceAsString()?></pre>\n </body>\n </html>\n <?php\n }", "public function answer()\n\t{\n\t\tif (!$this->typeResponseCode)\n\t\t\treturn $this->answerTwoHundred($this->data);\n\t\telse\n\t\t\treturn $this->answerThroughHeader($this->data);\n\t}", "public function getHtmlResponse() {\n return \\Lib\\Format::forge($this->_response)->to_html();\n }", "abstract public function processResponse($response);", "public function endHTML() {\n echo \"\\n</body>\\n\"\n . \"</html>\"; \n }", "private function respond($str)\n {\n $this->_registry->getResponse()->appendContent($str);\n }", "public function response(){\r\n\t\t// register event on_shutdown\r\n\t\tregister_shutdown_function(function(){\r\n\t\t\t// on_shutdown\r\n\t\t\t\\M::get('event')->trigger('system.on_shutdown');\r\n\r\n\t\t\t// debug\r\n\t\t\t\\M::get('debug')->exception_fatal();\r\n\t\t});\r\n\r\n\t\tob_start();\r\n\t\t\t// load default config & controller core\r\n\t\t\trequire_once APP_PATH . 'config.php';\r\n\t\t\trequire_once SYSTEM_PATH . 'controller.php';\r\n\r\n\t\t\t// on load\r\n\t\t\t\\M::get('event')->trigger('system.on_load', DOMAIN);\r\n\r\n\t\t\t// parser url\r\n\t\t\t$this->parser_url();\r\n\t\t\t// load module\r\n\t\t\t$this->load_module(input('module', 'str', 'get'));\r\n\t\t\t// load extend module\r\n\t\t\t$this->load_extend(input('extend_module', 'str', 'get'));\r\n\t\t\t// load group controller & controller\r\n\t\t\tlist($lib, $instance) = $this->load_controller(input('group_controller', 'str', 'get'), input('controller', 'str', 'get'));\r\n\t\t\t// load action\r\n\t\t\t$this->load_action($lib, $instance);\r\n\t\t$html = ob_get_clean();\r\n\r\n\t\t// on response\r\n\t\tob_start();\r\n\t\t\\M::get('event')->change('system.on_response', $html);\r\n\r\n\t\t// display html & end all script\r\n\t\tdie($html);\r\n\t}", "public function send() {\n\t\t$this->response = $this->curl->send($this, $this->autoFollow, $this->maxRedirects);\n\t\treturn $this->response;\n\t}", "public abstract function html(): string;", "private function _sendResponse($status = 200, $body = '', $content_type = 'text/html')\n {\n $status_header = 'HTTP/1.1 ' . $status . ' ' . $this->_getStatusCodeMessage($status);\n // set the status\n header($status_header);\n // set the content type\n header('Content-type: ' . $content_type);\n\n // pages with body are easy\n if($body != '')\n {\n // send the body\n echo $body;\n exit;\n }\n // we need to create the body if none is passed\n else\n {\n // create some body messages\n $message = '';\n\n // this is purely optional, but makes the pages a little nicer to read\n // for your users. Since you won't likely send a lot of different status codes,\n // this also shouldn't be too ponderous to maintain\n switch($status)\n {\n case 401:\n $message = 'You must be authorized to view this page.';\n break;\n case 404:\n $message = 'The requested URL ' . $_SERVER['REQUEST_URI'] . ' was not found.';\n break;\n case 500:\n $message = 'The server encountered an error processing your request.';\n break;\n case 501:\n $message = 'The requested method is not implemented.';\n break;\n }\n\n // servers don't always have a signature turned on (this is an apache directive \"ServerSignature On\")\n $signature = ($_SERVER['SERVER_SIGNATURE'] == '') ? $_SERVER['SERVER_SOFTWARE'] . ' Server at ' . $_SERVER['SERVER_NAME'] . ' Port ' . $_SERVER['SERVER_PORT'] : $_SERVER['SERVER_SIGNATURE'];\n\n // this should be templatized in a real-world solution\n $body = '<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\n <html>\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n <title>' . $status . ' ' . $this->_getStatusCodeMessage($status) . '</title>\n </head>\n <body>\n <h1>' . $this->_getStatusCodeMessage($status) . '</h1>\n <p>' . $message . '</p>\n <hr />\n <address>' . $signature . '</address>\n </body>\n </html>';\n\n echo $body;\n exit;\n }\n }", "function _handler_response(&$app, &$c) {\n\t\t$c->param('app.view_http.response.status', $this->_http->getResponseCode());\n\t\t$c->param('app.view_http.response.body', $this->_http->getResponseBody());\n\t\t$c->param('app.view_http.response.headers', $this->_http->getResponseHeader());\n\t}", "public function send(ResponseInterface $response)\n {\n $this->sendHeaders($response);\n\n echo (string)$response->getBody();\n exit;\n }", "public function send() {\r\n\t\t$this->sendHeaders ();\r\n\t\techo $this->getContent ();\r\n\t}", "public static final function switchHTML () {\r\n switch (self::$objContainerHTML->toInt () == 0) {\r\n case TRUE:\r\n // Switch showing of HTML container;\r\n self::$objContainerHTML->setInt (1);\r\n self::$objHTWriteIt->setInt (1);\r\n self::$objRequestIsPHP->setInt (1);\r\n return new B (TRUE);\r\n break;\r\n\r\n case FALSE:\r\n // Switch showing of HTML container;\r\n self::$objContainerHTML->setInt (0);\r\n self::$objHTWriteIt->setInt (0);\r\n self::$objRequestIsPHP->setInt (0);\r\n return new B (TRUE);\r\n break;\r\n }\r\n }", "protected function handleHtmlAction($run, $successMessage = null)\n {\n $url = null;\n $request = $this->get('request_stack')->getCurrentRequest();\n\n try {\n $url = $run();\n\n if ($successMessage !== null) {\n $this->addFlash(self::MESSAGE_SUCCESS, $successMessage);\n }\n\n } catch (\\Exception $e) {\n\n $type = self::MESSAGE_ERROR;\n\n if (in_array(get_class($e), self::$customExceptions)) {\n $type = self::MESSAGE_WARNING;\n $msg = $e->getMessage();\n } else {\n $msg = 'Unexpected Exception.';\n }\n\n $msg = $this->get('kernel')->getEnvironment() !== 'prod'\n ? $e->getMessage().\"\\n\\n\".$e->getTraceAsString()\n : $msg;\n\n $this->addFlash($type, $msg);\n }\n\n $referer = $request->headers->get('referer');\n\n $url = empty($url) ? $referer : $url;\n\n if ($url === null) {\n $url = $request->getSchemeAndHttpHost();\n }\n\n return $this->redirect($url);\n }", "public function sendResponse() {\n\n header('Content-Type: ' . SabreAMF_Const::MIMETYPE);\n $this->amfResponse->setEncoding($this->amfRequest->getEncoding());\n $this->amfResponse->serialize($this->amfOutputStream);\n echo($this->amfOutputStream->getRawData());\n\n }", "function send_response()\n {\n \t// put all POST variables received from Paypal back into a URL encoded string\n foreach($this->paypal_post_vars AS $key => $value)\n {\n // if magic quotes gpc is on, PHP added slashes to the values so we need\n // to strip them before we send the data back to Paypal.\n if( @get_magic_quotes_gpc() )\n {\n $value = stripslashes($value);\n }\n\n // make an array of URL encoded values\n $values[] = \"$key\" . \"=\" . urlencode($value);\n }\n\n // join the values together into one url encoded string\n $this->url_string .= @implode(\"&\", $values);\n\n // add paypal cmd variable\n $this->url_string .= \"&cmd=_notify-validate\";\n\n\t\t $ch = curl_init();\n \t\tcurl_setopt ($ch, CURLOPT_URL, $this->url_string);\n\t \t\tcurl_setopt ($ch, CURLOPT_USERAGENT, \"Mozilla/4.0 (compatible; www.ScriptDevelopers.NET; PayPal IPN Class)\");\n \t\tcurl_setopt ($ch, CURLOPT_HEADER, 1);\n \t\tcurl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);\n \t\tcurl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);\n \t\tcurl_setopt ($ch, CURLOPT_TIMEOUT, $this->timeout);\n \t\t$this->paypal_response = curl_exec ($ch);\n\t\t\tcurl_close($ch);\n\n }", "public function render() {\n http_response_code($this->code);\n // Now send the body based on if its an api call or a UI call\n // If API call\n if (NULL != strstr($_SERVER['REQUEST_URI'], \"api\")) {\n return $this->render_api();\n }\n // Not an api call return the 401 or 403 page\n return $this->render_ui();\n }", "public function send() {\n /** @var HeaderCollection $headers */\n $headers = Yii::$app->response->headers;\n $headers->removeAll();\n foreach ($this->getHeaders() as $_header => $lines) {\n $headers->add($_header, $this->getHeaderLine($_header));\n }\n Yii::$app->response->version = $this->getProtocolVersion();\n Yii::$app->response->statusCode = $this->getStatusCode();\n Yii::$app->response->statusText = $this->getReasonPhrase();\n Yii::$app->response->content = $this->getBody();\n\n Yii::$app->response->send();\n }", "public function response() {\n\t\t$message = $this->returnMessages;\n\n if($this->checkIfLoggedIn()){\n\t\t\t$response = $this->generateLogoutButtonHTML($message);\n\t\t}\n else{\n\t\t\t$response = $this->generateLoginFormHTML($message);\n }\n\n\t\treturn $response;\n\t}", "private static function html()\n {\n $files = ['Html', 'Form'];\n $folder = static::$root.'Html'.'/';\n\n self::call($files, $folder);\n }", "abstract protected function response($content, int $statusCode = 200, string $statusMessage = 'OK') : Response;" ]
[ "0.647779", "0.6309607", "0.625803", "0.6116929", "0.59562933", "0.589758", "0.5889959", "0.5859024", "0.5805638", "0.579599", "0.579599", "0.5791436", "0.57271075", "0.5688994", "0.5586494", "0.5519346", "0.54943293", "0.5446674", "0.54292196", "0.53717494", "0.5366363", "0.5349593", "0.53415155", "0.5320549", "0.53089345", "0.53058535", "0.5261092", "0.5254798", "0.52419084", "0.5240088", "0.519353", "0.518978", "0.5186132", "0.51787966", "0.51597697", "0.51332015", "0.5129576", "0.5127668", "0.5123518", "0.5103885", "0.51033235", "0.5100092", "0.51000303", "0.50988984", "0.50960785", "0.50956607", "0.50845444", "0.50505936", "0.5047536", "0.50467324", "0.5034734", "0.5032881", "0.5030978", "0.5019343", "0.5019343", "0.5012568", "0.5003575", "0.5001549", "0.4981866", "0.497814", "0.49755472", "0.49742445", "0.497152", "0.49636513", "0.49604347", "0.49524453", "0.4932592", "0.49209365", "0.49009663", "0.48914412", "0.48806444", "0.48754448", "0.48750183", "0.48710096", "0.4868303", "0.48654938", "0.48617917", "0.48602796", "0.48574698", "0.48568186", "0.48504275", "0.48391423", "0.48308218", "0.48292243", "0.48276007", "0.48258132", "0.48178703", "0.48157728", "0.48154637", "0.48006037", "0.47995102", "0.47895652", "0.4783549", "0.4783513", "0.4781024", "0.47802907", "0.47799996", "0.47638786", "0.47627625", "0.4758283" ]
0.58274114
8
Generate a title and translate etc etc
public function generateTitle($key, $params = array()) { return $this->get('teapotio.site')->generateTitle($key, $params); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function generate_title()\r\n\t\t{\r\n\t\t\treturn $this->c_title;\r\n\t\t}", "private function _generateTitle()\n {\n $title = '';\n foreach ($this->_contents as $content)\n {\n $title = ('' == $title) ? $content->myGetSeoTitleTag() : $content->myGetSeoTitleTag().' | '.$title;\n }\n return $title;\n }", "protected function _buildTitle()\n\t{\n\t\tif ($this->_task)\n\t\t{\n\t\t\t$title = Lang::txt('COM_MEMBERS_REGISTER_' . strtoupper($this->_task));\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$title = Lang::txt('COM_MEMBERS_REGISTER');\n\t\t}\n\t\t\\Document::setTitle($title);\n\t}", "public function title();", "public function title();", "public static function title();", "public function computedTitle();", "private function generateTitle()\n {\n $label = $this->pre_link_text.' ';\n if($this->terms_page) {\n // if a page has been given, create the anchor\n $label.= '<a href=\"'.$this->terms_page.'\"';\n if($this->open_new_window) {\n // if were to open the link in a new window, add target=\"_blank\"\n $label.= ' target=\"_blank\"';\n }\n $label.= '>'.$this->link_text;\n $label.= '</a>';\n } else {\n // else just show the link text as plain text\n $label.= $this->link_text;\n }\n if(!is_null($this->post_link_text)) {\n // if the post link text is not blank, add it our string\n $label.= ' '.$this->post_link_text;\n }\n $label.= '.';\n // set the field title (label). We use DBField here to stop SS escaping it.\n $this->title = DBField::create_field('HTMLFragment', $label);\n return $this;\n }", "protected function regeneratePageTitle() {}", "protected function makeTitle()\n {\n $this->setY($this->layout['titleMarginTop']);\n $this->setFont('', 'B', $this->layout['titleFontSize']);\n $this->write($this->layout['titleCellHeight'], $this->content['title']);\n $this->setFont('', '', $this->layout['fontSize']);\n }", "protected function renderPageTitle() {}", "public function get_title();", "public function title(){\n if (func_num_args() > 0){\n $this->title = func_get_arg(0);\n }\n \n return $this->title;\n }", "function generate_content(&$title)\n {\n $title = $this->title;\n }", "private function renderTitle()\n\t{\n\t\treturn '<h1 class=\"block-new-title\">' . $this->title . '</h1>';\n\t}", "public function buildTitle()\r\n\t{\r\n\t\t$data\t= '<h1>' . t( 'intouch.admin.title', t( 'intouch.admin.title.' . $this->action . '.' . $this->task ) ) . '</h1>';\r\n\t\treturn $data;\r\n\t}", "function customPageTitle($string) {\n return sprintf(__('Add language &raquo; %s'), $string);\n}", "abstract protected function getTitle();", "function get_title()\n {\n }", "public function get_title() {\n\t\treturn __( 'Hello World', 'elementor-hello-world' );\n\t}", "function title(){\n\t\t\techo $mytitle= \"Profile. Car Parking Website\";\n\t\t\t\n\t\t}", "public function get_title(): string {\n\t\treturn __( 'Tips to make the most of Web Stories', 'web-stories' );\n\t}", "protected function _buildTitle()\n\t{\n\t\tif (!$this->_title)\n\t\t{\n\t\t\t$this->_title = Lang::txt(strtoupper($this->_option));\n\t\t\tif ($this->_task)\n\t\t\t{\n\t\t\t\tswitch ($this->_task)\n\t\t\t\t{\n\t\t\t\t\tcase 'browse':\n\t\t\t\t\tcase 'submit':\n\t\t\t\t\tcase 'start':\n\t\t\t\t\tcase 'intro':\n\t\t\t\t\t\tif ($this->_task_title)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$this->_title .= ': ' . $this->_task_title;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tcase 'serve':\n\t\t\t\t\tcase 'wiki':\n\t\t\t\t\t\t$this->_title .= ': ' . Lang::txt('COM_PUBLICATIONS_SERVING_CONTENT');\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tdefault:\n\t\t\t\t\t\t$this->_title .= ': ' . Lang::txt(strtoupper($this->_option . '_' . $this->_task));\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tDocument::setTitle($this->_title);\n\t}", "public function titleCallback(array $_title_arguments = [], $_title = '') {\n $_title_arguments += ['case_number' => '2', 'title' => $_title];\n return t($_title_arguments['title']) . ' - Case ' . $_title_arguments['case_number'];\n }", "public static function makeTitle($name);", "public function get_title( )\n {\n return 'Something went wrong.';\n }", "abstract public static function title(): string;", "abstract public function getTitle();", "abstract public function getTitle();", "abstract public function getTitle();", "public function getTitle();", "public function getTitle();", "public function getTitle();", "public function getTitle();", "public function getTitle();", "public function getTitle();", "public function getTitle();", "public function getTitle();", "public function getTitle();", "public function getTitle();", "public function getTitle();", "public function getTitle();", "public function getTitle();", "public function getTitle();", "public function getTitle();", "public abstract function getTitle();", "public function get_title()\n {\n }", "public function get_title()\n {\n }", "public function title()\n {\n if ($this->title === null) {\n $title = null;\n\n $translator = $this->translator();\n\n try {\n $config = $this->dashboardConfig();\n } catch (Exception $e) {\n $this->logger->error($e->getMessage());\n $config = [];\n }\n\n if (isset($config['title'])) {\n $title = $translator->translation($config['title']);\n } else {\n $obj = $this->obj();\n $objId = $this->objId();\n $objType = $this->objType();\n $metadata = $obj->metadata();\n\n if (!$title && isset($metadata['admin']['forms'])) {\n $adminMetadata = $metadata['admin'];\n\n $formIdent = filter_input(INPUT_GET, 'form_ident', FILTER_SANITIZE_STRING);\n if (!$formIdent) {\n $formIdent = (isset($adminMetadata['default_form']) ? $adminMetadata['default_form'] : '');\n }\n\n if (isset($adminMetadata['forms'][$formIdent]['label'])) {\n $title = $translator->translation($adminMetadata['forms'][$formIdent]['label']);\n }\n }\n\n if ($objId) {\n if (!$title && isset($metadata['labels']['edit_item'])) {\n $title = $translator->translation($metadata['labels']['edit_item']);\n }\n\n if (!$title && isset($metadata['labels']['edit_model'])) {\n $title = $translator->translation($metadata['labels']['edit_model']);\n }\n } else {\n if (!$title && isset($metadata['labels']['new_item'])) {\n $title = $translator->translation($metadata['labels']['new_item']);\n }\n\n if (!$title && isset($metadata['labels']['new_model'])) {\n $title = $translator->translation($metadata['labels']['new_model']);\n }\n }\n\n if (!$title) {\n $objType = (isset($metadata['labels']['singular_name'])\n ? $translator->translation($metadata['labels']['singular_name'])\n : null);\n\n if ($objId) {\n $title = $translator->translation('Edit: {{ objType }} #{{ id }}');\n } else {\n $title = $translator->translation('Create: {{ objType }}');\n }\n\n if ($objType) {\n $title = strtr($title, [\n '{{ objType }}' => $objType\n ]);\n }\n }\n }\n\n $this->title = $this->renderTitle($title);\n }\n\n return $this->title;\n }", "function getTitle() ;", "function title() {\n ?>\n <h2><?php _e(SCLNG_PUBLIC_PRODUCT_INFO, SC_DOMAIN); ?></h2>\n <?php\n }", "public function titleCallback() {\r\n return [\r\n '#markup' => $this->t('The title of this page is dynamically changed by the title callback for this route defined in menu_example.routing.yml.'),\r\n ];\r\n }", "public static function generateTitle()\n {\n return 'KIP' . substr(time(), 1);\n }", "public function title()\n\t{\n\t\t// Get current language\n $lang = Config::get('app.locale');\n if($lang == \"ar\")\n\t\t\treturn nl2br($this->title_ar);\n\t\telse\n\t\t\treturn nl2br($this->title);\n\t}", "public function generateContent()\n {\n parent::generateContent();\n $pathArray = $this->currentPageStrategy->getCurrentPagePath();\n $titleString = '';\n foreach ($pathArray as $page) {\n /** @var $page Page */\n\n $titleString .= ' - ' . (($t = $page->getTitle()) == '_404' ? 'Siden blev ikke fundet' : $t);\n }\n\n return $titleString;\n }", "function get_title($title) \n{\n global $scelus;\n return $title . (isset($scelus['title_append']) ? $scelus['title_append'] : null);\n}", "function title()\n {\n\n return _m('Catálogo');\n }", "private function _getTitle()\r\n\t{\r\n\t\t$input\t= dunloader( 'input', true );\r\n\t\t$action\t= $input->getVar( 'action', 'themes' );\r\n\t\t$task\t= $input->getVar( 'task', null );\r\n\t\t\r\n\t\treturn '<h1>' . t( 'themer.admin.module.title', t( 'themer.admin.module.title.' . $action . ( $task ? '.' . $task : '' ) ) ) . '</h1>';\r\n\t}", "function page_title($title = ''){\r\n\tglobal $eqdkp, $user;\r\n\t$pt_prefix\t\t= (defined('IN_ADMIN')) ? $user->lang['admin_title_prefix'] : $user->lang['title_prefix'];\r\n\t$main_title\t\t= sprintf($pt_prefix, $eqdkp->config['guildtag'], $eqdkp->config['dkp_name']);\r\n\treturn sanitize((( $title != '' ) ? $title.' - ' : '').$main_title, TAG);\r\n}", "public function title() {\n return \"{$this->venuename} ({$this->id})\";\n }", "function title($title, $name)\r\n{\r\n return sprintf(\"%s. %s\\r\\n\", $title, $name);\r\n}", "public function loadPageTitle()\n \t\t{\n echo \"<title>Add Item</title>\";\n }", "protected function getMetaTitleExample()\n {\n return '<p><b>' . __('Example') . '</b><p><p>[name][from||by {manufacturer|brand}][ ({color} color)][ for||for special {price}][ in {categories}] <p>'. __('will be transformed into') .\n '<br><p>HTC Touch Diamond by HTC (Black color) for € 517.50 in Cell Phones - Electronics';\n }", "public function get_document_title_template()\n {\n }", "function customPageTitle($string) {\n return sprintf(__('Import &raquo; %s'), $string);\n}", "public function title()\n {\n return __(\"I'd like to control\", 'idlikethis');\n }", "public function getTitle() {}", "public function getTitle() {}", "public function getTitle() {}", "public function getTitle() {}", "public function getTitle() {}", "public function getTitle() {}", "public function getTitle() {}", "public function getTitle() {}", "public function getTitle() {}", "public function getTitle() {}", "public function getTitle() {}", "public function getTitle() {}", "public function getTitle() {}", "public function getTitle() {}", "public function getTitle() {}", "public function title($name);", "protected function page_title() {\n?>\n\t\t<h2>\n\t\t\t<?php echo __( 'Marketplace Add-ons', APP_TD ); ?>\n\t\t\t<a href=\"https://marketplace.appthemes.com/\" class=\"add-new-h2\"><?php _e( 'Browse Marketplace', APP_TD ); ?></a>\n\t\t\t<a href=\"https://www.appthemes.com/themes/\" class=\"add-new-h2\"><?php _e( 'Browse Themes', APP_TD ); ?></a>\n\t\t</h2>\n<?php\n\t}", "function gettitle() {\n\n\t\tglobal $pagetiltle;\n\n\t\tif (isset($pagetiltle)) {\n\n\t\t\techo $pagetiltle;\n\t\t} else {\n\n\t\t\techo lang('DEFAULT');\n\t\t}\n\t}", "function title($title) {\r\n\t\tif (!defined('IS_UWR1RESULTS_VIEW')) {\r\n\t\t\treturn $title;\r\n\t\t}\r\n\r\n\t\t$season = Uwr1resultsController::season();\r\n\t\t$season = $season.'/'.($season+1); // TODO: make a function for that\r\n\r\n\t\t$view = Uwr1resultsController::WhichView();\r\n\t\tif ('index' == $view) {\r\n\t\t\t$title = 'Unterwasserrugby Liga Ergebnisse der Saison '.$season;\r\n\t\t} else if ('league' == $view) {\r\n\t\t\t$title = 'Ergebnisse der ' . Uwr1resultsModelLeague::instance()->name() . ' (Saison ' . $season . ')';\r\n\t\t} else if ('tournament' == $view) {\r\n\t\t\t$title = 'Ergebnisse des UWR Turniers ' . Uwr1resultsModelLeague::instance()->name();\r\n\t\t}\r\n\t\treturn $title;\r\n\t}", "function title ( $arguments = \"\" ) {\n $arguments = func_get_args();\n $rc = new ReflectionClass('ttitle');\n return $rc->newInstanceArgs( $arguments ); \n}", "protected function getOutputActionTitle() {\r\n if($this->getStrCurObjectTypeName() == \"\")\r\n return $this->getOutputModuleTitle();\r\n else\r\n return $this->getLang($this->getObjLang()->stringToPlaceholder(\"modul_titel_\".$this->getStrCurObjectTypeName()));\r\n }", "function od_set_page_title($orig_title) {\n\t\treturn \"Map | \"; // set the page title (could be improved, eg based on filters. Might be something the user wants to set\n\t}", "function stats_title($message) {\n global $t;\n echo \"<center>\\n\";\n echo \"<table width=600 border=0 cellspacing=0 cellpadding=0 bgcolor=\\\"\".$GLOBALS[\"th_box_frame_color\"].\"\\\" align=center>\\n\";\n echo \"<tr><td>\\n\";\n echo \"<table width=100% border=0 cellspacing=1 cellpadding=3>\\n\";\n echo \"<tr bgcolor=\\\"\".$GLOBALS[\"th_box_title_bgcolor\"].\"\\\">\\n\";\n echo \"<td><b>\";\n \techo $t->translate($message);\n \t\techo \"</b></td>\\n\";\n echo \"</tr><tr bgcolor=\\\"\".$GLOBALS[\"th_box_body_bgcolor\"].\"\\\"><td>\\n\";\n echo \"<table border=0 width=100% cellspacing=0>\\n\";\n}", "public static function setTitle(string $title) {}", "public function get_title() {\n\t\treturn __( 'Inline Editing', 'elementor-hello-world' );\n\t}", "public static function getTitle(): string\n {\n }", "public static function getTitle(): string\n {\n }", "public function setTitle($title);", "public function setTitle($title);", "public function setTitle($title);", "public function setTitle($title);", "public function setTitle($title);", "public function setTitle($title);", "public function setTitle($title);", "public function property_title() {\n\n\t\t\t$this->add_package = $this->getAddPackage();\n\n\t\t\t$headline_select = get_field( 'headline_select' );\n\t\t\t$standard_section = get_field( 'practice_type' ) . ' ' . get_field( 'building_type' );\n\t\t\t$custom_section = ( $headline_select == 'Custom Headline' )\n\t\t\t\t? get_field( 'custom_headline' )\n\t\t\t\t: $standard_section;\n\n\t\t\t$location = get_field( 'address_city' ) . ', ' . get_field( 'address_state' );\n\t\t\t$headline = get_field( 'practice_is_for' ) . ' - ' . $custom_section . ' - ' . $location;\n\n\t\t\t$out = '<h3>' . $headline . '</h3>';\n\t\t\t$out .= '<div class=\"hr hr-default\"><span class=\"hr-inner \"><span class=\"hr-inner-style\"></span></span></div>';\n\n\n\t\t\treturn $out;\n\t\t}" ]
[ "0.7659903", "0.7379929", "0.73370945", "0.73232096", "0.73232096", "0.7311335", "0.7217608", "0.7195024", "0.7179398", "0.7141081", "0.713076", "0.7098242", "0.70898527", "0.7082544", "0.7073739", "0.70474666", "0.70385724", "0.70381373", "0.7031128", "0.702728", "0.7019446", "0.6994519", "0.6981445", "0.69777745", "0.69362754", "0.6898062", "0.6894692", "0.68916416", "0.68916416", "0.68916416", "0.6880805", "0.6880805", "0.6880805", "0.6880805", "0.6880805", "0.6880805", "0.6880805", "0.6880805", "0.6880805", "0.6880805", "0.6880805", "0.6880805", "0.6880805", "0.6880805", "0.6880805", "0.68790966", "0.6875546", "0.6875463", "0.6864317", "0.6863912", "0.6835508", "0.6822199", "0.6821659", "0.68052447", "0.6801552", "0.67844063", "0.6784287", "0.67840075", "0.6762877", "0.67517966", "0.6751712", "0.6749338", "0.674802", "0.67256343", "0.6725312", "0.67222345", "0.6718459", "0.6717582", "0.6717582", "0.6717582", "0.6717582", "0.6717582", "0.6717582", "0.6717582", "0.6717582", "0.6717582", "0.6717582", "0.6717582", "0.6717582", "0.67154163", "0.67154163", "0.67057216", "0.6680849", "0.6680684", "0.6665998", "0.6662926", "0.6656264", "0.66475224", "0.6647372", "0.6643922", "0.66429496", "0.66268986", "0.66268986", "0.6624008", "0.6624008", "0.6624008", "0.6624008", "0.6624008", "0.6624008", "0.6624008", "0.66224396" ]
0.0
-1
Needs to be implemented in child classes
public function toString() { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function __init__() { }", "private function __construct()\t{}", "protected function __construct(){}", "protected function __construct(){}", "protected function __construct(){}", "protected final function __construct() {}", "final private function __construct(){\r\r\n\t}", "private function __construct() {\r\n\t\t\r\n\t}", "private function __construct() {\r\n\t\r\n\t}", "final private function __construct() {}", "final private function __construct() {}", "final private function __construct() {\n\t\t\t}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "protected function __construct() {}", "private function __() {\n }", "protected function __construct () {}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "private function __construct(){}", "protected function __construct() {\n\t\t\n\t}", "protected function __construct() {\n\t\t\n\t}", "final private function __construct() { }", "final private function __construct() { }", "final private function __construct() { }", "public function __init(){}", "public function __construct()\n {\n //to be extended by children\n }", "protected function init() {}", "protected function init() {}", "protected function init() {}", "protected function init() {}", "protected function init() {}", "protected function init() {}", "protected function init() {}", "protected function init() {}", "protected function init() {}", "protected function init() {}", "protected function init() {}", "protected function init() {}", "private function __construct()\r\n\t{\r\n\t\r\n\t}", "private function __construct()\r\n {\r\n }", "private function __construct()\r\n {\r\n }", "private function __construct () {}", "function __construct() \n\t\t{\n\t\t\tparent::__construct();\n\t\t}", "private function __construct()\n\t{\n\t\t\n\t}", "private function __construct()\r\n\t{\r\n\t}", "final private function __construct()\n {\n }", "private function __construct()\r\r\n\t{\r\r\n\t}", "final private function __construct()\n\t{\n\t}", "protected function init()\n\t{\n\t\t// Override this method as required.\n\t}", "function __construct()\n\t\t {\n\t\t\t parent::__construct();\n\t\t }", "function __construct()\n\t\t {\n\t\t\t parent::__construct();\n\t\t }", "private function __construct( )\n {\n\t}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}" ]
[ "0.6865116", "0.6658436", "0.6446062", "0.6446062", "0.6446062", "0.6443951", "0.64330924", "0.6420441", "0.64075184", "0.6396306", "0.6396306", "0.63903123", "0.6379125", "0.6379125", "0.6379125", "0.6379125", "0.6379125", "0.6379125", "0.6379125", "0.6379125", "0.6379125", "0.6379125", "0.6379125", "0.6379125", "0.6379125", "0.6379125", "0.6379125", "0.6379125", "0.63787687", "0.63606125", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63580114", "0.63560545", "0.63560545", "0.63495755", "0.63495755", "0.63495755", "0.63260436", "0.6321072", "0.6309705", "0.6309705", "0.6309705", "0.6309705", "0.6309705", "0.6309705", "0.6309283", "0.6309283", "0.6309283", "0.6309283", "0.63091934", "0.63091934", "0.63011", "0.6293617", "0.6293617", "0.6278875", "0.6269092", "0.6264571", "0.6260956", "0.62470526", "0.6246859", "0.6240162", "0.62287736", "0.62142694", "0.62142694", "0.6206206", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733", "0.62061733" ]
0.0
-1
grid create the configuration of the grid
public static function grid($rowNum = 10) { $translator = Shineisp_Registry::getInstance ()->Zend_Translate; $config ['datagrid'] ['columns'] [] = array ('label' => null, 'field' => 't.tax_id', 'alias' => 'tax_id', 'type' => 'selectall' ); $config ['datagrid'] ['columns'] [] = array ('label' => $translator->translate ( 'ID' ), 'field' => 't.tax_id', 'alias' => 'tax_id', 'sortable' => true, 'searchable' => true, 'type' => 'string' ); $config ['datagrid'] ['columns'] [] = array ('label' => $translator->translate ( 'Name' ), 'field' => 'r.name', 'alias' => 'name', 'sortable' => true, 'searchable' => true, 'type' => 'string' ); $config ['datagrid'] ['columns'] [] = array ('label' => $translator->translate ( 'Percentage' ), 'field' => 'percentage', 'alias' => 'percentage', 'sortable' => true, 'searchable' => true, 'type' => 'string' ); $config ['datagrid'] ['fields'] = "tax_id, name, percentage"; $config ['datagrid'] ['dqrecordset'] = Doctrine_Query::create ()->select ( $config ['datagrid'] ['fields'] )->from ( 'Taxes t' ); $config ['datagrid'] ['rownum'] = $rowNum; $config ['datagrid'] ['basepath'] = "/admin/taxes/"; $config ['datagrid'] ['index'] = "tax_id"; $config ['datagrid'] ['rowlist'] = array ('10', '50', '100', '1000' ); $config ['datagrid'] ['buttons'] ['edit'] ['label'] = $translator->translate ( 'Edit' ); $config ['datagrid'] ['buttons'] ['edit'] ['cssicon'] = "edit"; $config ['datagrid'] ['buttons'] ['edit'] ['action'] = "/admin/taxes/edit/id/%d"; $config ['datagrid'] ['buttons'] ['delete'] ['label'] = $translator->translate ( 'Delete' ); $config ['datagrid'] ['buttons'] ['delete'] ['cssicon'] = "delete"; $config ['datagrid'] ['buttons'] ['delete'] ['action'] = "/admin/taxes/delete/id/%d"; return $config; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function grid()\n {\n $grid = new Grid(new Gys);\n\n $grid->id('Id');\n $grid->name('公司名称');\n $grid->tel('联系人电话');\n $grid->file('营业执照')->display(function ($v){\n $str = '';\n foreach (explode(',',$v) as $item){\n $str.= '<a target=\"_blank\" href=\"'.env('APP_URL').$item.'\"><img src=\"'.env('APP_URL').$item.'\" width=\"100\" style=\"padding:10px;border:solid #eee 1px;border-radius:3px;margin-right:3px\"/></a>';\n }\n return $str;\n });\n $grid->hyzz('资质证书')->display(function ($v){\n $str = '';\n foreach (explode(',',$v) as $item){\n $str.= '<a target=\"_blank\" href=\"'.env('APP_URL').$item.'\"><img src=\"'.env('APP_URL').$item.'\" width=\"100\" style=\"padding:10px;border:solid #eee 1px;border-radius:3px;margin-right:3px\"/></a>';\n }\n return $str;\n });\n $grid->type('类型');\n $grid->username('用户名称');\n $grid->password('密码');\n $grid->created_at('创建时间');\n $grid->updated_at('更新时间');\n $grid->status('账户状态')->radio([\n 0=> '审核中',\n 1=> '审核通过',\n 2=> '冻结账户'\n ]);\n\n return $grid;\n }", "protected function grid()\n {\n return Admin::grid(Config::class, function (Grid $grid) {\n\n $grid->paginate(20);\n\n $grid->id('配置ID')->sortable();\n\n $grid->key('配置项');\n\n $grid->value('值');\n\n $grid->desc('描述');\n\n $grid->filter(function (Grid\\Filter $filter) {\n $filter->like('key', '配置项');\n });\n\n $grid->disableCreateButton();\n\n $grid->disableRowSelector();\n\n $grid->actions(function (Grid\\Displayers\\Actions $actions) {\n\n //$actions->disableDelete();\n\n //$actions->disableEdit();\n\n $actions->disableView();\n\n });\n });\n }", "protected function grid()\n {\n $grid = new Grid(new $this->currentModel);\n\n $grid->filter(function($filter){\n\n // 去掉默认的id过滤器\n //$filter->disableIdFilter();\n\n // 在这里添加字段过滤器\n $filter->like('title_designer_cn', '标题(设计师)');\n $filter->like('title_name_cn', '标题(项目名称)');\n $filter->like('title_intro_cn', '标题(项目介绍)');\n\n });\n\n $grid->id('ID')->sortable();\n $grid->title_designer_cn('标题(中)')->display(function () {\n return CurrentModel::formatTitle($this, 'cn');\n });\n $grid->title_designer_en('标题(英)')->display(function () {\n return CurrentModel::formatTitle($this, 'en');\n });\n $grid->article_status('状态')->display(function ($article_status) {\n switch ($article_status) {\n case '0' :\n $article_status = '草稿';\n break;\n case '1' :\n $article_status = '审核中';\n break;\n case '2' :\n $article_status = '已发布';\n break;\n }\n return $article_status;\n });\n $grid->release_time('发布时间')->sortable();\n \n // $grid->column('created_at', __('发布时间'));\n $grid->created_at('添加时间')->sortable();\n // $grid->column('updated_at', __('添加时间'));\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Product);\n\n $grid->column('id', __('Id'));\n $grid->column('type.name', __('分类名称'));\n $grid->column('recommend.name', __('推荐名称'));\n $grid->column('name', __('产品名称'));\n $grid->column('description', __('产品描述'));\n $states = [\n 'off' => ['value' => 0, 'text' => '否', 'color' => 'danger'],\n 'on' => ['value' => 1, 'text' => '是', 'color' => 'success'],\n ];\n $grid->column('pop', __('推荐'))->switch($states);\n $grid->column('logo','logo图')->display(function (){\n if ($this->logo){\n return '<div class=\"pop\"><img src='.env('APP_URl').'/uploads/'.$this->logo.' style=\"width:100px;height:100px;\"></div>';\n }else{\n return ;\n }\n });\n $grid->column('price', __('价格'));\n $grid->column('updated_at', __('更新时间'));\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Information);\n\n $grid->model()->where('adminuser_id', '=', Admin::user()->id);\n $grid->disableCreateButton();\n\n $grid->column('id', __('Id'));\n $grid->column('name', __('项目名称'));\n $grid->column('content', __('项目简介'))->limit(30);\n $grid->column('industry', __('行业类别'));\n $grid->column('investment', __('投资金额')); \n $grid->column('cont_name', __('资方联系人'));\n $grid->column('cont_phone', __('资方联系方式'));\n $grid->column('staff_name', __('工作人员姓名'));\n $grid->column('staff_phone', __('工作人员电话'));\n $grid->column('created_at', __('上报时间'));\n $grid->column('updated_at', __('更新时间'));\n $grid->filter(function($filter){\n\n // 去掉默认的id过滤器\n $filter->disableIdFilter();\n\n // 在这里添加字段过滤器\n $filter->like('name', '项目名称');\n $filter->like('cont_name', '资方联系人');\n $filter->like('content', '项目情况');\n });\n\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Direction());\n\n $grid->column('id', __('Id'));\n $grid->column('name', __(trans('hhx.name')));\n $grid->column('intro', __(trans('hhx.intro')));\n $grid->column('Img', __(trans('hhx.img')))->image();\n $grid->column('status', __(trans('hhx.status')))->using(config('hhx.status'));\n $grid->column('order_num', __(trans('hhx.order_num')));\n $grid->column('all_num', __(trans('hhx.all_num')));\n $grid->column('this_year', __(trans('hhx.this_year')));\n $grid->column('stock', __(trans('hhx.stock')));\n $grid->column('created_at', __(trans('hhx.created_at')));\n $grid->column('updated_at', __(trans('hhx.updated_at')));\n\n return $grid;\n }", "protected function grid()\n { \n \n $grid = new Grid(new Blog);\n\n $grid->id('Id')->sortable();\n $grid->title('标题');\n // $grid->content('内容');\n $grid->logo('图片')->display(function ($value) {\n return \"<img width='50' src='/upload/$value'>\";\n });\n $grid->discuss('评论');\n $grid->display('浏览');\n \n $grid->lab_id('标签')->display(function ($value) {\n $lab_name = Lab::select('lab_name')->where('id',$value)->get();\n \n return $lab_name[0]->lab_name;\n });\n\n $grid->cat_id('分类')->display(function ($value) {\n $cat_name = Cat::select('cat_name')->where('id',$value)->get();\n return $cat_name[0]->cat_name;\n });\n \n\n\n $grid->created_at('添加时间');\n \n $grid->actions(function ($actions){\n $actions->disableView();\n });\n\n $grid->filter(function($filter){\n $filter->like('title', '标题');\n $filter->like('content', '内容');\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new PrizesLog);\n // 禁用新增\n $grid->disableCreateButton();\n // 查询过滤\n $grid->filter(function ($filter) {\n $filter->disableIdFilter();\n $filter->column(1/2, function($filter){\n $filter->between('id', 'ID');\n $filter->equal('user.username', '用户名');\n $filter->equal('user.mobile', '用户手机号');\n $filter->equal('prizes_group_id', '奖品组')->select('/selector/prizes-groups');\n $filter->equal('source', '来源')->radio([\n 'exchange' => '兑换/领取', 'lottery' => '抽奖',\n ]);\n });\n $filter->column(1/2, function ($filter) {\n $filter->equal('material_id', '物料')->select('/selector/materials');\n $filter->equal('material_code', '物料码');\n $filter->between('created_at', '中奖时间')->datetime();\n $filter->equal('status', '状态')->radio([\n 1 => '有效',\n 0 => '作废',\n ]);\n });\n });\n\n $grid->column('id', 'ID');\n $grid->column('prizes_group_id', '奖品组ID');\n $grid->column('group.title', '奖品组'); \n $grid->column('prize_id', '奖品ID');\n $grid->column('prize.name', '奖品');\n $grid->column('material_id', '物料ID');\n $grid->column('material.title', '物料名称');\n $grid->column('user_id', '用户ID');\n $grid->column('user.username', '用户名');\n $grid->column('status', '状态')->display(function($status) {\n $status_dic = [\n '0' => '<span style=\"color:red;\">作废</span>',\n '1' => '<span style=\"color:green;\">有效</span>',\n ];\n return Arr::get($status_dic, $status, '');\n });\n $grid->column('created_at', '中奖时间');\n\n // 去掉删除按钮\n $grid->actions(function ($actions) {\n $actions->disableDelete();\n $actions->disableView();\n // $actions->disableEdit();\n });\n\n return $grid;\n }", "protected function grid()\n {\n $Adv=new Adv();\n $grid = new Grid($Adv);\n\n $platform= $Adv->platform;\n $type= $Adv->type;\n $status= $Adv->status;\n\n $list_array=[\n array(\"field\"=>\"title\",\"title\"=>\"标题\",\"type\"=>\"value\"),\n array(\"field\"=>\"platform\",\"title\"=>\"平台\",\"type\"=>\"array\",\"array\"=>$platform),\n array(\"field\"=>\"type\",\"title\"=>\"类型\",\"type\"=>\"array\",\"array\"=>$type),\n array(\"field\"=>\"image\",\"title\"=>\"图片\",\"type\"=>\"image\"),\n array(\"field\"=>\"start_time\",\"title\"=>\"活动开始时间\",\"type\"=>\"value\"),\n array(\"field\"=>\"end_time\",\"title\"=>\"活动结束时间\",\"type\"=>\"value\"),\n array(\"field\"=>\"status\",\"title\"=>\"状态\",\"type\"=>\"array\",\"array\"=>$status),\n array(\"field\"=>\"created_at\",\"title\"=>\"创建时间\",\"type\"=>\"value\")\n ];\n BaseControllers::setlist_show($grid,$list_array);\n\n $grid->filter(function($filter) use($platform,$type){\n // 去掉默认的id过滤器\n $filter->disableIdFilter();\n\n $filter->in('platform', \"平台\")->multipleSelect($platform);\n $filter->in('type', \"类型\")->multipleSelect($type);\n });\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new $this->currentModel);\n\n $grid->id('ID')->sortable();\n\n $grid->company_id('公司名称')->display(function ($company_id) {\n $company = Company::find($company_id);\n if ($company) {\n return $company->company_name;\n }\n return $company_id;\n });\n $grid->project_name('项目名称')->sortable();\n $grid->link_url('项目链接');\n $grid->display('公开度')->display(function ($display) {\n return $display == 0 ? '公开' : '私密';\n });\n $grid->created_at('添加时间')->sortable();\n\n return $grid;\n }", "protected function initGrid(): void\n\t{\n\t\t$this->initGridConfig();\n\t\t$this->initGridColumns();\n\t\t$this->initGridPageNavigation();\n\t\t$this->initGridOrder();\n\t}", "protected function grid()\n {\n $grid = new Grid(new City());\n\n// $grid->column('id', __('Id'));\n $grid->column('date', __('Дата'));\n $grid->column('name', __('Город'))->display(function () {\n return '<a href=\"/admin/city-users?set='.$this->id.'\">'.$this->name.'</a>';\n });\n $grid->column('image', 'Картинка')->display(function () {\n $str = $this->image!='' ? '<img src=\"/uploads/images/'.$this->image.'\" height=\"100\"/>' : '';\n return $str;\n });\n// $grid->column('text', __('Text'));\n $grid->column('show', 'Активен')->display(function () {\n return $this->show ? 'да' : 'нет';\n });\n// $grid->column('orders', __('Orders'));\n// $grid->column('created_at', __('Created at'));\n// $grid->column('updated_at', __('Updated at'));\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Terrace());\n\n $grid->column('id', __('Id'))->sortable()->style('text-align:center');\n $grid->column('image', __('平台图片'))->style('text-align:center')->image();\n $grid->column('name', __('平台名称'))->style('text-align:center');\n $grid->column('path', __('外链'))->style('text-align:center');\n $grid->column('notice_info', __('提示语'))->style('text-align:center');\n $grid->column('status', __('状态'))->display(function($status){\n return $status == 1 ? '未推荐' : '已推荐';\n })->style('text-align:center');\n $grid->column('created_at', __('创建时间'))->style('text-align:center');\n $grid->disableExport();\n\n $grid->actions(function ($actions) {\n $actions->disableDelete();\n $actions->add(new Terracedel());\n });\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Procurement);\n /*禁用创建按钮*/\n $grid->disableCreateButton();\n /*禁用导出数据按钮*/\n $grid->disableExport();\n// $grid->disableRowSelector();\n /*禁用行选择checkbox*/\n $grid->actions(function ($actions) {\n //$actions->disableDelete(); /*关闭删除按钮*/\n $actions->disableEdit(); /*关闭编辑按钮*/\n //$actions->disableView(); /*关闭查看按钮*/\n });\n $grid->filter(function($filter){\n $uids = Procurement::distinct()->pluck('u_id');\n $user_list = \\DB::table('users')->where('status',0)->whereIn('id',$uids)->pluck('name','id');\n $filter->equal('u_id','用户')->select($user_list);\n $filter->equal('brick_time','用砖时间')->select(['1'=>'1周','5'=>'1个月','10'=>'3个月']);\n $filter->equal('status','审核状态')->select([ 0 =>'待审核', 1 => '通过', 2 => '未通过',]);\n });\n $grid->id('Id')->sortable();\n $grid->u_id('姓名/昵称')->display(function($userId) {\n return User::where('id',$userId)->value('name');\n });\n $grid->brand('品牌要求')->display(function ($id) {\n return Brand::where('id',$id)->value('name');\n });\n $grid->status('审核')->select([\n 0 =>'待审核',\n 1 => '通过',\n 2 => '未通过',\n ]);\n $grid->area('采购面积')->display(function ($num) {\n return $num.'平米';\n })->sortable();\n $grid->room_city('项目地址')->display(function ($id) {\n return Cities::where('area_code',$id)->value('area_name');\n });\n $grid->address('详细地址');\n $grid->brick_time('用砖时间')->display(function ($num) {\n switch($num){\n case '1':\n return '1周';\n break;\n case '5':\n return '1个月';\n break;\n case '10':\n return '3个月';\n break;\n }\n });\n $grid->ctime('创建时间')->sortable();\n\n return $grid;\n }", "protected function grid()\n {\n return Admin::grid(C2CConfig::class, function (Grid $grid) {\n\n $grid->id('ID');\n $grid->coinName('币种名称');\n $grid->legalName('法币名称');\n $grid->lastPrice('最新成交价');\n $grid->expiredTimeCancel('付款时间(分钟)');//超时取消\n $grid->expiredTimeFreeze('放行时间(分钟)');//超时取消冻结\n $grid->feeRate('卖家挂单手续费(0.1代表10%)');\n $grid->maxApplBuyCount('最大挂单数(买单)');\n $grid->maxApplSellCount('最大挂单数(卖单)');\n\n $grid->disableExport();\n $grid->disableFilter();\n $grid->actions(function ($actions) {\n $actions->setKey($actions->row->coinName);\n $actions->disableDelete();\n });\n $grid->disableCreateButton();\n $grid->tools(function ($tools) {\n $tools->batch(function ($batch) {\n $batch->disableDelete();\n });\n });\n });\n }", "protected function grid()\n {\n $grid = new Grid(new GoodsClass);\n $pid=Input::get(\"pid\",null);\n $grid->model()->where(\"pid\",$pid);\n $info_array=[\n array(\"field\"=>\"id\",\"title\"=>\"id\",\"type\"=>\"value\"),//展示昵称\n array(\"field\"=>\"parent.title\",\"title\"=>\"上级\",\"type\"=>\"default\",\"default\"=>\"顶级\"),//展示昵称\n array(\"field\"=>\"title\",\"title\"=>\"标题\",\"type\"=>\"value\"),//展示昵称\n array(\"field\"=>\"desc\",\"title\"=>\"简介\",\"type\"=>\"value\"),//展示真实姓名\n array(\"field\"=>\"icon\",\"title\"=>\"图标\",\"type\"=>\"image\"),//展示图片\n array(\"field\"=>\"updated_at\",\"title\"=>\"更新时间\",\"type\"=>\"value\"),\n ];\n BaseControllers::setlist_show($grid,$info_array);//拼接列表展示数据\n\n $grid->actions(function ($actions) use($pid) {\n\n if(empty($pid)){\n $actions->add(new SeeNext());\n }\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new MobileImport);\n $grid->title('导入标题');\n $grid->employee()->name('所属员工');\n $grid->projectItem()->name('主推产品');\n $grid->labels_html('导入意向')->display(function ($labels_html){\n return $labels_html;\n });\n $grid->status_html('当前状态')->display(function ($status_html){\n return $status_html;\n });\n $grid->error('错误文件')->display(function ($file){\n return $file?'<a href=\"/upload/'.$file.'\" target=\"_blank\">链接</a>':'无';\n });\n $grid->actions(function (Grid\\Displayers\\Actions $actions) {\n $actions->disableDelete();\n $actions->disableEdit();\n $actions->disableView();\n if (Admin::user()->can('mobile-close')) {\n $actions->append(new CloseMobileImportRow($actions->getKey(),$this->row->status));\n }\n });\n $grid->tools(function (Grid\\Tools $tools) {\n $tools->append(new MobileImportTemplate());\n });\n $grid->disableExport();\n $grid->disableFilter();\n $grid->disableRowSelector();\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Elevator);\n\n $grid->id('ID');\n $city=getCity();$brand=getBrand();\n\n if($city!='*'){\n $subsql=DB::table('project')->whereIn('city_id', $city)->select('id')->sql();\n $grid->model()->whereRaw(DB::raw('pid in ('.$subsql.')'));\n }\n if($brand!='*'){\n $subsql=DB::table('project')->whereIn('brand', $brand)->select('id')->sql();\n $grid->model()->whereRaw(DB::raw('pid in ('.$subsql.')'));\n }\n $grid->column('project.name','项目名称');\n $grid->region('梯号');\n $grid->eid('电梯设备')->display(function(){\n if($this->device){\n return $this->device->brand.$this->device->brand_set;\n }\n return '未找到电梯设备';\n });\n $grid->num('电梯数量');\n $grid->height('提升高度(m)');\n $grid->layer_numbers('层/站/门')->display(function($layer_number){\n return \"{$this->layer_number}/{$this->layer_number_site}/{$this->layer_number_door}\";\n });\n $grid->pit_depth('底坑深度(mm)');\n $grid->top_height('顶层高度(mm)');\n $grid->hall_width('厅门尺寸(mm)')->display(function($hall){\n return \"{$this->hall_width}X{$this->hall_height}\";\n });\n $grid->car_width('轿厢尺寸(mm)')->display(function($car){\n return \"{$this->car_width}X{$this->car_height}X{$this->car_depth}\";\n });\n $grid->desc('电梯说明');\n\n $grid->status1('功能/装修')->display(function(){\n if($this->status>=Elevator::STATUS_JD_JT){\n return Elevator::getStatusStr($this->status);\n }\n return '<a href=\"/admin/elevator/'.$this->id.'/funfit\">查看&配置</a>';\n });\n $grid->status('状态')->eleStatus();\n $grid->filter(function($filter) use($city,$brand){\n // 去掉默认的id过滤器\n $filter->disableIdFilter();\n // 在这里添加字段过滤器\n $pj=Project::select('*');\n if($city!='*'){\n $pj->whereIn('city_id', $city);\n }\n if($brand!='*'){\n $pj->where('brand', $brand);\n }\n $pj=$pj->get();\n $arr=Arr::pluck($pj, 'name','id');\n //var_dump($pj,$arr);\n $filter->equal('pid','项目')->select($arr);\n $filter->like('desc', '电梯说明');\n });\n $grid->tools(function ($tools) {\n $tools->batch(function ($batch) {\n $batch->disableDelete();\n });\n });\n $grid->disableExport();\n $grid->actions(function (Grid\\Displayers\\Actions $actions) {\n $actions->disableView();\n if($actions->row->status>=Elevator::STATUS_JD_JT){\n $actions->disableDelete();\n $actions->disableEdit();\n }\n });\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Goods);\n $grid->id('ID')->sortable();\n $grid->name('名称');\n $grid->type('分类')->display(function($status) {\n $arr = (new AdminModel('goods_type'))->getAll('',['type','id']);\n foreach ($arr as $key => $value) {\n if($status==$value['id']) return $value['type']; \n }\n \n });\n $grid->cover('商品大图')->image('',70, 70);\n $grid->image('详情图')->image('',70, 70);\n $grid->stock('库存');\n $grid->price('积分价格');\n $grid->status('状态')->display(function($status) {\n if($status==1) return \"上架中\";\n if($status==0) return \"已下架\"; \n });\n $grid->disableExport();//禁用导出数据按钮\n $grid->filter(function ($filter) {\n $filter->disableIdFilter();//禁用查询过滤器\n });\n \n \n return $grid;\n }", "public function grid()\n\t{\n\t\t$this->load->library('grid');\n\t\t$this->load->config($this->uri->segments[1].'/'.$this->session->grid);\n\t\t$grid = $this->config->item('grid');\n\n\t\tif(isset($grid['session']))\n\t\t{\n\t\t\t$sess = explode('-',$grid['session']);\n\t\t\t$val = explode('_',$this->input->post($grid['session']));\n\t\t\tforeach($sess as $k=>$v)\n\t\t\t{\n\t\t\t\t$this->session->set_userdata($v,$val[$k]);\n\t\t\t\t$this->data[$v] = $val[$k];\n\t\t\t}\n\t\t}\n\t\t\n\t\t$this->load->model('BaseModel');\n\n\t\t$grid['controller'] = $this->uri->segments[1];\n\t\tif(isset($grid['dir']))\n\t\t{\n\t\t\t$path = DATA . $grid['dir'];\n\t\t\t$grid['target'] = $grid['dir'];\n\t\t\t$this->session->set_userdata('location',$path);\t \t\n\t\t\t\n\t\t\tif(!file_exists($path))\n\t\t\t{\n\t\t\t\tmkdir($path, 0777);\n\t\t\t\t@fopen($path . \"/index.html\", \"w\");\n\t\t\t}\n\n\t\t}\n\t\t$grid['content'] = $this->BaseModel->execute($grid['arguments'],isset($grid['param'])?$grid['param']:[])->result();\n\n\t\tif(isset($grid['cell']) && is_array($grid['cell']))\n\t\t{\n\t\t\tforeach($grid['cell'] as $key => $val)\n\t\t\t{\n\t\t\t\tif(isset($val['option']))\n\t\t\t\t{\n\t\t\t\t\t$grid['cell'][$key]['option'] = $val['option']['helper']($this->BaseModel->execute($val['option']['arguments'],[], $this->data)->result(), $val['option']['field'], $val['option']['label']);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t$this->viewGrid($grid);\n\t}", "protected function grid()\n {\n $grid = new Grid(new MachinesStyle());\n\n $grid->model()->latest();\n \n $grid->column('id', __('索引'))->sortable();\n\n $grid->column('style_name', __('型号名称'))->help('机具的型号名称');\n\n $grid->column('machines_fact.factory_name', __('所属厂商'))->help('机具型号所属的厂商');\n\n // $grid->column('machines_fact.machines_types.name', __('所属类型'))->help('机具型号所属的类型');\n\n $grid->column('created_at', __('创建时间'))->date('Y-m-d H:i:s')->help('机具型号的创建时间');\n\n $grid->column('updated_at', __('修改时间'))->date('Y-m-d H:i:s')->help('机具型号的最后修改时间');\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Certification);\n\n $grid->model()->orderBy('id', 'desc');\n $grid->id('Id');\n $grid->customer('委托单位');\n $grid->instrument_no('产品编号');\n $grid->instrument_name('产品名称');\n $grid->instrument_model('产品型号');\n $grid->certificate_year('年份');\n $grid->out_date('有效期');\n $grid->file('第一页')->display(function ($value) {\n return '<a href=\"' . ($value['file_server'] . $value['file_url']) . '\" target=\"_blank\">' . $value['id'] . '</a>';\n });\n $grid->files('其他页')->display(function ($item) {\n $files = $this->files();\n $url = '';\n foreach ($files as $value) {\n $url .= '<a href=\"' . ($value['file_server'] . $value['file_url']) . '\" target=\"_blank\">' . $value['id'] . '</a>';\n }\n return $url;\n });\n $grid->company()->title('绑定单位');\n $grid->payCompany()->title('付费单位');\n\n $grid->filter(function ($filter) {\n $filter->like('company_id', '单位id');\n $filter->like('customer', '委托单位');\n $filter->like('instrument_no', '产品编码');\n });\n $grid->tools(function ($tools) {\n $tools->append('<a class=\"btn btn-sm btn-danger form-history-bac\" style=\"float: right;margin-right: 20px;\" href=\"certifications/createBatch\" ><i class=\"fa fa-plus-circle\"></i>批量添加</a>');\n });\n return $grid;\n }", "protected function grid()\n {\n // return Admin::grid(Campaign_setting_form::class, function (Grid $grid) {\n // });\n }", "protected function grid()\n {\n $grid = new Grid(new Advertisement);\n\n $grid->id('الرقم');\n $grid->title('العنوان');\n $grid->ad_views()->views('المشاهدات');\n // $grid->user('المستخدم')->display(function ($user) {\n // return \"<span class='label label-success'>{$user['name']}</span>\";\n // });\n $grid->category('القسم')->display(function ($category) {\n return \"<span class='label label-success'>{$category['title_ar']}</span>\";\n });\n $grid->status('الحالة')->radio([\n -1 => 'قيد المراجعة',\n 1 => 'مقبول',\n 0 => 'مرفوض',\n ]);\n $grid->type('النوع')->radio([\n 'sell' => 'بيع',\n 'rental' => 'إيجار',\n ]);\n $grid->featured('مميز')->editable('select', [\n 1 => 'نعم',\n -1 => 'لا',\n ]);\n // $grid->column('position')->openMap(function () {\n\n // return [$this->lat, $this->long];\n\n // }, 'Position');\n $grid->area('المساحة');\n $grid->price('السعر');\n $grid->created_at('تاريخ الإنشاء');\n $grid->updated_at('اخر تحديث');\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Good);\n $grid->column('id', __('Id'))->sortable();\n $grid->column('name', __('名称'));\n $grid->column('unit', __('单位'));\n //$grid->column('list_img', __('商品图片'))->image()->width(10);\n $grid->column('amount', __('价格'));\n $grid->column('created_at', __('创建时间'));\n $grid->disableExport();\n $grid->disableRowSelector();\n $grid->disableFilter();\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new ThemePoster());\n\n $grid->column('id', __('Id'));\n $grid->column('domain_id', __('domain_id'))->editable('select', DomainConfig::getDomainMap());\n $grid->column('type', __('type'))->using(ThemePoster::getTypeMap());\n $grid->column('type_id', __('type_id'))->display(function ($type_id){\n if ($this->type == ThemePoster::TYPE_PRODUCT)\n return array_merge([0 =>'总列表'], Product::getCategoryMap()->toArray())[$type_id];\n if ($this->type == ThemePoster::TYPE_ARTICLE)\n return array_merge([0 =>'总列表'], Article::getCategoryMap())[$type_id];\n return '未知类型';\n });\n $grid->column('title', __('title'));\n $grid->column('alt', __('alt'));\n $grid->column('site', __('site'))->image('/storage', 90);\n $grid->column('link', __('link'));\n $grid->column('created_at', __('created_at'));\n $grid->column('updated_at', __('updated_at'));\n $states = [\n 'on' => ['value' => 1, 'text' => '打开', 'color' => 'primary'],\n 'off' => ['value' => 2, 'text' => '关闭', 'color' => 'default'],\n ];\n $grid->column('is_show', __('is_show'))->switch($states);\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Regional());\n\n $grid->column('id', 'ID');\n $grid->column('logo', 'Logo')->image('', '50', '50');\n $grid->column('name', 'Nama');\n $grid->column('address', 'Alamat');\n $grid->column('created_at', 'Dibuat')->date('d-m-Y');\n $grid->column('updated_at', 'Diubah')->date('d-m-Y');\n\n return $grid;\n }", "protected function grid()\n {\n Admin::script($this->script());\n $token = request()->session()->get('wxtoken');\n\n $grid = new Grid(new NoticeTask);\n $grid->disableCreateButton();\n $grid->disableRowSelector();\n $grid->disableExport();\n\n $grid->filter(function ($filter) {\n // 去掉默认的id过滤器\n $filter->disableIdFilter();\n $filter->date('created_at', '发起时间');\n });\n\n $grid->actions(function (Grid\\Displayers\\Actions $actions) {\n// $actions->disableView();\n $actions->disableEdit();\n $actions->disableDelete();\n if ($actions->row->total_n > 0) {\n //存在数据的时候才可以进行核查\n $url = route('wechat.notice-tasks.query', $actions->row->id);\n $actions->append(new IconButton($url, '核对记录', 'fa-search'));\n }\n if ($actions->row->status == -1) {\n $actions->append(\"<button class='btn btn-xs btn-warning margin-r-5 retry' data-id='{$actions->row->id}'\n data-token='{$actions->row->token}'>异常重试</button>\");\n }\n });\n\n $grid->tools(function ($tools) {\n $tools->append(new BackButton(route('wechat.expire-notices'), '返回配置中心'));\n });\n\n $grid->model()->where('token', $token)->orderBy('id', 'desc');\n\n $grid->column('id', '编号#');\n $grid->column('created_at', '发起时间')->sortable()->date('Y-m-d')->label('primary');\n\n $grid->column('conf_data', '应还时间(借阅)')->display(function ($conf) {\n $conf = json_decode($conf, true);\n if (isset($conf['day_n'])) {\n return Carbon::parse($this->created_at)->addDays($conf['day_n'])->toDateTimeString();\n }\n return '';\n })->date('Y-m-d')->label('primary');\n\n $grid->column('total_n', '催还数量')->badge('red');\n $grid->column('valid_n', '有效数量(已绑定)')->badge('black');\n $grid->column('success_n', '发送成功数量')->badge('green');\n $grid->column('is_retry', '是否重试')->bool(['1' => true, '0' => false]);\n $grid->column('status', '任务状态')->using([\n -1 => '异常',\n 0 => '创建',\n 1 => '数据采集中',\n 2 => '等待执行',\n 3 => '执行中',\n 4 => '执行完成',\n ])->dot([\n -1 => 'danger',\n 0 => 'default',\n 1 => 'warning',\n 2 => 'info',\n 3 => 'primary',\n 4 => 'success',\n ]);\n return $grid;\n }", "protected function constructGrid()\n {\n // jquery script for loading first page of grid\n $table = \"\n <script type=\\\"text/javascript\\\">\n // load first page\n WschangeModelPagination(\n '$this->_id',\n '$this->_action',\n '$this->_modelName',\n '$this->noDataText',\n $this->itemsPerPage,\n $this->showEdit,\n '$this->_order',\n '$this->_formId',\n 0,\n '$this->_id'+'_0',\n '$this->_edit_action',\n '$this->_delete_action'\n );\n </script>\n \";\n\n // container for edit dialog\n if ($this->showEdit) {\n $table .= '<div class=\"uk-modal\" id=\"'.$this->_formId.'\"></div>';\n $table .= '<div class=\"uk-modal\" id=\"'.$this->_formId.'_new\"></div>';\n }\n\n // title\n $table .= '<div class=\"uk-grid\">';\n $table .= '<div class=\"uk-width-small-1-1 uk-width-medium-1-1\">';\n $table .= '<h1>'.$this->_model->metaName.'</h1>';\n $table .= '</div>';\n $table .= '</div>';\n\n // add and search controls\n $table .= '<div class=\"uk-grid\">';\n $table .= '<div class=\"uk-width-small-1-1 uk-width-medium-1-2\">';\n $table .= '<form class=\"uk-form uk-form-horizontal\">';\n $table .= '<fieldset data-uk-margin>';\n // new item button\n if ($this->showEdit) {\n $table .= '<button class=\"uk-button uk-button-success\"'\n .' data-uk-modal=\"{target:\\'#'.$this->_formId\n .'_new\\', center:true}\"'\n .' id=\"btn_create_'.$this->_id.'\"'\n .' type=\"button\" onclick=\"WseditModelID('\n .'\\''.$this->_formId.'_new\\', '\n .'\\''.$this->_modelName.'\\', '\n .'0, \\''.$this->_edit_action.'\\')\">';\n $table .= '<i class=\"uk-icon-plus\"></i>';\n $table .= '</button>';\n }\n // search control\n $table .= '<input';\n $table .= ' type=\"text\" id=\"search_'.$this->_id.'\"';\n $table .= '/>';\n $table .= '<button class=\"uk-button\"'\n .' id=\"btn_search_'.$this->_id\n .'\" type=\"button\" onclick=\"WschangeModelPagination('\n .'\\''.$this->_id.'\\', '\n .'\\''.$this->_action.'\\', '\n .'\\''.$this->_modelName.'\\', '\n .'\\''.$this->noDataText.'\\', '\n .$this->itemsPerPage.', '\n .$this->showEdit.', '\n .'\\''.$this->_order.'\\', '\n .'\\''.$this->_formId.'\\', '\n .'0, \\''.$this->_id.'\\'+\\'_0\\', '\n .'\\''.$this->_edit_action.'\\', '\n .'\\''.$this->_delete_action.'\\')\">';\n $table .= '<i class=\"uk-icon-search\"></i>';\n $table .= '</button>';\n\n $table .= '</fieldset>';\n $table .= '</form>';\n $table .= '</div>';\n $table .= '</div>';\n\n // Grid View table\n $table .= '<div class=\"uk-grid\">';\n $table .= '<div class=\"uk-width-1-1\">';\n $table .= '<div class=\"uk-overflow-container\">';\n $table .= '<table class=\"uk-table uk-table-hover uk-table-striped\">';\n $table .= '<thead>';\n $table .= '<tr>';\n foreach ($this->_model->columns as $column) {\n if (!in_array($column, $this->_model->hiddenColumns)) {\n if (isset($this->_model->columnHeaders[$column])) {\n $table .= '<th>'\n .$this->_model->columnHeaders[$column];\n $table .= '</th>';\n } else {\n $table .= '<th>'.$column.'</th>';\n }\n }\n }\n if ($this->showEdit) {\n $table .= '<th></th>';\n }\n $table .= '</tr>';\n $table .= '</thead>';\n\n // container of table data loaded from AJAX request\n $table .= '<tbody id=\"'.$this->_id.'\"></tbody>';\n\n // end of grid table\n $table .= '</table>';\n $table .= '</div>';\n $table .= '</div>';\n $table .= '</div>';\n\n // get number ow rows from query so that we can make pager\n $db = new WsDatabase();\n $countQuery = 'SELECT COUNT(*) AS nrows FROM '.$this->_model->tableName;\n $result = $db->query($countQuery);\n $this->nRows = intval($result[0]['nrows']);\n $db->close();\n\n // number of items in pager\n $nPages = $this->getPagination($this->nRows);\n\n // construct pager\n $table .= '<ul class=\"uk-pagination uk-pagination-left\">';\n // links to pages\n for ($i = 0; $i < $nPages; $i++) {\n $table .= '<li>';\n $table .= '\n <a id=\"'.$this->_id.'_'.$i.'\"\n href=\"javascript:void(0)\"\n onclick=\"WschangeModelPagination('\n .'\\''.$this->_id.'\\', '\n .'\\''.$this->_action.'\\', '\n .'\\''.$this->_modelName.'\\', '\n .'\\''.$this->noDataText.'\\', '\n .$this->itemsPerPage.', '\n .$this->showEdit.', '\n .'\\''.$this->_order.'\\', '\n .'\\''.$this->_formId.'\\', '\n .$i.',\\''.$this->_id.'_'.$i.'\\', '\n .'\\''.$this->_edit_action.'\\', '\n .'\\''.$this->_delete_action.'\\')\"/>'\n .($i+1).'</a>';\n $table .= '</li>';\n }\n // end of pager\n $table .= '</ul>';\n\n // end of master div element\n $table .= '<br/>';\n\n $table .= '<script type=\"text/javascript\">'\n .'$(\"#search_'.$this->_id.'\").keydown(function(event) {'\n .' if(event.keyCode == 13) {'\n .' event.preventDefault();'\n .' $(\"#btn_search_'.$this->_id.'\").click();'\n .' }'\n .'});'\n .'</script>';\n\n unset($i, $nPages, $db, $result, $countQuery);\n return $table;\n }", "protected function grid()\n {\n $grid = new Grid(new Category);\n\n $grid->id('ID');\n $grid->name('Название');\n //$grid->intro_img('Превью');\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Collect());\n $grid->disableActions();\n $grid->disableCreateButton();\n $grid->column('name','姓名');\n $grid->column('phone','手机号');\n $grid->column('address','地址');\n $grid->column('time','时间');\n $grid->column('message','备注');\n\n $postsExporter = new ColectExport();\n $postsExporter->fileName = date('Y-m-d H:i:s').'.xlsx';\n $grid->exporter($postsExporter);\n $url = url()->current();\n $url .= \"?_export_=all\";\n $grid->tools(function ($tools)use($grid,$url){\n $tools->append(new Export($grid,$url));\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Category);\n\n $grid->id('Id');\n $grid->parent_id('父ID');\n $grid->name('名称');\n $grid->order('排序');\n $grid->image('图片');\n $grid->index_template('首页模版');\n $grid->detail_template('详情模版');\n $grid->status('Status')->display(function ($status){\n return $status ? '<p class=\"text-success\">启用</p>' : '<p class=\"text-muted\">禁用</p>';\n });\n $grid->created_at('创建时间');\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new NewEnergy());\n\n $grid->column('user_id', __('用户'));\n $grid->column('car_id', __('车辆ID'));\n $grid->column('start_mileage', __('开始里程'));\n $grid->column('end_mileage', __('结束里程'));\n $grid->column('mileage', __('里程'));\n $grid->column('type', __('车辆类型'));\n $grid->column('status', __('状态'));\n $grid->column('remark', __('备注'));\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new StationBannerImage());\n\n $grid->column('id', __('Id'));\n $grid->column('station.station_name', __('測站'));\n $grid->column('image', __('輪播圖'))->image('', '50');\n $grid->column('url', __('連結'))->link();\n $grid->column('order', __('排序'));\n $grid->column('valid_at', __('有效日期'));\n $grid->column('mod_user', __('異動人員'));\n $grid->column('updated_at', __('異動時間'));\n\n if (Admin::user()->username != 'admin') {\n $grid->model()->where('station_id', '=', Admin::user()->station_id);\n }\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new TaskOrder);\n $grid->model()->orderBy('id', 'desc');\n $grid->filter(function($filter){\n $filter->disableIdFilter();\n $filter->equal('eid','快递单号')->integer();\n $filter->equal('store','快递网点')->select(storedatas(1));\n $filter->equal('etype','快递公司')->select(edatas());\n $filter->equal('sname','客服名称');\n $filter->between('created_at', '导入时间')->datetime();\n });\n $grid->id('ID');\n $grid->eid('快递单号');\n $grid->sname('客服名称');\n $grid->store('快递网点');\n $grid->etype('快递公司');\n\n $grid->created_at('分配时间');\n //$grid->updated_at('分配时间');\n $excel = new ExcelExpoter();\n $excel->setAttr([ '快递单号','快递网点','快递公司','负责客服','导入时间'], ['eid','store','etype','sname','created_at']);\n $grid->exporter($excel);\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new BrandCooperation);\n\n $grid->sort('排序')->editable()->sortable();\n $grid->name('品牌名称');\n $grid->is_show('是否显示')->editable('select', [1 => '显示', 0 => '隐藏']);\n $grid->created_at('添加时间')->sortable();\n\n// $grid->actions(function ($actions) {\n// $actions->disableView(); // 禁用查看\n// });\n\n $grid->tools(function ($tools) {\n // 禁用批量删除按钮\n $tools->batch(function ($batch) {\n $batch->disableDelete();\n });\n });\n\n // 查询\n $grid->filter(function($filter){\n\n // 去掉默认的id过滤器\n $filter->disableIdFilter();\n\n $filter->like('name', '品牌名称');\n $filter->equal('is_show', '显隐')->radio([1 => '显示', 0 => '隐藏']);\n });\n\n return $grid;\n }", "public function init(){\n parent::init();\n\t\t$this->_gridParam['width'] = 870;\n }", "protected function grid()\n {\n $grid = new Grid(new Goods);\n\n $cateList = Category::all()->where('is_show',1)->toArray();\n\n $grid->model()->where('hos_id', session('hos_id'));\n $grid->id('ID')->sortable();\n $grid->column('name','商品名称');\n $grid->column('is_valid','是否显示')->display(function ($is){\n return $is ? '<span class=\"label label-success\">是</span>' : '<span class=\"label label-warning\">否</span>';\n });\n\n $grid->column('cate_id','分类')->display(function ($id) use ( $cateList ) {\n foreach ($cateList as $key => $value) {\n if ($id == $value['id']){\n return '<span class=\"label label-success\">'.$value['title'].'</span>';\n }\n }\n });\n\n $grid->created_at(trans('admin.created_at'));\n $grid->updated_at(trans('admin.updated_at'));\n\n //分类树形\n $cateTree = getTree(Category::all()->where('is_show',1)->toArray());\n $cate_map = [];\n foreach ($cateTree as $key => $value) {\n $cate_map[$value['id']] = str_repeat('&#12288;&#12288;',$value['level']).$value['title'];\n }\n\n $grid->actions(function ($actions) {\n $actions->disableDelete(false);\n $actions->disableEdit(false);\n $actions->disableView(false);\n });\n\n $grid->filter(function($filter) use ($cate_map){\n\n // 去掉默认的id过滤器\n $filter->disableIdFilter();\n\n //$filter->equal('department_id','部门')->select($departments);\n $filter->equal('cate_id','分类')->select($cate_map);\n $filter->like('name', '商品');\n\n });\n\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Project());\n $grid->model()->orderBy('id', 'desc');\n $grid->id('ID')->sortable();\n $grid->name('项目名称')->editable();\n $grid->url('项目地址')->link();\n $grid->username('账号');\n $grid->password('密码');\n $status = [\n 'on' => ['value' => 1, 'text' => '启用', 'color' => 'success'],\n 'off' => ['value' => 0, 'text' => '禁用', 'color' => 'danger'],\n ];\n $grid->status('状态')->switch($status);\n $grid->created_at('创建时间');\n $grid->actions(function ($actions) {\n $actions->disableView();\n });\n $grid->disableFilter();\n $grid->disableExport();\n $grid->disableRowSelector();\n\n return $grid;\n }", "function defgrid( $deployed = false ){\n\t\t$i = 1;\n\t\t$editar = \"false\";\n\n\t\t$grid = new $this->jqdatagrid;\n\n\t\t$grid->addField('numero');\n\t\t$grid->label('Numero');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 80,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:8, maxlength: 8 }',\n\t\t));\n\n\t\t$grid->addField('fecha');\n\t\t$grid->label('Fecha');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 80,\n\t\t\t'align' => \"'center'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true,date:true}',\n\t\t\t'formoptions' => '{ label:\"Fecha\" }'\n\t\t));\n\n\t\t$grid->addField('almacen');\n\t\t$grid->label('Almacen');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 40,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:4, maxlength: 4 }',\n\t\t));\n\n\t\t$grid->addField('status');\n\t\t$grid->label('Status');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 40,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:2, maxlength: 2 }',\n\t\t));\n\n\t\t$grid->addField('instrucciones');\n\t\t$grid->label('Instrucciones');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 250,\n\t\t\t'edittype' => \"'textarea'\",\n\t\t\t'editoptions' => \"'{rows:2, cols:60}'\",\n\t\t));\n\n\t\t$grid->addField('estampa');\n\t\t$grid->label('Estampa');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 80,\n\t\t\t'align' => \"'center'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true,date:true}',\n\t\t\t'formoptions' => '{ label:\"Fecha\" }'\n\t\t));\n\n\t\t$grid->addField('usuario');\n\t\t$grid->label('Usuario');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 120,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:12, maxlength: 12 }',\n\t\t));\n\n/*\n\t\t$grid->addField('hora');\n\t\t$grid->label('Hora');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 80,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:8, maxlength: 8 }',\n\t\t));\n\n\t\t$grid->addField('modificado');\n\t\t$grid->label('Modificado');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 80,\n\t\t\t'align' => \"'center'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true,date:true}',\n\t\t\t'formoptions' => '{ label:\"Fecha\" }'\n\t\t));\n*/\n\n\t\t$grid->addField('id');\n\t\t$grid->label('Id');\n\t\t$grid->params(array(\n\t\t\t'align' => \"'center'\",\n\t\t\t'hidden' => 'true',\n\t\t\t'width' => 40,\n\t\t\t'editable' => 'false',\n\t\t\t'search' => 'false'\n\t\t));\n\n\t\t$grid->showpager(true);\n\t\t$grid->setWidth('');\n\t\t$grid->setHeight('220');\n\t\t$grid->setTitle($this->titp);\n\t\t$grid->setfilterToolbar(true);\n\t\t$grid->setToolbar('false', '\"top\"');\n\n\t\t$grid->setOnSelectRow('\n\t\t\tfunction(id){\n\t\t\t\tif (id){\n\t\t\t\t\t$(gridId2).jqGrid(\\'setGridParam\\',{url:\"'.site_url($this->url.'getdatait/').'/\"+id+\"/\", page:1});\n\t\t\t\t\t$(gridId2).trigger(\"reloadGrid\");\n\t\t\t\t\t$.ajax({\n\t\t\t\t\t\turl: \"'.base_url().$this->url.'fabri/\"+id+\"/0\",\n\t\t\t\t\t\tsuccess: function(msg){\n\t\t\t\t\t\t\t$(\"#ladicional\").html(msg);\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\t$grid->setFormOptionsE('closeAfterEdit:true, mtype: \"POST\", width: 520, height:300, closeOnEscape: true, top: 50, left:20, recreateForm:true, afterSubmit: function(a,b){if (a.responseText.length > 0) $.prompt(a.responseText); return [true, a ];},afterShowForm: function(frm){$(\"select\").selectmenu({style:\"popup\"});} ');\n\t\t$grid->setFormOptionsA('closeAfterAdd:true, mtype: \"POST\", width: 520, height:300, closeOnEscape: true, top: 50, left:20, recreateForm:true, afterSubmit: function(a,b){if (a.responseText.length > 0) $.prompt(a.responseText); return [true, a ];},afterShowForm: function(frm){$(\"select\").selectmenu({style:\"popup\"});} ');\n\t\t$grid->setAfterSubmit(\"$('#respuesta').html('<span style=\\'font-weight:bold; color:red;\\'>'+a.responseText+'</span>'); return [true, a ];\");\n\n\t\t$grid->setOndblClickRow('');\t\t#show/hide navigations buttons\n\t\t$grid->setAdd( false ); // $this->datasis->sidapuede('PRDO','INCLUIR%' ));\n\t\t$grid->setEdit( $this->datasis->sidapuede('PRDO','MODIFICA%'));\n\t\t$grid->setDelete( $this->datasis->sidapuede('PRDO','BORR_REG%'));\n\t\t$grid->setSearch( $this->datasis->sidapuede('PRDO','BUSQUEDA%'));\n\t\t$grid->setRowNum(30);\n\t\t$grid->setShrinkToFit('false');\n\n\t\t$grid->setBarOptions(\"addfunc: prdoadd, editfunc: prdoedit, delfunc: prdodel, viewfunc: prdoshow\");\n\n\t\t#Set url\n\t\t$grid->setUrlput(site_url($this->url.'setdata/'));\n\n\t\t#GET url\n\t\t$grid->setUrlget(site_url($this->url.'getdata/'));\n\n\t\tif ($deployed) {\n\t\t\treturn $grid->deploy();\n\t\t} else {\n\t\t\treturn $grid;\n\t\t}\n\t}", "protected function grid()\n {\n $grid = new Grid(new Product());\n\n $grid->selector(function (Tools\\Selector $selector) {\n $selector->select('audit_status', '审核状态', [\n 0 => '未进行审核',\n 1 => '审核已通过',\n 2 => '审核未通过'\n ]);\n });\n $grid->id('ID')->sortable();\n $grid->product_core('商品编码');\n $grid->title('商品名称');\n $grid->bar_code('国条码');\n $grid->category_id('商品分类')->display(function ($category_id) {\n return Category::where('id', $category_id)->first()->name;\n });\n $grid->status('已上架')->display(function ($status) {\n return $status ? '是' : '否';\n });\n $grid->audit_status('审核状态')->display(function ($audit_status) {\n if ($audit_status == 1) {\n return '审核已通过';\n } elseif ($audit_status == 2) {\n return '审核未通过';\n } else {\n return '未进行审核';\n }\n// return $audit_status ? '审核通过' : '审核未通过';\n });\n $grid->shop_id('所属店铺')->display(function ($shop_id) {\n return Shop::where('id', $shop_id)->first()->name;\n });\n $grid->price('价格');\n $grid->rating('评分');\n $grid->sold_count('销量');\n $grid->review_count('评论数');\n $grid->actions(function ($actions) {\n $actions->disableView();\n $actions->disableDelete();\n });\n $grid->tools(function ($tools) {\n // 禁用批量删除按钮\n $tools->batch(function ($batch) {\n $batch->disableDelete();\n });\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Domain);\n\n $grid->filter(function ($filter) {\n $filter->column(1/2, function ($filter) {\n $filter->disableIdFilter();\n $filter->group('Id', __('Id'), function ($group) {\n $group->equal('等于');\n $group->gt('大于');\n $group->lt('小于');\n $group->nlt('不小于');\n $group->ngt('不大于');\n });\n $filter->in('from', __('Belong to site'))->Select([0 => 'api服务器', 1 => '静态资源服务器', 2 => '注册登录服务器', 3 => '前端门户服务器']);\n $filter->startsWith('name', __('Domain'));\n $filter->equal('ip', __('Ip'));\n $filter->between('stop_time', __('Stop time'))->datetime();\n });\n\n $filter->column(1/2, function ($filter) {\n $filter->in('status', __('Status'))->Select([0 => '停用', 1 => '有效']);\n $filter->between('created_at', __('Created at'))->datetime();\n $filter->between('updated_at', __('Updated at'))->datetime();\n $filter->between('last_check_time', __('Last check time'))->datetime();\n });\n });\n\n\n $grid->column('id', __('Id'));\n $grid->column('link', __('Link'))->link();\n $grid->column('type', __('Type'))->display(function ($type) {\n switch ($type) {\n case 0:\n return '域名';\n case 1:\n return 'IP';\n }\n });\n $grid->column('status', __('Status'))->switch(\n [\n 'on' => ['value' => 1, 'text' => '有效'],\n 'off' => ['value' => 0, 'text' => '停用']\n ]\n );\n $grid->column('qq_status', __('QQ status'))->switch(\n [\n 'on' => ['value' => 1, 'text' => '有效'],\n 'off' => ['value' => 0, 'text' => '停用']\n ]\n );\n $grid->column('wechat_status', __('Wechat status'))->switch(\n [\n 'on' => ['value' => 1, 'text' => '有效'],\n 'off' => ['value' => 0, 'text' => '停用']\n ]\n );\n $grid->column('is_enable_qq_check', __('Is enable qq check'))->switch(\n [\n 'on' => ['value' => 1, 'text' => '开启'],\n 'off' => ['value' => 0, 'text' => '关闭']\n ]\n );\n $grid->column('is_enable_wechat_check', __('Is enbale wechat check'))->switch(\n [\n 'on' => ['value' => 1, 'text' => '开启'],\n 'off' => ['value' => 0, 'text' => '关闭']\n ]\n );\n $grid->column('check_interval', __('Check interval'));\n $grid->column('qq_check_interval', __('Qq check interval'));\n $grid->column('wechat_check_interval', __('Wechat Check interval'));\n $grid->column('app.name', __('App name'));\n $grid->column('from', __('Belong to site'))->display(function ($from) {\n switch ($from) {\n case 0:\n return \"api服务器\";\n case 1:\n return \"静态资源服务器\";\n case 2:\n return \"注册登录服务器\";\n case 3:\n return \"前端门户服务器\";\n case 4:\n return \"QQ投放门户\";\n }\n });\n $grid->column('stop_time', __('Stop time'))->display(function ($stopTime) {\n if ($stopTime)\n return date('Y-m-d H:i:s', $stopTime);\n });\n $grid->column('qq_stop_time', __('QQ stop time'))->display(function ($qqStopTime) {\n if ($qqStopTime)\n return date('Y-m-d H:i:s', $qqStopTime);\n });\n $grid->column('wechat_stop_time', __('Wechat stop time'))->display(function ($wechatStopTime) {\n if ($wechatStopTime)\n return date('Y-m-d H:i:s', $wechatStopTime);\n });\n $grid->column('last_check_time', __('Last check time'))->display(function ($lastCheckTime) {\n if ($lastCheckTime)\n return date('Y-m-d H:i:s', $lastCheckTime);\n });\n\n\n return $grid;\n }", "function defgrid( $deployed = false ){\n\t\t$i = 1;\n\t\t$editar = 'false';\n\n\t\t$grid = new $this->jqdatagrid;\n\n\t\t$grid->addField('numero');\n\t\t$grid->label('N&uacute;mero');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 80,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:8, maxlength: 8 }',\n\t\t));\n\n\n\t\t$grid->addField('fecha');\n\t\t$grid->label('Fecha');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 80,\n\t\t\t'align' => \"'center'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true,date:true}',\n\t\t\t'formoptions' => '{ label:\"Fecha\" }'\n\t\t));\n\n\n\t\t$grid->addField('tipo');\n\t\t$grid->label('Tipo');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 40,\n\t\t\t'align' => \"'center'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:1, maxlength: 1 }',\n\t\t\t'cellattr' => 'function(rowId, tv, aData, cm, rdata){\n\t\t\t\tvar tips = \"\";\n\t\t\t\tif(aData.tipo !== undefined){\n\t\t\t\t\tif(aData.tipo==\"C\"){\n\t\t\t\t\t\ttips = \"Cliente\";\n\t\t\t\t\t}else if(aData.tipo == \"P\"){\n\t\t\t\t\t\ttips = \"Proveedor\";\n\t\t\t\t\t}else{\n\t\t\t\t\t\ttips = aData.tipo;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn \\'title=\"\\'+tips+\\'\"\\';\n\t\t\t}'\n\t\t));\n\n\n\t\t$grid->addField('tipod');\n\t\t$grid->label('Mov.');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 50,\n\t\t\t'align' => \"'center'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:1, maxlength: 1 }',\n\t\t\t'cellattr' => 'function(rowId, tv, aData, cm, rdata){\n\t\t\t\tvar tips = \"\";\n\t\t\t\tif(aData.tipod !== undefined){\n\t\t\t\t\tif(aData.tipod==\"E\"){\n\t\t\t\t\t\ttips = \"Entrada\";\n\t\t\t\t\t}else if(aData.tipod == \"S\"){\n\t\t\t\t\t\ttips = \"salida\";\n\t\t\t\t\t}else{\n\t\t\t\t\t\ttips = aData.tipod;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn \\'title=\"\\'+tips+\\'\"\\';\n\t\t\t}'\n\t\t));\n\n\n\t\t$grid->addField('status');\n\t\t$grid->label('Estatus');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 40,\n\t\t\t'align' => \"'center'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:1, maxlength: 1 }',\n\t\t));\n\n\n\t\t$grid->addField('almacen');\n\t\t$grid->label('Almacen');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 40,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:4, maxlength: 4 }',\n\t\t));\n\n\n\t\t$grid->addField('asociado');\n\t\t$grid->label('Asociado');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 80,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:8, maxlength: 8 }',\n\t\t));\n\n\n\t\t$grid->addField('clipro');\n\t\t$grid->label('Cli/Pro');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 50,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:5, maxlength: 5 }',\n\t\t));\n\n\t\t$grid->addField('nombre');\n\t\t$grid->label('Nombre');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 200,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:40, maxlength: 40 }',\n\t\t));\n\n\n\t\t$grid->addField('direc1');\n\t\t$grid->label('Direci&oacute;n');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 200,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:40, maxlength: 40 }',\n\t\t));\n\n\n\t\t$grid->addField('direc2');\n\t\t$grid->label('Direci&oacute;n 2');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 200,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:40, maxlength: 40 }',\n\t\t));\n\n\n\t\t$grid->addField('observ1');\n\t\t$grid->label('Observaci&oacute;n');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 200,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:33, maxlength: 33 }',\n\t\t));\n\n\n\t\t$grid->addField('observ2');\n\t\t$grid->label('Observaci&oacute;n 2');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 200,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:33, maxlength: 33 }',\n\t\t));\n\n\n\t\t$grid->addField('stotal');\n\t\t$grid->label('SubTotal');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'align' => \"'right'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'width' => 100,\n\t\t\t'editrules' => '{ required:true }',\n\t\t\t'editoptions' => '{ size:10, maxlength: 10, dataInit: function (elem) { $(elem).numeric(); } }',\n\t\t\t'formatter' => \"'number'\",\n\t\t\t'formatoptions' => '{decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 2 }'\n\t\t));\n\n\n\t\t$grid->addField('impuesto');\n\t\t$grid->label('Impuesto');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'align' => \"'right'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'width' => 100,\n\t\t\t'editrules' => '{ required:true }',\n\t\t\t'editoptions' => '{ size:10, maxlength: 10, dataInit: function (elem) { $(elem).numeric(); } }',\n\t\t\t'formatter' => \"'number'\",\n\t\t\t'formatoptions' => '{decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 2 }'\n\t\t));\n\n\n\t\t$grid->addField('gtotal');\n\t\t$grid->label('Total');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'align' => \"'right'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'width' => 100,\n\t\t\t'editrules' => '{ required:true }',\n\t\t\t'editoptions' => '{ size:10, maxlength: 10, dataInit: function (elem) { $(elem).numeric(); } }',\n\t\t\t'formatter' => \"'number'\",\n\t\t\t'formatoptions' => '{decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 2 }'\n\t\t));\n\n\n\t\t$grid->addField('peso');\n\t\t$grid->label('Peso');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'align' => \"'right'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'width' => 100,\n\t\t\t'editrules' => '{ required:true }',\n\t\t\t'editoptions' => '{ size:10, maxlength: 10, dataInit: function (elem) { $(elem).numeric(); } }',\n\t\t\t'formatter' => \"'number'\",\n\t\t\t'formatoptions' => '{decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 2 }'\n\t\t));\n\n\n\t\t$grid->addField('origen');\n\t\t$grid->label('Origen');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 40,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:1, maxlength: 1 }',\n\t\t));\n\n\n\t\t$grid->addField('id');\n\t\t$grid->label('Id');\n\t\t$grid->params(array(\n\t\t\t'align' => \"'center'\",\n\t\t\t'frozen' => 'true',\n\t\t\t'width' => 40,\n\t\t\t'editable' => 'false',\n\t\t\t'search' => 'false'\n\t\t));\n\n\n\t\t$grid->showpager(true);\n\t\t$grid->setWidth('');\n\t\t$grid->setHeight('290');\n\t\t$grid->setTitle($this->titp);\n\t\t$grid->setfilterToolbar(true);\n\t\t$grid->setToolbar('false', '\"top\"');\n\n\t\t$grid->setOnSelectRow('\n\t\t\tfunction(id){\n\t\t\t\tif (id){\n\t\t\t\t\tjQuery(gridId2).jqGrid(\"setGridParam\",{url:\"'.site_url($this->url.'getdatait/').'/\"+id+\"/\", page:1});\n\t\t\t\t\tjQuery(gridId2).trigger(\"reloadGrid\");\n\t\t\t\t}\n\t\t\t}'\n\t\t);\n\t\t$grid->setFormOptionsE('closeAfterEdit:true, mtype: \"POST\", width: 520, height:300, closeOnEscape: true, top: 50, left:20, recreateForm:true, afterSubmit: function(a,b){if (a.responseText.length > 0) $.prompt(a.responseText); return [true, a ];},afterShowForm: function(frm){$(\"select\").selectmenu({style:\"popup\"});} ');\n\t\t$grid->setFormOptionsA('closeAfterAdd:true, mtype: \"POST\", width: 520, height:300, closeOnEscape: true, top: 50, left:20, recreateForm:true, afterSubmit: function(a,b){if (a.responseText.length > 0) $.prompt(a.responseText); return [true, a ];},afterShowForm: function(frm){$(\"select\").selectmenu({style:\"popup\"});} ');\n\t\t$grid->setAfterSubmit(\"$('#respuesta').html('<span style=\\'font-weight:bold; color:red;\\'>'+a.responseText+'</span>'); return [true, a ];\");\n\n\t\t#show/hide navigations buttons\n\t\t$grid->setAdd(false);\n\t\t$grid->setEdit(false);\n\t\t$grid->setDelete( $this->datasis->sidapuede('SCON','BORR_REG%'));\n\t\t$grid->setSearch( $this->datasis->sidapuede('SCON','BUSQUEDA%'));\n\t\t$grid->setRowNum(30);\n\t\t$grid->setShrinkToFit('false');\n\n\t\t$grid->setBarOptions('addfunc: sconaddscli, editfunc: sconedit, delfunc: scondel, viewfunc: sconshow');\n\n\t\t#Set url\n\t\t$grid->setUrlput(site_url($this->url.'setdata/'));\n\n\t\t#GET url\n\t\t$grid->setUrlget(site_url($this->url.'getdata/'));\n\n\t\tif ($deployed) {\n\t\t\treturn $grid->deploy();\n\t\t} else {\n\t\t\treturn $grid;\n\t\t}\n\t}", "public function init()\n {\n // load the grid\n $this->setId('demo-full-grid')\n ->addColumn(array(\n 'label' => 'Cod.',\n 'index' => 'id',\n ))\n ->addColumn(array(\n 'label' => 'Company',\n 'index' => 'companyName',\n ))\n ->addColumn(array(\n 'label' => 'Role',\n 'index' => 'roleName',\n ))\n ->addColumn(array(\n 'label' => 'Name',\n 'index' => 'personName',\n ))\n ->addColumn(array(\n 'label' => 'Balance',\n 'index' => 'balance',\n 'align' => 'right',\n 'render' => 'money',\n 'order' => false,\n ))\n ->addColumn(array(\n 'label' => 'Username',\n 'index' => 'username',\n 'render' => array(\n 'type' => 'link',\n 'href' => 'http://www.mdnsolutions.com',\n ),\n ))\n ->addColumn(array(\n 'label' => 'Birthday',\n 'index' => 'birthday',\n 'align' => 'center',\n 'render' => 'date',\n ))\n ->addColumn(array(\n 'label' => 'Last access',\n 'index' => 'lastAccess',\n 'render' => 'dateTime',\n ))\n ->addColumn(array(\n 'label' => 'Status',\n 'index' => 'statusId',\n 'render' => 'EnableOrDisabled',\n ))\n ->setRecordsPerPage(30)\n ->setOrder(false);\n }", "protected function grid()\n {\n $grid = new Grid(new Barang());\n\n $grid->filter(function($filter){\n $filter->disableIdFilter();\n $filter->like('nama', 'Nama');\n });\n $grid->column('id', __('Id'));\n $grid->column('nama', __('Nama'));\n $grid->column('harga', __('Harga Beli'));\n $grid->column('harga_jual', __('Harga Jual'));\n $grid->column('satuan_id', __('Satuan id'))->display(function($satuan) {\n return Satuan::find($satuan)->nama;\n });\n $grid->column('jumlah_unit', __('Jumlah Unit'));\n $grid->column('parent_id', 'Parent')->display(function($id) {\n if($id) {\n return Barang::find($id)->nama;\n }\n else {\n return null;\n }\n });\n $grid->column('b_pengiriman', __('Pengiriman'));\n $grid->column('b_keamanan', __('Keamanan'));\n // $grid->column('created_at', __('Created at'));\n // $grid->column('updated_at', __('Updated at'));\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Product);\n\n $store_id = Auth::guard('admin')->user()->id;\n\n $grid->model()->where('store_id',$store_id)->orderBy('created_at','desc');\n\n $grid->product_id('ID');\n $grid->product_name('商品名称');\n $grid->product_num('库存');\n $grid->prime_cost('商品原价');\n $grid->present_price('商品现价');\n $grid->product_freght('运费');\n $isshhow = [\n 'on' => ['value' => 1, 'text' => '是', 'color' => 'primary'],\n 'off' => ['value' => 0, 'text' => '否', 'color' => 'default'],\n ];\n $grid->is_show('是否显示')->switch($isshhow);\n// $grid->status('状态')->select([\n// 1 => '热门',\n// 2 => '最新',\n// 3 => '推荐',\n// ]);\n\n// $grid->updated_at('更新时间');\n// $grid->created_at('创建时间');\n\n $grid->created_at('上架时间');\n $grid->sales_volume('总销量')->display(function($sales){\n return isset($sales)?$sales:0;\n });\n\n //去掉查看按钮\n $grid->actions(function ($actions) {\n $actions->disableView();\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new DbTop());\n $grid->header(function ($query) {\n $alread = DbTop::whereStatus(1)->count();\n $notyet = DbTop::whereStatus(0)->count();\n $notok = DbTop::whereStatus(2)->count();\n $pan = DbTop::where('pan_url', '<>', '')->count();\n $x = '已看:' . $alread . '<br />未看:' . $notyet . '<br />不感兴趣:' . $notok . '<br />资源:' . $pan;\n return '<div class=\"alert alert-success\" role=\"alert\">' . $x . '</div>';\n });\n $grid->column('no', __(trans('hhx.no')))->display(function ($no) {\n return 'No.' . $no;\n });\n $grid->column('img', __(trans('hhx.img')))->image();\n $grid->column('c_title', __(trans('hhx.c_title')))->display(function () {\n return $this->c_title . ' ' . $this->year;\n });\n $grid->column('rating_num', __(trans('hhx.rating_num')));\n $grid->column('inq', __(trans('hhx.inq')));\n $grid->column('actor', __(trans('hhx.actor')));\n $grid->column('type', __(trans('hhx.type')));\n $grid->column('status', __(trans('hhx.status')))->select(config('hhx.db_status'));\n $grid->filter(function ($filter) {\n $filter->like('c_title', '中文名');\n $filter->like('year', '年');\n $filter->like('status', trans('hhx.status'))->select(config('hhx.db_status'));\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new HotRank());\n\n// $grid->column('id', __('Id'));\n $grid->column('sort', __('排序'))->editable();\n $grid->column('nickname', __('昵称'));\n $grid->column('avatar', __('头像'))->image();\n $grid->column('gender', __('性别'))->using([\n 1 => '男',\n 2 => '女'\n ]);\n// $grid->column('role', __('Role'));\n// $grid->column('intro', __('Intro'));\n $grid->column('fans', __('粉丝数'));\n $grid->column('red_book_link', __('小红书链接'));\n $grid->column('red_book_fans', __('小红书粉丝'));\n $grid->column('douyin_link', __('抖音链接'));\n $grid->column('douyin_fans', __('抖音粉丝'));\n $grid->column('created_at', __('创建时间'));\n $grid->actions(function ($actions) use ($grid) {\n // 去掉删除\n// $actions->disableDelete();\n// // 去掉编辑\n// $actions->disableEdit();\n // 去掉查看\n $actions->disableView();\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new BookCatalog);\n $grid->filter(function($filter){\n $filter->like('name', '章节名');\n $filter->equal('book_id', '书ID');\n $filter->equal('spider_status','爬取状态')->radio([\n '' => '全部',0=>'未爬取',1=>'已爬取',2=>'有错误'\n ]);\n });\n $grid->model()->orderBy('book_id', 'desc')->orderBy('inx', 'desc')->orderBy('num', 'desc');\n $grid->column('id', __('Id'));\n $grid->column('inx', __('顺序1'));\n $grid->column('num', __('顺序2'));\n $grid->column('name', __('章节名'))->display(function($name){\n return '<a href=\"/admin/catalogs/'.$this->id.'/edit\">'.$name.'</a>';\n });\n $grid->column('book', __('书名'))->display(function($book_id){\n return '<a href=\"/admin/books?id='.$this->book_id.'\">'.$this->book->name.'</a>';\n });\n $grid->column('author', __('作者'))->display(function($book_id){\n return $this->book->author;\n });\n\n $grid->column('spider_status', __('爬取状态'))\n ->using([0=>'未爬取',1=>'已爬取',2=>'有错误'],'未知')\n ->dot([0=>'warning',1=>'success',2=>'danger'],'danger');\n //$grid->column('type', __('Type'));\n $grid->column('open_type', __('Open type'))->using(['0' => '禁止访问', '1' => '免费访问' , '2' => '付费访问']);\n // $grid->column('url', __('Url'))->link();\n $grid->column('file', __('处理文件'));\n $grid->column('created_at', __('创建时间'));\n $grid->column('updated_at', __('更新时间'));\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new ArticleCategory);\n// $grid->id('Id');\n $grid->name('名称');\n $grid->created_at('创建时间');\n $grid->updated_at('修改时间');\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Leavetime());\n $grid->filter(function ($filter) {\n $filter->like('designer.name', '设计师');\n $filter->between('created_at','创建时间')->datetime();\n });\n $grid->column('id', __('Id'));\n $grid->column('designer.name', __('设计师'));\n $grid->column('type', __('请假类型'))->display(function ($value) {\n return $value ? '半天' : '全天';\n });\n $grid->column('date', __('请假日期'));\n $grid->column('time', __('时间段'))->display(function ($time) {\n $html = '';\n foreach ($time as $k => $value){\n $work = Worktime::where('id','=',$value)->first();\n if($work){\n $html .= \"<span class='label label-success' style='margin-left: 10px'>{$work['time']}</span>\";\n }else{\n $html = '';\n }\n\n }\n return $html;\n });\n $grid->column('created_at', __('创建日期'));\n $grid->actions(function ($actions) {\n $actions->disableView();\n //$actions->disableDelete();\n });\n $grid->tools(function ($tools) {\n // 禁用批量删除按钮\n $tools->batch(function ($batch) {\n $batch->disableDelete();\n });\n });\n $grid->model()->orderBy('id', 'desc');\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Carousel);\n\n $grid->model()->latest();\n\n $grid->filter(function($filter){\n\n // 去掉默认的id过滤器\n $filter->disableIdFilter();\n\n $filter->equal('carousel_category_id', __('carousel::carousel.carousel_category_id'))\n ->select(CarouselCategory::all()->pluck('name', 'id'));\n $filter->like('title', __('carousel::carousel.title'));\n $filter->between('start_time', __('carousel::carousel.start_time'))->date();\n $filter->between('end_time', __('carousel::carousel.end_time'))->date();\n\n });\n\n $grid->column('id', __('carousel::carousel.id'));\n $grid->column('category.name', __('carousel::carousel.carousel_category_id'));\n $grid->column('title', __('carousel::carousel.title'));\n $grid->column('img_src', __('carousel::carousel.img_src'))->image();\n $grid->column('status', __('carousel::carousel.status.label'))\n ->using(__('carousel::carousel.status.value'));\n $grid->column('start_time', __('carousel::carousel.start_time'));\n $grid->column('end_time', __('carousel::carousel.end_time'));\n $grid->column('created_at', __('admin.created_at'));\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Banner);\n\n $grid->id('Id');\n $grid->title('Title');\n $grid->image('Image')->display(function($image) {\n return '<img width=\"30\" src=\"' . (env('APP_URL') . '/storage/' . ($image ?: 'images/default.png')) . '\"\"/>';\n });\n $grid->status('Status');\n $grid->created_at('Created at');\n $grid->updated_at('Updated at');\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Poster);\n\n $grid->id('ID')->sortable();\n $grid->column('title','海报名称');\n $grid->column('bg_image','背景图片')->display(function($bg_image){\n\n return '<img class=\"bg\" src=\"/storage/'.$bg_image.'\" height=\"50px\" width=\"50px\"> ';\n });;\n $grid->column('code_image','二维码')->display(function($code_image){\n // $url=Storage::disk('qiniu')->url($code_image);\n \\Log::error($code_image);\n $div='';\n $code_images=collect($code_image);\n\n foreach ($code_images->chunk(3) as $images){\n\n foreach ($images as $image){\n $div.='<img src=\"/storage/'.$image.'\" height=\"50px\" width=\"50px\"> ';\n }\n $div.='<hr>';\n }\n return $div;\n });\n $grid->column('poster_image','合成海报')->display(function($poster_image){\n $poster_images=collect($poster_image);\n $div='';\n foreach ($poster_images->chunk(3) as $images){\n\n foreach ($images as $image){\n $url=Storage::disk('qiniu')->url($image);\n $div.= '<img class=\"bg\" src=\"'.$url.'\" height=\"50px\" width=\"50px\"> <button class=\"poster_button btn-group t btn btn-sm btn-success\" data-url=\"'.$image.'\">下载</button>';\n }\n $div.='<hr>';\n\n }\n return $div;\n\n });\n $grid->column('download','打包下载海报')->display(function(){\n return '<button data-url=\"'.$this->id.'\" class=\"poster-package btn-group t btn btn-sm btn-success\" data-id=\"'.$this->id.'\">打包下载</button>';\n });\n $grid->created_at('创建时间');\n $grid->updated_at('修改时间');\n $grid->disableExport();\n $grid->disableActions();\n $grid->model()->orderBy('id','desc');\n Admin::script($this->layerPhote());\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Article);\n $grid->model()->latest('id');\n\n $grid->id('Id');\n $grid->title('标题')->limit(50);\n $grid->url('文章链接')->display(function () {\n return \"http://btl.yxcxin.com/article_detail/{$this->id}/public\";\n });\n $grid->category()->title('分类');\n $grid->read_count('阅读数');\n $grid->share_count('分享数');\n $grid->show_at('显示时间');\n $grid->created_at('创建时间');\n $grid->updated_at('更新时间');\n\n $grid->disableExport();\n\n $grid->filter(function ($filter) {\n $filter->disableIdFilter();\n $filter->equal('category_id', '分类')->select(ArticleCategory::query()->pluck('title', 'id'))->default(1);\n $filter->like('title', '标题');\n });\n\n $grid->actions(function ($action) {\n $action->disableView();\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new User);\n $grid->model()->where(function ($query) {\n\t\t\tif (Admin::user()->isRole('市场人员')) {\n\t\t\t\t// 修改数据来源\n\t\t\t\t$account = Account::where('a_account', Admin::user()->username)->first();\n\t\t\t\t$query->where('u_account_id', $account->a_id);\n\t\t\t}\n\t\t});\n $grid->exporter(new UserExporter());\n\n $grid->u_id('ID');\n if (Admin::user()->inRoles(['administrator', '后台管理员'])) {\n $grid->district()->a_district('区域')->expand(function ($model) {\n $info = $model->district()->get()->map(function ($item) {\n return $item->only(['a_district', 'a_city', 'a_manager', 'a_manager_phone']);\n });\n return new Table(['区域', '城市', '区域负责人姓名', '区域负责人电话'], $info->toArray());\n });\n }\n $grid->u_city('城市');\n $grid->u_openid('openId');\n $grid->u_nick('用户昵称');\n $grid->u_headimg('用户头像')->image('', 64, 64);\n $grid->u_phone('用户手机号');\n $grid->u_current_point('当前积分');\n $grid->u_total_point('总积分');\n $grid->u_ip('登录IP');\n $grid->u_created('登录时间');\n\n $grid->disableCreateButton();\n $grid->disableRowSelector();\n\n // 数据查询过滤\n $grid->filter(function ($filter) {\n $filter->disableIdFilter();\n\n if (!Admin::user()->isRole('市场人员')) {\n $filter->column(1 / 2, function ($filter) {\n $filter->equal('u_account_id', '区域')->select('/admin/accounts_list');\n });\n }\n $filter->column(1 / 2, function ($filter) {\n $filter->equal('u_phone', '手机号');\n });\n });\n\n // 禁用 编辑和删除\n $grid->actions(function ($actions) {\n $actions->disableDelete();\n $actions->disableEdit();\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new CouponCode);\n\n $grid->column('id', 'Id');\n $grid->column('name', '名称');\n $grid->column('code', '优惠码');\n $grid->column('description', '描述');\n $grid->column('type', '类型')->display(function ($type) {\n return CouponCode::$typeMap[$type];\n });\n $grid->column('usage', '已使用')->display(function ($value) {\n return \"{$this->used} / {$this->total}\";\n });\n $states = [\n 'on' => ['value' => true, 'text' => '使用中', 'color' => 'primary'],\n 'off' => ['value' => false, 'text' => '已禁用', 'color' => 'default'],\n ];\n $grid->column('enabled', '是否在使用')->switch($states);\n //$grid->column('not_before', 'Not before');\n //$grid->column('not_after', 'Not after');\n $grid->column('created_at', '创建时间');\n\n $grid->actions(function ($actions) {\n $actions->disableView();\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Task);\n $grid->model()->where('sid',Admin::user()->uuid)->where('isok','>','1')->orderBy('id', 'desc');\n $grid->filter(function($filter){\n $filter->disableIdFilter();\n $filter->equal('eid','快递单号')->integer();\n $filter->equal('store','快递网点');\n $filter->equal('etype','快递类型')->select(edatas());\n $filter->equal('qtype','问题类型')->select(qdataArry());\n $filter->equal('istag','标记状态')->select(['1'=> '已标记','0'=>'未标记']);\n $filter->between('created_at', '投诉时间')->datetime();\n $filter->between('updated_at', '完成时间')->datetime();\n });\n $grid->disableCreateButton();\n $grid->id('工单ID')->sortable();\n $grid->eid('快递单号');\n $grid->etype('快递类型')->sortable();\n $grid->store('快递网点')->sortable();\n $grid->qtype('问题类型')->sortable()->display(function ($qtype) {\n $data = getQdata($qtype);\n return $data['name'];\n });\n $grid->uname('投诉人');\n $grid->qq('QQ')->display(function($qq){\n if($qq!=null){\n $w = $qq.'<a href=\"http://wpa.qq.com/msgrd?v=3&uin='.$qq.'&site=qq&menu=yes\" target=\"_blank\" class=\"btn btn-xs btn-info\">发起聊天</a>';\n }else{\n $w = '无';\n }\n return $w;\n });\n $grid->times('投诉次数')->sortable();\n $grid->content('内容')->display(function($content) {\n return str_limit($content, 30, '...');\n });\n $grid->created_at('投诉时间')->sortable();\n $grid->deadline('完结期限')->sortable()->display(function ($deadline) {\n //\n return date(\"Y-m-d H:i:s\",$deadline);\n })->badge();\n $grid->isok('状态')->sortable()->display(function($isok){\n if($isok==2){\n $d =\"<span style='color:red'>(已超时)</span>\";\n $w = \"<span style='color:green'>已完结</span>\".$d;\n }\n if($isok==3){\n $w = \"<span style='color:green'>已完结</span>\";\n }\n return $w;\n });\n $states = [\n 'on' => ['value' => \"1\", 'text' => '是', 'color' => 'primary'],\n 'off' => ['value' => \"0\", 'text' => '否', 'color' => 'default'],\n ];\n $grid->istag('标记跟踪')->switch($states);\n $grid->updated_at('完结时间');\n $grid->actions(function ($actions) {\n $actions->disableDelete();\n $actions->disableEdit();\n $actions->disableView();\n $actions->append(\"<a class='btn btn-xs btn-info' href=\".route('donetasks.show',$actions->row->id).\">查看详情</a>\");\n });\n $grid->tools(function ($tools) {\n $tools->batch(function ($batch) {\n $batch->disableDelete();\n });\n });\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new PointMachine());\n\n $grid->column('id', __('Id'));\n $grid->column('name', __('Name'));\n $grid->column('point.name', __('Point name'));\n $grid->column('machine_no', __('Machine no'));\n // 1-自助型 2-全自动型\n $grid->column('type', __('Type'))->display(function ($type) {\n return $type == 1 ? '自助型 ' : '全自动型';\n });\n $grid->column('cost', __('Cost'));\n $grid->column('cost_at', __('Cost at'));\n $grid->column('build_at', __('Build at'));\n $grid->column('remark', __('Remark'));\n $grid->column('created_at', __('Created at'));\n $grid->column('updated_at', __('Updated at'));\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Station());\n\n $grid->column('id', __('Id'));\n $grid->column('area.area_name', __(trans('admin.area_name')));\n $grid->column('station_code', __(trans('admin.station_code')));\n $grid->column('station_name', __(trans('admin.station_name')));\n $grid->column('telno', __(trans('admin.telno')));\n $grid->column('order', __(trans('admin.order')));\n $grid->column('valid_at', __(trans('admin.valid_at')));\n $grid->column('mod_user', __(trans('admin.mod_user')));\n $grid->column('updated_at', __(trans('admin.updated_at')));\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Activity);\n\n $grid->id('Id');\n $grid->log_name('Log name');\n $grid->description('Description');\n $grid->subject_id('Subject id');\n $grid->subject_type('Subject type');\n $grid->causer_id('Causer id');\n $grid->causer_type('Causer type');\n $grid->properties('Properties');\n $grid->created_at('Created at');\n $grid->updated_at('Updated at');\n\n $grid->disableCreateButton();\n\n $grid->actions(function ($actions) {\n $actions->disableEdit();\n $actions->disableView();\n });\n\n $grid->filter(function ($filter) {\n $filter->disableIdFilter();\n\n $filter->between('created_at', '创建时间')->datetime();\n });\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Resources);\n\n $grid->id('ID');\n $grid->type('类型')->using(Resources::TYPE)->filter(Resources::TYPE);\n $grid->name('名称');\n $grid->url('图片')->image();\n $grid->sort_num('排序')->editable()->sortable();\n $grid->memo('备注');\n\n $grid->disableExport();\n $grid->disableFilter();\n\n $grid->actions(function ($actions) {\n $actions->disableView();\n $actions->disableDelete();\n });\n $grid->tools(function ($tools) {\n // 禁用批量删除按钮\n $tools->batch(function ($batch) {\n $batch->disableDelete();\n });\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Site());\n\n $grid->id('ID');\n $grid->category()->title('分类');\n $grid->title('标题');\n $grid->thumb('图标')->gallery(['width' => 50, 'height' => 50]);\n $grid->describe('描述')->limit(40);\n $grid->url('地址');\n\n $grid->disableFilter();\n $grid->disableExport();\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new FinancialPrizeModel());\n\n $grid->column('user.name', '用户名');\n $grid->money('金额');\n $grid->column('type', '类型')->display(function ($val) {\n return FinancialPrizeModel::getTypeName($val);\n });\n $grid->column('date', '所属月份')->display(function ($val) {\n return Carbon::parse($val)->format('Y-m');\n });\n $grid->mark('说明');\n\n $grid->disableExport();\n $grid->disableRowSelector();\n\n $grid->filter(function (Grid\\Filter $filter) {\n $filter->disableIdFilter();\n $filter->in('user_id', '用户名')->multipleSelect(UserModel::getAllUsersPluck());\n $filter->equal('type', '类型')->select(FinancialPrizeModel::getCommonPluck());\n $filter->like('date', '所属月份')->datetime(['format' => 'YYYY-MM']);;\n });\n\n $grid->actions(function (Grid\\Displayers\\Actions $actions) {\n $actions->disableView();\n });\n\n $grid->model()->whereIn('type',\n [\n FinancialPrizeModel::TYPE_SPECIAL_GIFT,\n FinancialPrizeModel::TYPE_SPECIAL_ADD,\n FinancialPrizeModel::TYPE_SPECIAL_CUT,\n FinancialPrizeModel::TYPE_TRAINING_FEE\n ])->orderBy('updated_at', 'desc');\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Drug);\n\n $grid->id('ID');\n $grid->street_name('«Уличное» название');\n $grid->city('Город');\n $grid->column('photo_drug','Фотография наркотика')->display(function () {\n $photo = Photo::whereDrugId($this->id)->where('type', 0)->first();\n\n if ($photo) {\n return $photo->photo;\n } else {\n return '';\n }\n })->image();\n\n $grid->column('confirm', 'Подтверждение')->display(function ($confirm) {\n if ($confirm) {\n return '✅Подтверждено';\n } else {\n return '❌Не подтверждено';\n }\n });\n $grid->updated_at('Дата изменения');\n\n return $grid;\n }", "protected function grid() {\n\t\t$grid = new Grid(new Payment);\n\t\t$grid->disableCreateButton();\n\t\t$grid->column('id', __('Id'));\n\t\t$grid->column('user_id', __('用户'));\n\t\t// $grid->column('app_id', __('App id'));\n\t\t$grid->column('price', __('金额'));\n\t\t$grid->column('transaction_id', __('三方订单号'));\n\t\t$grid->column('out_trade_no', __('平台订单号'));\n\t\t$grid->column('type', __('订单类型'))->using(['20' => '商城订单']);\n\t\t$grid->column('status', __('状态'))->using(['0' => '未支付', '1' => '已支付', '2' => '未支付']);\n\t\t// $grid->column('other', __('Other'));\n\t\t$grid->column('payment_at', __('支付时间'));\n\t\t$grid->column('created_at', __('创建时间'));\n\t\t$grid->column('updated_at', __('更新时间'));\n\n\t\treturn $grid;\n\t}", "protected function grid()\n {\n $grid = new Grid(new Sections());\n\n $grid->column('id', __('ID'))->editable() -> sortable();\n $grid->column('name', __('Nazwa'))->editable() -> sortable();\n $grid->column('pageId', __('ID sekcji (w sensie HTML)'))->editable() -> sortable();\n $grid->column('content', __('Zawartość'))->editable() -> sortable();\n $grid->column('style', __('Style(CSS)'))->editable() -> sortable();\n $grid->column('created_at', __('Utworzono')) -> sortable();\n $grid->column('updated_at', __('Zauktalizowano')) -> sortable() ;\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Facility);\n\n $grid->id('施設ID')->sortable();\n $grid->facility_name('施設名')->sortable();\n $grid->type('タイプ')->sortable();\n $grid->room('部屋数')->sortable();\n $grid->floor('フロア数')->sortable();\n $grid->transaction_status('取引ステータス')->sortable();\n $grid->sales_status('運営状況')->sortable();\n $grid->postalcode('郵便番号')->sortable();\n $grid->prefecture('都道府県')->sortable();\n $grid->address('住所')->sortable();\n $grid->katagaki('方書')->sortable();\n $grid->tel('電話番号')->sortable();\n $grid->manager('支配人')->sortable();\n $grid->manager_phone_number('支配人 携帯電話')->sortable();\n // $grid->division1('担当事業部1')->sortable();\n // $grid->department1('部署1')->sortable();\n // $grid->staff1('担当者名1')->sortable();\n // $grid->staff_phone_number1('担当者携帯1')->sortable();\n // $grid->remarks1('備考1')->sortable();\n // $grid->division2('担当事業部2')->sortable();\n // $grid->department2('部署2')->sortable();\n // $grid->staff2('担当者名2')->sortable();\n // $grid->staff_phone_number2('担当者携帯2')->sortable();\n // $grid->remarks2('備考2')->sortable();\n // $grid->division3('担当事業部3')->sortable();\n // $grid->department3('部署3')->sortable();\n // $grid->staff3('担当者名3')->sortable();\n // $grid->staff_phone_number3('担当者携帯3')->sortable();\n // $grid->remarks3('備考3')->sortable();\n // $grid->customer_id('顧客ID')->sortable();\n // $grid->wifi('WiFi販売')->sortable();\n // $grid->fixtures('備品販売')->sortable();\n // $grid->tv('TV販売')->sortable();\n // $grid->tableware('食器販売')->sortable();\n // $grid->created_at('Created at');\n // $grid->updated_at('Updated at');\n\n $grid->actions(function ($actions) {\n // $actions->disableDelete();\n // $actions->disableEdit();\n $actions->disableView();\n });\n\n return $grid;\n }", "protected function grid()\n {\n\n $this->getHeader();\n\n $grid = new Grid(new Good);\n\n $grid->model()->where('group_id', session('group_id'));\n\n $grid->header(function ($query) {\n return \"<div style='padding: 10px;'>Группа: <b>\".$this->group.\"</b></div>\";\n });\n\n $grid->column('name', __('Товар'));\n $grid->column('size', __('Объем/кол-во'));\n $grid->column('price', __('Цена'));\n $grid->content('Фото')->display(function ($image) {\n $link = '';\n if ($this->file) {\n $link = '<a href=\"javascript:removePhoto(\\''.$this->id.'\\')\" class=\"photo'.$this->id.'\" title=\"удалить фото\">удалить</a>\n <img class=\"photo'.$this->id.'\" src=\"/uploads/'.$this->file.'\" style=\"width: 150px;padding:5px; \">';\n }\n return $link;\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Category());\n $grid->model()->small();\n \n $grid->quickCreate(function (Grid\\Tools\\QuickCreate $create) {\n $create->text('erp_id', 'ERP ID');\n $create->text('name', '小分類名稱');\n $create->select('parent_id', __('中分類'))->options(\n Category::Mid()->pluck('name', 'id')\n );\n $create->text('type','分級(不需改)')->default(3);\n });\n\n $grid->column('erp_id', __('ERP Id'));\n $grid->column('name', __('小分類名稱'));\n $grid->column('parent_id', __('中分類'))->display(function($userId) {\n return Category::find($userId)->name;\n });\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Ticket);\n\n $grid->model()->orderBy('created_at', 'DESC');\n\n $grid->filter(function($filter){\n \n // Remove the default id filter\n $filter->disableIdFilter();\n \n $filter->in('type','Тип заявки')->checkbox([\n 'Ремонт' => 'Ремонт',\n 'Запчастини' => 'Запчастини',\n 'Дефект' => 'Дефект',\n ]);\n\n\n $filter->in('status','Статус заявки')->checkbox([\n 'Відкрита' => 'Відкрита',\n 'В обробці' => 'В обробці',\n 'Закрита' => 'Закрита',\n ]);\n\n $filter->where(function ($query) {\n\n $query->where('fio', 'like', \"%{$this->input}%\");\n }, 'ФІО');\n\n });\n\n $grid->column('Заява створена')->display(function(){\n return $this->created_at->format('d.m.Y H:m');\n });\n\n $grid->column('Дані клієнта')->display(function () {\n return $this->fio . '<br>' .\n '<b>'.$this->phone . '</b><br>' .\n $this->email . '<br>' .\n $this->city . '<br>' .\n $this->adress;\n });\n\n $grid->column('Дані по заяві')->display(function () {\n $result = '';\n foreach ($this->files as $file) {\n $result = $result.'<a href=\"/storage/'.$file.'\" target=\"_blank\">Файл</a> ';\n } \n return '<b> Номер: </b>' . $this->ticket_article . '<br>' .\n '<b>Тип Заявки: </b>' . $this->type . '<br>' .\n '<b>Бренд: </b>' . $this->brand . '<br>' .\n '<b>Модель: </b>' . $this->model . '<br>' .\n '<b>С/Н: </b>' . $this->serial_number . '<br>' .\n '<b>Дата продажу: </b>' . date('d.m.Y',strtotime($this->date_sale)) . '<br>' .\n $result;\n });\n $grid->description('Додаткові відомості')->width('250px');\n $grid->answer('Відповідь клієнту')->editable('textarea')->width('250px');\n $grid->status('Статус')->editable('select', [\n 'Відкрита' => 'Відкрита',\n 'В обробці' => 'В обробці',\n 'Закрита' => 'Закрита'\n ]);\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new WalletType());\n $grid->sortable();\n\n $grid->column('id', __('Id'));\n $grid->column('icon_url', __('Icon'))->display(function ($value) {\n $icon = \"\";\n if ($value) {\n $icon = \"<img src='$value' style='max-width:30px;max-height:30px;text-align: left' class='img'/>\";\n }\n return $icon; // 标题添加strong标签\n });\n $grid->column('name', __('Name'));\n $grid->column('slug', __('Slug'));\n $grid->column('description', __('Description'));\n $grid->column('decimal_places', __('Decimal places'));\n //$grid->column('is_enblened', __('Is enblened'));\n // 设置text、color、和存储值\n $states = [\n 'on' => ['value' => 1, 'text' => '启用', 'color' => 'primary'],\n 'off' => ['value' => 0, 'text' => '禁用', 'color' => 'danger'],\n ];\n $grid->column('is_enblened', __('Is enblened'))->switch($states);\n// $grid->column('created_at', __('Created at'));\n// $grid->column('updated_at', __('Updated at'));\n// $grid->column('deleted_at', __('Deleted at'));\n\n $grid->disableFilter(); // 禁用查询过滤器\n $grid->disableRowSelector(); // 禁用行选择checkbox\n// $grid->disableCreateButton(); // 禁用创建按钮\n// $grid->disableActions(); // 禁用行操作列\n $grid->disableExport(); // 禁用导出数据\n $grid->disableColumnSelector();// 禁用行选择器\n $grid->actions(function ($actions) {\n $actions->disableDelete();// 去掉删除\n $actions->disableView();// 去掉查看\n// $actions->disableEdit();// 去掉编辑\n });\n $grid->model()->orderBy('id', 'desc');// 按照 ID 倒序\n\n return $grid;\n }", "abstract public function grid();", "protected function grid()\n {\n $grid = new Grid(new Test());\n\n $grid->id('编号');\n $grid->name('教师姓名');\n $grid->work_point('教学分数');\n $grid->science_point('科研分数');\n $grid->disableCreateButton();\n $grid->disableFilter();\n $grid->disableActions();\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new News);\n\n $grid->id('Id');\n $grid->title('题目');\n $grid->category_id('分类ID');\n // $grid->content('内容');\n $grid->thumbnail('封面图');\n $grid->status('状态');\n $grid->read_count('阅读数量');\n $grid->created_at('创建时间');\n $grid->updated_at('更新时间');\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Community);\n\n\n $grid->column('id', __('Id'));\n $grid->column('permalink', __('Permalink'));\n $grid->column('eyecatch_path', __('Eyecatch path'));\n $grid->column('name', __('Name'));\n $grid->column('pref', __('Pref'));\n $grid->column('information', __('Information'));\n $grid->column('image1_path', __('Image1 path'));\n $grid->column('image2_path', __('Image2 path'));\n $grid->column('image3_path', __('Image3 path'));\n $grid->column('video1_link', __('Video1 link'));\n $grid->column('video2_link', __('Video2 link'));\n $grid->column('video3_link', __('Video3 link'));\n $grid->column('calendar', __('calendar'));\n $grid->column('message_image_path', __('Message image path'));\n $grid->column('message', __('Message'));\n $grid->column('contact', __('Contact'));\n $grid->column('facebook_link', __('Facebook link'));\n $grid->column('instagram_link', __('Instagram link'));\n $grid->column('website_link', __('Website link'));\n $grid->column('created_at', __('Created at'));\n $grid->column('updated_at', __('Updated at'));\n\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new EnterPlan);\n $grid->filter(function ($filter){\n $filter->disableIdFilter();\n //$filter->like('enter_time', '进线时间');\n $filter->where(function ($query) {\n $query->where('enter_time', 'like', \"%{$this->input}%\")\n ->orWhere('id', 1);\n }, '进线时间');\n });\n\n //$grid->column('id', __('Id'));\n $grid->column('enter_time', '进线时间')->display(function (){\n return $this->id == 1 ? '微信号': $this->enter_time->format('Y-m-d');\n })->sortable();\n $grid->column('a1', __('1'))->editable();\n $grid->column('a2', __('1A'))->editable();\n $grid->column('a3', __('2'))->editable();\n $grid->column('a4', __('2A'))->editable();\n $grid->column('a5', __('3'))->editable();\n $grid->column('a6', __('5'))->editable();\n $grid->column('a7', __('10'))->editable();\n $grid->column('a8', __('11'))->editable();\n $grid->column('a9', __('11A'))->editable();\n //$grid->column('a10', __('10A'))->editable();\n $grid->column('a11', __('12'))->editable();\n $grid->column('a12', __('13'))->editable();\n $grid->column('a13', __('15'))->editable();\n $grid->column('a14', __('16'))->editable();\n $grid->column('a15', __('16A'))->editable();\n $grid->column('a16', __('17'))->editable();\n $grid->column('a17', __('18'))->editable();\n $grid->column('a18', __('19'))->editable();\n// $grid->column('a19', __('19'))->editable();\n// $grid->column('a20', __('20'))->editable();\n// $grid->column('a21', __('21'))->editable();\n// $grid->column('a22', __('22'))->editable();\n// $grid->column('a23', __('23'))->editable();\n// $grid->column('a24', __('24'))->editable();\n// $grid->column('a25', __('25'))->editable();\n// $grid->column('a26', __('A26'))->editable();\n// $grid->column('a27', __('A27'))->editable();\n// $grid->column('a28', __('A28'))->editable();\n// $grid->column('a29', __('A29'))->editable();\n// $grid->column('a30', __('A30'))->editable();\n// $grid->column('created_at', __('Created at'));\n// $grid->column('updated_at', __('Updated at'));\n\n return $grid;\n }", "function __construct($config)\n {\n global $avia_config;\n $output = \"\";\n\n $this->config = array_merge(array(\n 'type' => 'grid',\n 'autoplay'\t\t=> 'false',\n 'animation' => 'fade',\n 'handle'\t\t=> '',\n 'heading'\t\t=> '',\n 'navigation' => 'arrows',\n 'columns' => 3,\n 'interval'\t\t=> 5,\n 'class'\t\t\t=> \"\",\n 'css_id'\t\t=> \"\",\n 'content'\t\t=> array()\n ), $config);\n }", "protected function grid()\n {\n $grid = new Grid(new V_MRQC_SSBRModel);\n\n $grid->disableCreateButton();\n $grid->disableRowSelector();\n $grid->actions(function ($actions) {\n $actions->disableDelete();\n $actions->disableEdit();\n });\n\n $YGBH = config('his.YGBH');\n $KSDM = config('his.KSDM');\n $MZFS = config('his.MZFS');\n\n $grid->filter(function($filter){\n $filter->disableIdFilter();\n $filter->like('BRXM', '手术病人姓名');\n $filter->equal('ZYHM', '住院号码');\n $filter->equal('BRXB', '病人性别')->radio([\n '' => '全部',\n 1 => '男',\n 2 => '女',\n ]);\n $filter->between('SSRQ', '手术时间')->datetime([\n// 'defaultDate' => Carbon::now()->startOfMonth(),\n 'maxDate' => date('Y-m-d 23:59:59')\n ], true);\n $filter->equal('BRKS', '病人科室')->select(config('his.KSDM'));\n $filter->equal('SSYS', '手术医生')->select(config('his.YGBH'));\n $filter->equal('MZDM', '麻醉方式')->select(config('his.MZFS'));\n });\n\n $grid->column('SSBH', __('手术编号'))->sortable();\n $grid->column('ZYH', __('住院号'))->sortable();\n $grid->column('ZYHM', __('住院号码'))->sortable();\n $grid->column('BRKS', __('科室'))->using($KSDM)->sortable();\n $grid->column('BRXM', __('姓名'));\n $grid->column('BRXB', __('性别'))->using(['1' => '男', '2' => '女']);\n $grid->column('BRNL', __('年龄'));\n $grid->column('APRQ', __('手术安排日期'))->display(function () {\n return substr($this->APRQ, 0, 19);\n })->sortable();\n $grid->column('SSRQ', __('手术日期'))->display(function () {\n return substr($this->SSRQ, 0, 19);\n })->sortable();\n $grid->column('SSYS', __('手术医生'))->using($YGBH);\n $grid->column('MZYS', __('麻醉医生'))->using($YGBH);\n $grid->column('MZDM', __('麻醉方式'))->using($MZFS);\n $grid->column('SSMC', __('手术名称'))->sortable();\n\n $grid->model()->orderBy('SSBH', 'desc');\n\n// $grid->footer(function ($query) {\n//// var_dump($query);\n// return \"<div style='padding: 10px;'>总收入 : 666</div>\";\n// });\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Dictionary());\n $grid->disableRowSelector();\n $grid->disableExport();\n\n $grid->column('id', __('Id'));\n $grid->column('type', __('Type'))->display(function () {\n return $this->type ? Dictionary::TYPES[$this->type] : null;\n })->label();\n $grid->column('option', __('Option'));\n $grid->column('slug', __('Slug'));\n $grid->column('alternative', __('Alternative'));\n $grid->column('approved', __('Approved'))->switch();\n $grid->column('sort', __('Sort'));\n\n $grid->filter(function ($filter) {\n $filter->disableIdFilter();\n $filter->expand();\n $filter->where(function ($query) {\n $query->where('dictionaries.type', '=', $this->input);\n }, __('Фильтровать по типу'))->select(Dictionary::TYPES);\n });\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new ProductSku());\n\n $grid->column('id', __('Id'));\n $grid->column('product', __('产品'))->display(function ($product){\n return $product['title'];\n });\n $grid->column('title', __('Title'));\n $grid->column('description', __('Description'));\n $grid->column('price', __('Price'));\n $grid->column('stock', __('Stock'));\n $grid->column('options', __('sku规格'))->display(function ($options){\n if (count($options) > 0){\n $strOption = '';\n foreach ($options as $option) {\n $strOption .= \"<p>{$option['product_property_name']}:{$option['product_property_value']}</p>\";\n }\n return $strOption;\n }\n return '';\n });\n\n $grid->column('created_at', __('Created at'));\n $grid->column('updated_at', __('Updated at'));\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Withdrawal());\n\n $grid->filter(function($filter){\n // 去掉默认的id过滤器\n $filter->disableIdFilter();\n $filter->like('name', __('分区名称'));\n });\n\n $grid->column('id', __('Id'))->sortable();\n $grid->column('uid', __('用户昵称(UID)'))->display(function ($uid) {\n return UsersInfo::where('id',$uid)->value('nickname').\"({$uid})\";\n });\n $grid->column('real_name', __('实名姓名'));\n $grid->column('id_card', __('身份证号码'));\n $grid->column('mobile', __('联系电话'));\n $grid->column('amount', __('提现数量'));\n $grid->column('status', __('状态'))->display(function ($status) {\n return Withdrawal::$status[$status];\n });\n $grid->column('created_at', __('创建时间'));\n $grid->column('updated_at', __('修改时间'));\n\n $grid->disableActions();\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new City());\n\n $grid->column('id', __('Id'));\n $grid->column('sort', __('Sort'));\n $grid->column('name', __('Name'));\n $grid->column('slug', __('Slug'));\n $grid->column('description', __('field.description'))->display(function ($item) {\n return mb_strimwidth($item, 0, 500, '...');\n });\n $grid->column('files', __('field.images'))->display(function () {\n $images = array();\n foreach ($this->files as $file) {\n array_push($images, preg_replace(\"/images\\//\", \"images/small.\", $file->file));\n }\n return $images;\n })->carousel(150, 100);\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Purchase());\n\n $grid->column('id', \"编号\");\n $grid->column('consumer_name', \"客户\")->display(function () {\n return $this->consumer->full_name;\n });\n $grid->column('house_readable_name', \"房源\")->display(function () {\n return $this->house->readable_name;\n });\n $grid->column('started_at', \"生效日期\");\n $grid->column('ended_at', \"结束日期\");\n $grid->column('sell_type', \"出售方式\")->display(function ($sell_type) {\n return Purchase::$type[$sell_type];\n });\n $grid->column('price', \"成交价格\")->display(function ($price) {\n return \"¥$price\";\n });\n $grid->column('created_at', \"创建日期\");\n $grid->column('updated_at', \"更新日期\");\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new TopicCategory);\n $grid->model()->orderBy('sort', 'desc'); // 设置初始排序条件\n $grid->disableExport();\n\n /*自定义筛选框*/\n $grid->filter(function ($filter) {\n $filter->disableIdFilter(); // 去掉默认的id过滤器\n $filter->like('name', '话题分类名称');\n });\n\n $grid->column('id', 'Id')->sortable();\n $grid->column('name', '话题分类名称')->sortable();\n $grid->column('sort', '排序值')->sortable();\n $grid->column('topics', '话题数目')->display(function ($topics) {\n return count($topics);\n });\n // $grid->column('created_at', '创建时间');\n // $grid->column('updated_at', '更新时间');\n\n return $grid;\n }", "function defgrid( $deployed = false ){\n\t\t$i = 1;\n\t\t$editar = 'false';\n\n\t\t$grid = new $this->jqdatagrid;\n\n\t\t$grid->addField('id');\n\t\t$grid->label('N&uacute;mero');\n\t\t$grid->params(array(\n\t\t\t'align' => \"'center'\",\n\t\t\t'frozen' => 'true',\n\t\t\t'width' => 50,\n\t\t\t'editable' => 'false',\n\t\t\t'search' => 'false'\n\t\t));\n\n\n\t\t$grid->addField('tipo');\n\t\t$grid->label('Tipo');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'align' => \"'center'\",\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 40,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:1, maxlength: 1 }',\n\t\t));\n\n\n\t\t$grid->addField('fecha');\n\t\t$grid->label('Fecha');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 80,\n\t\t\t'align' => \"'center'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true,date:true}',\n\t\t\t'formoptions' => '{ label:\"Fecha\" }'\n\t\t));\n\n\n\t\t$grid->addField('retorno');\n\t\t$grid->label('Retorno');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 80,\n\t\t\t'align' => \"'center'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true,date:true}',\n\t\t\t'formoptions' => '{ label:\"Fecha\" }'\n\t\t));\n\n\n\t\t$grid->addField('vende');\n\t\t$grid->label('Vendedor');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 50,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:5, maxlength: 5 }',\n\t\t));\n\n\n\t\t$grid->addField('observa');\n\t\t$grid->label('Observaci&oacute;n');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 250,\n\t\t\t'edittype' => \"'textarea'\",\n\t\t\t'editoptions' => \"'{rows:2, cols:60}'\",\n\t\t));\n\n\n\t\t$grid->addField('facturas');\n\t\t$grid->label('Facturas');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'align' => \"'right'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'width' => 100,\n\t\t\t'editrules' => '{ required:true }',\n\t\t\t'editoptions' => '{ size:10, maxlength: 10, dataInit: function (elem) { $(elem).numeric(); } }',\n\t\t\t'formatter' => \"'number'\",\n\t\t\t'formatoptions' => '{decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 0 }'\n\t\t));\n\n\n\t\t$grid->addField('monto');\n\t\t$grid->label('Monto');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'align' => \"'right'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'width' => 100,\n\t\t\t'editrules' => '{ required:true }',\n\t\t\t'editoptions' => '{ size:10, maxlength: 10, dataInit: function (elem) { $(elem).numeric(); } }',\n\t\t\t'formatter' => \"'number'\",\n\t\t\t'formatoptions' => '{decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 2 }'\n\t\t));\n\n\n\t\t$grid->addField('estampa');\n\t\t$grid->label('Estampa');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 80,\n\t\t\t'align' => \"'center'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true,date:true}',\n\t\t\t'formoptions' => '{ label:\"Fecha\" }'\n\t\t));\n\n\n\t\t$grid->addField('usuario');\n\t\t$grid->label('Usuario');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 120,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:12, maxlength: 12 }',\n\t\t));\n\n\n\t\t$grid->addField('hora');\n\t\t$grid->label('Hora');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 80,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:8, maxlength: 8 }',\n\t\t));\n\n\n\t\t$grid->showpager(true);\n\t\t$grid->setWidth('');\n\t\t$grid->setHeight('290');\n\t\t$grid->setTitle($this->titp);\n\t\t$grid->setfilterToolbar(true);\n\t\t$grid->setToolbar('false', '\"top\"');\n\n\t\t$grid->setOnSelectRow('\n\t\t\tfunction(id){\n\t\t\t\tif (id){\n\t\t\t\t\tjQuery(gridId2).jqGrid(\"setGridParam\",{url:\"'.site_url($this->url.'getdatait/').'/\"+id+\"/\", page:1});\n\t\t\t\t\tjQuery(gridId2).trigger(\"reloadGrid\");\n\t\t\t\t}\n\t\t\t},\n\t\t\tafterInsertRow:\n\t\t\tfunction( rid, aData, rowe){\n\t\t\t\tif(aData.tipo == \"P\"){\n\t\t\t\t\t$(this).jqGrid( \"setCell\", rid, \"tipo\",\"\",{color:\"#000000\", background:\"#DCFFB5\" });\n\t\t\t\t}else if(aData.tipo == \"A\"){\n\t\t\t\t\t//$(this).jqGrid( \"setRowData\", rid, \"tipo\",{color:\"#000000\", background:\"#C90623\" });\n\t\t\t\t\t$(this).jqGrid( \"setCell\", rid, \"tipo\",\"\",{color:\"#000000\", background:\"##FFDD00\" });\n\t\t\t\t}\n\t\t\t}\n\t\t');\n\n\t\t$grid->setFormOptionsE('closeAfterEdit:true, mtype: \"POST\", width: 520, height:300, closeOnEscape: true, top: 50, left:20, recreateForm:true, afterSubmit: function(a,b){if (a.responseText.length > 0) $.prompt(a.responseText); return [true, a ];},afterShowForm: function(frm){$(\"select\").selectmenu({style:\"popup\"});} ');\n\t\t$grid->setFormOptionsA('closeAfterAdd:true, mtype: \"POST\", width: 520, height:300, closeOnEscape: true, top: 50, left:20, recreateForm:true, afterSubmit: function(a,b){if (a.responseText.length > 0) $.prompt(a.responseText); return [true, a ];},afterShowForm: function(frm){$(\"select\").selectmenu({style:\"popup\"});} ');\n\t\t$grid->setAfterSubmit(\"$('#respuesta').html('<span style=\\'font-weight:bold; color:red;\\'>'+a.responseText+'</span>'); return [true, a ];\");\n\n\t\t#show/hide navigations buttons\n\t\t$grid->setAdd( $this->datasis->sidapuede('RCOBRO','INCLUIR%' ));\n\t\t$grid->setEdit( $this->datasis->sidapuede('RCOBRO','MODIFICA%'));\n\t\t$grid->setDelete( $this->datasis->sidapuede('RCOBRO','BORR_REG%'));\n\t\t$grid->setSearch( $this->datasis->sidapuede('RCOBRO','BUSQUEDA%'));\n\t\t$grid->setRowNum(30);\n\t\t$grid->setShrinkToFit('false');\n\n\t\t$grid->setBarOptions('addfunc: rcobroadd, editfunc: rcobroedit, delfunc: rcobrodel, viewfunc: rcobroshow');\n\n\t\t#Set url\n\t\t$grid->setUrlput(site_url($this->url.'setdata/'));\n\n\t\t#GET url\n\t\t$grid->setUrlget(site_url($this->url.'getdata/'));\n\n\t\tif ($deployed) {\n\t\t\treturn $grid->deploy();\n\t\t} else {\n\t\t\treturn $grid;\n\t\t}\n\t}", "protected function grid()\n {\n return Grid::make(new Liuchengku(), function (Grid $grid) {\n $grid->withBorder();\n\t\t\t$grid->model()->where('is_make',1);\n $grid->column('id')->width('5%')->sortable();\n\t\t\t$grid->column('user_id','用户名') ->display(function ($user_id) {\n\t\t\t\tif($user_id)\n\t\t\t\t{\n\t\t\t\treturn Admin::user()->find($user_id)->name;\n\t\t\t\t}\n\t\t\t})->width('5%');\n $grid->column('brand','品牌名称')->width('5%');\n $grid->column('retype','小分类')->width('5%');\n $grid->column('type','大分类')->width('5%');\n\n //$grid->column('jmlc','加盟流程')->width('50%');\n //$grid->column('updated_at')->sortable();\n\t\t\t$grid->filter(function (Grid\\Filter $filter)\n\t\t\t{\n\t\t\t\t$filter->panel();\n\t\t\t\t$filter->equal('id')->width(3);\n\t\t\t\tif(Admin::user()->isRole('administrator') && in_array($this->source_id,[3,4]))\n\t\t\t\t{\n\t\t\t\t\t$filter->equal('user_id','发布者')->select(Liuchengku::get_user('jmlcs','user_id'))->width(3);\n\t\t\t\t}\n\t\t\t});\n //快速搜索\n $grid->quickSearch('jmys','type','retype','jmzc');\n //禁用\n\t\t\t$grid->disableBatchDelete();//批量操作\n $grid->disableViewButton();\n\t\t\t$grid->disableDeleteButton();\n\t\t\t$grid->disableEditButton();\n\t\t\t$grid->enableDialogCreate();\n\t\t\t$grid->setDialogFormDimensions('850px', '700px');\n\t\t\t//禁用导出\n\t\t\t//$grid->export()->disableExportAll();\n\t\t\t$grid->showQuickEditButton();\n //分页\n $grid->paginate(30);\n //$grid->showBatchDelete();\n //$grid->enableDialogCreate();\n $grid->showQuickEditButton();\n\n\t\t\t//批量处理\n //$grid->batchActions(function (Grid\\Tools\\BatchActions $batch) {\n // $batch->add(new DoLc(Liuchengku::class));\n //});\n\n\n\n\t\t//列表筛选\n $grid->header(function () {\n $tab = Tab::make();\n\n $tab->addLink('加盟优势', '?source_id=0',$this->source_id==0 ? true : false);\n $tab->addLink('加盟支持', '?source_id=2',$this->source_id==2 ? true : false);\n $tab->addLink('加盟流程', '?source_id=1',$this->source_id==1? true : false);\n\t\t\t\tif(Admin::user()->isRole('administrator'))\n\t\t\t\t {\n\t\t\t\t\t$tab->addLink('领取情况', '?source_id=3',$this->source_id==3 ? true : false);\n\t\t\t\t\t$tab->addLink('导出情况', '?source_id=4',$this->source_id==4 ? true : false);\n\t\t\t\t}\n\n return $tab;\n });\n if ($this->source_id == 1)\n {\n\t\t\t\t $grid->column('jmlc','加盟流程')->width('50%')->display(function ($jmlc) {\n\t\t\t\t\t$jmlc= Liuchengku::cutstr_html($jmlc,$this->brand);\n\t\t\t\t\t$lc=Liuchengku::find($this->id);\n\t\t\t\t\t$lc->jmlc=$jmlc;\n\t\t\t\t\t$lc->save();\n return \t$jmlc;\n\t\t\t\t })->editable(true);\n\t\t\t\t $grid->model()->where('user_id',Admin::user()->id)->whereNull('lc_do');\n\t\t\t\t //导出\n $titles = ['jmlc'=>'加盟流程',];\n $grid->export($titles)->rows(function (array $rows) {\n\t\t\t\t\t\tforeach ($rows as $index => &$row) {\n\t\t\t\t\t\t\t$row['jmlc']=Liuchengku::cutstr_html($row['jmlc'],$row['brand']);\n\t\t\t\t\t\t\t$id=$row['id'];\n\t\t\t\t\t\t\t$lc=Liuchengku::find($id);\n\t\t\t\t\t\t\t$lc->lc_do=1;\n\t\t\t\t\t\t\t$lc->save();\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn $rows;\n\t\t\t\t\t});\n\n\t\t\t\t\t//$grid->actions(function (RowActions $actions) {\n //$actions->append(new GetlcAction('🔒完成','lc_do'));\n\n //});\n\n }\n elseif ($this->source_id == 0)\n {\n $grid->column('jmys','加盟优势')->width('50%')->display(function ($jmys) {\n $jmys= Liuchengku::cutstr_html($jmys,$this->brand);\n $ys=Liuchengku::find($this->id);\n $ys->jmys=$jmys;\n $ys->save();\n $jmys_pp=Liuchengku::pp_html($jmys);\n return \t$jmys_pp;\n })->editable(true);\n\n\t\t\t\t$grid->model()->where('user_id',Admin::user()->id)->whereNotNull('jmys')->whereNull('ys_do');\n\t\t\t\t//导出\n $titles = ['brand'=>'品牌名称','jmys'=>'加盟优势',];\n $grid->export($titles)->rows(function (array $rows) {\n\t\t\t\t\t\tforeach ($rows as $index => &$row) {\n\t\t\t\t\t\t\t$row['jmys']=str_replace($row['brand'],'{}',$row['jmys']).\"####\";\n\t\t\t\t\t\t\t$id=$row['id'];\n\t\t\t\t\t\t\t$lc=Liuchengku::find($id);\n\t\t\t\t\t\t\t$lc->ys_do=1;\n\t\t\t\t\t\t\t$lc->save();\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn $rows;\n\t\t\t\t\t});\n\t\t\t\t$grid->actions(function (RowActions $actions) {\n\t\t\t\t$actions->append(new GetlcAction('🔨已完成','ys_do'));\n\t\t\t\t});\n }\n elseif ($this->source_id == 2)\n {\n $grid->column('jmzc','加盟支持')->width('50%')->display(function ($jmzc) {\n $jmzc= Liuchengku::cutstr_html($jmzc,$this->brand);\n $zc=Liuchengku::find($this->id);\n $zc->jmzc=$jmzc;\n $zc->save();\n $jmzc_pp=Liuchengku::pp_html($jmzc);\n return \t$jmzc_pp;\n });\n\t\t\t\t$grid->model()->where('user_id',Admin::user()->id)->whereNotNull('jmzc')->whereNull('zc_do');\n\t\t\t\t$titles = ['brand'=>'品牌名称','jmzc'=>'加盟支持',];\n\t\t\t\t$grid->export($titles)->rows(function (array $rows) {\n\t\t\t\t\t\tforeach ($rows as $index => &$row) {\n\t\t\t\t\t\t\t$row['jmzc']=str_replace($row['brand'],'{}',$row['jmzc']).\"####\";\n\t\t\t\t\t\t\t$id=$row['id'];\n\t\t\t\t\t\t\t$lc=Liuchengku::find($id);\n\t\t\t\t\t\t\t$lc->zc_do=1;\n\t\t\t\t\t\t\t$lc->save();\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn $rows;\n\t\t\t\t\t});\n\t\t\t\t\t$grid->actions(function (RowActions $actions) {\n\t\t\t\t\t$actions->append(new GetlcAction('⚒️已完成','zc_do'));\n\t\t\t\t\t});\n }\n\t\t\t elseif ($this->source_id == 3)\n\t\t\t {\n\t\t\t\t$grid->column('jmys','加盟优势')->width('50%');\n\t\t\t\t$grid->model()->whereNull('ys_do')->whereNotNull('jmys')->latest();\n\t\t\t\t$grid->column('updated_at')\n ->display(function ($updated_at)\n {\n $expired_at=Carbon::now()->subDays(7);//addDays(30) 向前加30天,subDays(30)向后减掉30天\n if($updated_at<$expired_at){\n return $updated_at;\n }\n else{\n return Carbon::parse($updated_at)->diffForHumans();//或者 (new Carbon(data))->diffForHumans()\n }\n\n });\n\n\t\t\t }\n\t\t\telseif ($this->source_id == 4)\n\t\t\t {\n\t\t\t\t$grid->column('jmys','加盟优势')->width('50%');\n\t\t\t\t$grid->model()->where('ys_do',1)->latest();\n\t\t\t\t$grid->column('updated_at')\n ->display(function ($updated_at)\n {\n $expired_at=Carbon::now()->subDays(7);//addDays(30) 向前加30天,subDays(30)向后减掉30天\n if($updated_at<$expired_at){\n return $updated_at;\n }\n else{\n return Carbon::parse($updated_at)->diffForHumans();//或者 (new Carbon(data))->diffForHumans()\n }\n });\n\t\t\t }\n\n });\n }", "protected function grid()\n {\n $grid = new Grid(new Goodss);\n $grid->model()->orderBy('updated_at', 'desc');\n $grid->id('ID');\n $grid->goods_id('商品ID');\n $grid->goods_name('商品名称')->expand(function ($model) {\n $comments = $model->goods_sku()->get()->map(function ($wisdom_still_order_plan) {\n return $wisdom_still_order_plan->only(['shop_id','goods_id','sku_id', 'group_id', 'goods_name', 'specs_value', 'url','price','img','add_id','created_at','updated_at']);\n });\n $comments = $comments->toArray();\n if(!empty($comments)){\n $arr = [];\n foreach ($comments as $key=> $value){\n $data['shop_id'] = $value['shop_id'];\n $data['sku_id'] = $value['sku_id'];\n $data['group_id'] = $value['group_id'];\n $data['goods_name'] = $value['goods_name'];\n $data['specs_value'] = $value['specs_value'];\n $data['price'] = $value['price'];\n $data['img'] = \"<a href='{$value['img']}' target='_blank'><img src='{$value['img']}' width='50' height='50'></a>\";\n $data['add_id'] = $value['add_id'];\n $data['updated_at'] = $value['updated_at'];\n $arr[] = $data;\n }\n $comments = $arr;\n }\n return new Table(['店铺id','商品skuid','group_id','商品名称','规格','价格','sku图片','添加id','更新时间'], $comments);\n })->sortable();\n $grid->img('商品图片')->lightbox(['width' => 50, 'height' => 50]);\n $grid->sales_volume('销量');\n $grid->url('url')->display(function ($item){\n return '<a target=\"_blank\" href=\"'.$item.'\" class=\"label label-primary\">查看</a>';\n });;\n $grid->is_enable('状态')->switch([\n 'on' => ['value' => 1, 'text' => '正常', 'color' => 'primary'],\n 'off' => ['value' => 0, 'text' => '禁止', 'color' => 'default'],\n ]);\n $grid->created_at('Created at')->sortable();\n $grid->updated_at('Updated at')->sortable();\n $grid->disableExport();\n //$grid->disableRowSelector();\n $grid->disableColumnSelector();\n $grid->disableCreateButton();\n $grid->actions(function ($actions) {\n $actions->disableView();\n });\n $grid->filter(function($filter){\n // 去掉默认的id过滤器\n $filter->disableIdFilter();\n $filter->like('goods_name','商品名称');\n });\n $grid->tools(function (Grid\\Tools $tools) {\n $tools->append(new GoodsStatus());\n $tools->append(new GoodsStatusXia());\n });\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Clinic());\n\n $grid->column('id', __('Id'))->filter();\n $grid->column('image', __('Image'))->image();\n $grid->column('name', __('Name'))->filter();\n $grid->column('type', __('Type'))->using(['1' => 'Clinic', '2' => 'Hospital'])->filter();\n $grid->column('email', __('Email'))->filter();\n $grid->column('phone', __('Phone'))->filter();\n $grid->column('address', __('Address'))->filter();\n $grid->column('website_url', __('Website url'))->link()->filter();\n $grid->column('profile_finish', __('Profile finish'))->bool()->filter();\n $grid->column('status', __('Status'))->bool()->filter();\n $grid->column('created_at', __('Created at'))->filter();\n $grid->column('updated_at', __('Updated at'))->filter();\n\n $grid->actions(function ($actions) {\n $actions->disableView();\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Enseignant());\n\n $grid->column('id', __('Id'));\n $grid->column('matricule', __('Matricule'));\n $grid->column('nom', __('Nom'));\n $grid->column('postnom', __('Postnom'));\n $grid->column('prenom', __('Prenom'));\n $grid->column('sexe', __('Sexe'));\n $grid->column('grade', __('Grade'));\n $grid->column('fonction', __('Fonction'));\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new MoneyOut());\n\n $grid->model()->where('employee_id',self::current_id());\n\n $grid->disableActions();\n $grid->disableRowSelector();\n $grid->disableCreateButton();\n $grid->column('id', __('ID'))->sortable();\n $grid->column('client_id', '客户姓名')->using(Client::getAllClients());\n $grid->column('employee_id', '所属员工')->using(User::Employees());\n $grid->column('out_id','放贷产品');\n $grid->column('out_money','放贷金额');\n $grid->column('fee','居间服务费');\n $grid->column('pay_type','还款方式')->using(CrmConfig::getKeyValue('money_back_type'));\n $grid->column('pay_monthly','月还款金额');\n $grid->column('pay_count','期数');\n $grid->column('out_at','放贷日期');\n $grid->column('check_status','审核状态')->using($this->checkstatus);\n $grid->column('dianzihuidan','银行电子回单');\n\n $grid->filter(function (Grid\\Filter $filter){\n $filter->column(1/2,function ($filter){\n $filter->equal('client_id','客户姓名')->select(Client::getAllClients());\n $filter->equal('employee_id','销售人员')->select(User::Employees());\n $filter->equal('check_status','审核状态')->select($this->checkstatus);\n });\n\n $filter->column(1/2,function ($filter){\n $filter->equal('pay_type','还款方式')->select(CrmConfig::getKeyValue('money_back_type'));\n $filter->between('out_at','放贷日期')->date();\n });\n\n $filter->disableIdFilter();\n });\n\n return $grid;\n }", "protected function grid()\n {\n $key_id = \"sale_id\";\n $grid = new Grid(new Customer());\n $grid->column('name', __('Name'))->display(function () {\n return \"<a href='customers/\" . $this->id . \"' style=''>$this->name</a>\";\n })->filter('like')->sortable()->setAttributes(['width' => ' 240px']);\n $grid->column('phone_number', __('Số điện thoại'))->display(function ($title) {\n return \"<a href='tel:\" . preg_replace('/\\s+/', '', $title) . \"' style='white-space: pre;'>$title</a>\";\n })->filter('like');\n if (Admin::user()->isRole('Sale') || Admin::user()->isRole('Sm') || Admin::user()->isAdministrator()) {\n $grid->block_no('Địa chỉ')->display(function ($block_id) {\n if (isset($block_id) && array_key_exists($block_id, Constant::BLOCK)) {\n return Constant::BLOCK[$block_id];\n }\n })->filter(Constant::BLOCK)->sortable();\n\n $grid->telco('Nhà mạng')->display(function ($show) {\n if (isset($show)) {\n return Constant::TELCO[$show];\n }\n })->filter(Constant::TELCO)->sortable()->hide();\n\n $grid->status('Trạng thái')->display(function ($show) {\n return $show;\n })->filter(Constant::CUSTOMER_STATUS)->sortable()->editable('select', Constant::CUSTOMER_STATUS);\n\n $grid->source('Nguồn')->display(function ($show) {\n return $show;\n })->filter(Constant::SOURCE)->sortable()->editable('select', Constant::SOURCE);\n\n $grid->column('setup_at', __('Ngày hẹn'))->sortable()->editable();\n $grid->column('plan', __('Plan'))->editable();\n $grid->column('note', __('Note'))->editable('textarea')->filter('like')->setAttributes(['width' => ' 240px']);\n $grid->column('like')->action(StarCustomer::class);\n //$grid->column('like', __('Quan tâm'))->editable('select', Constant::FAVORITE);\n $grid->column('end_date', __('Ngày cuối HĐ'))->filter('range')->setAttributes(['width' => ' 100px']);\n if (Admin::user()->isRole('Sale')) {\n if (Admin::user()->isAdministrator()) {\n $grid->tools(function (Grid\\Tools $tools) {\n $tools->append(new SaleAssign());\n });\n } else {\n $grid->model()->where('sale_id', '=', Admin::user()->id);\n }\n } else {\n $grid->sale_id('Nhân viên Sale')->display(function ($formalityAreaId) {\n $sale = AuthUser::find($formalityAreaId);\n if ($sale) {\n return $sale->name;\n }\n })->filter(\n $users = Administrator::whereHas('roles', function ($query) {\n $query->whereIn('name', ['Sm', 'Sale', 'sale manager', 'administrator']);\n })->pluck('name', 'id')->toArray()\n );\n $grid->pt_status('Trạng thái PT')->display(function ($show) {\n return $show;\n })->filter(Constant::CUSTOMER_STATUS)->sortable()->editable('select', Constant::CUSTOMER_STATUS)->hide();\n\n $grid->tools(function (Grid\\Tools $tools) {\n $tools->append(new SaleAssign());\n $tools->append(new SaleRemove());\n });\n }\n $grid->filter(function ($filter) {\n $filter->disableIdFilter();\n $filter->where(function ($query) {\n switch ($this->input) {\n case 'yes':\n // custom complex query if the 'yes' option is selected\n $query->whereNotNull('sale_id');\n break;\n case 'no':\n $query->whereNull('sale_id');\n break;\n }\n }, 'Nhân viên chăm sóc', 'check_sale_id')->radio([\n '' => 'Tất cả',\n 'yes' => 'Đang chăm sóc',\n 'no' => 'Chưa chăm sóc',\n ]);\n $filter->where(function ($query) {\n switch ($this->input) {\n case 'yes':\n // custom complex query if the 'yes' option is selected\n $query->whereNotNull('note');\n break;\n case 'no':\n $query->whereNull('note');\n break;\n }\n }, 'Note', 'check_note')->radio([\n 'yes' => 'Có note',\n 'no' => 'Không note',\n ]);\n });\n } elseif (Admin::user()->isRole('Pt') || Admin::user()->isRole('Fm')) {\n $key_id = \"pt_id\";\n $grid->pt_status('Trạng thái PT')->display(function ($show) {\n return $show;\n })->filter(Constant::CUSTOMER_STATUS)->sortable()->editable('select', Constant::CUSTOMER_STATUS);\n $grid->column('pt_setup_at', __('Ngày hẹn'))->sortable()->editable();\n $grid->column('plan', __('Gói dịch vụ'))->editable();\n $grid->column('pt_note', __('Note'))->editable();\n $grid->column('like')->action(StarCustomer::class);\n $grid->column('end_date', __('Ngày cuối HĐ'))->filter('range')->hide();\n if (Admin::user()->isRole('Pt')) {\n $grid->model()->where('pt_id', '=', Admin::user()->id);\n $grid->disableActions();\n } else {\n //$grid->model()->where('pt', '=', 1);\n $grid->pt_id('Nhân viên Pt')->display(function ($formalityAreaId) {\n $pt = AuthUser::find($formalityAreaId);\n if ($pt) {\n return $pt->name;\n }\n })->filter(\n $users = Administrator::whereHas('roles', function ($query) {\n $query->whereIn('name', ['PT manager', 'Personal trainee']);\n })->pluck('name', 'id')->toArray()\n );\n $grid->tools(function (Grid\\Tools $tools) {\n $tools->append(new PtAssign());\n $tools->append(new PtRemove());\n });\n }\n $grid->filter(function ($filter) {\n //$filter->notIn('sale_id', \"Sale\")->multipleSelect(AuthUser::all()->pluck('name', 'id')->toArray());\n $filter->where(function ($query) {\n switch ($this->input) {\n case 'yes':\n // custom complex query if the 'yes' option is selected\n $query->whereNotNull('pt_id');\n break;\n case 'no':\n $query->whereNull('pt_id');\n break;\n }\n }, 'Nhân viên chăm sóc', 'name_for_url_shortcut')->radio([\n '' => 'Tất cả',\n 'yes' => 'Đang chăm sóc',\n 'no' => 'Chưa chăm sóc',\n ]);\n });\n }\n if (!(Admin::user()->isAdministrator() || Admin::user()->isRole('Sm'))) {\n $grid->model()->orderBy('like', 'DESC');\n }\n $grid->model()->orderBy('id', 'DESC');\n $grid->exporter(new ExcelExpoter());\n $grid->quickSearch(function ($model, $query) {\n $subQueries = explode(\" \", $query);\n foreach($subQueries as $i => $subQuery){\n if ($i == 0){\n $model->where('phone_number', 'like', \"%{$subQuery}%\");\n } else {\n $model->orWhere('phone_number', 'like', \"%{$subQuery}%\");\n }\n }\n $model->orWhere('name', 'like', \"%{$query}%\");\n });\n $customer_id = $this;\n $grid->column('updated_at', __('Updated at'))->sortable();\n $grid->actions(function (Grid\\Displayers\\Actions $actions) {\n $actions->add(new GfpCustomer($actions->row->id));\n $actions->add(new AddContract($actions->row->id));\n $actions->add(new ViewContract($actions->row->id));\n $actions->add(new AppointmentCustomer($actions->row->phone_number));\n });\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new AgeModel);\n $grid->id('Id');\n $grid->tag_name('标签名称');\n $grid->lable_id('标签id');\n //$grid->add_time('Add time');\n $grid->add_time('添加时间')->display(function($date){\n return date('Y-m-d H:i',$date);\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Feedback);\n $grid->column('id', 'ID');\n $grid->column('content', '内容');\n $grid->column('member', '用户')->display(function(){\n return $this->member->nickname;\n });\n $grid->column('created_at', '时间');\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Product);\n\n $grid->id('Id');\n $grid->name('商品名');\n $grid->column('category.name', '品类');\n $grid->fabric('Fabric');\n $grid->gsm('Gsm');\n $grid->material('Material');\n $grid->attach('Attach');\n $grid->head_image('商品图')->image('http://yujiaknit.test/images/', 100, 100);\n $grid->created_at('Created at');\n $grid->updated_at('Updated at');\n\n $grid->filter(function ($filter) {\n // 去掉默认的id过滤器\n $filter->disableIdFilter();\n\n });\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Cases);\n $grid->model()->orderBy('created_at','desc');\n $grid->id('Id');\n $grid->cate_id('分类')->display(function ($v){\n return CaseCate::find($v)['name'];\n });\n $grid->algw_id('顾问')->display(function ($v){\n return Algw::find($v)['name'];\n });\n $grid->is_tj('是否推荐')->display(function ($v){\n return $v==0?'否':'是';\n });\n $grid->title('标题');\n $grid->thumb('缩略图')->image();\n $grid->author('作者');\n $grid->disableExport();\n $grid->actions(function ($actions) {\n $actions->disableView();\n });\n $grid->filter(function($filter){\n\n // 去掉默认的id过滤器\n $filter->disableIdFilter();\n\n // 在这里添加字段过滤器\n $filter->like('title', '标题');\n\n $filter->equal('cate_id','分类')->select('/admin/api/getcasecate');\n });\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new Cate());\n\n $grid->column('id', __('Id'));\n $grid->column('name', __('Name'));\n $grid->column('link', __('Link'));\n $grid->column('thumb', __('Thumb'));\n $grid->column('status', __('Status'));\n $grid->column('sort', __('Sort'));\n $grid->column('createtime', __('Createtime'));\n $grid->column('updated_at', __('Updated at'));\n\n return $grid;\n }", "function defgridit( $deployed = false ){\n\t\t$i = 1;\n\t\t$editar = \"false\";\n\n\t\t$grid = new $this->jqdatagrid;\n\n/*\n\t\t$grid->addField('numero');\n\t\t$grid->label('Numero');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 80,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:8, maxlength: 8 }',\n\t\t));\n*/\n\n\t\t$grid->addField('pedido');\n\t\t$grid->label('Pedido');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 60,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:8, maxlength: 8 }',\n\t\t));\n\n\t\t$grid->addField('codigo');\n\t\t$grid->label('Codigo');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 100,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:15, maxlength: 15 }',\n\t\t));\n\n\t\t$grid->addField('descrip');\n\t\t$grid->label('Descrip');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'width' => 200,\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'editrules' => '{ required:true}',\n\t\t\t'editoptions' => '{ size:40, maxlength: 40 }',\n\t\t));\n\n\n\t\t$grid->addField('cana');\n\t\t$grid->label('Pedido');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'align' => \"'right'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'width' => 80,\n\t\t\t'editrules' => '{ required:true }',\n\t\t\t'editoptions' => '{ size:10, maxlength: 10, dataInit: function (elem) { $(elem).numeric(); } }',\n\t\t\t'formatter' => \"'number'\",\n\t\t\t'formatoptions' => '{decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 2 }'\n\t\t));\n\n\n\t\t$grid->addField('ordenado');\n\t\t$grid->label('Ordenado');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'align' => \"'right'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'width' => 80,\n\t\t\t'editrules' => '{ required:true }',\n\t\t\t'editoptions' => '{ size:10, maxlength: 10, dataInit: function (elem) { $(elem).numeric(); } }',\n\t\t\t'formatter' => \"'number'\",\n\t\t\t'formatoptions' => '{decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 2 }'\n\t\t));\n\n/*\n\t\t$grid->addField('idpfac');\n\t\t$grid->label('Idpfac');\n\t\t$grid->params(array(\n\t\t\t'search' => 'true',\n\t\t\t'editable' => $editar,\n\t\t\t'align' => \"'right'\",\n\t\t\t'edittype' => \"'text'\",\n\t\t\t'width' => 100,\n\t\t\t'editrules' => '{ required:true }',\n\t\t\t'editoptions' => '{ size:10, maxlength: 10, dataInit: function (elem) { $(elem).numeric(); } }',\n\t\t\t'formatter' => \"'number'\",\n\t\t\t'formatoptions' => '{decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 0 }'\n\t\t));\n*/\n\n\t\t$grid->addField('id');\n\t\t$grid->label('Id');\n\t\t$grid->params(array(\n\t\t\t'align' => \"'center'\",\n\t\t\t'hidden' => 'true',\n\t\t\t'width' => 40,\n\t\t\t'editable' => 'false',\n\t\t\t'search' => 'false'\n\t\t));\n\n\n\t\t$grid->setShrinkToFit('false');\n\t\t#Set url\n\t\t$grid->setUrlput(site_url($this->url.'setdatait/'));\n\n\t\t#GET url\n\t\t$grid->setUrlget(site_url($this->url.'getdatait/'));\n\n\t\tif ($deployed) {\n\t\t\treturn $grid->deploy();\n\t\t} else {\n\t\t\treturn $grid;\n\t\t}\n\t}", "protected function grid()\n {\n $grid = new Grid(new SiteHelp);\n\n $grid->model()->latest();\n\n $grid->filter(function ($filter) {\n\n // 去掉默认的id过滤器\n $filter->disableIdFilter();\n\n $filter->equal('site_help_category_id', __('site-help::help.site_help_category_id'))\n ->select(SiteHelpCategory::pluck('name', 'id'));\n $filter->like('title', __('site-help::help.title'));\n $filter->equal('status', __('site-help::help.status.label'))\n ->select(__('site-help::help.status.value'));\n });\n\n $grid->column('thumbnail', __('site-help::help.thumbnail'))->image('', 66);\n $grid->column('id', __('site-help::help.id'));\n $grid->column('category.name', __('site-help::help.site_help_category_id'));\n $grid->column('title', __('site-help::help.title'));\n $grid->column('useful', __('site-help::help.useful'));\n $grid->column('status', __('site-help::help.status.label'))\n ->using(__('site-help::help.status.value'));\n $grid->column('created_at', __('admin.created_at'));\n $grid->column('updated_at', __('admin.updated_at'));\n\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new User());\n\n $grid->column('id', __('ID'));\n $grid->column('phone', __('手机号'));\n $grid->column('uname', __('姓名'));\n $grid->column('wechat', __('微信号'));\n $grid->column('phonenumber', __('联系电话'));\n $grid->column('position', __('岗位'));\n $grid->column('company', __('公司'));\n $grid->column('role', __('角色'))->using(['1' => '管理人员', '2' => '求助者', '3'=>'酒店人员','4'=>'志愿者']);\n $grid->column('state', __('核实状态'));\n $grid->column('create_date', __('创建时间'));\n $grid->column('附加信息')->display(function(){\n switch ($this->role) {\n case '3':\n if($hasHotelAdminUser = \\App\\Model\\AdminUser::where('username',$this->phone)->has('hotels')->first()){\n return implode(\"<br>\", $hasHotelAdminUser->hotels->map(function ($hotel){\n return $hotel->hotel_name.',ID:'.$hotel->id;\n })->toArray());\n }else{\n return '未发布酒店';\n }\n return $hasHotelAdminUser ? $hasHotelAdminUser->hotels->pluck('hotel_name','id')->toArray() : '无发布酒店'; \n break;\n default:\n break;\n }\n });\n // $grid->column('openid', __('Openid'));\n $grid->filter(function($filter){\n $filter->disableIdFilter();\n $filter->like('uname', '姓名');\n $filter->like('phone', '手机号');\n $filter->equal('role', '用户角色')->select(['1' => '管理人员', '2' => '求助者', '3'=>'酒店人员','4'=>'志愿者']);\n });\n $grid->actions(function ($actions) {\n $actions->disableDelete();\n });\n return $grid;\n }", "protected function grid()\n {\n $grid = new Grid(new HhxEquip());\n\n $grid->column('id', __('Id'));\n $grid->column('name', __(trans('hhx.name')));\n $grid->column('hhx_travel_id', __(trans('hhx.hhx_travel_id')))->display(function ($hhx_travel_id){\n return self::getTravelService()->getNameByTravelId($hhx_travel_id);\n });\n $grid->column('status', __(trans('hhx.status')))->select(config('hhx.equip_status'));\n $grid->column('created_at', __(trans('hhx.created_at')));\n $grid->column('updated_at', __(trans('hhx.updated_at')));\n\n return $grid;\n }" ]
[ "0.70311505", "0.7027837", "0.69180524", "0.67733157", "0.6716295", "0.67123", "0.6705938", "0.6692516", "0.6688438", "0.6660906", "0.66606337", "0.66552854", "0.6632728", "0.66144735", "0.65967035", "0.6596612", "0.658352", "0.6570093", "0.6561956", "0.6546451", "0.65350825", "0.65314907", "0.65307415", "0.6529119", "0.6522103", "0.6518595", "0.6511261", "0.650124", "0.6497989", "0.6492727", "0.64842767", "0.64832276", "0.64820004", "0.6472515", "0.6469195", "0.646882", "0.64649403", "0.6460253", "0.6455467", "0.6453229", "0.64519775", "0.64479434", "0.64414424", "0.64403677", "0.6438014", "0.6437384", "0.6432737", "0.6428597", "0.6428579", "0.6428147", "0.64247185", "0.64221543", "0.6411747", "0.6408339", "0.6397058", "0.6393396", "0.6392424", "0.6385123", "0.638356", "0.6382055", "0.6379476", "0.63711596", "0.6368021", "0.6355193", "0.63527566", "0.63385576", "0.63380563", "0.6336263", "0.63244224", "0.63143075", "0.6308484", "0.63030636", "0.6301676", "0.62985265", "0.6293809", "0.6289409", "0.62853295", "0.6284531", "0.6282774", "0.6279349", "0.6277364", "0.62737507", "0.62726057", "0.6269665", "0.62684363", "0.6261024", "0.62561524", "0.6256106", "0.6252287", "0.62503445", "0.6247135", "0.62467057", "0.62439257", "0.6242797", "0.6235186", "0.623443", "0.62315637", "0.6226339", "0.6220733", "0.6219164", "0.6212135" ]
0.0
-1
find Get a record by ID
public static function find($id, $fields = "*", $retarray = false) { $dq = Doctrine_Query::create ()->select ( $fields ) ->from ( 'Taxes t' ) ->where ( "t.tax_id = ?", $id ) ->limit ( 1 ); $retarray = $retarray ? Doctrine_Core::HYDRATE_ARRAY : null; $record = $dq->execute ( array (), $retarray ); return $record; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getRecord($id = null);", "public function returnDetailFindByPK($id);", "public static function find($id);", "public function findByID($id){\n return $this->Find(self::TABLE,$id);\n }", "function find($id);", "function findById($id);", "public static function findById($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find($id);", "public function find( $id );", "public function retrieveById($id);", "public function find(int $id) ;", "abstract public function find($id);", "public function find($id){\n return $this->db->find($this->table,$id);\n }", "public function getById() {}", "public function returnFindByPK($id);", "public function findById ($id);", "public function find($id)\n\t{\n\t\treturn $this->model->where(\"id\", \"=\", $id)->first();\n\t}", "public function getById( $id );", "function get_by_id($id)\n {\n $this->db2->where($this->id, $id);\n return $this->db2->get($this->table)->row();\n }", "public function find($id = null) {\n $argument = $id?? $this->request->fetch('id')?? null;\n return $this->model->find($argument);\n }", "public function getById($id);", "public function getById($id);", "public function getById($id);", "public function getById($id);", "public function getById($id);", "public function getById($id);", "public function getById($id);", "public function getById($id);", "public function getById($id);", "public function getById($id);", "public function getById($id);", "public function getById($id);", "public function getById($id);", "public function getById($id);", "public function getById($id);", "public function find($id){\n return parent::find($this->table, $id);\n }", "abstract public function retrieve($id);", "public function retrieve(int $id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public function findById($id);", "public static function findById($id)\n\t{\n\t\n\t}", "public function find($id)\n {\n }", "public function find($id)\n {\n }", "public function find($id)\n {\n }", "public function get( $id );", "function findById($id)\n {\n }", "public function getRecord($id){\n\t\t$req = \"SELECT * FROM $this->table WHERE mdr_id = '$id' LIMIT 1\";\n\t\t$res = $this->select($req);\n\t\treturn $res[0];\n\t}", "public function get( $id ){}", "public static function findById($id)\n {\n }", "public static function find($id, $key = 'id');", "public function byId($id)\n\t{\n\t\treturn $this->find('id', $id)->first();\n\t}", "public function findById($id) {\n return $this->find('first', array('conditions' => array('_id' => $id)));\n }", "public function GetById($id);", "public function GetById($id);", "public function getOne($id) {\n\n }", "public function getById(string $id);", "public static function findById($id){\n \t$data = self::find($id);\n \tif (!$data) {\n \t\tabort(404);\n \t}\n \treturn $data;\n }", "public static function findById($id){\n \t$data = self::find($id);\n \tif (!$data) {\n \t\tabort(404);\n \t}\n \treturn $data;\n }", "public static function findById($id){\n \t$data = self::find($id);\n \tif (!$data) {\n \t\tabort(404);\n \t}\n \treturn $data;\n }", "public function find($id){\n return $this->model->query()->findOrFail($id);\n }", "abstract public function getById($id);", "abstract public function getById($id);", "public function get($id);" ]
[ "0.82516944", "0.80291945", "0.79958236", "0.798964", "0.7948467", "0.79248726", "0.7869422", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.7859334", "0.78099966", "0.77183837", "0.77137625", "0.7711852", "0.77060986", "0.76567525", "0.7650486", "0.7624795", "0.7623653", "0.75853336", "0.7567984", "0.75572616", "0.7483256", "0.7483256", "0.7483256", "0.7483256", "0.7483256", "0.7483256", "0.7483256", "0.7483256", "0.7483256", "0.7483256", "0.7483256", "0.7483256", "0.7483256", "0.7483256", "0.7483256", "0.7478364", "0.74624336", "0.74528503", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.7440801", "0.74236214", "0.7409215", "0.7409215", "0.7409215", "0.73951435", "0.7394251", "0.7391507", "0.7387923", "0.73846596", "0.7381684", "0.73780626", "0.73651123", "0.7364828", "0.7364828", "0.7364666", "0.73625815", "0.7361716", "0.7361716", "0.7361716", "0.73602813", "0.7359848", "0.7359848", "0.7354732" ]
0.0
-1
Get the tax percentage by tax_id
public static function get_percentage($tax_id) { $record = Doctrine_Query::create ()->select ( 'percentage' ) ->from ( 'Taxes t' ) ->where ( "t.tax_id = ?", $tax_id ) ->limit ( 1 ) ->execute ( array (), Doctrine_Core::HYDRATE_ARRAY ); return !empty($record[0]['percentage']) ? $record[0]['percentage'] : null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "abstract public function getTaxPercent();", "function getTaxPercenTax($id)\n\t{\n\n\n\t\t$query3=\"SELECT (ps.cgst+ps.sgst) as gst FROM `product` as p INNER JOIN product_variant as pv on pv.`ptdvar_id` = p.ptdvar_id INNER JOIN product_sub_category as ps on ps.pr_sub_id = pv.ptd_sub_catgry_id where p.product_id ='$id'\";\n\t $data3=$this->get_results( $query3 );\n\t\treturn $data3;\n\n\t}", "public function getTaxPercent() {\n return $this->item->getTaxPercent();\n }", "public function tax(): float;", "public function getTaxAmount();", "public function getTaxRate();", "public function getTaxAttribute(): float;", "function tep_get_tax_rate_value($class_id) {\n return tep_get_tax_rate($class_id, -1, -1);\n }", "public function getTotalTaxAmount();", "public function avarageTaxRate($country_id){\n \t$country = Country::find($country_id);\n\n \t$sum = 0;\n \t$count = 0;\n\n \tforeach($country->states as $state){\n \t\tforeach($state->counties as $county){\n \t\t\t$sum += $county->tax_rate;\n \t\t\t$count++;\n \t\t}\n \t}\n\n \treturn round(($sum / $count),2);\n }", "function simpay_custom_form_157_tax_percent() {\n\n\t// Change to 25%\n\treturn 25;\n}", "function tep_calculate_tax($price, $tax) {\n return $price * $tax / 100;\n }", "public function getTax(){\n $brutto = $this->getBrutto();\n return $brutto - ($brutto / (107) * 100);\n }", "public function getBaseTaxAmount();", "function agst_pmpro_tax($tax, $values, $order)\n{ \t\n\t$tax = round((float)$values[price] * 0.1, 2);\n\treturn $tax;\n}", "function tep_calculate_tax($price, $tax) {\n global $currencies;\n return tep_round($price * $tax / 100, $currencies->currencies[DEFAULT_CURRENCY]['decimal_places']);\n }", "function tep_calculate_tax($price, $tax) {\n global $currencies;\n\n return tep_round($price * $tax / 100, $currencies->currencies[DEFAULT_CURRENCY]['decimal_places']);\n}", "public function getIdTax()\n {\n return $this->id_tax;\n }", "public function getTaxedPrice();", "public function get_total_tax() {\n\t\treturn apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'total_tax' ) );\n\t}", "function getTax() \n\t{\n\t\t$tax = Option::where('attribute', '=', 'tax_mod')->first();\n\n\t\treturn (float)$tax->value;\n\t}", "public function tax()\n {\n return 0;\n }", "public function getCidTax()\n {\n return $this->cid_tax;\n }", "function get_tax($tax_class, $subtotal)\n{\n global $config, $tax_cache, $current_user_info;\n\n $rate = get_tax_rate($tax_class);\n\n if ($config['cart']['tax_base'] == 'shipping') {\n $tbase = 'ship';\n } else {\n $tbase = 'bill';\n }\n if (comparecsn($config['site_city'], $current_user_info[$tbase.'_city'])) {\n $tax_rate = $rate['tax_city'];\n } elseif (comparecsn($config['site_state'], $current_user_info[$tbase.'_state'])) {\n $tax_rate = $rate['tax_state'];\n } elseif (comparecsn($config['site_country'], $current_user_info[$tbase.'_country'])) {\n $tax_rate = $rate['tax_nation'];\n } else {\n $tax_rate = $rate['tax_world'];\n }\n\n return ($tax_rate / 100) * $subtotal;\n}", "function get_taxed_price($value, $tax)\r\n\t{\r\n\t\tglobal $config;\r\n\t\t$taxed = $value + $value * $tax / 100;\r\n\t\treturn $taxed;\r\n\t}", "public function getTaxById($id)\n {\n return null;\n }", "function tep_get_tax_rate($class_id, $country_id = -1, $zone_id = -1) {\n global $customer_zone_id, $customer_country_id;\n\n if ( ($country_id == -1) && ($zone_id == -1) ) {\n $country_id = STORE_COUNTRY;\n $zone_id = STORE_ZONE;\n }\n\n $Qtax = Registry::get('Db')->prepare('select sum(tax_rate) as tax_rate from :table_tax_rates tr left join :table_zones_to_geo_zones za on tr.tax_zone_id = za.geo_zone_id left join :table_geo_zones tz on tz.geo_zone_id = tr.tax_zone_id where (za.zone_country_id IS NULL OR za.zone_country_id = \"0\" OR za.zone_country_id = :zone_country_id) AND (za.zone_id IS NULL OR za.zone_id = \"0\" OR za.zone_id = :zone_id) AND tr.tax_class_id = :tax_class_id group by tr.tax_priority');\n $Qtax->bindInt(':zone_country_id', (int)$country_id);\n $Qtax->bindInt(':zone_id', (int)$zone_id);\n $Qtax->bindInt(':tax_class_id', (int)$class_id);\n $Qtax->execute();\n\n if ($Qtax->fetch() !== false) {\n $tax_multiplier = 0;\n\n do {\n $tax_multiplier += $Qtax->value('tax_rate');\n } while ($Qtax->fetch());\n\n return $tax_multiplier;\n } else {\n return 0;\n }\n }", "protected function getShippingTaxPercent($order)\n {\n $tax = ($order->getShippingTaxAmount() * 100) / $order->getShippingAmount();\n return $this->getHelper()->format(round($tax));\n }", "public static function getTaxbyProductID($productid) {\r\n \r\n $dq = Doctrine_Query::create ()->select('s.tax_id as tax_id, s.name as name, s.percentage as percentage')->from ( 'Products p' )\r\n ->leftJoin('p.Taxes s')\r\n ->where('product_id = ?', $productid);\r\n $tax = $dq->execute ( array (), Doctrine_Core::HYDRATE_ARRAY );\r\n return isset($tax[0]) ? $tax[0] : null;\r\n }", "public function getTaxCost()\n {\n $total = 0;\n\n foreach ($this->items as $item) {\n if ($item->TotalTax) {\n $total += $item->TotalTax;\n }\n }\n\n if ($this->postage && $this->postage->Cost && $this->postage->Tax) {\n $total += ($this->postage->Cost / 100) * $this->postage->Tax;\n }\n \n return $total;\n }", "public function getExternalTaxRate();", "private function get_total_tax() {\n\n\t\t$taxes = $this->order->getCombinedTax();\n\n\t\t$tax = 0;\n\n\t\tif ( empty( $taxes ) ) {\n\t\t\treturn $tax;\n\t\t}\n\n\t\tforeach( $taxes as $name => $amount ) {\n\t\t\t$tax += $amount;\n\t\t}\n\n\t\treturn $tax;\n\t}", "public function tax(bool $update = true): float;", "public function getTotalTax(){\n return $this->getParameter('total_tax');\n }", "public function getTaxAmount($price, $tax)\r\n {\r\n return ($price * $tax )/100;\r\n }", "public function getTax()\n {\n return $this->tax;\n }", "public function getTax()\n {\n $tax = 0;\n\n if (isset($this->_taxrate)) {\n $tax = $this->_taxrate * $this->_subtotal;\n }\n \n return $tax;\n }", "public function getTaxRefunded();", "public function getTaxInvoiced();", "public function get_fee_tax() {\n\t\treturn apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'fee_tax' ) );\n\t}", "public function getAmountAsPercentage();", "protected function calculateTaxAmount()\n {\n\n //TAX ratio\n $tax_ratio = config('paths.tax') / 100;\n //Total amount as per current currency\n $total = Session::get('total') + Session::get('shipping_cost');\n //base currency total amount\n $bc_total = Session::get('bc_currency_total') + Session::get('bc_shipping_cost');\n //Tax amount for current currency\n $total_tax = round(($tax_ratio * $total), 2);\n //Tax amount for base currency\n $bc_total_tax = round(($tax_ratio * $bc_total), 2);\n Session::put('tax_amount', $total_tax);\n Session::put('bc_tax_amount', $bc_total_tax);\n return $total_tax;\n }", "public function getTax()\n\t{\n\t\treturn $this->getKeyValue('Tax'); \n\n\t}", "public function get_tax() {\n\t\treturn $this->_tax;\n\t}", "public function getShippingTaxAmount();", "public function getSubtotalInclTax();", "private function get_tax_level( $term_id, $tax ) {\n\t\treturn count( get_ancestors( $term_id, $tax ) );\n\t}", "public static function getTaxbyTldID($tldid) {\r\n \r\n $dq = Doctrine_Query::create ()->select('s.tax_id as tax_id, s.name as name, s.percentage as percentage')\r\n ->from ( 'DomainsTlds dt' )\r\n ->leftJoin('dt.Taxes s')\r\n ->where('tld_id = ?', $tldid);\r\n $tax = $dq->execute ( array (), Doctrine_Core::HYDRATE_ARRAY );\r\n return isset($tax[0]) ? $tax[0] : null;\r\n }", "public function getTax()\n {\n return $this->_tax;\n }", "public function getBaseTaxRefunded();", "public function getBaseShippingTaxAmount();", "function calculate_tax($sub){\n\t//echo $sub;\n\treturn $sub * 0.12;\n\t}", "function tep_get_tax_rate($class_id, $country_id = -1, $zone_id = -1) {\n global $customer_zone_id, $customer_country_id;\n\n if ( ($country_id == -1) && ($zone_id == -1) ) {\n if (!tep_session_is_registered('customer_id')) {\n $country_id = STORE_COUNTRY;\n $zone_id = STORE_ZONE;\n } else {\n $country_id = $customer_country_id;\n $zone_id = $customer_zone_id;\n }\n }\n\n $tax_query = tep_db_query(\"select SUM(tax_rate) as tax_rate from \" . TABLE_TAX_RATES . \" tr left join \" . TABLE_ZONES_TO_GEO_ZONES . \" za ON tr.tax_zone_id = za.geo_zone_id left join \" . TABLE_GEO_ZONES . \" tz ON tz.geo_zone_id = tr.tax_zone_id WHERE (za.zone_country_id IS NULL OR za.zone_country_id = '0' OR za.zone_country_id = '\" . $country_id . \"') AND (za.zone_id IS NULL OR za.zone_id = '0' OR za.zone_id = '\" . $zone_id . \"') AND tr.tax_class_id = '\" . $class_id . \"' GROUP BY tr.tax_priority\");\n if (tep_db_num_rows($tax_query)) {\n $tax_multiplier = 0;\n while ($tax = tep_db_fetch_array($tax_query)) {\n $tax_multiplier += $tax['tax_rate'];\n }\n return $tax_multiplier;\n } else {\n return 0;\n }\n}", "function get_cart_tax() {\n\t\t\t$cart_total_tax = $this->tax_total + $this->shipping_tax_total;\n\t\t\tif ($cart_total_tax > 0) return cmdeals_price( $cart_total_tax );\n\t\t\treturn false;\n\t\t}", "public function tax()\n {\n return $this->getCartSessionCollection()->map(function($item, $key) {\n return (($item['price'] * $item['quantity']) / 100) * $this->config->get('cart.tax_rate');\n })->reduce(function($carry, $item) {\n return $carry + $item;\n });\n }", "public function getTotalProductsByTaxClassId($tax_class_id){\n\t\t$sql = \"SELECT COUNT(*) AS total FROM product WHERE tax_class_id = '\" . (int)$tax_class_id . \"'\";\n\t\t$query = $this->db->query($sql);\n\n\t\treturn $query->row['total'];\n\t}", "function get_tax_rate()\n\t{\n\t\tif(empty($this->address))\n\t\t{\n\t\t\treturn 0;\n\t\t}\n\t\t\n\t\t$rate\t= 0;\n\t\t\n\t\t$rate += $this->get_country_tax_rate();\n\t\t$rate += $this->get_zone_tax_rate();\n\t\t$rate += $this->get_area_tax_rate();\n\t\t\n\t\t//returns the total rate not affected by price of merchandise.\n\t\treturn $rate;\n\t}", "public function getBaseTaxAmount()\n {\n return $this->tax_amount;\n }", "public function getTaxAmount()\n {\n return $this->taxAmount;\n }", "public function getTaxAmount() {\r\n return $this->taxAmount;\r\n }", "function get_customer_discount_percentage($customer_id)\n\t{\n\t\t$customer_discount = $this->db->get_where('customer' , array(\n\t\t\t'customer_id' => $customer_id\n\t\t))->row()->discount_percentage;\n\t\techo '<input class=\"form-control text-right\" type=\"text\" name=\"discount_percentage\"\n\t\t\t\tid=\"discount_percentage\" value=\"' . $customer_discount . '\" onkeyup=\"calculate_grand_total()\"\n\t\t\t\t\tdata-parsley-required=\"true\">';\n\t}", "function getTotalTax(){\n\t\t$data = $this->_collectShippingInfo();\n\t\treturn $data->getTotalTax();\n\t}", "public function get_percentage($doctor_id) {\n $count_query = \" \n SELECT\n user_first_name,\n user_last_name,\n user_photo_filepath,\n user_phone_number,\n user_gender,\n address_name,\n address_name_one,\n address_city_id,\n address_state_id,\n address_country_id,\n address_pincode,\n address_locality,\n doctor_detail_language_id\n FROM \n \" . TBL_USERS . \"\n LEFT JOIN \n \" . TBL_ADDRESS . \" \n ON \n address_user_id=user_id AND\n address_type=1 AND \n address_status=1\n LEFT JOIN \n \" . TBL_DOCTOR_DETAILS . \" \n ON \n doctor_detail_doctor_id=user_id AND \n doctor_detail_status=1\n WHERE\n user_id=\" . $doctor_id . \" \n \";\n\n $doctor_data = $this->get_single_row_by_query($count_query);\n return $doctor_data;\n }", "function get_tax_base_rate() {\n\t\t\n\t\tif ( $this->is_taxable() && get_option('woocommerce_calc_taxes')=='yes') :\n\t\t\t\n\t\t\t$_tax = &new woocommerce_tax();\n\t\t\t$rate = $_tax->get_shop_base_rate( $this->data['tax_class'] );\n\t\t\t\n\t\t\treturn $rate;\n\t\t\t\n\t\tendif;\n\t\t\n\t}", "public function get_tax_amount( $tax_rate_id ) {\n\t\t$taxes = wc_array_merge_recursive_numeric( $this->get_cart_contents_taxes(), $this->get_fee_taxes() );\n\t\treturn isset( $taxes[ $tax_rate_id ] ) ? $taxes[ $tax_rate_id ] : 0;\n\t}", "public function getTax(): ?float\n {\n return $this->tax;\n }", "public function getBaseTaxInvoiced();", "public function tax()\n {\n return $this->hasOne('fooCart\\src\\Tax', 'tax_id', 'tax_id');\n }", "function get_tax_number()\n {\n if (!empty($this->business_center_id)) {\n $tax_number = $this->db->query_field(DISTRIBUTOR_TAX_NUMBER_SQL, array($this->business_center_id));\n if (!empty($tax_number)) {\n return $tax_number;\n }\n }\n return false;\n }", "public function getTaxes() : float\n {\n $multiplier = app(CartLogistics::class)->getTaxRate(\n $this->purchaseable,\n $this->cart->shipping_address\n ) * 0.01;\n\n return $this->price * $multiplier;\n }", "function get_untaxed_price($value, $tax)\r\n\t{\r\n\t\tglobal $config;\r\n\t\t$untaxed = $value / (1 + ($tax / 100));\r\n\t\treturn $untaxed;\r\n\t}", "public function getDiscountTaxCompensationAmount();", "public function overallCollectedTaxes($country_id){\n $country = Country::find($country_id);\n\n $data = 0;\n\n foreach($country->states as $state){\n foreach($state->counties as $county){\n \t$data += $county->taxes->sum('tax_collected');\n \t}\n }\n\n return $data;\n }", "public function getTax() {\n return $this->_tax;\n }", "public function getPerPersonTotalTaxAmount()\n {\n return $this->PerPersonTotalTaxAmount;\n }", "public function getTax(): Tax\n\t{\n\t\treturn $this->tax;\n\t}", "public function getCustomerTaxvat();", "abstract public function getTaxType();", "public function getFormattedTaxAttribute(): string;", "public function averageCountyTaxRatePerState($country_id){\n \t$country = Country::find($country_id);\n\n \t$data = array();\n\n \tforeach($country->states as $state){\n \t\t$data[$state->id] = array(\n \t\t\t'name' => $state->name,\n \t\t\t'average_tax_rate' => round($state->counties->avg('tax_rate'),2)\n \t\t);\n \t}\n\n \treturn $data;\n }", "function tep_get_tax_rate($class_id, $country_id = -1, $zone_id = -1) {\n\n \n//Eversun mod for sppc and qty price breaks\n// global $customer_zone_id, $customer_country_id;\n global $customer_zone_id, $customer_country_id, $sppc_customer_group_tax_exempt;\n\n if(!tep_session_is_registered('sppc_customer_group_tax_exempt')) {\n $customer_group_tax_exempt = '0';\n } else {\n $customer_group_tax_exempt = $sppc_customer_group_tax_exempt;\n }\n\n if ($customer_group_tax_exempt == '1') {\n return 0;\n }\n//Eversun mod end for sppc and qty price breaks\n if ( ($country_id == -1) && ($zone_id == -1) ) {\n if (!tep_session_is_registered('customer_id')) {\n $country_id = STORE_COUNTRY;\n $zone_id = STORE_ZONE;\n } else {\n $country_id = $customer_country_id;\n $zone_id = $customer_zone_id;\n }\n }\n\n $tax_query = tep_db_query(\"select sum(tax_rate) as tax_rate from \" . TABLE_TAX_RATES . \" tr left join \" . TABLE_ZONES_TO_GEO_ZONES . \" za on (tr.tax_zone_id = za.geo_zone_id) left join \" . TABLE_GEO_ZONES . \" tz on (tz.geo_zone_id = tr.tax_zone_id) where (za.zone_country_id is null or za.zone_country_id = '0' or za.zone_country_id = '\" . (int)$country_id . \"') and (za.zone_id is null or za.zone_id = '0' or za.zone_id = '\" . (int)$zone_id . \"') and tr.tax_class_id = '\" . (int)$class_id . \"' group by tr.tax_priority\");\n if (tep_db_num_rows($tax_query)) {echo \"}}}}{{{{{\";\n $tax_multiplier = 1.0;\n while ($tax = tep_db_fetch_array($tax_query)) {\n $tax_multiplier *= 1.0 + ($tax['tax_rate'] / 100);\n }\n return ($tax_multiplier - 1.0) * 100;\n } else {\n return 0;\n }\n }", "public function getShippingInclTax();", "public static function calculate_tax_filter() {\n global $edd_options;\n\n if ( isset( $edd_options['taxedd_private_token'] ) ) {\n $private_key = $edd_options['taxedd_private_token'];\n \n try { \n\n $taxtaxamo = new Taxamo( new APIClient( $private_key, 'https://api.taxamo.com' ) );\n\n $cart_items = edd_get_cart_content_details();\n\n $countrycode = \"\";\n\n $address = edd_get_customer_address();\n\n if ( isset($address['country']) && !empty($address['country']) && \"\" !== $address['country'] ) {\n $countrycode = $address['country'];\n } else {\n $ipcc = taxedd_get_country_code();\n $countrycode = $ipcc->country_code;\n }\n\n $transaction = new Input_transaction();\n $transaction->currency_code = edd_get_currency();\n $transaction->buyer_ip = $_SERVER['REMOTE_ADDR'];\n $transaction->billing_country_code = $countrycode;\n $transactionarray = array();\n $customid = \"\";\n $transaction->force_country_code = $countrycode;\n\n if ( !empty( $cart_items ) ) { \n foreach ( $cart_items as $cart_item ) {\n\n $customid++;\n $transaction_line = new Input_transaction_line();\n $transaction_line->amount = $cart_item['item_price'];\n $transaction_line->custom_id = $cart_item['name'] . $customid;\n array_push( $transactionarray, $transaction_line );\n\n }\n }\n\n $transaction->transaction_lines = $transactionarray;\n\n $resp = $taxtaxamo->calculateTax( array( 'transaction' => $transaction ) );\n\n return $resp->transaction->tax_amount;\n\n } catch ( exception $e ) {\n\n return \"\";\n }\n }\n }", "public function getTaxAmount() {\n return $this->item->getTaxAmount();\n }", "public static function getPercentVotesForChairtyId($id) {\n\t\t$total=self::getVumValidVotes();\n\t\tif (!$total)\n\t\t\treturn 0;\n\n\t\treturn round(100*self::getNumVotesForChairtyId($id)/$total);\n\t}", "public function getTaxAmount()\n {\n return $this->getOrder()->getTaxAmount();\n }", "public function getTaxPrice() {\r\n\r\n\t\tself::errorReset();\r\n\t\t$this->reload();\r\n\t\treturn $this->TaxPrice;\r\n\t}", "public function getTaxVal() {\n\t\treturn $this->taxVal;\n\t}", "public function get_percent_langer($customer_id,$percent)\n {\n //$this->load->model('account/customer');\n $get_childrend_all_tree = $this -> model_pd_registercustom -> count_child_langer($customer_id);\n \n $customer_curent = $this -> model_pd_registercustom ->getCustomer($customer_id);\n\n\n if (count($get_childrend_all_tree) > 0)\n {\n $total_child_pd = 0;\n foreach ($get_childrend_all_tree as $value) {\n $customer = $this -> model_pd_registercustom ->getCustomer($value['customer_id']);\n $total_child_pd += $customer['total_pd_node'];\n }\n if (($customer_curent['total_pd_node'] - $total_child_pd) >= 30000000000)\n {\n $percents = $percent;\n } \n else\n {\n if ($percent == 15)\n {\n $percents = 13;\n }\n if ($percent == 18)\n {\n $percents = 15;\n }\n } \n }\n else\n {\n $percents = $percent;\n }\n return $percents;\n }", "public function getTaxcharges()\n {\n return $this->taxcharges;\n }", "public function countTaxValue(): float\n\t{\n\t\treturn ($this->countTaxedUnitValue() - $this->countUntaxedUnitValue()) * $this->getUnits();\n\t}", "public function getBaseShippingTaxRefunded();", "public function getTaxRow($tax_id){\n\t \n\t \t\t$this->db->select(\"TS.tax_id, TS.tax_per, TS.tax_type\");\n\t\t\t$this->db->from(\"tax_structure AS TS\");\t\t\t\t\t\t\n\t\t\t$this->db->where(\"TS.tax_id\",$tax_id);\n\t\t\t\n\t\t\t$query_tax_row = $this->db->get();\n\t\t\t\n\t\t\tif($query_tax_row->num_rows()>0)\n\t\t\t{\n\t\t\t\treturn $query_tax_row->result_array();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\treturn array('0'=> array('tax_id'=>'0','tax_per'=>'0','tax_type'=>'None'));\n\t\t\t}\n\t \n\t }", "public function getBaseShippingInclTax();", "public function getTaxClassId();", "public function taxesCollectedPerState($country_id){\n\n \t$country = Country::find($country_id);\n\n \t$data = array();\n \t$sum = 0;\n\n \tforeach($country->states as $state){\n \t\t$sum = 0;\n\n \t\tforeach($state->counties as $county){\n \t\t\t$sum += $county->taxes->sum('tax_collected');\n \t\t}\n\n \t\t$data[$state->id] = array(\n \t\t\t'name' => $state->name,\n \t\t\t'taxes_collected' => $sum\n \t\t);\n \t}\n\n \treturn $data;\n }", "public function getTaxTotal() {\n $total = 0;\n\n // Calculate total from items in the list\n foreach($this->Items() as $item) {\n $total += $item->getTaxTotal();\n }\n\n // Add any tax from postage\n $total += $this->PostageTax;\n\n return $total;\n }", "public function getTotalTaxAttribute()\n {\n if (empty($this->shopCalculations)) $this->runCalculations();\n return round($this->shopCalculations->totalTax + ($this->totalPrice * Config::get('shop.tax')), 2);\n }", "public function formattedTax(): string;", "public function get_cart_tax() {\n\t\t$cart_total_tax = wc_round_tax_total( $this->get_cart_contents_tax() + $this->get_shipping_tax() + $this->get_fee_tax() );\n\n\t\treturn apply_filters( 'woocommerce_get_cart_tax', $cart_total_tax ? wc_price( $cart_total_tax ) : '' );\n\t}" ]
[ "0.7925332", "0.72557235", "0.7062715", "0.70527965", "0.70068884", "0.6884636", "0.677201", "0.67652583", "0.6748068", "0.6725033", "0.6686283", "0.66816086", "0.66232175", "0.6623099", "0.6570438", "0.65652305", "0.65184355", "0.65057766", "0.648299", "0.6440172", "0.642303", "0.6400729", "0.63810086", "0.637462", "0.63582426", "0.6334649", "0.63274515", "0.6324078", "0.63199115", "0.63040215", "0.628123", "0.6255719", "0.6228733", "0.6222775", "0.6221621", "0.62084067", "0.619133", "0.6187605", "0.61733323", "0.6167565", "0.6164536", "0.6162047", "0.6151173", "0.61502045", "0.6146546", "0.6130574", "0.61229855", "0.6109738", "0.61042005", "0.61024207", "0.6067012", "0.60648656", "0.6060091", "0.6046144", "0.6019124", "0.60171", "0.6012545", "0.6009406", "0.5990135", "0.5988061", "0.5965557", "0.59626013", "0.5961375", "0.5956483", "0.5932417", "0.59289646", "0.59013045", "0.59002566", "0.58722645", "0.58703077", "0.5866517", "0.5857589", "0.58572406", "0.5857167", "0.5849551", "0.5849109", "0.5848921", "0.5844584", "0.58408576", "0.58395684", "0.58370787", "0.5796343", "0.5793187", "0.5785766", "0.5761579", "0.5760675", "0.5759702", "0.57531387", "0.5748735", "0.5748705", "0.5741874", "0.5739397", "0.5738177", "0.57170177", "0.5716155", "0.5708661", "0.57041717", "0.57028717", "0.5694771", "0.5688737" ]
0.783533
1
delete Delete a record by ID
public static function deleteItem($id) { Doctrine::getTable ( 'Taxes' )->findOneBy ( 'tax_id', $id )->delete(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function deleteRecord ($id);", "public function deleteRecord($id){\n\t}", "function delete($id);", "public function delete( $id );", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function delete($id);", "public function deleteById($id);", "public function deleteById($id);", "public function deleteById($id);", "public function deleteById($id);", "public function deleteById($id);", "public function deleteById($id);", "public function destroy($id)\n {\n //delete specific record\n }", "public function delete(int $id);", "abstract public function delete($id);", "abstract public function delete($id);", "abstract public function delete($id);", "public function delete($id) \r\n {\r\n $this->load(array('id=?',$id));\r\n $this->erase();\r\n }", "public abstract function delete($id);", "abstract public function deleteById($id);", "public function delete($id)\n\t {\n\t //\n\t }", "public function delete($ID);", "public function delete($ID);", "public function delete($ID);", "public function delete($id) {\r\n\r\n }", "function deleteRecord($id)\n\t{\n\t\t$this->form->deleteRecord($this->tablename, $id);\n\t}", "function delete($id){\n\t\t$this->db->where('id', $id);\n\t\t$this->db->delete($this->table);\n }", "public function delete($id){\n\t\t$sql = \"DELETE FROM {$this->table} WHERE {$this->primaryKey} = $id\";\n\t\t$this->db->query($sql);\n\t}", "public function del($id)\n {\n }", "public function delete($id){\r\n }", "public function delete($id)\r\n {\r\n }", "public function delete($id)\n\t{\n\t}", "public function delete($id)\n\t{\n\t}", "public function delete($id = null){\n\t\t\n\t}", "public function delete($id)\n {\n //\n }", "public function delete($id)\n {\n //\n }", "public function delete($id)\n {\n // ..\n }", "function delete($id) {\n return $this->db->deleteParameters(self::TABLA, array('id' => $id));\n }", "public function delete($id) {\n\t\treturn $this->model->findFirst(\"id = '$id'\")->delete();\n\t}", "function delete($id) {\r\n $this->db->where('id', $id);\r\n $this->db->delete($this->tbl);\r\n }", "public function delete( $id ){\n \n\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete($id)\n {\n }", "public function delete(int $id)\r\n {\r\n }", "public function delete($id)\n {\n }", "public function delete($id) {\r\n \r\n }", "public function delete($id){\n\t\t$this->db->delete($this->_table_name, array('id'=>$id));\n }", "public function delete( $id ){\n\n }", "public function delete($id)\n {\n $query=\"DELETE FROM recording WHERE id=\".$id;\n\n $this->executeQuery($query);\n }", "function delete( $id )\n\t{\n\t\t// where clause\n\t\t$this->db->where( $this->primary_key, $id );\n\n\t\t// delete the record\n\t\treturn $this->db->delete( $this->table_name );\n\t\t// print_r($this->db->last_query());die;\n \t}", "public function delete(int $id)\n {\n //\n }", "public function delete($id)\n {\n\n }" ]
[ "0.8939375", "0.8731024", "0.8403047", "0.8394595", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.83515036", "0.82793224", "0.82793224", "0.82793224", "0.82793224", "0.82793224", "0.82793224", "0.82093716", "0.82034326", "0.8114569", "0.8114569", "0.8114569", "0.8090781", "0.8072135", "0.806564", "0.8053513", "0.80498546", "0.80498546", "0.80498546", "0.80484486", "0.80455106", "0.80309165", "0.8017756", "0.80094516", "0.7991174", "0.7981041", "0.7966636", "0.7966636", "0.7960564", "0.7956265", "0.7956265", "0.79438233", "0.7922165", "0.79134023", "0.79073554", "0.7903329", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.7901907", "0.78933847", "0.78790885", "0.78757435", "0.7872965", "0.78666127", "0.7861589", "0.78445524", "0.7841739", "0.78386146" ]
0.0
-1
getList Get a list ready for the html select object
public static function getList($empty=false) { $items = array (); $arrTypes = Doctrine::getTable ( 'Taxes' )->findAll (); if($empty){ $items[] = ""; } foreach ( $arrTypes->getData () as $c ) { $items [$c ['tax_id']] = $c ['name']; } return $items; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getSelectList() {\n\treturn $this->selectList;\n }", "private function getListOptions(){\n return $this->listOptions;\n }", "function get_name_select_list()\n\t{\n\t\treturn $this->get_name_select_edit();\n\t}", "public function select_list()\n\t{\n\t\t$list = array();\t\t\n\t\t$orm = ORM::factory('country');\t\t\n\t\t$list = $orm->select_list('id','name');\n\t\t\n\t\treturn $list;\n\t}", "public function getList();", "public function getList();", "public function getList()\n {\n return $this->select()->get();\n }", "function getList()\r\n\t{\r\n\t\tglobal $mainframe;\r\n\t\t$db\t=& $this->getDBO();\r\n\r\n\t\t// Determine paging variables\r\n\t\t$limit = $mainframe->getUserStateFromRequest( \"viewlistlimit\", 'limit', 10 );\r\n\t\t$limitstart = $mainframe->getUserStateFromRequest( \"viewlimitstart\", 'limitstart', 0 );\r\n\r\n\t\t// Determine basic variables \r\n\t\t$option = JRequest::getVar('option', '', '', 'string');\r\n\t\t$version = JRequest::getVar('version', '', '', 'string');\r\n\t\t$type = JRequest::getVar('type', '', '', 'string');\r\n\t\t$name = JRequest::getVar('name', '', '', 'string');\r\n\t\t$this->_list['option'] = JRequest::getVar('option', '', '', 'string'); \r\n\t\t$this->_list['version'] = $version;\r\n\t\t$this->_list['stype'] = $type;\r\n\t\t$this->_list['sname'] = $name;\r\n\r\n\t\t// Create option field for servertype\r\n\t\t$types[] = Array();\r\n\t\t$array = Array (0 => Array ('component', JText::_( 'Component')),\r\n\t \t 1 => Array ('module', JText::_( 'Module')),\r\n\t\t 2 => Array ('plugin', JText::_( 'Plugin')),\r\n\t \t 3 => Array ('template', 'Template'),\r\n\t \t 4 => Array ('language', JText::_( 'Language'))\r\n );\r\n\r\n\t\t$types[] = mosHTML::makeOption( '', JText::_('Select Type'));\r\n\t\tfor ($i=0; $i<count($array); $i++) {\r\n\t\t\t$types[] = mosHTML::makeOption( $array[$i][0], $array[$i][1] );\r\n\t\t} # End for\r\n\t\t$this->_list['type'] = mosHTML::selectList( $types, 'type', 'class=\"inputbox\" size=\"1\"' . 'onchange=\"document.adminForm.submit();\"', 'value', 'text', $type);\r\n\r\n\t\t// Create option field for package names.\r\n\t\t$query = \"SELECT name FROM #__jpackagedir_packages GROUP BY 1\";\r\n\t\t$db->setQuery($query);\r\n\t\t$rows = $db->loadObjectList();\r\n\r\n\t\t$names[] = mosHTML::makeOption( '', JText::_('Select Package'));\r\n\t\tforeach ($rows as $row) {\r\n\t\t\t$names[] = mosHTML::makeOption( $row->name, $row->name );\r\n\t\t} # End for\r\n\t\t$this->_list['name'] = mosHTML::selectList( $names, 'name', 'class=\"inputbox\" size=\"1\"' . 'onchange=\"document.adminForm.submit();\"', 'value', 'text', $name);\r\n\r\n\t\t// Determine where clause\r\n\t\t$this->_list['rows'] = Array();\r\n\t\t$where = Array();\r\n\t\tif (!empty($type)) { $where[] = \"type = '$type'\"; }\r\n\t\tif (!empty($name)) { $where[] = \"name = '$name'\"; }\r\n\t\tif (!empty($version)) { $where[] = \"version = '$version'\"; }\r\n\t\t$where = (count($where) ? \"\\n WHERE \".implode(' AND ', $where) : '');\r\n\r\n\t\t// Get the total number of records, this is used for paging option\r\n\t\t// in form.\r\n\t\t$query = \"SELECT COUNT(*) FROM #__jpackagedir_packages\" . $where;\r\n\t\t$db->setQuery( $query );\r\n\t\t$total = $db->loadResult();\r\n\r\n\t\t// Now read the current dataset, and pass it on...\r\n\t\t$query = \"SELECT * FROM #__jpackagedir_packages $where ORDER BY version\";\r\n\t\t$db->setQuery( $query, $limitstart, $limit );\r\n\t\t$this->_list['rows'] = $this->_db->loadObjectList();\r\n\t\tif ($db->getErrorNum()) {\r\n\t\t\treturn false;\r\n\t\t} # End if\r\n\r\n\r\n\t\t// Initialize the paging, offer the total number of records, the first record\r\n\t\t// for current page and the number of records to render.\r\n\t\tinclude_once(JPATH_BASE.DS.\"includes\".DS.\"pageNavigation.php\");\r\n\t\t$this->_list['pagenav'] = new mosPageNav( $total, $limitstart, $limit );\r\n\r\n\t\treturn $this->_list;\r\n\t}", "public function getList() {\n \treturn array(\"id\" => $this->id,\n \"name\" => $this->name);\n\t}", "abstract public function getList();", "public function getSelections()\n {\n if ($this->_aList === null && $this->oxselectlist__oxvaldesc->value) {\n $this->_aList = false;\n $aList = oxRegistry::getUtils()->assignValuesFromText($this->oxselectlist__oxvaldesc->getRawValue(), $this->getVat());\n foreach ($aList as $sKey => $oField) {\n if ($oField->name) {\n $this->_aList[$sKey] = oxNew(\"oxSelection\", getStr()->strip_tags($oField->name), $sKey, false, $this->_aList === false ? true : false);\n }\n }\n }\n\n return $this->_aList;\n }", "public function getList()\n {\n return parent::getList();\n }", "public function getList()\n {\n return $this->get(self::_LIST);\n }", "public function getList()\n {\n return $this->list;\n }", "public function getList()\n {\n return $this->list;\n }", "public function getList()\n {\n return $this->list;\n }", "protected function CatalogOptionsList() {\n\treturn $this->GetFieldValue('ItOptions');\n }", "public function getForSelect()\n {\n return $this->all()->lists('full_name', 'id')->all();\n }", "public function getSelectedList() {}", "public function getList() {\n return $this->list;\n }", "public function getList() {\n\t\treturn parent::get();\n\t}", "function outputOptionsList()\n {\n $cc_types = modApiFunc(\"Configuration\", \"getCreditCardSettings\", false);\n\n $OptionsList = '';\n foreach ($cc_types as $type)\n {\n $_id = $type['id'];\n $_name = $type['name'];\n $OptionsList.= '<option value='.$_id.'>'.$_name.'</option>';\n }\n return $OptionsList;\n }", "public function getList ()\n {\n return $this->_list;\n }", "public function getList()\n {\n return $this->_list;\n }", "public function getData()\n {\n $options = new TechDivision_Collections_ArrayList;\n \n $true = new TDProject_Report_Model_Widget_SelectOption(\n new TechDivision_Lang_String('true'), \n new TechDivision_Lang_String('1')\n );\n $options->add($true);\n \n $false = new TDProject_Report_Model_Widget_SelectOption(\n new TechDivision_Lang_String('false'), \n new TechDivision_Lang_String('0')\n );\n $options->add($false);\n \n return $options;\n }", "public abstract function get_lists();", "function makeList($listName, $listOptions, $selectOption ,$addAny) {\r\n\t$output = \"<select name = \\\"$listName\\\" id =\\\"$listName\\\">\\n\";\r\n\t// check if the option was for search or for adding and editing\r\n\tif ($addAny==\"addAny\") {\r\n\t\t$output .= \"<option selected=\\\"true\\\" value=\\\"any\\\">ANY</option>\";\r\n\t}\r\n\t// foreach statment to fill the options with the value and the text\r\n\tforeach ($listOptions as $key=>$value) {\r\n\t\tif ($selectOption == $value) {\r\n\t// check wich choice would be selected\r\n\t\t\t$output .= \"<option selected=\\\"true\\\" value=\\\"$key\\\">$value</option>\\n\";\r\n\t\t}\r\n\t\telse{\r\n\t// add options\r\n\t\t\t$output .= \"<option value=\\\"$key\\\">$value</option>\\n\";\r\n\t\t}\r\n\t}\r\n\t// close the select box\r\n\t$output .= \"</select>\\n\";\r\n\techo $output;\r\n}", "protected function _buildListSelect($options)\n\t{\n\t\t$select = array();\n\n\t\t// get the layout option from params\n\t\t$layout = $this->_getOption('layout', $options);\n\t\t$getMetaData = $this->_getOption('getMetaData', $options, false);\n\t\t$getPageId = $this->_getOption('getPageId', $options, false);\n\n\t\t// in some case, we only need a simple list of urls, with no\n\t\t// counting of additionnal date, pageids, aliases, etc\n\t\t$simpleUrlList = $this->_getOption('simpleUrlList', $options, false);\n\t\tif ($simpleUrlList)\n\t\t{\n\t\t\t$s = ' select distinct u1.*';\n\t\t\t$s .= $getMetaData ? ', m.newurl as nonsefurl, m.id as metaid, m.metatitle as metatitle, m.metadesc as metadesc, m.metakey as metakey, m.metalang as metalang, m.metarobots as metarobots, m.canonical as canonical' : '';\n\t\t\t$s .= $getPageId ? ', p.newurl as nonsefurl, p.pageid as pageid, p.id as pageidid, p.type as pageidtype, p.hits as pageidhits' : '';\n\t\t\t$select[] = $s;\n\t\t\t// add from clause\n\t\t\tif ($getPageId)\n\t\t\t{\n\t\t\t\t$select[] = 'from ' . $this->_db->quoteName('#__sh404sef_pageids') . ' as p';\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$select[] = 'from ' . $this->_db->quoteName('#__sh404sef_urls') . ' as u1';\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\t// regular query, with all bells and whistles\n\t\t\tswitch ($layout)\n\t\t\t{\n\t\t\t\tcase 'export' :\n\t\t\t\t\t$s = ' select distinct u1.*';\n\t\t\t\t\t$s .= $getMetaData ? ',m.newurl as nonsefurl, m.id as metaid, m.metatitle as metatitle, m.metadesc as metadesc, m.metakey as metakey, m.metalang as metalang, m.metarobots as metarobots, m.canonical as canonical' : '';\n\t\t\t\t\t$select[] = $s;\n\t\t\t\t\t// add from clause\n\t\t\t\t\t$select[] = 'from ' . $this->_getTableName() . ' as d, ' . $this->_getTableName() . ' as u1 ';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'view404':\n\t\t\t\t\t$select[] = ' select distinct u1.*';\n\t\t\t\t\t// add from clause\n\t\t\t\t\t$select[] = 'from ' . $this->_getTableName() . ' as u1 ';\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\t$s = ' select distinct u1.*, count(d.`id`)-1 as duplicates, count(m.`id`) as metas';\n\t\t\t\t\t$s .= $getMetaData ? ', m.newurl as nonsefurl, m.id as metaid, m.metatitle as metatitle, m.metadesc as metadesc, m.metakey as metakey, m.metalang as metalang, m.metarobots as metarobots, m.canonical as canonical' : '';\n\t\t\t\t\t$select[] = $s;\n\t\t\t\t\t// add from clause\n\t\t\t\t\t$select[] = 'from ' . $this->_getTableName() . ' as d, ' . $this->_getTableName() . ' as u1 ';\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\t// aggregate clauses\n\t\t$select = (count($select) ? implode(' ', $select) : '');\n\n\t\treturn $select;\n\t}", "public function getList() {\n\t\t\tif (is_null($this->arList)) $this->load(); \n\t\t\treturn $this->arList; \n\t\t}", "public function actionAjaxGetTypes(){\n \n //echo \"<option value='1'>test1</option> <option value='2'>test2</option>\";\n /* This isn't working\n echo CHtml::listOptions(\n null,\n CHtml::listData(EventType::model()->findAll(), 'idEventType', 'displayName'),\n array('prompt'=>'Select a Type')\n );\n */ \n // I got something like this to work earlier in development\n // Good it works!\n $data=CHtml::listData(EventType::model()->findAll(), 'idEventType', 'displayName');\n foreach($data as $value=>$name)\n {\n echo CHtml::tag(\n 'option',\n array('value'=>$value),CHtml::encode($name),true);\n }\n }", "public function getList()\r\n\t{\r\n\t\treturn $this->data;\r\n\t}", "public function doRetrieveAll(){\n\t\t\t$this->openConnection();\n\t\t\t$options=null;\n\n\t\t\t$query=\"SELECT flagList\n\t\t\t\t\tFROM options\";\n\t\t\t$result = $this->connessione->query($query);\n\t\t \n\t\t\twhile($row = $result->fetch_array(MYSQLI_ASSOC))\n\t\t\t{ \n\t\t\t\t\t$options=new ListOption();\n\t\t\t\t\t$options->setFlagList($row[\"flagList\"]);\n\t\t\t}\n\t\n\t\t\t$result->close();\n\t\t\t$this->closeConnection();\n\t\n\t\t\treturn $options;\n\t\t}", "function listadoSelect();", "public function list_for_select(){\n\n\n $categories = new OsServiceCategoryModel();\n $categories = $categories->get_results();\n $response_html = '<option value=\"0\">'.__('Uncategorized', 'latepoint').'</option>';\n foreach($categories as $category){\n $response_html.= '<option>'.$category->name.'</option>';\n }\n echo wp_send_json(array('status' => 'success', 'message' => $response_html));\n }", "function getGetList() {\n return $this->getList;\n }", "public function getClientTypeListAction()\n\t{\n\t\t$clientParameters=$this->_request->getParams();\n\t\t$client_types=$clientParameters['client_type'];\t\n\n\t\t$client_obj=new Ep_Quote_Client();\n\t\t\n\t\t$searchparams['client_type']=explode(\",\",$client_types);\t\t\n\t\t$company_list=$client_obj->getAllCompanyList($searchparams);\n\n\t\t$options='<option></option>';\n\n\t\tif($company_list!='NO')\n\t\t{\n\t\t\tforeach($company_list as $id=>$email)\n\t\t\t{\n\t\t\t\t$options.='<option value=\"'.$id.'\"\">'.$email.'</option>';\n\t\t\t}\n\t\t}\n\t\techo $options;\n\n\t}", "public function getList()\r\n {\r\n return $this->data;\r\n }", "public function getList() {\n\t return array(\"id\" => $this->id,\n \t \"name\" => $this->title);\n\t}", "function getDropDown() ;", "private function getSelectOptions() {\n $result = \"\";\n if($this->pleaseSelectEnabled) {\n $result .= '<option value=\"null\"> -- Please Select --</option>';\n }\n foreach($this->itemList as $key => $val) {\n $selectedText = \"\";\n if(in_array($key, $this->selectedItems)) {\n $selectedText = 'selected=\"selected\"';\n }\n $result .= '<option value=\"'.$key.'\" '.$selectedText.'>'.$val.'</option>'.\"\\n \\t\";\n }\n return $result;\n }", "public function select_list_code()\n\t{\n\t\treturn ORM::factory('country')->select_list('iso_code','name');\n\t}", "public function getCampusList(){\n $campuses = \"\";\n $sql = \"SELECT * FROM campus ORDER BY campusName ASC\";\n $result = db::returnallrows($sql);\n foreach($result as $campus){\n $campuses .= \"<option value='\".$campus['campusid'].\"'>\".$campus['campusName'].\"</option>\";\n }\n \n return $campuses;\n\n }", "function vcn_get_career_names_select_list () {\r\n\t$data = vcn_rest_wrapper('vcnoccupationsvc', 'vcncareer', 'listcareers', array('industry' => vcn_get_industry()), 'json');\r\n\t$select_list_array = array('' => 'Select a Career');\r\n\r\n\tif (count($data) > 0) {\r\n\t\tforeach ($data as $value) {\r\n\t\t\t$select_list_array[$value->onetcode] = $value->title;\r\n\t\t}\r\n\t}\r\n\treturn $select_list_array;\r\n}", "public function getAllForDropDownList()\n {\n $items = (new Query())\n ->select('emails_templates.id, emails_templates.name')\n ->from(['emails_templates' => 'emails_templates'])\n ->orderBy(['emails_templates.name' => SORT_ASC])\n ->all();\n\n return ArrayHelper::map($items, 'id', 'name');\n }", "public static function getList()\n {\n\n $queryString = 'SELECT * from `countries` ORDER BY id ASC';\n\n $paramsArray = array();\n\n // query\n $dbh = new \\Components\\Db();\n $result = $dbh->getResult($queryString, $paramsArray);\n \n return $result;\n\n }", "public static function getLists()\n {\n $lists = Attr::getAttrsByType('select');\n foreach($lists as $k => $list)\n {\n $lists[$k]->data = DB::table('lists')->where('attr_id', '=', $list->id)->get();\n }\n\n return $lists;\n }", "protected function _getList()\n {\n\n $oSelect = $this->select('order_delivery_status_id','order_delivery_status_name', 'order_delivery_status_description','created_at','is_active')->where('is_delete','=',0);\n return $oSelect;\n }", "function get_dropdown_list() {\n\t\t$this->db->from('tag');\n\t\t$this->db->order_by('tag_id');\n\t\t$result = $this->db->get();\n\t\t$return = array();\n\t\tif($result->num_rows() > 0) {\n\t\t\tforeach($result->result_array() as $row) {\n\t\t\t\t$return[$row['tag_id']] = $row['tag_title'];\n\t\t\t}\n\t\t}\n\t\treturn $return;\n\t}", "public function getList(){\n \t$formobj=$this->getFormObj();\n \t$list=array();\n \tfor($i=1;$i<=$formobj->totalPages;$i++){\n \t\tarray_push($list,array(\"val\"=>$i,\"txt\"=>$i));\n \t}\n \treturn $list;\n }", "public function get_students_list_select(){\n\t\t$this->verify();\n\t\t$students=$this->admin_model->getStudentlistSELECT2($_GET['search']);\n\t\tforeach ($students as $key => $value) {\n\t\t\t$data[] = array('id' => $value['ADMISSION_NUMBER'], 'text' => $value['NAME']);\t\t\t \t\n \t\t}\n\t\techo json_encode($data);\n\t}", "public function getList() {\n\t\treturn $this->find('list', array(\n\t\t\t'contain' => false,\n\t\t\t'cache' => $this->alias . '::' . __FUNCTION__\n\t\t));\n\t}", "public function getSelect();", "public function getSelect();", "public function getList()\n {\n }", "function getNationalityDropdownList($name, $initVal=\"\", $js=\"\") {\n $dList = \"<SELECT id=\\\"$name\\\" name=\\\"$name\\\" $js class=\\\"select\\\"><option value=\\\"\\\">Select from List</option>\";\n $dList.=\"<option value=\\\"British\\\">British</option>\";\n $nationalities = $this->getDBRecords(\"select label as name,value as id from nationality order by label\");\n for ($i = 0; $i < count($nationalities); $i++) {\n\n if (rtrim($initVal) == rtrim($nationalities[$i][\"id\"])) {\n $sel = \"selected\";\n }\n else\n $sel=null;\n $dList.= \"<option $sel value=\\\"\" . rtrim($nationalities[$i][\"id\"]) . \"\\\">\" . $nationalities[$i][\"name\"] . \"</option>\";\n }\n $dList.= \"</SELECT>\";\n\n return $dList;\n }", "function get_field_list()\n\t{\n\t\t$fields = array();\n\n\n\t\t$this->xhr_output($fields);\n\t}", "public function get_dropdown_list() {\n /* convert things like &gt; to > etc */\n foreach ($this->allanswers as $key => $value) {\n $this->allanswers[$key] = htmlspecialchars_decode($value);\n }\n // Make the key and value the same in the array.\n $selectoptions = array_combine($this->allanswers, $this->allanswers);\n return $selectoptions;\n }", "public static function getSelectData($useAccount = false, $val = null)\n {\n $items = array();\n $value = 'name';\n\n if($val)\n {\n $value = $val;\n }\n\n if($useAccount)\n {\n $account = access()->account();\n $collection = parent::where('account_id', '=', $account->id)->get()->pluck($value, 'id');\n }\n else\n {\n $collection = parent::pluck($value, 'id');\n }\n\n // For each item, the ID needs to become hashed\n foreach ($collection as $id => $name)\n {\n $item = parent::find($id);\n\n if(isset(static::$selectHTMLFormat) && static::$selectHTMLFormat !== '')\n {\n $items[$id] = static::generateSelectName($item, static::$selectHTMLFormat);\n }\n else\n {\n $items[$id] = $name;\n }\n }\n\n\n return $items;\n }", "protected function getListOptions()\n {\n $customOptions = [];\n $context = $this->getOptionsContext();\n $count = 1;\n $optionElementTitle = $context->find(sprintf($this->optionElementTitle, $count), Locator::SELECTOR_XPATH);\n $optionElement = $context->find(sprintf($this->optionElement, $count), Locator::SELECTOR_XPATH);\n while ($optionElementTitle->isVisible()) {\n $title = $optionElementTitle->find($this->title)->getText();\n $customOptions[$title]['title'] = $optionElementTitle;\n $customOptions[$title]['content'] = $optionElement;\n ++$count;\n $optionElementTitle = $context->find(sprintf($this->optionElementTitle, $count), Locator::SELECTOR_XPATH);\n $optionElement = $context->find(sprintf($this->optionElement, $count), Locator::SELECTOR_XPATH);\n }\n return $customOptions;\n }", "function get_form_list_select($instance) {\n\t\t$forms = get_option('cc_form_design');\n\n\t\t$output = '';\n\t\t$output .= '<select name=\"'.$this->get_field_name('formid').'\" id=\"'.$this->get_field_id('formid').'\">';\n\t\t$output .= '<option value=\"\">'.__('Select a Form Design', 'consatnt-contact-api').'</option>';\n\n\t\tif(!empty($forms)) {\n\t\t\t$previous_names = array();\n\t\t\tforeach($forms as $form) {\n\n\t\t\t\t$name = isset($form['form-name']) ? $form['form-name'] : 'Form '+$key;\n\n\t\t\t\t$form['truncated_name'] = stripcslashes(trim( wp_html_excerpt( $name, 50 ) ));\n\t\t\t\tif ( isset($form['form-name']) && $form['truncated_name'] != $form['form-name'])\n\t\t\t\t\t$form['truncated_name'] .= '&hellip;';\n\n\t\t\t\tif(!in_array(sanitize_key( $name ), $previous_names)) {\n\t\t\t\t\t$previous_names[] = sanitize_key( $name );\n\t\t\t\t} else {\n\t\t\t\t\t$namekey = sanitize_key( $name );\n\t\t\t\t\t$previous_names[$namekey] = isset($previous_names[$namekey]) ? ($previous_names[$namekey] + 1) : 1;\n\t\t\t\t\t$form['truncated_name'] .= ' ('.$previous_names[$namekey].')';\n\t\t\t\t}\n\n\t\t\t\tif(!empty($form)) {\n\t\t\t\t\t$output .= \"<option value=\\\"{$form['cc-form-id']}\\\"\".selected($this->get_value('formid', $instance), $form['cc-form-id'], false).\">{$form['truncated_name']}</option>\";\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t$output .= '</select>';\n\n\t\treturn $output;\n\t}", "public function getOptionsList() {\n\n\t\treturn $this->options;\n\t}", "public function getOptions(){\n //$this->xpath = new DOMXPath($this->document);\n $cssname = \"options-list\";\n $tag = \"ul\";\n $consulta = \"//\".$tag.\"[@class='\".$cssname.\"']\";\n $elements = $this->xpath->query($consulta);\n if ($elements->length > 0){\n foreach($elements as $element){\n $consultaSpan = \"li/span[@class='label']\";\n $spans = $this->xpath->query($consultaSpan, $element);\n if ($spans->length > 0){\n foreach($spans as $span){\n //echo \"La caracteristica es: \".$span->nodeValue.\"<br>\";\n }\n }\n }\n }\n echo \"<br><br>\";\n }", "public static function getOptionList() {\n $cotizaciones = Cotizacion::find()->where([\"estado_cotizacion\" => self::ESTADO_ACEPTADA])->orWhere([\"estado_cotizacion\" => self::ESTADO_ACEPTADA_PARTIAL])->all();\n return ArrayHelper::map($cotizaciones, '_id', 'textCotizacion');\n }", "private function _getOptions()\n {\n // Initialize variables.\n $options = array();\n\n foreach ($this->element->children() as $option)\n {\n\n // Only add <option /> elements.\n if ($option->getName() != 'option')\n {\n continue;\n }\n\n // Create a new option object based on the <option /> element.\n $tmp = JHtml::_(\n 'select.option', (string) $option['value'], trim((string) $option), 'value', 'text',\n ((string) $option['disabled'] == 'true')\n );\n\n // Set some option attributes.\n $tmp->class = (string) $option['class'];\n\n // Set some JavaScript option attributes.\n $tmp->onclick = (string) $option['onclick'];\n\n // Add the option object to the result set.\n $options[] = $tmp;\n }\n\n reset($options);\n\n return $options;\n }", "protected function buildOptionsList() {\n }", "public function getOptionList()\n {\n return Mage::helper('bundle/catalog_product_configuration')->getOptions($this->getItem());\n }", "public function getList()\n {\n return $this->model->getList();\n }", "public function country_list()\n {\n $result = common_select_values('id, name', 'ad_countries', '', 'result');\n return $result; \n }", "public function getListdata() { \t\n $select = $this->select();\n $select->setIntegrityCheck(false)\n ->from(array('j'=>'job_category'),array('j.*')); \t\t\t\t\t\t\t\t\t\t\n \t\n \t$select = $this->fetchAll($select);\n\t$select = $select->toArray(); \t\t\t\n\t//_pr($select ,1);\n \n\tif($select){\n $data = array();\n foreach($select as $row){\n $data[$row['id']] = $row['name']; \n }\n return $data;\n }else{\n return null; \n } \n }", "function getNameOptions(){\n $db = JFactory::getDBO();\n $query = $db->getQuery(true);\n \n // Select some fields\n //$query->select('DISTINCT name');\n $query->select('name');\n // From the hello table\n $query->from('#__helloworld_message');\n\t\t\t\t\n\t\t\t\t$db->setQuery($query);\n\t\t\t\t$result = $db->loadObjectList();\n\t\t\t\n\t\t\tforeach($result as $item){\n\t\t\t\t$name = $item->name;\n\t\t\t\t$filter_name_options[] = JHTML::_('select.option', $name , $name);\n\t\t\t\t}\n\t\t\treturn $filter_name_options;\n\t\t\t\n\t\t\t}", "private static function htmllist(array $options, array $attributes=array())\r\n {\r\n return JHTML::_('select.genericlist', $options, self::getKey('name', $attributes, uniqid('select-')), self::getKey('attributes', $attributes, ''), 'value', 'text', self::getKey('selected', $attributes));\r\n }", "public function getList()\n {\n $this->data['setting_list'] = $this->setting->mainSettings();\n }", "public function getValuesList(){\n return $this->_get(1);\n }", "function vList() {\n $vlist=$this->getListVars();\n //need database,table,varname,tableinfo for variable =\n // browse=varname;ctrl=whatever;titl=something;whatever other options\n $postStrng=\"method=useQonFly\".\n '&db='.$this->dbName.\n '&tabl='.$this->tabl.\n '&index='.$this->indx;\n if ($vlist) {\n $postStrng.=\"&cmnd=qlist\";\n $chStrng=\"document.getElementById('updBrowse').style.visibility='visible';\";\n $chStrng.=\"jtAjaxLibSelect('$postStrng','varinfo','jtSpecs','1');\";\n echo \"<p><strong>Filter by</strong>\\n<select id=\\\"varinfo\\\" name=\\\"varinfo\\\"\";\n echo \" />\\n\";\n echo \"<option value=\\\"0\\\"> -- </option>\\n\";\n foreach ($vlist as $item) {\n $a=$this->xQueryInfo[\"$item\"];\n $code=\"$item;ctrl=\".$a->getSize().';titl='.$a->getLabel().';'.\n $this->implodeAllOpts($a);\n echo \"<option value=\\\"$code\\\">\",$a->getLabel(),\"</option>\\n\";\n }\n echo \"</select>\\n\";\n addButton('myChoice','Choose',$chStrng); \n //echo \"</p>\\n\";\n } //vlist not empty\n }", "function listTagsSelect( $mData ){\n global $config;\n\n $oSql = Sql::getInstance( );\n $content = null;\n if( is_numeric( $mData ) ){\n $iPage = $mData;\n }\n elseif( is_array( $mData ) ){\n $aTags = array_flip( $mData );\n }\n\n $oQuery = $oSql->getQuery( 'SELECT tags.sName, tags.iTag'.( isset( $iPage ) ? ', pages_tags.iPage' : ( isset( $aTags ) ? ', count( pages_tags.iPage ) AS iPages' : null ) ).' FROM tags'.( isset( $iPage ) ? ' LEFT JOIN pages_tags ON pages_tags.iTag=tags.iTag AND pages_tags.iPage = \"'.$iPage.'\"' : ( isset( $aTags ) ? ' LEFT OUTER JOIN pages_tags ON pages_tags.iTag = tags.iTag' : null ) ).' WHERE sLang = \"'.$config['language'].'\"'.( isset( $aTags ) ? ' GROUP BY tags.iTag' : null ).' ORDER BY tags.iPosition ASC, tags.sName ASC' );\n while( $aData = $oQuery->fetch( PDO::FETCH_ASSOC ) ){\n $content .= '<option value=\"'.$aData['iTag'].'\"'.( ( !empty( $aData['iPage'] ) || ( isset( $aTags ) && isset( $aTags[$aData['iTag']] ) ) ) ? ' selected=\"selected\"' : null ).'>'.$aData['sName'].( !empty( $aData['iPages'] ) ? ' ('.$aData['iPages'].')' : null ).'</option>';\n } // end while\n\n return $content;\n}", "public static function getList()\n {\n return CHtml::listData(Departamentos::model()->findAll(),'id_departamento', 'descripcion');\n }", "public function getInfoDropDownList()\n {\n \n try{\n if(!$this->pdo)throw new PDOException();\n $collection = [];\n $sth = $this->pdo->query(\"SELECT id, name FROM brands\"); \n $collection ['brands'] = $this->getFetchAccoss($sth);\n $sth = $this->pdo->query(\"SELECT id, name FROM models\"); \n $collection ['models'] = $this->getFetchAccoss($sth);\n $sth = $this->pdo->query(\"SELECT id, name FROM colors\"); \n $collection ['colors'] = $this->getFetchAccoss($sth);\n $collection ['sucess'] = 1;\n return json_encode($collection);\n }catch(PDOException $err){\n file_put_contents('errors.txt', $err->getMessage(), FILE_APPEND); \n $err_arr = ['sucess'=>0];\n return json_encode($err_arr);\n }\n }", "public function Lista_Ciudades()//FUNCION PARA LLAMAR LA LISTA DE DEPARTAMENTOS\n {\n \n include('conexion.php');\n \n\n $Consulta_Ciudad = \"SELECT * FROM p_ciudad ORDER BY ciud_nombre\";\n\t\t\t $Resultado_Consulta_Ciudad = $conexion->prepare($Consulta_Ciudad);\n $Resultado_Consulta_Ciudad->execute();\n\t\t\t\t\t while ($f = $Resultado_Consulta_Ciudad->fetch())\t\n {\n\t\t\t\t\t\t echo '<option value=\"'.$f[ciud_codigo].'\">'.$f[ciud_nombre].'</option>';\n }\n \n }", "public function dropdown()\n {\n $building_id = \\Request::get('building_id');\n return \\App\\Floor::where('building_id', $building_id)->lists('name','id');\n }", "private function getSkuSelectionList() {\r\n //$this->jsonOutput[\"skuSelectionList\"] = $this->settingVars->pageArray[\"SKU_SELECTION_LIST\"];\r\n\t\tif(isset($this->jsonOutput[\"settings\"]['sku_settings']) && $this->jsonOutput[\"settings\"]['sku_settings'] != \"\")\r\n\t\t\t$this->jsonOutput[\"skuSelectionList\"] = $this->jsonOutput[\"settings\"]['sku_settings'];\r\n }", "public static function getListSelection()\r\n\t{\r\n\t\treturn static::$ListSelection;\r\n\t}", "public static function getList($options = array())\n\t{\n\t\t$fields = array('*');\n\t\t$fields = Model::parseFields(SindicatoModel::$tables, $fields, SindicatoModel::$table);\n\n\t\t$params = array(\n\t\t\t\t'fields' => $fields,\n\t\t\t\t'table' => SindicatoModel::$table,\n\t\t\t\t'orderby' => 'name ASC',\n\t\t);\n\t\t$return = self::select($params,0);\n\t\t\n\t\t$return['tag'] = 'sindicato';\n\t\treturn $return;\n\t}", "public static function getList(){\n return self::all();\n }", "function LUPE_option_lista_rs($rs, $NomeCombo, $size = '', $JS = '', $Style = '', $multiple = true)\r\n{\r\n\r\n $multiple = $multiple ? 'multiple' : '';\r\n $tam_lst = $size == '' ? mssql_num_rows($rs) : $size;\r\n\r\n if ($size == '') {\r\n $tam_lst = $tam_lst < 6 ? 6 : $tam_lst;\r\n $tam_lst = $tam_lst > 15 ? 15 : $tam_lst;\r\n }\r\n\r\n $option = '<select id=\"'.$NomeCombo.'\" name=\"'.$NomeCombo.'\" size=\"'.$tam_lst.'\" '.$multiple.' '.$JS.' style=\"'.$Style.'\">';\r\n\r\n if (mssql_num_rows($rs) > 0) {\r\n mssql_data_seek($rs, 0);\r\n\r\n While ($row = mssql_fetch_array($rs)) {\r\n $option .= '<option value=\"'.$row[0].'\">';\r\n\r\n for ($x = 1; $x < mssql_num_fields($rs); $x++) {\r\n $option .= htmlentities($row[$x]);\r\n if ($x < mssql_num_fields($rs) - 1)\r\n $option .= \" - \";\r\n }\r\n $option .= \"</option>\";\r\n }\r\n }\r\n\r\n $option .= \"</select>\";\r\n\r\n return $option;\r\n}", "public function getDropDown() {}", "public function getDropDown() {}", "public function actionGetCountriesList(){\n if(!empty($_POST['continent_id']) && is_numeric($_POST['continent_id'])){\n $data = Address::model()->findAll('parent_id = :parent_id', array(\n ':parent_id'=>(int)$_POST['continent_id']\n ));\n $data = CHtml::listData($data, 'id', 'name');\n foreach($data as $value=>$name){\n echo CHtml::tag('option', array('value'=>$value), CHtml::encode($name), true);\n }\n }\n }", "function getList() {\n return $this->db->get($this->table)->result_array();\n }", "public function render()\n {\n $fromList = array();\n $this->getFromList($fromList);\n $value = $this->getValue()!==null?$this->getValue():$this->getDefaultValue();\n $valueArray = explode(',', $value);\n \n $disabledStr = ($this->getEnabled() == \"N\") ? \"DISABLED=\\\"true\\\"\" : \"\";\n $style = $this->getStyle();\n $func = $this->getFunction();\n\n //$sHTML = \"<SELECT NAME=\\\"\" . $this->objectName . \"[]\\\" ID=\\\"\" . $this->objectName .\"\\\" $disabledStr $this->htmlAttr $style $func>\";\n $sHTML = \"<SELECT NAME=\\\"\" . $this->objectName . \"\\\" ID=\\\"\" . $this->objectName .\"\\\" $disabledStr $this->htmlAttr $style $func>\";\n\n if ($this->blankOption) // ADD a blank option\n {\n $entry = explode(\",\",$this->blankOption);\n $text = $entry[0];\n $value = ($entry[1]!= \"\") ? $entry[1] : null;\n $entryList = array(array(\"val\" => $value, \"txt\" => $text ));\n $fromList = array_merge($entryList, $fromList);\n }\n\n $defaultValue = null;\n foreach ($fromList as $option)\n {\n $test = array_search($option['val'], $valueArray);\n if ($test === false)\n {\n $selectedStr = '';\n }\n else\n {\n $selectedStr = \"SELECTED\";\n $defaultValue = $option['val']; \n }\n $sHTML .= \"<OPTION VALUE=\\\"\" . $option['val'] . \"\\\" $selectedStr>\" . $option['txt'] . \"</OPTION>\";\n }\n if($defaultValue == null){\n \t$defaultOpt = array_shift($fromList);\n \t$defaultValue = $defaultOpt['val'];\n \tarray_unshift($fromList,$defaultOpt);\n }\n \n \n $this->setValue($defaultValue);\n $sHTML .= \"</SELECT>\";\n return $sHTML;\n }", "function selectList($name,$table,$option_name,$value_name,$curr_id,$script=\"\",$cond=\"\",$empty_option=0,$empty_value=\"\",$empty_str=\"\") {\n\n\t\tglobal $db, $db;\n\n\t\t$output\t\t = \"<select name=\\\"$name\\\" id=\\\"$name\\\" $script>\\n\";\n\t\tif ($empty_option) $output\t\t.= \"<option value=\\\"$empty_value\\\">$empty_str</option>\\n\";\n\n\t\tif(eregi(\"\\|\",$curr_id)){\n\t\t\t$curr_id_array=split(\"\\|\",$curr_id);\n\t\t}\n\n\t\tif(eregi(\"\\|\",$value_name)){\n\t\t\t$value_array=split(\"\\|\",$value_name);\n\t\t\t$value_query=preg_replace(\"#\\|#\",\",\",$value_name);\n\t\t}else{\n\t\t\t$value_query=$value_name;\n\t\t\t#echo\"<h1>value: $value_query | $value_name</h1>\";\n\t\t}\n\t\t$value_query=preg_replace(\"#,$#\",\"\",$value_query);\n\n\t\t$sql=\"select $option_name,$value_query from \".$table.\" $cond\";\n \n\t\t$result = $db->Execute(\"$sql\");\n\t\tif (!$result){\n\t\t\techo\"$sql\";\n\t\t\tprint $conn->ErrorMsg();\n\n\t\t}\n\t\twhile ( $row = $result->FetchRow() ) {\n\t\t\t//echo $curr_id.\"|\".$row[$this->fmtCase($option_name)].\"<br>\\n\";\n\t\t\tif(eregi(\"\\|\",$curr_id)){\n\t\t\t\t$selected= ((in_array($row[$this->fmtCase($option_name)],$curr_id_array))?\"selected \":\"\");\n\t\t\t}\n\t\t\telse {\n\t\t\t\t$selected= (($curr_id==$row[$this->fmtCase($option_name)])?\"selected \":\"\");\n\t\t\t}\n\t\t\tif(eregi(\"\\|\",$value_name)){\n\n\t\t\t\tfor($i=0;$i<count($value_array);$i++){\n\t\t\t\t\t$each_value=strtolower($value_array[$i]);\n\t\t\t\t\t$_value .= $row[$each_value].\" -\";\n\t\t\t\t}\n\t\t\t\t$_value=preg_replace(\"#-$#\",\"\",$_value);\n\t\t\t}else{\n\t\t\t\t$value_name=strtolower($value_name);\n\t\t\t\t$_value=$row[$value_name];\n\t\t\t}\n\n\n\t\t\t$output .= \"<option value=\\\"\".$row[$this->fmtCase($option_name)].\"\\\" $selected>$_value</option>\\n\";\n\t\t\tunset($selected);\n\t\t\tunset($_value);\n\t\t}\n\t\t$result->Close();\n\n\t\t$output .= \"</SELECT>\\n\";\n\n\t\treturn $output;\n\t}", "function getParameterListByCode($code){\r\n $ci =& get_instance();\r\n $ci->load->model('helper/helper');\r\n $result = $ci->helper->getDataParamByCode($code);\r\n echo \"<select>\";\r\n foreach ($result as $value) {\r\n echo \"<option value=\" . $value['id'] . \">\" . strtoupper($value['name']) . \"</option>\";\r\n }\r\n echo \"</select>\";\r\n}", "public function getStateList()\n\t{\n\t\t$country_id = $this->input->post('country_id');\n\t\t$state_list = $this->company_details_model->getStateListByCountryId($country_id);\n\n\t\t$html = '';\n\t\tif(count($state_list) > 0)\n\t\t{\n\t\t\tforeach ($state_list as $s_list) \n\t\t\t{\n\t\t\t\t$html .= '<option value=\"'.$s_list->state_id.'\">'.$s_list->state_name.'</option>';\n\t\t\t}\n\t\t\t\n\t\t\techo $html; \n\t\t}\n\t\telse\n\t\t{\n\t\t\techo $html;\n\t\t}\n\t}", "function outputCountriesList() {\r\n $countries = new CountryCollection();\r\n $countries->loadCollection();\r\n \r\n $result = $countries->getArray();\r\n\t\r\n for($i=0;$i<$countries->getCount();$i++){\r\n\t\t echo '<option value=\"'. $result[$i]->getISO(). '\">' . $result[$i]->getCountryName() . '</option>';\r\n\t}\r\n}", "public function optionList(){\n $this->layout = null;\n\n\t $this->set('chamados',\n $this->Chamado->find('list', array(\n 'fields' => array('Chamado.id', 'Chamado.numero'),\n 'conditions' => array('Chamado.servico_id' => $this->params['url']['servico']))));\n }", "public function getRubroList()\n {\n $option = '';\n $query = $this->db->query(\"SELECT * FROM rubro\");\n while ($rdata = mysqli_fetch_assoc($query)) {\n $option .= '<option value=\"' . $rdata['idRubro'] . '\" data-inicial=\"' . $rdata['nombreRubro'][0] . '\">' . mb_strtoupper(\n $rdata['nombreRubro']\n ) . '</option>';\n }\n\n return $option;\n }", "function SelectValuesUnidad($db_conx) {\r\n $sql = \"SELECT uni_codigo, uni_descrip FROM tunidad ORDER BY uni_descrip ASC\";\r\n $query = mysqli_query($db_conx, $sql);\r\n\r\n $n_filas = $query->num_rows;\r\n $data = '<select class=\"unidadmedico\" multiple=\"multiple\" id=\"cmbunidad\">';\r\n $c = 0;\r\n while ($c < $n_filas) {\r\n $row = mysqli_fetch_array($query);\r\n $data .= '<option value=\"' . $row[0] . '\">' . $row[1] . '</option>';\r\n $c++;\r\n }\r\n $data .= '</select>';\r\n echo $data;\r\n}", "public static function getItemOptions(){\n\t\t$item = \"\";\n\t\t// Loop through items to populate drop down\n\t\t$sql2 = \"\n\t\t\tSELECT * FROM item\n\t\t\t\";\n\t\t$prepare_values2 = [\n\t\t\t':id' => $_GET['id']\n\t\t\t];\n\n\t\t// Make a PDO statement\n\t\t$statement2 = DB::prepare($sql2);\n\n\t\t// Execute\n\t\tDB::execute($statement2);\n\n\t\t// Get all the results of the statement into an array\n\t\t$results2 = $statement2->fetchAll();\n\t\tforeach ($results2 as $heading2 => $row2) {\n\t\t\t$item .= '<option value=\"' . $row2['id'] . '\">' . $row2['name'] . '</option>';\n\t\t}\n\t\treturn $item;\n\t}", "protected function createUserAndGroupListForSelectOptions() {}", "public function _get_picker_dropdown_choices() {\n\t\t$this->load_data();\n\t\t$result = array();\n\t\tforeach ( $this->data as $unique_key => $item ) {\n\t\t\t$result[ $unique_key ] = $item['label'];\n\t\t}\n\n\t\treturn $result;\n\t}", "function show_list()\n\t{\n\t\t$out = $this->get_value_list();\n\t\treturn $out;\n\t}", "function\tdropdown_list($dbconn) {\n\t$sqlcom=\"select distinct spec_id,name from info;\";\n\t$dbres = pg_exec($dbconn, $sqlcom );\n\tif ( ! $dbres ) {echo \"Error : \" + pg_errormessage( $dbconn ); exit();} \n\t$row=0;\n\t$rowmax=pg_NumRows($dbres);\n\tprint \"<form method=\\\"post\\\" action=\\\"libSpec.php\\\"><select name=\\\"organism\\\" onchange=\\\"this.form.submit();\\\">\\n<option value=\\\"select\\\">Select an organism...</option>\\n\"; \n\twhile ($row<$rowmax) {\n\t $do = pg_Fetch_Object($dbres, $row);\n\t $name=$do->name;\n\t print \"<option value=\\\"$name\\\">$name</option>\\n\";\n\t $row++;\n\t}\n\tprint(\"</select></form>\\n\\n\");\n}" ]
[ "0.73743844", "0.72171926", "0.6913897", "0.690176", "0.6842628", "0.6842628", "0.6734653", "0.6731998", "0.66567904", "0.66555417", "0.6620718", "0.6606574", "0.65382046", "0.65158623", "0.65158623", "0.65158623", "0.65109503", "0.65108943", "0.6497248", "0.6494001", "0.6485079", "0.6467024", "0.64417696", "0.6420278", "0.641026", "0.6401871", "0.6372829", "0.6355456", "0.6348446", "0.63422453", "0.63240933", "0.6309467", "0.6290115", "0.62568235", "0.6252949", "0.6238931", "0.62290525", "0.6229014", "0.62233865", "0.62186164", "0.62144667", "0.62013626", "0.61997056", "0.6199108", "0.6194325", "0.61912316", "0.6188225", "0.6186726", "0.61862266", "0.61836433", "0.6175207", "0.61738044", "0.61738044", "0.6172824", "0.6162698", "0.6147021", "0.6142996", "0.6132436", "0.6130091", "0.61038846", "0.6095937", "0.60957474", "0.6094655", "0.6084722", "0.606394", "0.6053883", "0.6044883", "0.6025912", "0.6018353", "0.6016781", "0.6014423", "0.6013582", "0.6011817", "0.600215", "0.59982663", "0.59852916", "0.59804195", "0.59801036", "0.59791315", "0.5976068", "0.59648126", "0.59634835", "0.59621006", "0.5956715", "0.5956589", "0.5956589", "0.59491795", "0.5932982", "0.59277403", "0.5924221", "0.591932", "0.5918491", "0.59137297", "0.59058326", "0.59038395", "0.590147", "0.58987", "0.58979607", "0.5894813", "0.5891529", "0.5888305" ]
0.0
-1
getTaxbyTldID Get the tax
public static function getTaxbyTldID($tldid) { $dq = Doctrine_Query::create ()->select('s.tax_id as tax_id, s.name as name, s.percentage as percentage') ->from ( 'DomainsTlds dt' ) ->leftJoin('dt.Taxes s') ->where('tld_id = ?', $tldid); $tax = $dq->execute ( array (), Doctrine_Core::HYDRATE_ARRAY ); return isset($tax[0]) ? $tax[0] : null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getTaxById($id)\n {\n return null;\n }", "public function getIdTax()\n {\n return $this->id_tax;\n }", "function getTaxPercenTax($id)\n\t{\n\n\n\t\t$query3=\"SELECT (ps.cgst+ps.sgst) as gst FROM `product` as p INNER JOIN product_variant as pv on pv.`ptdvar_id` = p.ptdvar_id INNER JOIN product_sub_category as ps on ps.pr_sub_id = pv.ptd_sub_catgry_id where p.product_id ='$id'\";\n\t $data3=$this->get_results( $query3 );\n\t\treturn $data3;\n\n\t}", "public function getCidTax()\n {\n return $this->cid_tax;\n }", "abstract public function getTaxType();", "public function getTax()\n\t{\n\t\treturn $this->getKeyValue('Tax'); \n\n\t}", "public function getTaxRefunded();", "public function getTaxRow($tax_id){\n\t \n\t \t\t$this->db->select(\"TS.tax_id, TS.tax_per, TS.tax_type\");\n\t\t\t$this->db->from(\"tax_structure AS TS\");\t\t\t\t\t\t\n\t\t\t$this->db->where(\"TS.tax_id\",$tax_id);\n\t\t\t\n\t\t\t$query_tax_row = $this->db->get();\n\t\t\t\n\t\t\tif($query_tax_row->num_rows()>0)\n\t\t\t{\n\t\t\t\treturn $query_tax_row->result_array();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\treturn array('0'=> array('tax_id'=>'0','tax_per'=>'0','tax_type'=>'None'));\n\t\t\t}\n\t \n\t }", "public function getTax()\n {\n return $this->tax;\n }", "function getReceiptTax()\n\t{\n\t\tglobal $db;\n\n\t\t$query = 'SELECT t.tax_desc AS \"Tax\", rt.tax_rate AS \"Tax Rate\", rt.tax_value AS \"Tax Value\"\n\t\tFROM '.receipt_tax_table.' rt JOIN '.tax_table.' t USING (tax_id) \n\t\tWHERE rt.receipt_id = '.$this->receipt_id.' \n\t\tORDER BY rt.tax_sequence';\n\t\t$result = $db->query($query);\n\n\t\tif(!$result)\n\t\t{\n\t\t\t$err_info = $db->errorInfo();\n\t\t\techo $err_info[2];\n\t\t\terror_log('Function : getReceiptTax, Class : receipt, '.$err_info[2]);\n\t\t\texit;\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$arr = $result->fetchAll(PDO::FETCH_ASSOC);\n\t\t}\n\t\treturn $arr;\n\t}", "public function getTaxClassId();", "public function getTaxCategoryId();", "public function getTax()\n {\n return $this->_tax;\n }", "public function getTaxRate();", "public function getTaxedPrice();", "public static function getTaxbyProductID($productid) {\r\n \r\n $dq = Doctrine_Query::create ()->select('s.tax_id as tax_id, s.name as name, s.percentage as percentage')->from ( 'Products p' )\r\n ->leftJoin('p.Taxes s')\r\n ->where('product_id = ?', $productid);\r\n $tax = $dq->execute ( array (), Doctrine_Core::HYDRATE_ARRAY );\r\n return isset($tax[0]) ? $tax[0] : null;\r\n }", "public function getTaxCategory();", "public function getTaxCategory();", "public function getTaxCategory();", "public function getTaxIdAttribute()\n {\n return $this->exists ? $this->attributes['tax_id'] : Tax::getDefaultTaxId();\n }", "public function getTaxcode()\n {\n return $this->taxcode;\n }", "public function get_tax() {\n\t\treturn $this->_tax;\n\t}", "public function getTax() {\n return $this->_tax;\n }", "public function getTaxInvoiced();", "public function getVehicleTax($busId='') {\n \n $query = \"\tSELECT\tmax(busNoValidTill) AS busNoValidTill,\n\t\t\t\t\t\t\tmax(passengerTaxValidTill) AS passengerTaxValidTill,\n\t\t\t\t\t\t\tmax(roadTaxValidTill) AS roadTaxValidTill,\n\t\t\t\t\t\t\tmax(pollutionCheckValidTill) AS pollutionCheckValidTill,\n\t\t\t\t\t\t\tmax(passingValidTill) AS passingValidTill\n\t\t\t\t\tFROM\tbus_entries be\n\t\t\t\t\tWHERE\tbe.busId = $busId\";\n return SystemDatabaseManager::getInstance()->executeQuery($query,\"Query: $query\");\n }", "public function getLineTax()\n\t{\n\t\treturn $this->getKeyValue('line_tax'); \n\n\t}", "public function getBaseTaxRefunded();", "public function getTax(): Tax\n\t{\n\t\treturn $this->tax;\n\t}", "public function getTaxAmount();", "public function getAlias()\n {\n return 'tax';\n }", "function commission_taxes($order_id) {\n\n\tif ($order_id != null) {\n\t $this->order_id = $order_id;\n\t $parameters = array($this->order_id);\n\t} else {\n\t $parameters = null;\n\t}\n\n\tparent::collection(COMMISSION_TAXES_SQL_LOAD, $parameters, \"commission_tax\", \"order_tax_type_id\");\n }", "function get_tax_number()\n {\n if (!empty($this->business_center_id)) {\n $tax_number = $this->db->query_field(DISTRIBUTOR_TAX_NUMBER_SQL, array($this->business_center_id));\n if (!empty($tax_number)) {\n return $tax_number;\n }\n }\n return false;\n }", "function tep_get_tax_rate_value($class_id) {\n return tep_get_tax_rate($class_id, -1, -1);\n }", "function getTax() \n\t{\n\t\t$tax = Option::where('attribute', '=', 'tax_mod')->first();\n\n\t\treturn (float)$tax->value;\n\t}", "public function getExternalTaxRate();", "private function get_tax_level( $term_id, $tax ) {\n\t\treturn count( get_ancestors( $term_id, $tax ) );\n\t}", "public function tax()\n {\n return $this->hasOne('fooCart\\src\\Tax', 'tax_id', 'tax_id');\n }", "public function actionGetTax() {\r\n $data = '';\r\n if (Yii::$app->request->isAjax) {\r\n $tax_id = $_POST['tax'];\r\n $tax_data = \\common\\models\\Tax::find()->where(['id' => $tax_id])->one();\r\n if (!empty($tax_data)) {\r\n $data = $tax_data->value;\r\n }\r\n }\r\n return $data;\r\n }", "public function get_tax_details(){\r\n\t\t\r\n\t\t$data\t\t\t\t\t\t\t= array();\r\n\t\t$data['tax_id']\t\t\t\t\t= $this->uri->segment(3);\r\n\t\t$data['tax_details']\t= $this->Common_model->get_tax_details($data['tax_id']);\r\n\t\techo json_encode($data['tax_details']);\r\n\t}", "public function getTaxList()\r\n\t{\r\n\t\t$this->db->select('*');\r\n\t\t$this->db->from('tbl_tax');\r\n\t\t$this->db->where('tax_status', '1');\t\t\r\n\t\t$query = $this->db->get();\r\n\t\treturn $query->result() ;\r\n\t}", "public static function calculate_tax_filter() {\n global $edd_options;\n\n if ( isset( $edd_options['taxedd_private_token'] ) ) {\n $private_key = $edd_options['taxedd_private_token'];\n \n try { \n\n $taxtaxamo = new Taxamo( new APIClient( $private_key, 'https://api.taxamo.com' ) );\n\n $cart_items = edd_get_cart_content_details();\n\n $countrycode = \"\";\n\n $address = edd_get_customer_address();\n\n if ( isset($address['country']) && !empty($address['country']) && \"\" !== $address['country'] ) {\n $countrycode = $address['country'];\n } else {\n $ipcc = taxedd_get_country_code();\n $countrycode = $ipcc->country_code;\n }\n\n $transaction = new Input_transaction();\n $transaction->currency_code = edd_get_currency();\n $transaction->buyer_ip = $_SERVER['REMOTE_ADDR'];\n $transaction->billing_country_code = $countrycode;\n $transactionarray = array();\n $customid = \"\";\n $transaction->force_country_code = $countrycode;\n\n if ( !empty( $cart_items ) ) { \n foreach ( $cart_items as $cart_item ) {\n\n $customid++;\n $transaction_line = new Input_transaction_line();\n $transaction_line->amount = $cart_item['item_price'];\n $transaction_line->custom_id = $cart_item['name'] . $customid;\n array_push( $transactionarray, $transaction_line );\n\n }\n }\n\n $transaction->transaction_lines = $transactionarray;\n\n $resp = $taxtaxamo->calculateTax( array( 'transaction' => $transaction ) );\n\n return $resp->transaction->tax_amount;\n\n } catch ( exception $e ) {\n\n return \"\";\n }\n }\n }", "public function getCustomerTaxvat();", "public function getShippingTaxRefunded();", "public function displaySelectedTaxi($taxiID)\n {\n try {\n $stmt = $this->db->prepare(\"SELECT * \n FROM Taxi\n WHERE TaxiID=:taxiID\");\n $stmt->bindParam(':taxiID', $taxiID);\n $stmt->execute();\n\n $row = $stmt->fetch(PDO::FETCH_ASSOC);\n return $row;\n\n } catch (PDOException $e) {\n echo $e->getMessage();\n }\n }", "public function getTaxName() {\n\t\treturn $this->taxName;\n\t}", "public function getTaxRateKey();", "public function getFormattedTaxAttribute(): string;", "public function getTaxTypeId()\n {\n return $this->getProduct()->getTaxTypeId();\n }", "public function getTax(): Tax {\n\t\t\treturn Tax::fromArray( $this->value );\n\t\t}", "function get_tax($tax_class, $subtotal)\n{\n global $config, $tax_cache, $current_user_info;\n\n $rate = get_tax_rate($tax_class);\n\n if ($config['cart']['tax_base'] == 'shipping') {\n $tbase = 'ship';\n } else {\n $tbase = 'bill';\n }\n if (comparecsn($config['site_city'], $current_user_info[$tbase.'_city'])) {\n $tax_rate = $rate['tax_city'];\n } elseif (comparecsn($config['site_state'], $current_user_info[$tbase.'_state'])) {\n $tax_rate = $rate['tax_state'];\n } elseif (comparecsn($config['site_country'], $current_user_info[$tbase.'_country'])) {\n $tax_rate = $rate['tax_nation'];\n } else {\n $tax_rate = $rate['tax_world'];\n }\n\n return ($tax_rate / 100) * $subtotal;\n}", "public function getTaxPrice() {\r\n\r\n\t\tself::errorReset();\r\n\t\t$this->reload();\r\n\t\treturn $this->TaxPrice;\r\n\t}", "public function getTaxVal() {\n\t\treturn $this->taxVal;\n\t}", "public function getBaseTaxInvoiced();", "public function get_bill_detail_vat_tax($bill_id,$type) {\r\n\t\t$query = $this->db->get_where('bill_detail', array('bill_id' => $bill_id,'type'=>$type));\r\n $result = $query->result_array();\r\n\t\treturn $result;\r\n \r\n\t}", "public function setTaxId($taxId)\n {\n $this->taxId = $taxId;\n return $this;\n }", "public function getSubtotalInclTax();", "public function getBaseShippingTaxRefunded();", "public function setCidTax($v)\n {\n if ($v !== null) {\n $v = (string) $v;\n }\n\n if ($this->cid_tax !== $v) {\n $this->cid_tax = $v;\n $this->modifiedColumns[AliMemberTableMap::COL_CID_TAX] = true;\n }\n\n return $this;\n }", "public function getTaxType() {\n\n\t\treturn $this->taxType;\n\t}", "public function getTaxonomyTerm($id, $taxonomy);", "public function getTaxAttribute(): float;", "public function getTaxCode(): ?string\n {\n return $this->data->taxCode;\n }", "public function getTaxRefunded() {\n return $this->item->getTaxRefunded();\n }", "public function get_tax_amount( $tax_rate_id ) {\n\t\t$taxes = wc_array_merge_recursive_numeric( $this->get_cart_contents_taxes(), $this->get_fee_taxes() );\n\t\treturn isset( $taxes[ $tax_rate_id ] ) ? $taxes[ $tax_rate_id ] : 0;\n\t}", "public function setTaxClassId($taxClassId);", "public function setIdTax($v)\n {\n if ($v !== null) {\n $v = (string) $v;\n }\n\n if ($this->id_tax !== $v) {\n $this->id_tax = $v;\n $this->modifiedColumns[AliMemberTableMap::COL_ID_TAX] = true;\n }\n\n return $this;\n }", "public function formattedTax(): string;", "public function getTaxes()\n {\n return isset($this->Taxes) ? $this->Taxes : null;\n }", "public static function retrieve($taxRateId)\n {\n $httpClient = self::getHttpClient();\n $merchantId = self::getMerchantId();\n $version = self::VERSION;\n\n $taxRate = $httpClient->get(\"$version/merchants/$merchantId/tax_rates/$taxRateId\");\n\n return $taxRate;\n\n }", "public function getTax(){\n $brutto = $this->getBrutto();\n return $brutto - ($brutto / (107) * 100);\n }", "public function getTax()\n {\n $tax = 0;\n\n if (isset($this->_taxrate)) {\n $tax = $this->_taxrate * $this->_subtotal;\n }\n \n return $tax;\n }", "public function getTotalTaxAmount();", "function getTax($force = false)\n\t\t{\n\t\t\tif(!empty($this->tax) && !$force)\n\t\t\t\treturn $this->tax;\n\n\t\t\t//reset\n\t\t\t$this->tax = $this->getTaxForPrice($this->subtotal);\n\n\t\t\treturn $this->tax;\n\t\t}", "public static function GetTaxCode($product, $merchant_id)\n {\n \t$tax_code = '';\n \t$productType = '';\n \tif(is_array($product)) {\n \t\t$tax_code = $product['tax_code'];\n \t\t//$productType = $product['product_type'];\n \t\t$productType = str_replace(\"'\", \"''\", $product['product_type']);\n \t}\n \telse {\n \t\t$tax_code = $product->tax_code;\n \t\t//$productType = $product->product_type;\n \t\t$productType = str_replace(\"'\", \"''\", $product->product_type);\n \t}\n \n \tif(!$tax_code) {\n \t\t$query = \"SELECT `tax_code` FROM `tophatter_category_map` WHERE `product_type`='\".$productType.\"' AND `merchant_id`=\".$merchant_id.\" LIMIT 0,1\";\n \t\t$result = Data::sqlRecords($query, 'one');\n \t\tif($result && (isset($result['tax_code']))) {\n \t\t\treturn $result['tax_code'];\n \t\t}\n \t\telse {\n \t\t\t$query = \"SELECT `value` FROM `tophatter_config` WHERE `data`='tax_code' AND `merchant_id`=\".$merchant_id.\" LIMIT 0,1\";\n \t\t\t$result = Data::sqlRecords($query, 'one');\n \t\t\tif($result && (isset($result['value']))) {\n \t\t\t\treturn $result['value'];\n \t\t\t}\n \t\t}\n \t} else {\n \t\tif(!is_numeric($tax_code))\n \t\t\treturn false;\n \t\telse\n \t\t\treturn $tax_code;\n \t}\n \treturn false;\n }", "public function tax(): float;", "public function getBaseTaxAmount();", "public function getTaxCanceled();", "public function getTaxList($type ='Both'){\n\t \n\t \t\t$this->db->select(\"TS.tax_id, TS.tax_per, TS.tax_type\");\n\t\t\t$this->db->from(\"tax_structure AS TS\");\n\t\t\t//$this->db->where(\"TS.tax_type\",'Active');\n\t\t\tif($type == 'Both'){\n\t\t\t\t$this->db->where_in('TS.tax_type', array('CST','VAT'));\n\t\t\t}else{\n\t\t\t\t$this->db->where('TS.tax_type', 'Excise');\n\t\t\t}\n\t\t\t$this->db->where(\"TS.status\",'Active');\n\t\t\t$query_tax_array = $this->db->get();\n\t\t\t//echo $this->db->last_query();die;\n\t\t\tif($query_tax_array->num_rows()>0)\n\t\t\t{\n\t\t\t\treturn $query_tax_array->result_array();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\treturn array();\n\t\t\t}\n\t \n\t }", "public function getSalesTax()\r\n {\r\n return $this->sales_tax;\r\n }", "function dd_in_tax($tax, $term, $_post = NULL) {\n // if neither tax nor term are specified, return false\n if ( !$tax || !$term ) { return FALSE; }\n // if post parameter is given, get it, otherwise use $GLOBALS to get post\n if ( $_post ) {\n $_post = get_post( $_post );\n } else {\n $_post =& $GLOBALS['post'];\n }\n // if no post return false\n if ( !$_post ) { return FALSE; }\n // check whether post matches term belongin to tax\n $return = is_object_in_term( $_post->ID, $tax, $term );\n // if error returned, then return false\n if ( is_wp_error( $return ) ) { return FALSE; }\n return $return;\n}", "public function getTaxRates() {\n // Parse XML\n $xml = \"<TaxRateGetRq></TaxRateGetRq>\\n\";\n\t\t\n // Create request and pack\n\t\t$this->createRequest($xml);\n $len = strlen($this->xmlRequest);\n $packed = pack(\"N\", $len);\n\n // Send and get the response\n fwrite($this->id, $packed, 4);\n fwrite($this->id, $this->xmlRequest);\n $this->getResponse();\n\n // Set the result\n $this->setResult($this->parseXML($this->xmlResponse));\n }", "public function getTax(): ?float\n {\n return $this->tax;\n }", "function glbs_save_extra_tax_fileds( $term_id ) {\n\tif ( ! isset( $_POST['glbs_nonce_tax'] ) || ! wp_verify_nonce( $_POST['glbs_nonce_tax'], '_glbs_nonce_tax' ) ) {\n\t\treturn;\n\t}\n\t\n\tif ( isset( $_POST['basic_seo_title'] ) ) {\n\t\tupdate_term_meta( $term_id, 'basic_seo_title', esc_attr( $_POST['basic_seo_title'] ) );\n\t}\n\tif ( isset( $_POST['basic_seo_keywords'] ) ) {\n\t\tupdate_term_meta( $term_id, 'basic_seo_keywords', esc_attr( $_POST['basic_seo_keywords'] ) );\n\t}\n\tif ( isset( $_POST['basic_seo_description'] ) ) {\n\t\tupdate_term_meta( $term_id, 'basic_seo_description', esc_attr( $_POST['basic_seo_description'] ) );\n\t}\n}", "public function getShippingInclTax();", "function tep_get_tax_description($class_id, $country_id, $zone_id) {\n $tax_query = tep_db_query(\"select tax_description from \" . TABLE_TAX_RATES . \" tr left join \" . TABLE_ZONES_TO_GEO_ZONES . \" za on (tr.tax_zone_id = za.geo_zone_id) left join \" . TABLE_GEO_ZONES . \" tz on (tz.geo_zone_id = tr.tax_zone_id) where (za.zone_country_id is null or za.zone_country_id = '0' or za.zone_country_id = '\" . (int)$country_id . \"') and (za.zone_id is null or za.zone_id = '0' or za.zone_id = '\" . (int)$zone_id . \"') and tr.tax_class_id = '\" . (int)$class_id . \"' order by tr.tax_priority\");\n if (tep_db_num_rows($tax_query)) {\n $tax_description = '';\n while ($tax = tep_db_fetch_array($tax_query)) {\n $tax_description .= $tax['tax_description'] . ' + ';\n }\n $tax_description = substr($tax_description, 0, -3);\n\n return $tax_description;\n } else {\n return TEXT_UNKNOWN_TAX_RATE;\n }\n }", "public function setTaxNo($taxno);", "function get_info($item_id)\n\t{\n\t\t$this->con->from('items_taxes');\n\t\t$this->con->where('item_id',$item_id);\n\t\t//return an array of taxes for an item\n\t\treturn $this->con->get()->result_array();\n\t}", "function get_by_territory($id)\n {\n $this->db->where('nation_id', $id);\n return $this->db->get($this->table)->result();\n }", "abstract public function getTaxPercent();", "public function getTaxes() {\n return $this->taxes;\n }", "public function getTaxAmount() {\r\n return $this->taxAmount;\r\n }", "public function getBaseTaxRefunded() {\n return $this->item->getBaseTaxRefunded();\n }", "public function getTaxes()\n {\n return $this->hasMany(Tax::className(), ['sales_gl_acc_id' => 'account_id']);\n }", "public function loadArrayByTaxonID($searchTerm) {\n global $connection;\n $returnvalue = array();\n $operator = \"=\";\n // change to a like search if a wildcard character is present\n if (!(strpos($searchTerm,\"%\")===false)) { $operator = \"like\"; }\n if (!(strpos($searchTerm,\"_\")===false)) { $operator = \"like\"; }\n $sql = \"SELECT DeterminationID FROM determination WHERE TaxonID $operator '$searchTerm'\";\n $preparedsql = \"SELECT DeterminationID FROM determination WHERE TaxonID $operator ? \";\n if ($statement = $connection->prepare($preparedsql)) { \n $statement->bind_param(\"s\", $searchTerm);\n $statement->execute();\n $statement->bind_result($id);\n while ($statement->fetch()) { ;\n $obj = new huh_determination();\n $obj->load($id);\n $returnvalue[] = $obj;\n }\n $statement->close();\n }\n return $returnvalue;\n }", "private function has_tax_children( $term_id, $tax ) {\n\t\t$child = new \\WP_Term_Query( [\n\t\t\t'taxonomy' => $tax,\n\t\t\t'parent' => $term_id,\n\t\t\t'fields' => 'ids',\n\t\t] );\n\n\t\treturn empty( $child->get_terms() ) ? [] : $child->get_terms();\n\t}", "function getEggnogTaxScope($nog_id) {\n $tax_scope_data = [];\n $db = $this->getDataSource();\n // Tax. scope could also be retrieved from `gene_families`\n $res = $db->fetchAll(\n 'SELECT name, scope FROM taxonomic_levels WHERE scope = (SELECT scope FROM gf_data WHERE gf_id =? LIMIT 1)',\n array($nog_id)\n );\n if($res) {\n $tax_scope_data = array(\"name\"=>$res[0]['taxonomic_levels']['name'], \"scope\"=>$res[0]['taxonomic_levels']['scope']);\n }\n return $tax_scope_data;\n }", "function get_custom_type_terms($id, $tax) {\n $weekly_types = get_the_terms($id, $tax);\n if ($weekly_types) {\n return $weekly_types[0]->name;\n }\n return false;\n}", "public function getTaxon(): SyliusTaxonInterface;", "public function getTaxLine($lineNo)\n\t{\n\t\tif($this->getTaxLines() != null)\n\t\t{\n\t\t\tforeach($this->getTaxLines() as $taxLine)\n\t\t\t{\n\t\t\t\tif($lineNo == $taxLine->getLineNo())\n\t\t\t\t{\n\t\t\t\t\treturn $taxLine;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t}\n\t}", "public function show(Tax $tax)\n {\n\n }" ]
[ "0.7560346", "0.74386305", "0.71540904", "0.70603794", "0.67489105", "0.67078936", "0.66312677", "0.6592905", "0.6550125", "0.65364444", "0.6512356", "0.651193", "0.6479604", "0.6476322", "0.6386625", "0.6380723", "0.63444805", "0.63444805", "0.63444805", "0.63032526", "0.6300438", "0.62968916", "0.6291285", "0.6258102", "0.62435085", "0.6228283", "0.62143826", "0.6193456", "0.6192515", "0.6121411", "0.61138505", "0.6113459", "0.6108477", "0.60831815", "0.6082752", "0.6048826", "0.6035992", "0.59873503", "0.59694135", "0.59524834", "0.59377253", "0.5900879", "0.58702195", "0.58500683", "0.58319825", "0.58191013", "0.581865", "0.5807116", "0.5805919", "0.57942766", "0.5793303", "0.5787485", "0.5787453", "0.57725084", "0.5770828", "0.57512105", "0.5750073", "0.57492834", "0.57303005", "0.57231927", "0.57206315", "0.5718259", "0.57033455", "0.5698446", "0.5695455", "0.56769353", "0.56742674", "0.56676304", "0.5663682", "0.56440496", "0.56254977", "0.5612389", "0.5594393", "0.5593495", "0.55852133", "0.55803025", "0.55745304", "0.55736256", "0.55682015", "0.55657244", "0.55192274", "0.5501007", "0.55005896", "0.5495532", "0.5491805", "0.5490611", "0.5484292", "0.5477345", "0.54753953", "0.5466028", "0.54560876", "0.54553634", "0.5441473", "0.54345435", "0.54343414", "0.54338956", "0.5433098", "0.5432458", "0.5420477", "0.5414098" ]
0.81924975
0
getTaxbyProductID Get the tax
public static function getTaxbyProductID($productid) { $dq = Doctrine_Query::create ()->select('s.tax_id as tax_id, s.name as name, s.percentage as percentage')->from ( 'Products p' ) ->leftJoin('p.Taxes s') ->where('product_id = ?', $productid); $tax = $dq->execute ( array (), Doctrine_Core::HYDRATE_ARRAY ); return isset($tax[0]) ? $tax[0] : null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function getTaxPercenTax($id)\n\t{\n\n\n\t\t$query3=\"SELECT (ps.cgst+ps.sgst) as gst FROM `product` as p INNER JOIN product_variant as pv on pv.`ptdvar_id` = p.ptdvar_id INNER JOIN product_sub_category as ps on ps.pr_sub_id = pv.ptd_sub_catgry_id where p.product_id ='$id'\";\n\t $data3=$this->get_results( $query3 );\n\t\treturn $data3;\n\n\t}", "public function getIdTax()\n {\n return $this->id_tax;\n }", "public function getTaxById($id)\n {\n return null;\n }", "public function getTaxedPrice();", "public function getTaxInvoiced();", "abstract public function getTaxType();", "public static function GetTaxCode($product, $merchant_id)\n {\n \t$tax_code = '';\n \t$productType = '';\n \tif(is_array($product)) {\n \t\t$tax_code = $product['tax_code'];\n \t\t//$productType = $product['product_type'];\n \t\t$productType = str_replace(\"'\", \"''\", $product['product_type']);\n \t}\n \telse {\n \t\t$tax_code = $product->tax_code;\n \t\t//$productType = $product->product_type;\n \t\t$productType = str_replace(\"'\", \"''\", $product->product_type);\n \t}\n \n \tif(!$tax_code) {\n \t\t$query = \"SELECT `tax_code` FROM `tophatter_category_map` WHERE `product_type`='\".$productType.\"' AND `merchant_id`=\".$merchant_id.\" LIMIT 0,1\";\n \t\t$result = Data::sqlRecords($query, 'one');\n \t\tif($result && (isset($result['tax_code']))) {\n \t\t\treturn $result['tax_code'];\n \t\t}\n \t\telse {\n \t\t\t$query = \"SELECT `value` FROM `tophatter_config` WHERE `data`='tax_code' AND `merchant_id`=\".$merchant_id.\" LIMIT 0,1\";\n \t\t\t$result = Data::sqlRecords($query, 'one');\n \t\t\tif($result && (isset($result['value']))) {\n \t\t\t\treturn $result['value'];\n \t\t\t}\n \t\t}\n \t} else {\n \t\tif(!is_numeric($tax_code))\n \t\t\treturn false;\n \t\telse\n \t\t\treturn $tax_code;\n \t}\n \treturn false;\n }", "public function getTax()\n\t{\n\t\treturn $this->getKeyValue('Tax'); \n\n\t}", "public function getTaxRate();", "function getReceiptTax()\n\t{\n\t\tglobal $db;\n\n\t\t$query = 'SELECT t.tax_desc AS \"Tax\", rt.tax_rate AS \"Tax Rate\", rt.tax_value AS \"Tax Value\"\n\t\tFROM '.receipt_tax_table.' rt JOIN '.tax_table.' t USING (tax_id) \n\t\tWHERE rt.receipt_id = '.$this->receipt_id.' \n\t\tORDER BY rt.tax_sequence';\n\t\t$result = $db->query($query);\n\n\t\tif(!$result)\n\t\t{\n\t\t\t$err_info = $db->errorInfo();\n\t\t\techo $err_info[2];\n\t\t\terror_log('Function : getReceiptTax, Class : receipt, '.$err_info[2]);\n\t\t\texit;\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$arr = $result->fetchAll(PDO::FETCH_ASSOC);\n\t\t}\n\t\treturn $arr;\n\t}", "public function getTaxAmount();", "public function getCidTax()\n {\n return $this->cid_tax;\n }", "public function getTaxCategoryId();", "public function getTaxCategory();", "public function getTaxCategory();", "public function getTaxCategory();", "public function getTaxClassId();", "public function getTax()\n {\n return $this->tax;\n }", "public function getTaxRefunded();", "public function getProductTax($product_price, $product_id) {\n \t\t$amount = 0;\n \t\t$taxprofile_id = J2StorePrices::getTaxProfileId($product_id);\n\n \t\t$rates = $this->getRates($taxprofile_id);\n\n \t\t$tax_rates = $this->getTaxRates($product_price, $rates);\n\n \t\t//print_r($tax_rates);\n\n \t\tforeach ($tax_rates as $tax_rate) {\n \t\t\t$amount += $tax_rate['amount'];\n \t\t}\n\n \t\treturn $amount;\n \t}", "public function getCustomerTaxvat();", "public function getBaseTaxInvoiced();", "public function getTax()\n {\n return $this->_tax;\n }", "public function getProductPriceTax()\n {\n $_tax = Mage::getStoreConfig('splitprice/split_price_config/add_tax');\n \n if (!ctype_digit($_tax))\n {\n $_tax = 0;\n }\n \n return $_tax;\n }", "public function deleteProductTax($id_product)\n {\n Db::getInstance()->delete('product_tax', 'id_product = ' . (int)$id_product);\n }", "public function getProductPriceTax()\n {\n $_tax = $this->_scopeConfig->getValue('splitprice/split_price_config/add_tax', \\Magento\\Store\\Model\\ScopeInterface::SCOPE_STORE);\n \n if (!ctype_digit($_tax))\n {\n $_tax = 0;\n }\n \n return $_tax;\n }", "public static function getTaxbyTldID($tldid) {\r\n \r\n $dq = Doctrine_Query::create ()->select('s.tax_id as tax_id, s.name as name, s.percentage as percentage')\r\n ->from ( 'DomainsTlds dt' )\r\n ->leftJoin('dt.Taxes s')\r\n ->where('tld_id = ?', $tldid);\r\n $tax = $dq->execute ( array (), Doctrine_Core::HYDRATE_ARRAY );\r\n return isset($tax[0]) ? $tax[0] : null;\r\n }", "public function getTaxAttribute(): float;", "public function getTaxon(): SyliusTaxonInterface;", "protected function getTax(Mage_Catalog_Model_Product $product){\n $taxRate = array();\n\n if(empty($this->taxCollection[$product->getTaxClassId()])){\n $taxCollection = Mage::getModel('tax/calculation')->getCollection()\n ->addFieldToFilter('product_tax_class_id', array('eq' => $product->getTaxClassId()));\n\n foreach($taxCollection as $taxes){\n $tax = Mage::getSingleton('tax/calculation')->getRatesByCustomerAndProductTaxClasses($taxes['customer_tax_class_id'], $product->getTaxClassId());\n foreach($tax as $taxRule){\n $this->taxCollection[$product->getTaxClassId()][] = $taxRule['country'] . ':' . $taxRule['state'] . ':' . $taxRule['value'] . ':y';\n // Use data as array key so there is not duplicate data\n $taxRate[$taxRule['country'].$taxRule['state'].$taxRule['postcode'].$taxRule['product_class']] = $taxRule['country'] . ':' . $taxRule['state'] . ':' . $taxRule['value'] . ':y';\n }\n }\n } else {\n foreach($this->taxCollection[$product->getTaxClassId()] as $taxRule){\n $taxRate[] = $taxRule;\n }\n }\n\n return implode(',', $taxRate);\n }", "public function getTaxPrice() {\r\n\r\n\t\tself::errorReset();\r\n\t\t$this->reload();\r\n\t\treturn $this->TaxPrice;\r\n\t}", "function commission_taxes($order_id) {\n\n\tif ($order_id != null) {\n\t $this->order_id = $order_id;\n\t $parameters = array($this->order_id);\n\t} else {\n\t $parameters = null;\n\t}\n\n\tparent::collection(COMMISSION_TAXES_SQL_LOAD, $parameters, \"commission_tax\", \"order_tax_type_id\");\n }", "public function tax()\n {\n return $this->hasOne('fooCart\\src\\Tax', 'tax_id', 'tax_id');\n }", "public function getLineTax()\n\t{\n\t\treturn $this->getKeyValue('line_tax'); \n\n\t}", "function get_tax_number()\n {\n if (!empty($this->business_center_id)) {\n $tax_number = $this->db->query_field(DISTRIBUTOR_TAX_NUMBER_SQL, array($this->business_center_id));\n if (!empty($tax_number)) {\n return $tax_number;\n }\n }\n return false;\n }", "public function getTaxTypeId()\n {\n return $this->getProduct()->getTaxTypeId();\n }", "public function getTaxByProfileAndProduct($profile, $product)\n {\n $taxDatas = $this->createQuery('td')\n ->innerJoin('td.fpPaymentTaxToData as ttd')\n ->andWhere('ttd.tax_id = ?', $product->getTaxId())\n ->andWhere('td.country = ?', $profile->getCountry())\n ->andWhere('(td.state = \"' . $profile->getState() . '\" OR td.state = \"\")')\n ->execute();\n \n if (empty($taxDatas) || !$taxDatas->count()) return null;\n \n if (1 == $taxDatas->count()) return $taxDatas->getFirst();\n \n $taxesByZip = array();\n /* @var $taxData fpPaymentTaxData */\n foreach ($taxDatas as $taxData) {\n if ($taxData->isContainedZip($profile->getZip())) {\n $taxesByZip[] = $taxData;\n }\n }\n \n if (1 == count($taxesByZip)) return array_shift($taxesByZip);\n \n if (1 < count($taxesByZip)) {\n return $this->getTaxFromFewIdentical($taxesByZip);\n }\n \n $taxesWithEmptyState = array();\n $taxesByState = array();\n foreach ($taxDatas as $taxData) {\n if ($taxData->getZip()) continue;\n if ($taxData->getState() == $profile->getState()) {\n $taxesByState[] = $taxData;\n } elseif ('' == $taxData->getState()) {\n $taxesWithEmptyState[] = $taxData;\n }\n }\n \n if (1 == count($taxesByState)) return array_shift($taxesByState);\n if (1 < count($taxesByState)) {\n return $this->getTaxFromFewIdentical($taxesByState);\n }\n \n if (1 == count($taxesWithEmptyState)) return array_shift($taxesWithEmptyState);\n if (1 < count($taxesWithEmptyState)) {\n return $this->getTaxFromFewIdentical($taxesWithEmptyState);\n }\n return $this->getTaxFromFewIdentical($taxDatas);\n }", "public function tax(): float;", "function getTax() \n\t{\n\t\t$tax = Option::where('attribute', '=', 'tax_mod')->first();\n\n\t\treturn (float)$tax->value;\n\t}", "public function addTax() {\n\t\t$adb = PearDatabase::getInstance();\n\n\t\t$tableName = $this->getTableNameFromType();\n\t\t$taxid = $adb->getUniqueID($tableName);\n\t\t$taxLabel = $this->getName();\n\t\t$percentage = $this->get('percentage');\n\n\t\t//if the tax is not available then add this tax.\n\t\t//Add this tax as a column in related table\n\t\tif($this->isShippingTax()) {\n\t\t\t$taxname = \"shtax\".$taxid;\n\t\t\t$query = \"ALTER TABLE vtiger_inventoryshippingrel ADD COLUMN $taxname decimal(7,3) DEFAULT NULL\";\n\t\t} else {\n\t\t\t$taxname = \"tax\".$taxid;\n\t\t\t$query = \"ALTER TABLE vtiger_inventoryproductrel ADD COLUMN $taxname decimal(7,3) DEFAULT NULL\";\n\t\t}\n\t\t$res = $adb->pquery($query, array());\n\n\t\tvimport('~~/include/utils/utils.php');\n\n\t\tif ($this->isProductTax()) {\n\t\t\t// TODO Review: if field addition is required in shipping-tax case too.\n\t\t\t// NOTE: shtax1, shtax2, shtax3 that is added as default should also be taken care.\n\n\t\t\t$inventoryModules = getInventoryModules();\n\t\t\tforeach ($inventoryModules as $moduleName) {\n\t\t\t\t$moduleInstance = Vtiger_Module::getInstance($moduleName);\n\t\t\t\t$blockInstance = Vtiger_Block::getInstance('LBL_ITEM_DETAILS',$moduleInstance);\n\t\t\t\t$field = new Vtiger_Field();\n\n\t\t\t\t$field->name = $taxname;\n\t\t\t\t$field->label = $taxLabel;\n\t\t\t\t$field->column = $taxname;\n\t\t\t\t$field->table = 'vtiger_inventoryproductrel';\n\t\t\t\t$field->uitype = '83';\n\t\t\t\t$field->typeofdata = 'V~O';\n\t\t\t\t$field->readonly = '0';\n\t\t\t\t$field->displaytype = '5';\n\t\t\t\t$field->masseditable = '0';\n\n\t\t\t\t$blockInstance->addField($field);\n\t\t\t}\n\t\t}\n\n\t\t//if the tax is added as a column then we should add this tax in the list of taxes\n\t\tif($res) {\n\t\t\t$deleted = 0;\n\t\t\tif($this->isDeleted()) {\n\t\t\t\t$deleted = 1;\n\t\t\t}\n\n\t\t\t$compoundOn = Zend_Json::encode($this->get('compoundon'));\n\t\t\t$regions = Zend_Json::encode($this->get('regions'));\n\n\t\t\t$query = 'INSERT INTO '.$tableName.' values(?,?,?,?,?,?,?,?,?)';\n\t\t\t$params = array($taxid, $taxname, $taxLabel, $percentage, $deleted, $this->get('method'), $this->get('type'), $compoundOn, $regions);\n\t\t\t$adb->pquery($query, $params);\n\t\t\treturn $taxid;\n\t\t}\n\t\tthrow new Error('Error occurred while adding tax');\n\t}", "public function getTax() {\n return $this->_tax;\n }", "public function getTax(): Tax\n\t{\n\t\treturn $this->tax;\n\t}", "public function getBaseTaxRefunded();", "public function getDocumentProductTaxCod()\n {\n return (string) $this->document_product_tax_cod;\n }", "public function getSubtotalInclTax();", "public function getExternalTaxRate();", "public function get_tax() {\n\t\treturn $this->_tax;\n\t}", "function BuyableCalculatedAdditionalTax(){\n\t\tif($this->owner InstanceOf ProductVariation) {\n\t\t\tif($product = $this->owner->Product()) {\n\t\t\t\treturn $product->AdditionalTax();\n\t\t\t}\n\t\t}\n\t\treturn $this->owner->AdditionalTax();\n\t}", "function get_info($item_id)\n\t{\n\t\t$this->con->from('items_taxes');\n\t\t$this->con->where('item_id',$item_id);\n\t\t//return an array of taxes for an item\n\t\treturn $this->con->get()->result_array();\n\t}", "public static function calculate_tax_filter() {\n global $edd_options;\n\n if ( isset( $edd_options['taxedd_private_token'] ) ) {\n $private_key = $edd_options['taxedd_private_token'];\n \n try { \n\n $taxtaxamo = new Taxamo( new APIClient( $private_key, 'https://api.taxamo.com' ) );\n\n $cart_items = edd_get_cart_content_details();\n\n $countrycode = \"\";\n\n $address = edd_get_customer_address();\n\n if ( isset($address['country']) && !empty($address['country']) && \"\" !== $address['country'] ) {\n $countrycode = $address['country'];\n } else {\n $ipcc = taxedd_get_country_code();\n $countrycode = $ipcc->country_code;\n }\n\n $transaction = new Input_transaction();\n $transaction->currency_code = edd_get_currency();\n $transaction->buyer_ip = $_SERVER['REMOTE_ADDR'];\n $transaction->billing_country_code = $countrycode;\n $transactionarray = array();\n $customid = \"\";\n $transaction->force_country_code = $countrycode;\n\n if ( !empty( $cart_items ) ) { \n foreach ( $cart_items as $cart_item ) {\n\n $customid++;\n $transaction_line = new Input_transaction_line();\n $transaction_line->amount = $cart_item['item_price'];\n $transaction_line->custom_id = $cart_item['name'] . $customid;\n array_push( $transactionarray, $transaction_line );\n\n }\n }\n\n $transaction->transaction_lines = $transactionarray;\n\n $resp = $taxtaxamo->calculateTax( array( 'transaction' => $transaction ) );\n\n return $resp->transaction->tax_amount;\n\n } catch ( exception $e ) {\n\n return \"\";\n }\n }\n }", "function tep_get_tax_rate_value($class_id) {\n return tep_get_tax_rate($class_id, -1, -1);\n }", "public function getAlias()\n {\n return 'tax';\n }", "public function getShippingInclTax();", "abstract public function getTaxPercent();", "public function actionGetTax() {\r\n $data = '';\r\n if (Yii::$app->request->isAjax) {\r\n $tax_id = $_POST['tax'];\r\n $tax_data = \\common\\models\\Tax::find()->where(['id' => $tax_id])->one();\r\n if (!empty($tax_data)) {\r\n $data = $tax_data->value;\r\n }\r\n }\r\n return $data;\r\n }", "public function getTaxcode()\n {\n return $this->taxcode;\n }", "public function getTotalTaxAmount();", "function tep_calculate_tax($price, $tax) {\n return $price * $tax / 100;\n }", "public function getBaseTaxAmount();", "function agst_pmpro_tax($tax, $values, $order)\n{ \t\n\t$tax = round((float)$values[price] * 0.1, 2);\n\treturn $tax;\n}", "public function getShippingTaxRefunded();", "public function getTaxRow($tax_id){\n\t \n\t \t\t$this->db->select(\"TS.tax_id, TS.tax_per, TS.tax_type\");\n\t\t\t$this->db->from(\"tax_structure AS TS\");\t\t\t\t\t\t\n\t\t\t$this->db->where(\"TS.tax_id\",$tax_id);\n\t\t\t\n\t\t\t$query_tax_row = $this->db->get();\n\t\t\t\n\t\t\tif($query_tax_row->num_rows()>0)\n\t\t\t{\n\t\t\t\treturn $query_tax_row->result_array();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\treturn array('0'=> array('tax_id'=>'0','tax_per'=>'0','tax_type'=>'None'));\n\t\t\t}\n\t \n\t }", "public function getVehicleTax($busId='') {\n \n $query = \"\tSELECT\tmax(busNoValidTill) AS busNoValidTill,\n\t\t\t\t\t\t\tmax(passengerTaxValidTill) AS passengerTaxValidTill,\n\t\t\t\t\t\t\tmax(roadTaxValidTill) AS roadTaxValidTill,\n\t\t\t\t\t\t\tmax(pollutionCheckValidTill) AS pollutionCheckValidTill,\n\t\t\t\t\t\t\tmax(passingValidTill) AS passingValidTill\n\t\t\t\t\tFROM\tbus_entries be\n\t\t\t\t\tWHERE\tbe.busId = $busId\";\n return SystemDatabaseManager::getInstance()->executeQuery($query,\"Query: $query\");\n }", "public function getTax(){\n $brutto = $this->getBrutto();\n return $brutto - ($brutto / (107) * 100);\n }", "public function formattedTax(): string;", "public function getFormattedTaxAttribute(): string;", "function get_tax($tax_class, $subtotal)\n{\n global $config, $tax_cache, $current_user_info;\n\n $rate = get_tax_rate($tax_class);\n\n if ($config['cart']['tax_base'] == 'shipping') {\n $tbase = 'ship';\n } else {\n $tbase = 'bill';\n }\n if (comparecsn($config['site_city'], $current_user_info[$tbase.'_city'])) {\n $tax_rate = $rate['tax_city'];\n } elseif (comparecsn($config['site_state'], $current_user_info[$tbase.'_state'])) {\n $tax_rate = $rate['tax_state'];\n } elseif (comparecsn($config['site_country'], $current_user_info[$tbase.'_country'])) {\n $tax_rate = $rate['tax_nation'];\n } else {\n $tax_rate = $rate['tax_world'];\n }\n\n return ($tax_rate / 100) * $subtotal;\n}", "public function tax()\n {\n return $this->getCartSessionCollection()->map(function($item, $key) {\n return (($item['price'] * $item['quantity']) / 100) * $this->config->get('cart.tax_rate');\n })->reduce(function($carry, $item) {\n return $carry + $item;\n });\n }", "public function get_bill_detail_vat_tax($bill_id,$type) {\r\n\t\t$query = $this->db->get_where('bill_detail', array('bill_id' => $bill_id,'type'=>$type));\r\n $result = $query->result_array();\r\n\t\treturn $result;\r\n \r\n\t}", "public function priceIncludesTax()\n {\n return $this->quotationTaxHelper->priceIncludesTax($this->getItem()->getStoreId());\n }", "public function getBaseShippingTaxRefunded();", "public function getTaxRateKey();", "public function getTotalTax(){\n return $this->getParameter('total_tax');\n }", "public function getShippingTaxAmount();", "public function getTaxIdAttribute()\n {\n return $this->exists ? $this->attributes['tax_id'] : Tax::getDefaultTaxId();\n }", "public function get_tax_details(){\r\n\t\t\r\n\t\t$data\t\t\t\t\t\t\t= array();\r\n\t\t$data['tax_id']\t\t\t\t\t= $this->uri->segment(3);\r\n\t\t$data['tax_details']\t= $this->Common_model->get_tax_details($data['tax_id']);\r\n\t\techo json_encode($data['tax_details']);\r\n\t}", "public function tax()\n {\n return 0;\n }", "function getTax($force = false)\n\t\t{\n\t\t\tif(!empty($this->tax) && !$force)\n\t\t\t\treturn $this->tax;\n\n\t\t\t//reset\n\t\t\t$this->tax = $this->getTaxForPrice($this->subtotal);\n\n\t\t\treturn $this->tax;\n\t\t}", "function get_cart_tax() {\n\t\t\t$cart_total_tax = $this->tax_total + $this->shipping_tax_total;\n\t\t\tif ($cart_total_tax > 0) return cmdeals_price( $cart_total_tax );\n\t\t\treturn false;\n\t\t}", "public function getTax(): Tax {\n\t\t\treturn Tax::fromArray( $this->value );\n\t\t}", "public function getBaseShippingInclTax();", "function tep_calculate_tax($price, $tax) {\n global $currencies;\n return tep_round($price * $tax / 100, $currencies->currencies[DEFAULT_CURRENCY]['decimal_places']);\n }", "public function getSalesTax()\r\n {\r\n return $this->sales_tax;\r\n }", "function tep_calculate_tax($price, $tax) {\n global $currencies;\n\n return tep_round($price * $tax / 100, $currencies->currencies[DEFAULT_CURRENCY]['decimal_places']);\n}", "public function getTax()\n {\n $tax = 0;\n\n if (isset($this->_taxrate)) {\n $tax = $this->_taxrate * $this->_subtotal;\n }\n \n return $tax;\n }", "public function getTaxName() {\n\t\treturn $this->taxName;\n\t}", "public function getTaxList()\r\n\t{\r\n\t\t$this->db->select('*');\r\n\t\t$this->db->from('tbl_tax');\r\n\t\t$this->db->where('tax_status', '1');\t\t\r\n\t\t$query = $this->db->get();\r\n\t\treturn $query->result() ;\r\n\t}", "public function getTaxVal() {\n\t\treturn $this->taxVal;\n\t}", "public function setProductTax($id_product, $tax)\n {\n $this->deleteProductTax($id_product);\n Db::getInstance()->insert('product_tax', [\n 'id_product' => $id_product,\n 'tax' => $tax\n ]);\n }", "public function getTotalProductsByTaxClassId($tax_class_id){\n\t\t$sql = \"SELECT COUNT(*) AS total FROM product WHERE tax_class_id = '\" . (int)$tax_class_id . \"'\";\n\t\t$query = $this->db->query($sql);\n\n\t\treturn $query->row['total'];\n\t}", "public function getTaxInvoiced() {\n return $this->item->getTaxInvoiced();\n }", "public function setTaxNo($taxno);", "protected function _getTaxClassCodeByProduct($product)\n {\n $taxClass = $this->_getTaxClassCollection()->getItemById($product->getTaxClassId());\n return $taxClass ? $taxClass->getOpAvataxCode() : '';\n }", "public function getBaseSubtotalInclTax();", "public function getTaxes() {\n return $this->taxes;\n }", "function tep_get_tax_rate($class_id, $country_id = -1, $zone_id = -1) {\n\n \n//Eversun mod for sppc and qty price breaks\n// global $customer_zone_id, $customer_country_id;\n global $customer_zone_id, $customer_country_id, $sppc_customer_group_tax_exempt;\n\n if(!tep_session_is_registered('sppc_customer_group_tax_exempt')) {\n $customer_group_tax_exempt = '0';\n } else {\n $customer_group_tax_exempt = $sppc_customer_group_tax_exempt;\n }\n\n if ($customer_group_tax_exempt == '1') {\n return 0;\n }\n//Eversun mod end for sppc and qty price breaks\n if ( ($country_id == -1) && ($zone_id == -1) ) {\n if (!tep_session_is_registered('customer_id')) {\n $country_id = STORE_COUNTRY;\n $zone_id = STORE_ZONE;\n } else {\n $country_id = $customer_country_id;\n $zone_id = $customer_zone_id;\n }\n }\n\n $tax_query = tep_db_query(\"select sum(tax_rate) as tax_rate from \" . TABLE_TAX_RATES . \" tr left join \" . TABLE_ZONES_TO_GEO_ZONES . \" za on (tr.tax_zone_id = za.geo_zone_id) left join \" . TABLE_GEO_ZONES . \" tz on (tz.geo_zone_id = tr.tax_zone_id) where (za.zone_country_id is null or za.zone_country_id = '0' or za.zone_country_id = '\" . (int)$country_id . \"') and (za.zone_id is null or za.zone_id = '0' or za.zone_id = '\" . (int)$zone_id . \"') and tr.tax_class_id = '\" . (int)$class_id . \"' group by tr.tax_priority\");\n if (tep_db_num_rows($tax_query)) {echo \"}}}}{{{{{\";\n $tax_multiplier = 1.0;\n while ($tax = tep_db_fetch_array($tax_query)) {\n $tax_multiplier *= 1.0 + ($tax['tax_rate'] / 100);\n }\n return ($tax_multiplier - 1.0) * 100;\n } else {\n return 0;\n }\n }", "public function getTaxes()\n {\n return isset($this->Taxes) ? $this->Taxes : null;\n }", "public function add_to_cart_details_post(){\n $product_id = $this->input->post('product_id');\n $qnty \t\t= $this->input->post('qnty');\n $variant = $this->input->post('variant');\n $store_id = $this->input->post('store_id');\n\n $discount = 0;\n $onsale_price = 0;\n $cgst = 0;\n $cgst_id = 0;\n\n $sgst = 0;\n $sgst_id = 0;\n\n $igst = 0;\n $igst_id = 0;\n\n $result = array();\n\n if ($product_id && $qnty>0) {\n $product_details = $this->Homes->product_details($product_id,$store_id);\n\n //CGST product tax\n $this->db->select('*');\n $this->db->from('tax_product_service');\n $this->db->where('product_id',$product_details->product_id);\n $this->db->where('tax_id','H5MQN4NXJBSDX4L');\n $tax_info = $this->db->get()->row();\n\n if (!empty($tax_info)) {\n if (($product_details->onsale_store == 1)) {\n $cgst = $product_details->onsale_price_store - ($product_details->onsale_price_store/($tax_info->tax_percentage/100+1));\n $cgst = number_format((float)$cgst,'4','.','');\n $cgst_id = $tax_info->tax_id;\n }else{\n $cgst = $product_details->price_store - ($product_details->price_store/($tax_info->tax_percentage/100+1));\n $cgst = number_format((float)$cgst,'4','.','');\n $cgst_id = $tax_info->tax_id;\n }\n }\n\n if ($product_details->onsale_store) {\n $price = $product_details->onsale_price_store /*- $cgst*/;\n $onsale_price = $product_details->onsale_price_store /*- $cgst*/;\n $discount = $product_details->price_store - $product_details->onsale_price_store;\n }else{\n $price = $product_details->price_store /*- $cgst*/;\n }\n\n //SGST product tax\n $this->db->select('*');\n $this->db->from('tax_product_service');\n $this->db->where('product_id',$product_details->product_id);\n $this->db->where('tax_id','52C2SKCKGQY6Q9J');\n $tax_info = $this->db->get()->row();\n\n if (!empty($tax_info)) {\n if (($product_details->onsale == 1)) {\n //$sgst = ($tax_info->tax_percentage * $product_details->onsale_price_store)/100;\n $sgst = $product_details->onsale_price_store - ($product_details->onsale_price_store/($tax_info->tax_percentage/100+1));\n $sgst = number_format((float)$sgst,'4','.','');\n $sgst_id = $tax_info->tax_id;\n }else{\n //$sgst = ($tax_info->tax_percentage * $product_details->price_store)/100;\n $sgst = $product_details->price_store - ($product_details->price_store/($tax_info->tax_percentage/100+1));\n $sgst = number_format((float)$sgst,'4','.','');\n $sgst_id = $tax_info->tax_id;\n }\n }\n\n //IGST product tax\n $this->db->select('*');\n $this->db->from('tax_product_service');\n $this->db->where('product_id',$product_details->product_id);\n $this->db->where('tax_id','5SN9PRWPN131T4V');\n $tax_info = $this->db->get()->row();\n\n if (!empty($tax_info)) {\n if (($product_details->onsale == 1)) {\n $igst = $product_details->onsale_price_store - ($product_details->onsale_price_store/($tax_info->tax_percentage/100+1));\n $igst = number_format((float)$igst,'4','.','');\n $igst_id = $tax_info->tax_id;\n }else{\n $igst = $product_details->price_store - ($product_details->price_store/($tax_info->tax_percentage/100+1));\n $igst = number_format((float)$igst,'4','.','');\n $igst_id = $tax_info->tax_id;\n }\n }\n\n //Shopping cart validation\n $flag = TRUE;\n\n if($flag) {\n $data = array(\n 'id' => $this->generator(15),\n 'product_id' => $product_details->product_id,\n 'qty' => $qnty,\n 'price' => $price,\n 'actual_price' => $product_details->price_store,\n 'supplier_price' => $product_details->supplier_price_store,\n 'onsale_price' => $onsale_price,\n 'name' => $product_details->product_name,\n 'discount' => $discount,\n 'variant' => $variant,\n 'promo' => $product_details->promo_store,\n 'options' => array(\n 'image' => $product_details->image_thumb,\n 'model' => $product_details->product_model,\n 'cgst' => $cgst,\n 'sgst' => $sgst,\n 'igst' => $igst,\n 'cgst_id' => $cgst_id,\n 'sgst_id' => $sgst_id,\n 'igst_id' => $igst_id,\n )\n );\n }\n //$this->response($this->cart->total_items(),201);\n $result['result'] = '1';\n $result['data'] = $data;\n $result['pagination'] = false;\n }\n else\n {\n $result['result'] = '2';\n $result['message'] = 'Error al agregar al carrito';\n }\n\n $this->response($result,201);\n }", "public function getBaseShippingTaxAmount();", "public function getTaxes1()\n {\n return $this->hasMany(Tax::className(), ['purchase_gl_acc_id' => 'account_id']);\n }" ]
[ "0.7812583", "0.7226798", "0.71757126", "0.71305156", "0.6873247", "0.68441623", "0.68376845", "0.6762982", "0.6726121", "0.667287", "0.6649688", "0.66305715", "0.6607295", "0.6576784", "0.6576784", "0.6576784", "0.6533679", "0.65196854", "0.65163", "0.6481267", "0.6479098", "0.64613897", "0.6441247", "0.64374155", "0.6385294", "0.63688487", "0.6367661", "0.63358676", "0.6333919", "0.629813", "0.6295279", "0.6295245", "0.6282067", "0.627824", "0.62517226", "0.6249173", "0.6244858", "0.6238953", "0.62298346", "0.6229708", "0.6219698", "0.6196914", "0.61961055", "0.61901975", "0.6187616", "0.61835116", "0.6138085", "0.6093369", "0.60922354", "0.6083067", "0.6069626", "0.6068554", "0.6058898", "0.60540855", "0.60494804", "0.6043287", "0.60416573", "0.60342336", "0.6017766", "0.6010146", "0.6001627", "0.60014045", "0.5986968", "0.59516114", "0.59513927", "0.59501314", "0.5940257", "0.59125584", "0.591233", "0.5902786", "0.5889369", "0.5887856", "0.5885619", "0.5872323", "0.58640856", "0.5848446", "0.5830192", "0.58285517", "0.58208174", "0.5804078", "0.5800257", "0.57677686", "0.57654876", "0.57354903", "0.5725951", "0.5711881", "0.570906", "0.5690259", "0.56857497", "0.5643978", "0.56334263", "0.56315005", "0.56219494", "0.5621867", "0.56144303", "0.56139684", "0.5600481", "0.5591557", "0.558172", "0.5579141" ]
0.82807773
0
Run the database seeds.
public function run() { $roleAdmin = new Role(); $roleAdmin->name = 'Administrator'; $roleAdmin->slug = 'administrator'; $roleAdmin->description = 'manage administration privileges'; $roleAdmin->save(); $roleUser = new Role(); $roleUser->name = 'User'; $roleUser->slug = 'user'; $roleUser->description = 'manage user privileges'; $roleUser->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
vim: ts=4 sw=4 ai:
function apigen($data, array $gens, $options) { // working directory $repo=\Nette\Utils\Strings::webalize($url=$data['repository']['url']); $pwd=realpath(ROOT_DIR.'/repository'); if (!file_exists($pwd.='/'.$repo)) { mkdir($pwd); } // console $cmd=function ($command, $arg=NULL) use ($pwd) { $args=func_get_args(); array_shift($args); // command $command=preg_replace_callback( '~\%(\w)~', function ($m) use (&$args) { $arg=array_shift($args); return $m[1]==='l'? $arg : escapeshellarg($arg); }, $command ); exec(sprintf('cd %s && %s 2>&1', escapeshellarg($pwd), $command), $output, $status); if (0!==$status) { throw new \Exception("Error occured while executing: `$command`\n\n".implode("\n", $output)); } debug("\$ `$command`", implode("\n", $output)); return $output; }; $git=function ($command, $arg=NULL) use ($cmd) { return call_user_func_array($cmd, ['git '.$command]+func_get_args()); }; $apigen=function ($command, $arg=NULL) use ($cmd) { return call_user_func_array($cmd, [escapeshellarg(ROOT_DIR.'/vendor/bin/apigen.php').' '.$command]+func_get_args()); }; $generateApi=function () use ($cmd, $apigen, $gens, $pwd, $data, $options) { foreach ($gens as $src => $dst) { $cmd('rm -rf %s', TEMP_DIR.'/apigen'); mkdir(TEMP_DIR.'/apigen'); if ($apigen('-s %s -d %s --title %s %l', $pwd.'/'.$src, TEMP_DIR.'/apigen', $data['repository']['name'], $options) && file_exists(TEMP_DIR.'/apigen/index.html') ) { $cmd('rm -rf %s', $dst); // rename(TEMP_DIR.'/apigen', $dst); $cmd('mv %s %s', TEMP_DIR.'/apigen', $dst); } } }; if (!file_exists($pwd.'/.git')) { $git('clone %s .', $url); } // be carefull about uncommited changes if ($git('status --porcelain --untracked-files=no')) { throw new Exception('You have uncommitted changes'); } // fetch changes $git('fetch origin'); $git('checkout master'); $git('pull origin master'); // process $generateApi(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function yy_r83(){return; }", "function yy_r153(){ return; }", "function yy_r113()\n {\n return;\n }", "private function _i() {\n }", "function varDeclarationConvert()\n {\n // $strposdolar = strpos();\n }", "function yy_r111(){ return; }", "function runkit_lint($code)\n{\n}", "function shortCodeMagic($att, $content = NULL)\n {\n\n }", "function yy_r78(){ $this->_retvalue =['USING', $this->yystack[$this->yyidx + -1]->minor]; }", "function yy_r141(){ $this->_retvalue = ['collate', $this->yystack[$this->yyidx + 0]->minor]; }", "function yy_r77(){ $this->_retvalue = ['USING', $this->yystack[$this->yyidx + 0]->minor]; }", "function testBug7759() \n {\n $sText = <<<SCRIPT\n<?php\necho 0;\nswitch(1) {\ncase 1:\ncase 5: // 5\necho 1;\nbreak;\ncase 2: //2\necho \"something\";\necho \"something\";\ncase 3: /*3 */ /* 3? */\ncase 4: \ndefault:\necho '2';\nbreak;\n}\necho 1;\n?>\nSCRIPT;\n $this->setText($sText);\n $sExpected = <<<SCRIPT\n<?php\necho 0;\nswitch (1) {\n case 1:\n case 5: // 5\n echo 1;\n break;\n case 2: //2\n echo \"something\";\n echo \"something\";\n case 3: /*3 */ /* 3? */\n case 4:\n default:\n echo '2';\n break;\n}\necho 1;\n?>\nSCRIPT;\n $this->assertEquals($sExpected, $this->oBeaut->get());\n }", "function fix() ;", "function import_STE()\n{\n}", "function yy_r143(){$this->_retvalue = '<='; }", "function yy_r137(){$this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; }", "function testInternal2() \n {\n $this->assertTrue(array_key_exists(T_COMMENT, $this->oBeaut->aTokenFunctions));\n }", "function yy_r86(){ $this->_retvalue = new Stmt\\Expr(strtoupper(@$this->yystack[$this->yyidx + 0]->minor), $this->yystack[$this->yyidx + -1]->minor); }", "function testBug13600() \n {\n //$this->oBeaut->startLog();\n $this->oBeaut->addFilter('Pear');\n $sText = <<<SCRIPT\n<?php\nfunction example(){\n}\n?>\nSCRIPT;\n $this->setText($sText);\n $sExpected = <<<SCRIPT\n<?php\nfunction example()\n{\n}\n?>\nSCRIPT;\n $this->assertEquals($sExpected, $this->oBeaut->get());\n }", "function testBugInternal1() \n {\n $sText = <<<SCRIPT\n<?php\n\\$a = <<<HEREDOC\nsdsdsds\nHEREDOC;\n?>\nSCRIPT;\n $this->setText($sText);\n $sActual = $this->oBeaut->get();\n $this->assertTrue(preg_match(\"/HEREDOC;\\n\\s*?\\?>/ms\", $sActual));\n }", "function yy_r16(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); }", "public static function Parse837()\n\t{\n\n\t}", "function yy_r32()\n {\n $this->_retvalue = 'ob_start(); ' . $this->compiler->compileTag($this->yystack[$this->yyidx + - 4]->minor, $this->yystack[$this->yyidx + 0]->minor, array('object_method' => $this->yystack[$this->yyidx + - 2]->minor)) . ' echo ';\n $this->_retvalue .= $this->compiler->compileTag('Internal_Modifier', array(), array('modifier_list' => $this->yystack[$this->yyidx + - 1]->minor, 'value' => 'ob_get_clean()')) . ';';\n }", "public function usesCaseSensitiveIdentifiers() {}", "function lapa_compiler_php_code($act, $parser)\n{\n if ($act == 1) {\n $buff = '';\n if (!isset(LapaEngineParser::$_plugins_property['php_code'])) {\n LapaEngineParser::$_plugins_property['php_code'] = array();\n }\n $attr = $parser->parseDirectiveAttributes();\n $name = isset($attr['name']) ? $attr['name']: 'default';\n $parser->newStackCommand(array('php_code', $name));\n $parser->_outputNew();\n }else {\n if ( (!$stack_commands = $parser->getStackCommand() ) || $stack_commands[0] != 'php_code' ) {\n throw new LapaEngineException('Неверный вызов \"/php_code\" cтрока %s.', $parser->templateLine());\n }\n /* вырезали буффер php кода, его надо еще вернуть */\n $buff = $parser->_outputGet();\n /* создаем переменную с значением */ \n LapaEngineParser::$_plugins_property['php_code'][$stack_commands[1]] = $stack_commands[1];\n $buff .= \"\\$_var_php_code['{$stack_commands[1]}'] = '\" . preg_replace(\"/(?!\\\\\\\\)\\\\'/\", '\\\\\\'','<?php ' . str_replace('\\\\', '\\\\\\\\',$buff) . ' ?>') . \"';\"; \n $parser->removeStackCommand(); \n LapaEngineParser::$_plugins_property['php_code'][$stack_commands[1]] = $stack_commands[1];\n }\n return $buff;\n}", "function non_functional()\n{\n $lots = of_code();\n //goes here\n\n /**\n * this is an example doc block that should be detected. It sits above an action inside a function.\n */\n $defaults = do_action('single_quote_name_no_spaces', $first = array('fake', array(1,2,3)), $second, $last);\n}", "function sourcecode_allow_pre_tag( $tags ) {\r\n\t$tags['pre'] = array('lang' => array(), 'lineno' => array());\r\n\treturn $tags;\r\n}", "public function aaa() {\n\t}", "function yy_r75(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php ob_start();?>'.$this->yystack[$this->yyidx + 0]->minor.'<?php $_tmp'.$this->prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; }", "function yy_r27(){ \r\n if ($this->yystack[$this->yyidx + -6]->minor != 'foreach') {\r\n $this->compiler->trigger_template_error (\"wrong syntax for tag \\\"\" . $this->yystack[$this->yyidx + -6]->minor . \"\\\"\"); \r\n }\r\n $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }", "function yy_r161(){ \n $this->yystack[$this->yyidx + -3]->minor = array_merge(['CASE'], $this->yystack[$this->yyidx + -3]->minor, [$this->yystack[$this->yyidx + -1]->minor]);\n $this->_retvalue = new Stmt\\Expr($this->yystack[$this->yyidx + -3]->minor);\n }", "function yy_r13(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); }", "function yy_r16()\n {\n $this->strip = false;\n }", "function yy_r55(){ $this->_retvalue = strtoupper(@$this->yystack[$this->yyidx + 0]->minor); }", "function testBug_rolfhub_2007_02_07_2() \n {\n $sText = <<<SCRIPT\n<?php\necho (1.0 . \" \" . 2 . 3);\n?>\nSCRIPT;\n $this->setText($sText);\n $sExpected = <<<SCRIPT\n<?php\necho (1.0 . \" \" . 2 . 3);\n?>\nSCRIPT;\n $this->assertEquals($sExpected, $this->oBeaut->get());\n }", "function privSwapBackMagicQuotes()\n {\n }", "function yy_r145(){$this->_retvalue = '!=='; }", "function yy_r163(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php ob_start();?>'.$this->yystack[$this->yyidx + 0]->minor.'<?php $_tmp'.$this->prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '\".$_tmp'.$this->prefix_number.'.\"'; $this->compiler->has_variable_string = true; }", "function testBugChtchevaev_2004_11_17() \n {\n $sText = <<<SCRIPT\n<?php\n\\$o->_test1(\\$c-> test2()-> test3());\n?>\nSCRIPT;\n $this->setText($sText);\n $sExpected = <<<SCRIPT\n<?php\n\\$o->_test1(\\$c->test2()->test3());\n?>\nSCRIPT;\n $this->assertEquals($sExpected, $this->oBeaut->get());\n }", "function yy_r159(){ $this->_retvalue = 'in'; }", "function yy_r148(){$this->_retvalue = '||'; }", "public function import_read_header()\n\t{\n // phpcs:enable\n\t\treturn 0;\n\t}", "private function j() {\n }", "function yy_r1()\n {\n }", "function assertType(string $type, $value): void // phpcs:ignore\n{\n}", "function testBug_rolfhub_2007_02_07_1_pear() \n {\n $this->oBeaut->addFilter(\"Pear\");\n $sText = <<<SCRIPT\n<?php\n\\$i = 0;\nwhile (++\\$i) {\n switch (\\$i) {\n case 5:\n echo \"At 5<br />\";\n break 1; /* Exit only the switch. */\n case 10:\n echo \"At 10; quitting<br />\";\n break 2; /* Exit the switch and the while. */\n default:\n break;\n }\n}\n?>\nSCRIPT;\n $this->setText($sText);\n $sExpected = <<<SCRIPT\n<?php\n\\$i = 0;\nwhile (++\\$i) {\n switch (\\$i) {\n case 5:\n echo \"At 5<br />\";\n break 1; /* Exit only the switch. */\n case 10:\n echo \"At 10; quitting<br />\";\n break 2; /* Exit the switch and the while. */\n default:\n break;\n }\n}\n?>\nSCRIPT;\n $this->assertEquals($sExpected, $this->oBeaut->get());\n }", "function ms_file_constants()\n {\n }", "function print_late_styles()\n {\n }", "function yy_r161()\n {\n $this->_retvalue = '\\'' . $this->yystack[$this->yyidx + - 2]->minor . '\\'=>' . $this->yystack[$this->yyidx + 0]->minor;\n }", "public function lint($code);", "function yy_r141(){$this->_retvalue = '<'; }", "public static function pretending()\n {\n }", "function yy_r15(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); }", "function test363() : int {\n return ast\\parse_code(22, []);\n}", "function yy_r8()\n {\n if ($this->php_handling == Smarty::PHP_PASSTHRU) {\n $this->compiler->template_code->php(\"echo '<?php';\\n\");\n } elseif ($this->php_handling == Smarty::PHP_QUOTE) {\n $this->compiler->template_code->php(\"echo '&lt;?php';\\n\");\n } elseif ($this->php_handling == Smarty::PHP_ALLOW) {\n if (! ($this->compiler->context->smarty instanceof Smarty_Smarty2BC)) {\n $this->compiler->error(self::Err3);\n }\n $this->text_is_php = true;\n }\n }", "function runkit_lint_file($filename)\n{\n}", "function target_phpcs()\n{\n\t$cs = 'phpcs';\n\t// pear install PHP_CodeSniffer\n\t$target = 'Config/Lite.php';\n\tprintf(\"== %s\\n\", 'Coding Standard');\n\tsystem($cs .' -v '.$target);\n\tprintf(\"\\n\");\n}", "function yy_r31()\n {\n $this->_retvalue = 'ob_start(); ' . $this->compiler->compileTag($this->yystack[$this->yyidx + - 2]->minor, $this->yystack[$this->yyidx + 0]->minor) . ' echo ';\n $this->_retvalue .= $this->compiler->compileTag('Internal_Modifier', array(), array('modifier_list' => $this->yystack[$this->yyidx + - 1]->minor, 'value' => 'ob_get_clean()')) . ';';\n }", "function shortcode_atts($pairs, $atts, $shortcode = '')\n {\n }", "function mLANGTAG(){\n try {\n $_type = Erfurt_Sparql_Parser_Sparql11_Update_Tokenizer11::$LANGTAG;\n $_channel = Erfurt_Sparql_Parser_Sparql11_Update_Tokenizer11::$DEFAULT_TOKEN_CHANNEL;\n // Tokenizer11.g:336:3: ( '@' ( ( 'a' .. 'z' ) )+ ( MINUS ( ( 'a' .. 'z' ) ( '0' .. '9' ) )+ )* ) \n // Tokenizer11.g:337:3: '@' ( ( 'a' .. 'z' ) )+ ( MINUS ( ( 'a' .. 'z' ) ( '0' .. '9' ) )+ )* \n {\n $this->matchChar(64); \n // Tokenizer11.g:337:7: ( ( 'a' .. 'z' ) )+ \n $cnt3=0;\n //loop3:\n do {\n $alt3=2;\n $LA3_0 = $this->input->LA(1);\n\n if ( (($LA3_0>=$this->getToken('97') && $LA3_0<=$this->getToken('122'))) ) {\n $alt3=1;\n }\n\n\n switch ($alt3) {\n \tcase 1 :\n \t // Tokenizer11.g:337:9: ( 'a' .. 'z' ) \n \t {\n \t // Tokenizer11.g:337:9: ( 'a' .. 'z' ) \n \t // Tokenizer11.g:337:10: 'a' .. 'z' \n \t {\n \t $this->matchRange(97,122); \n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t if ( $cnt3 >= 1 ) break 2;//loop3;\n $eee =\n new EarlyExitException(3, $this->input);\n throw $eee;\n }\n $cnt3++;\n } while (true);\n\n // Tokenizer11.g:338:3: ( MINUS ( ( 'a' .. 'z' ) ( '0' .. '9' ) )+ )* \n //loop5:\n do {\n $alt5=2;\n $LA5_0 = $this->input->LA(1);\n\n if ( ($LA5_0==$this->getToken('45')) ) {\n $alt5=1;\n }\n\n\n switch ($alt5) {\n \tcase 1 :\n \t // Tokenizer11.g:339:5: MINUS ( ( 'a' .. 'z' ) ( '0' .. '9' ) )+ \n \t {\n \t $this->mMINUS(); \n \t // Tokenizer11.g:340:5: ( ( 'a' .. 'z' ) ( '0' .. '9' ) )+ \n \t $cnt4=0;\n \t //loop4:\n \t do {\n \t $alt4=2;\n \t $LA4_0 = $this->input->LA(1);\n\n \t if ( (($LA4_0>=$this->getToken('97') && $LA4_0<=$this->getToken('122'))) ) {\n \t $alt4=1;\n \t }\n\n\n \t switch ($alt4) {\n \t \tcase 1 :\n \t \t // Tokenizer11.g:341:7: ( 'a' .. 'z' ) ( '0' .. '9' ) \n \t \t {\n \t \t // Tokenizer11.g:341:7: ( 'a' .. 'z' ) \n \t \t // Tokenizer11.g:341:8: 'a' .. 'z' \n \t \t {\n \t \t $this->matchRange(97,122); \n\n \t \t }\n\n \t \t // Tokenizer11.g:341:18: ( '0' .. '9' ) \n \t \t // Tokenizer11.g:341:19: '0' .. '9' \n \t \t {\n \t \t $this->matchRange(48,57); \n\n \t \t }\n\n\n \t \t }\n \t \t break;\n\n \t \tdefault :\n \t \t if ( $cnt4 >= 1 ) break 2;//loop4;\n \t $eee =\n \t new EarlyExitException(4, $this->input);\n \t throw $eee;\n \t }\n \t $cnt4++;\n \t } while (true);\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break 2;//loop5;\n }\n } while (true);\n\n\n }\n\n $this->state->type = $_type;\n $this->state->channel = $_channel;\n }\n catch(Exception $e){\n throw $e;\n }\n }", "function yy_r105(){ $this->_retvalue = '->{\\''.$this->yystack[$this->yyidx + -4]->minor.'\\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }", "function yy_r160(){ \n $this->yystack[$this->yyidx + -1]->minor = array_merge(['CASE'], $this->yystack[$this->yyidx + -1]->minor);\n $this->_retvalue = new Stmt\\Expr($this->yystack[$this->yyidx + -1]->minor);\n }", "function j_jj($h1) {\r\n if ($h1 === 'o') {\r\n $duplo1 = 'j';\r\n return $duplo1;\r\n }\r\n }", "function yy_r205(){ $this->_retvalue = trim($this->yystack[$this->yyidx + 0]->minor, \"` \\r\\n\\t\"); }", "function yy_r25(){\r\n if ($this->yystack[$this->yyidx + -6]->minor != 'foreach') {\r\n $this->compiler->trigger_template_error (\"wrong syntax for tag \\\"\" . $this->yystack[$this->yyidx + -6]->minor . \"\\\"\"); \r\n }\r\n $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }", "function yy_r26(){\r\n if ($this->yystack[$this->yyidx + -9]->minor != 'foreach') {\r\n $this->compiler->trigger_template_error (\"wrong syntax for tag \\\"\" . $this->yystack[$this->yyidx + -9]->minor . \"\\\"\"); \r\n }\r\n $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); }", "function yy_r103(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }", "function yy_r74(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.'::$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }", "function yy_r11()\n {\n if ($this->php_handling == Smarty::PHP_PASSTHRU) {\n $this->compiler->template_code->php(\"echo '%>';\\n\");\n } elseif ($this->php_handling == Smarty::PHP_QUOTE) {\n $this->compiler->template_code->php(\"echo '%&gt;';\\n\");\n } elseif ($this->php_handling == Smarty::PHP_ALLOW) {\n if ($this->asp_tags) {\n $this->text_is_php = false;\n } else {\n $this->compiler->template_code->php(\"echo '%>';\\n\");\n }\n } elseif ($this->php_handling == Smarty::PHP_REMOVE) {\n if (! $this->asp_tags) {\n $this->compiler->template_code->php(\"echo '%>';\\n\");\n }\n }\n }", "function yy_r167()\n {\n if (empty($this->db_quote_code_buffer)) {\n $this->_retvalue = '(string)' . $this->yystack[$this->yyidx + - 1]->minor;\n } else {\n $this->db_quote_code_buffer .= 'echo (string)' . $this->yystack[$this->yyidx + - 1]->minor . ';';\n $this->_retvalue = false;\n }\n }", "function pre_word() {\r\n\t\t//$this->code = preg_replace('/<ins\\s/is', '<ins stripme=\"y\" ', $this->code);\r\n\t\t//$this->code = str_replace('<span class=msoIns>', '<span stripme=\"y\">', $this->code);\r\n\t\tReTidy::non_DOM_deleteme('<style[^>]*? id=\"dynCom\"[^>]*?>');\r\n\t\tReTidy::non_DOM_deleteme('<script language=\"JavaScript\">');\r\n\t\tReTidy::non_DOM_stripme('<ins\\s[^>]*?>');\r\n\t\tReTidy::non_DOM_stripme('<span\\s+class=msoIns>');\r\n\t\tReTidy::non_DOM_stripme('<span\\s+class=msoDel>');\r\n\t\t$this->code = preg_replace('/<del\\s/is', '<del deleteme=\"y\" ', $this->code);\r\n\t\t$this->code = preg_replace('/<div([^<>]*?) class=msocomtxt/is', '<div$1 deleteme=\"y\" ', $this->code);\r\n\t\t$this->code = preg_replace('/<span([^<>]*?)class=MsoCommentReference>/is', '<span$1 deleteme=\"y\">', $this->code);\r\n\t\t$this->code = preg_replace('/<span([^<>]*?)style=\\'[^\\']*?display\\s*:\\s*none[^\\']*?\\'/is', '<span$1 deleteme=\"y\" ', $this->code);\r\n\t\t$this->code = preg_replace('/<span([^<>]*?)style=\"[^\"]*?display\\s*:\\s*none[^\"]*?\\\"/is', '<span$1 deleteme=\"y\" ', $this->code);\r\n\t\t\r\n\t\t$this->code = preg_replace('/<(w:\\w+)[^<>]*?>(.*?)<\\/\\1>/is', '$2', $this->code); // will cause problems if there are nested tags with w: namespace\r\n\t\t\r\n\t//\t// microsoft classes to delete\r\n\t//\t$arrayMicrosoftClassesToDelete = array(\r\n\t//\t'msoIns',\r\n\t//\t'msoDel',\r\n\t//\t);\r\n\t//\tforeach($arrayMicrosoftClassesToDelete as $microsoftClass) {\r\n\t//\t\twhile(true) {\r\n\t//\t\t\t$this->code = preg_replace('/class=\"([^\"]*)' . ReTidy::preg_escape($microsoftClass) . '([^\"]*)\"/is', 'class=\"$1$2\"', $this->code, -1, $countA);\r\n\t//\t\t\t$this->code = str_replace(' class=' . ReTidy::preg_escape($microsoftClass), '', $this->code, $countB);\r\n\t//\t\t\tif($countA === 0 && $countB === 0) {\r\n\t//\t\t\t\tbreak;\r\n\t//\t\t\t}\t\t\t\t\r\n\t//\t\t}\r\n\t//\t}\r\n\t\t\r\n\t\t//$this->code = preg_replace('/\\n/', 'XXX\\n', $this->code);\r\n\t\t\r\n\t\t//<tr style='page-break-inside:avoid;height:11.25pt'> \r\n\t\t// <span lang=FR-CA style='font-size:9.0pt;font-family:\"Times New Roman\"; \r\n\t\t// color:black;layout-grid-mode:line'> \r\n\t\t// <td style='height:11.25pt;border:none' width=0 height=15></td> \r\n\t\t// </span> \r\n\t\t// </tr> \r\n\r\n\t\t// does this do anything?!?\r\n\t\t\r\n\t\t$this->code = str_replace('\r\n', ' \r\n', $this->code);\t\t\r\n\t}", "public function miniStatement() {\n ... function body ...\n }", "function yy_r28(){ \r\n if ($this->yystack[$this->yyidx + -9]->minor != 'foreach') {\r\n $this->compiler->trigger_template_error (\"wrong syntax for tag \\\"\" . $this->yystack[$this->yyidx + -9]->minor . \"\\\"\"); \r\n }\r\n $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); }", "function yy_r42(){ $this->_retvalue = 'UNIQUE'; }", "function yy_r66(){ $this->_retvalue = str_replace(array('.\"\".','\"\".','.\"\"'),array('.','',''),'\"'.$this->yystack[$this->yyidx + -1]->minor.'\"'); }", "function truc() {\n}", "function shortcodes_ultimate() {\n\treturn true;\n}", "function yy_r158(){ $this->_retvalue = 'nin'; }", "function yy_r146(){$this->_retvalue = '%'; }", "function mgd_preparse($code)\n{\n // Get style elements\n $code = preg_replace_callback(\"/<\\\\(([a-zA-Z0-9 _-]+)\\\\)>/\", 'mgd_element', $code);\n // Echo variables\n $code = preg_replace_callback(\"%&\\(([^)]*)\\);%i\", 'mgd_variable', $code);\n return $code;\n}", "function yy_r104(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }", "function yy_r154(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; }", "function yy_r73(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }", "function yy_r17(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }", "function clean_extraneous_inline() {\r\n\t}", "function shortcode_parse_atts($text)\n {\n }", "public function getWordDefinition()\n {\n return '\\[~\\w*';\n }", "function yy_r68(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; }", "function yy_r71(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\\''. $this->yystack[$this->yyidx + -4]->minor .'\\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; }", "function manual($cword)\r\n{\r\n\t$conv = \"( set manual: \". $cword->syntax;\r\n\t\r\n\tif ($cword->NrParams == 1 && isset($cword->parameter_1))\r\n\t{\r\n\t\t$conv = $conv . \" \" . $cword->parameter_1 ;\r\n\t}\t\r\n\t\r\n\t$conv = $conv . \")\";\r\n\t\r\n\treturn $conv;\r\n}", "public function _strings_for_pot()\n {\n }", "public function kahlan()\n {\n return <<<EOD\n _ _\n /\\ /\\__ _| |__ | | __ _ _ __\n / //_/ _` | '_ \\| |/ _` | '_ \\\n/ __ \\ (_| | | | | | (_| | | | |\n\\/ \\/\\__,_|_| |_|_|\\__,_|_| |_|\nEOD;\n }", "function letGo()\n {\n }", "public function parseStatement()\n {\n\n }", "function testBug_rolfhub_2007_02_07_1() \n {\n $sText = <<<SCRIPT\n<?php\n\\$i = 0;\nwhile (++\\$i) {\n switch (\\$i) {\n case 5:\n echo \"At 5<br />\";\n break 1; /* Exit only the switch. */\n case 10:\n echo \"At 10; quitting<br />\";\n break 2; /* Exit the switch and the while. */\n default:\n break;\n }\n}\n?>\nSCRIPT;\n $this->setText($sText);\n $sExpected = <<<SCRIPT\n<?php\n\\$i = 0;\nwhile (++\\$i) {\n switch (\\$i) {\n case 5:\n echo \"At 5<br />\";\n break 1; /* Exit only the switch. */\n case 10:\n echo \"At 10; quitting<br />\";\n break 2; /* Exit the switch and the while. */\n default:\n break;\n }\n}\n?>\nSCRIPT;\n $this->assertEquals($sExpected, $this->oBeaut->get());\n }", "function yy_r144(){$this->_retvalue = '==='; }", "function yy_r142(){$this->_retvalue = '>='; }", "private function loadPHPCodeSnifferConstants(): void\n {\n if (! defined('PHP_CODESNIFFER_VERBOSITY')) {\n // initalize token with INT type, otherwise php-cs-fixer and php-parser breaks\n if (! defined('T_MATCH')) {\n define('T_MATCH', 5000);\n }\n\n if (! defined('T_READONLY')) {\n define('T_READONLY', 5010);\n }\n\n if (! defined('T_ENUM')) {\n define('T_ENUM', 5015);\n }\n\n // for PHP_CodeSniffer\n define('PHP_CODESNIFFER_CBF', false);\n define('PHP_CODESNIFFER_VERBOSITY', 0);\n\n new Tokens();\n }\n }", "function upgrade_430_fix_comments()\n {\n }", "function vb_highlight(&$code)\n\n{\n\n $code = str_replace('\"\"', get_placeholder(10), $code);\n\n $blocks = array(\n\n array(\n\n 'pattern' => '#\".+?\"#',\n\n 'prefix' => '<span class=\"vb_string\">', \n\n 'suffix' => '</span>'\n\n ),\n\n array(\n\n 'pattern' => \"#'.*#\",\n\n 'prefix' => '<span class=\"vb_comment\">', \n\n 'suffix' => '</span>'\n\n ),\n\n );\n\n \n\n $secondaries = array(\n\n array(\n\n 'pattern' => '!([\\n\\r]|^)\\s*?#.*!',\n\n 'prefix' => '<span class=\"vb_preprocessor\">',\n\n 'suffix' => '</span>'\n\n ),\n\n array(\n\n 'pattern' => '!(\\W|^)(\\.?[0-9][0-9.]*|&[hH][0-9a-fA-F]*)!',\n\n 'replacement' => '<span class=\"vb_number\">$2</span>',\n\n 'keepprefix' => 1\n\n ),\n\n array(\n\n 'pattern' => '~[,=\\+\\-!%\\^&\\*\\(\\)\\<\\>#$|]~',\n\n 'prefix' => '<span class=\"vb_symbol\">',\n\n 'suffix' => '</span>'\n\n )\n\n );\n\n \n\n $kw = array(\n\n array(\n\n 'prefix' => '<span '.get_placeholder(8).'=\"vb_keyword\">',\n\n 'suffix' => '</span>',\n\n 'keywords' => array('addhandler','addressof','andalso','alias','and','ansi','as','assembly','attribute','auto','begin','call','case','catch','cbool','cbyte','cchar','cdate','cdec','cdbl','char','cint','class','clng','cobj','compare','const','continue','cshort','csng','cstr','ctype','declare','default','delegate','dim','do','each','else','elseif','end','erase','error','event','exit','explicit','finally','for','friend','function','get','gettype','global','gosub','goto','handles','if','implement','implements','imports','in','inherits','interface','is','let','lib','like','load','loop','lset','me','mid','mod','module','mustinherit','mustoverride','mybase','myclass','namespace','new','next','not','nothing','notinheritable','notoverridable','on','open','option','or','orelse','overloads','overridable','overrides','paramarray','preserve','property','raiseevent','readonly','redim','rem','removehandler','rset','resume','return','select','set','shadows','shared','step','stop','structure','sub','synclock','then','throw','to','try','typeof','unload','unicode','until','wend','when','while','with','withevents','writeonly','xor')\n\n ),\n\n array(\n\n 'prefix' => '<span '.get_placeholder(8).'=\"vb_type\">',\n\n 'suffix' => '</span>',\n\n 'keywords' => array('boolean','byref','byte','byval','currency','date','decimal','double','enum','false','integer','long','object','optional','private','protected','public','short','single','static','string','true','type','variant')\n\n ),\n\n );\n\n $code = generic_highlight($code, $blocks, $secondaries, array(), $kw);\n\n // put escapes back in\n\n return str_replace(get_placeholder(10), '<span class=\"vb_string\">&quot;&quot;</span>', $code);\n\n}", "function yy_r7()\n {\n $this->compiler->template_code->php('echo ')->string($this->yystack[$this->yyidx + 0]->minor)->raw(\";\\n\");\n }" ]
[ "0.5572729", "0.5467487", "0.5327022", "0.5320263", "0.5268901", "0.5237494", "0.51611423", "0.5091914", "0.49905646", "0.49889332", "0.49783155", "0.4951427", "0.4939384", "0.4933886", "0.48903957", "0.48809966", "0.48501047", "0.48459342", "0.48407114", "0.48249584", "0.47825807", "0.47790974", "0.47626168", "0.47591433", "0.47469914", "0.4738577", "0.471797", "0.47117364", "0.4706594", "0.47026038", "0.4696528", "0.4678225", "0.46764553", "0.46721238", "0.46683434", "0.46681258", "0.46642002", "0.4655377", "0.4653851", "0.46437126", "0.46418545", "0.46339622", "0.46082374", "0.46012208", "0.45886773", "0.4587104", "0.457703", "0.45656037", "0.45617512", "0.45594746", "0.45562977", "0.45530447", "0.45497137", "0.45467272", "0.45460284", "0.45442578", "0.45350862", "0.4534994", "0.45349836", "0.45349804", "0.45273367", "0.45164397", "0.45089272", "0.4502154", "0.44992808", "0.4498856", "0.44963574", "0.44956845", "0.44927704", "0.44861698", "0.44797435", "0.44773963", "0.44756493", "0.44734", "0.44706836", "0.44673735", "0.44666758", "0.4463501", "0.44598746", "0.4457062", "0.44560978", "0.4454868", "0.44489923", "0.44429755", "0.4441208", "0.4440865", "0.44392478", "0.44385242", "0.44368926", "0.44365552", "0.44303915", "0.44223094", "0.44186324", "0.44177905", "0.44125295", "0.441066", "0.44085333", "0.44079453", "0.43920985", "0.4392071", "0.43920296" ]
0.0
-1
/$this>Get=new Get(); $this>url=$this>Get>GetURL(); $this>url=$this>Get>GetRewriteMatch();
public function GetHTML(){ /*unset($this->url[0]); $cnt=1; foreach($this->url as $v){ if(count($this->url)==$cnt && $v>0 && is_numeric($v)){ //$this->out_url.=$v.'/'; } else $this->out_url.=$v.'/'; $cnt++; }*/ $next=$this->list['current']+1; $prev=$this->list['current']-1; $limit=($this->page-1)*$this->take+1; $limit2=$limit+$this->take-1; if ($this->page==$this->total_pages) $limit2=$this->total; $str=''; $str .=""; $str .=<<<OUT <div class="pager"> <div class="hr"><i></i></div> <ul> OUT; if($prev>0){ $str .=<<<OUT <li class="prev"><a href="{$this->out_url}{$prev}/"><i class="i"></i></a></li> OUT; } for ($i=1; $i < $this->page ; $i++) { if ($i>((int)$this->page-(int)$this->half_block)){ if($i==1){ $str .=<<<OUT <li><a href="{$this->out_url}{$this->list[$i]}/">{$this->list[$i]}</a></li> OUT; } else { $str .=<<<OUT <li><a href="{$this->out_url}{$this->list[$i]}/">{$this->list[$i]}</a></li> OUT; } } } if($this->total_pages==$this->list['current']) $str .="<li class='last'>".$this->list['current']."</li>"; else $str .="<li>".$this->list['current']."</li>"; $cnt=1; for ($i=$this->page+1; $i <= $this->total_pages ; $i++) { if($this->total_pages==$i || ($this->half_block-1)==$cnt) $classlast=' class="last"'; else $classlast=''; if ($this->half_block==$cnt) break; $str .=<<<OUT <li{$classlast}><a href="{$this->out_url}{$this->list[$i]}/">{$this->list[$i]}</a></li> OUT; $cnt++; } if($this->list['current']<$this->total_pages){ $str .=<<<OUT <li class="next"><a href="{$this->out_url}{$next}/"><i class="i"></i></a></li> OUT; } $str .=<<<OUT </div> OUT; if ($this->total_pages>1) return $str; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function __construct(){\n\t\t$this->request = $_REQUEST;\n\t\t$this->get = $_GET;\n\t\t$this->post = $_POST;\n\t\t$this->checkHtaccess();\n\t}", "public function __construct()\n\t{\n\t\t$this->uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';\n\t\t$this->method = isset($_SERVER['REQUEST_METHOD']) ? strtolower($_SERVER['REQUEST_METHOD']) : 'get';\n\n\t\t$this->get = $_GET;\n\t\t$this->post = $_POST;\n\t\t$this->cookie = $_COOKIE;\n\t}", "public function __construct()\r\n {\r\n $this->geturl();\r\n }", "public function __construct( $get )\n\t{\n\t\t$this->m_common = new Common();\n\t\t$this->m_active_controller_name = ucfirst( strtolower( $get['v'] ) );\n\t\t\n\t}", "function init() {\n $this->properties = array();\n if(isset($_SERVER['REQUEST_METHOD'])) {\n $urlPieces = explode(\"/\", $_GET['q']);\n array_shift($urlPieces);// the way our mod_rewrite does this, it adds an empty string as an extra element on the beginning\n if($urlPieces[0] === \"a\") {// something like foo/bar/test\n $this->setProperty(\"app\", \"true\");\n $this->setProperty(\"cmd\", $urlPieces[1]);\n $this->setProperty(\"action\", $urlPieces[2]);\n } else {\n $this->setProperty(\"cmd\", $urlPieces[0]);\n $this->setProperty(\"action\", $urlPieces[1]);\n\n if(count($urlPieces) > 2) {\n for($i = 2; $i < count($urlPieces); ++$i) {\n $this->extras[] = $urlPieces[$i];\n }\n }\n }\n }\n\n if(isset($_SERVER['argv'][0])) {\n $argPieces = explode(\"&\", $_SERVER['argv'][0]);\n } else {\n $argPieces = array();\n }\n\n foreach($argPieces as $arg) {\n if(strpos($arg, '=')) {\n list($key, $val) = explode(\"=\", $arg);// a=login <- a = 'cmd' in CommandResolver\n $this->setProperty($key, $val);\n }\n }\n }", "public static function Get() {\r\n }", "private static function url($get, $checks)\n\t{\n\t\treturn $get;\n\t}", "public function __construct() {\n\n\t\t// get uri\n\t\t// remove slash\n\t\t// get first param\n\t\t// switch case\n\t\t\n\t\t$uri = self::getUri(); \n\t\t// trong truong hop $uri chi gom domain name thi array $uri van co first element va element rong\n\n\t\t$first = $uri[0];\n\t\t$first = \"first here\";\n\t\tself::$_first = $first;\n\n\t\tswitch ($first) {\n\t\t\tcase \"\":\n\t\t\t\t$this->_cPage = \"index\";\n\t\t\t\tbreak;\n\n\t\t\tcase $this->_admin:\n\t\t\t\t$this->adminProcess();\n\t\t\t\tbreak;\n\n\t\t\tcase $this->_college_Url:\n\t\t\t\t$this->_cPage = $this->_college_temp;\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tdefault:\n\t\t\t\t$this->_cPage = $this->_article_temp;\n\t\t}\n\t}", "function get()\n {\n }", "public function __construct(){\r\n $pageRequest ='homepage';\r\n //check if there are parameters\r\n if(isset($_REQUEST['page'])) {\r\n\r\n //load the type of page the request wants into page request\r\n \r\n $pageRequest = $_REQUEST['page'];\r\n }\r\n //instantiate the class that is being requested\r\n $page = new $pageRequest;\r\n\r\n if($_SERVER['REQUEST_METHOD'] == 'GET') {\r\n $page->get();\r\n } else {\r\n $page->post();\r\n }\r\n\r\n\r\n\r\n }", "public function __construct()\n\t{\n\t\t$this->get = $_GET;\n\t\t$this->post = $_POST;\n\t\t$this->request = $_REQUEST;\n\t}", "public function getGet ();", "function __construct() {\n $this->reg = Core_Registery::singleton();\n $this->reg->controller = $this;\n $this->view = $this->reg->view;\n\n //Actie aanroepen. Dus: als www.skynet.nl/test dan TestAction();\n if(isset($_GET['page']))\n {\n //remove install/ from begin of string and change / to \"_\"\n $action = str_replace(\"/\",\"_\",$_GET['page']);\n //substr last char since that is always a /\n $action = strtolower(substr($action,0,-1)).'Action';\n if(method_exists($this, $action))\n {\n call_user_func(array($this,$action));\n }\n else\n {\n $this->indexAction();\n }\n }\n else\n {\n $this->indexAction();\n }\n }", "public function rewriteGet()\n {\n global $rlDb, $config;\n\n $this->fixRewrite();\n\n if ($this->debug) {\n echo '<pre>';\n print_r($_GET);\n echo '</pre>';\n }\n\n if (isset($_GET['reset_location'])) {\n $this->resetLocation();\n return false;\n }\n\n // Rewrite rule corrections\n if (isset($_GET['wildcard']) && $_GET['rlVareables'] && strpos($_GET['rlVareables'], '.html')) {\n $_GET['rlVareables'] = str_replace('.html', '', $_GET['rlVareables']);\n }\n\n if (isset($_GET['wildcard']) && $_GET['wildcard'] == '') {\n unset($_GET['wildcard']);\n }\n\n if (strlen($_GET['page']) == 2) {\n $rw_lang = $_GET['page'];\n\n $tmp = explode(\"/\", $_GET['rlVareables']);\n $page = array_splice($tmp, 0, 1)[0];\n\n if ($rlDb->getOne(\"Key\", \"`Path` = '\" . $page . \"' AND `Status` = 'active'\", 'data_formats')) {\n $_GET['page'] = $page;\n $_GET['rlVareables'] = implode(\"/\", $tmp);\n }\n } elseif (substr($_GET['rlVareables'], 2, 1) == '/') {\n $tmp = explode(\"/\", $_GET['rlVareables']);\n $page = array_splice($tmp, 0, 1)[0];\n\n if ($rlDb->getOne(\"Code\", \"`Code` = '\" . $page . \"'\", \"languages\")) {\n $rw_lang = $page;\n $_GET['rlVareables'] = implode(\"/\", $tmp);\n }\n }\n\n $get_vars = array();\n if ($_GET['page']) {\n $get_vars[] = $_GET['page'];\n\n if ($_GET['rlVareables']) {\n foreach (explode('/', $_GET['rlVareables']) as $k => $get_var) {\n $get_vars[] = $get_var;\n }\n }\n }\n\n if ($get_vars) {\n $this->geo_filter_data['applied_location'] = $this->prepareGetVars($get_vars);\n\n if ($this->geo_filter_data['applied_location']) {\n $this->saveLocation($this->geo_filter_data['applied_location']);\n\n foreach (explode('/', $this->geo_filter_data['applied_location']['Path']) as $k => $v) {\n $get_pos = array_search($v, $get_vars);\n unset($get_vars[$get_pos]);\n }\n\n unset($_GET['page']);\n unset($_GET['rlVareables']);\n\n if ($get_vars || $rw_lang) {\n if ($rw_lang) {\n array_unshift($get_vars, $rw_lang);\n }\n\n foreach (array_values($get_vars) as $k => $v) {\n if ($k == 0) {\n $_GET['page'] = $v;\n } elseif ($k > 0 && strlen($v) > 2) {\n $_GET['rlVareables'] .= $v . '/';\n }\n }\n\n if ($_GET['rlVareables']) {\n $_GET['rlVareables'] = trim($_GET['rlVareables'], '/');\n }\n }\n } elseif ($rw_lang && strlen($_GET['page']) > 2) {\n $_GET['rlVareables'] = $rw_lang . '/' . $_GET['rlVareables'];\n }\n } elseif ($rw_lang) {\n $_GET['page'] = $rw_lang;\n }\n\n // It's not possible to affect applied geo filter from Listing Details URL\n if ($_GET['listing_id']) {\n unset($this->geo_filter_data['applied_location']);\n }\n\n if ($this->debug) {\n echo '<pre> after rewrite';\n print_r($_GET);\n echo '</pre>';\n }\n }", "function __construct(){\n\t\t//htaccess设置\n\t\t//路由分析 / index.php/Home/Index/index/id/1\t\t\n\t\t$path = $_SERVER['REQUEST_URI'];\n //p($_REQUEST);\t\n\t\tif(isset($path) && $path!='/'){\n\t\t\t$pathArr = explode('/', ltrim($path,'/'));\t\t\n\t\t\t//重置路由\n\t\t\tif(isset($pathArr[0])){\n\t\t\t\t$this->module = $pathArr[0];\n\t\t\t\tunset($pathArr[0]);\n\t\t\t}\n\t\t\tif(isset($pathArr[1])){\n\t\t\t\t$this->ctrl = $pathArr[1];\n\t\t\t\tunset($pathArr[1]);\n\t\t\t}\n\t\t\tif(isset($pathArr[2])){\n\t\t\t\t$this->action = $pathArr[2];\n\t\t\t\tunset($pathArr[2]);\n\t\t\t}\n\t\t\t//参数解析\n\t\t\t$count = count($pathArr);\n\t\t\t//$paras = array();\n\t\t\t//p($pathArr);\n\t\t\tfor($i=3;$i<$count+3;$i=$i+2){\n\t\t\t\tif(isset($pathArr[$i+1])){//处理参数不匹配的\n\t\t\t\t\t$_GET[$pathArr[$i]] = $pathArr[$i+1];\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t//$_GET['paras'] = $paras;\n\t\t\t\n\t\t }else{\n\t\t $this->module = Conf::get('MODULE','config');\n\t\t\t $this->ctrl = Conf::get('CTRL','config');\n\t\t\t $this->action = Conf::get('ACTION','config');\n\t\t }\n\t}", "public function __construct($get_fields=NULL){\n\t\tif($_SERVER['REQUEST_URI'] != ''){\n\t\t\tif($_SERVER['QUERY_STRING']){\n\t\t\t\t$this->request = explode('/',$_SERVER['QUERY_STRING']);\n\t\t\t\t// this is a wee bit of code to make the array_combine function work\n\t\t\t\t// and to process query strings as the URLS they resemble in the order of the array that is passed to it\n\t\t\t\tif( (int) count($this->request) != (int) count($get_fields) )\n\t\t\t\t\t\tforeach($get_fields as $loc=>$value)\n\t\t\t\t\t\t\tif(!array_key_exists($loc,$this->request ))\n\t\t\t\t\t\t\t\tunset($get_fields[$loc]);\n\t\t\t\t$this->script_name = $_SERVER['SCRIPT_NAME'];\n\t\t\t\t$this->request = array_combine($get_fields,$this->request);\n\t\t\t\t$get_fields!=NULL && is_array($get_fields) AND self::set_get( $this->request) ;\n\t\t\t}\n\t\t}\n\t}", "function __construct(){\n\t\t// URL Rewriting\n\t\t$params = explode(\"/\",$_SERVER['REQUEST_URI']);\n\t\t$this->view = empty($params[1]) ? $this->view : $params[1];\n\t\t$this->list = empty($params[2]) ? $this->list :$params[2];\n\t\t$this->query = empty($_POST['query']) ? $this->query : $_POST['query'];\n\t\t// Live Debugging\n\t\tif (stristr($this->view,\"debug\")){\n\t\t\tinclude(DEBUG_DIR.\"/live_debug.php\");\n\t\t\treturn;\n\t\t}\n\t\t// Front End\n\t\t$this->setListings();\n\t\tif (is_file(ROOT_DIR.\"/view/\".$this->view.\".php\")){\n\t\t\tinclude(ROOT_DIR.\"/view/header.php\");\n\t\t\tif ($this->list == 'search'){\n\t\t\t\tinclude (ROOT_DIR.'/view/search.php');\n\t\t\t}\n\t\t\tinclude(ROOT_DIR.\"/view/\".$this->view.\".php\");\n\t\t\tinclude(ROOT_DIR.\"/view/footer.php\");\n\t\t} else {\n\t\t\tinclude(ROOT_DIR.\"/view/404.php\");\n\t\t}\n\t}", "function cl_rhsolicita() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"rhsolicita\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "private function rebuildGet()\n {\n $url = $_SERVER['REQUEST_URI'];\n $pos = strpos($url, '?');\n \n if ($pos !== false)\n {\n parse_str(substr($url, $pos+1, (strlen($url)-($pos+1))), $_GET);\n }\n }", "public function __construct()\n {\n if(!empty(filter_input(INPUT_GET, 'url', FILTER_DEFAULT))){\n $this->Url = filter_input(INPUT_GET, 'url', FILTER_DEFAULT);\n $this->limparUrl();\n $this->UrlConjunto = explode(\"/\", $this->Url);\n \n if(isset($this->UrlConjunto[0]))\n {\n $this->UrlController = $this->slugController($this->UrlConjunto[0]);\n }else{\n $this->UrlController = CONTROLER;\n }\n\n //condição dos segundo paramentro \n if(isset($this->UrlConjuto[1]))\n {\n $this->UrlParamentro = $this->UrlConjunto[1];\n }else{\n $this->UrlParamentro = null;\n }\n\n echo \"{$this->Url} <br>\";\n echo \"Controller: {$this->UrlController} <br>\";\n // caso nao tenha paramentro entra else aonde vai ter valores fixos\n }else{\n $this->UrlController = CONTROLER;\n $this->UrlParamentro= null;\n }\n \n\n }", "public function __construct($get, $db){\n $this->get = $get;\n $this->db = $db;\n \n # kontrola opravneni\n $neverejne = array('nova-navsteva', 'konec-navstevy', 'detail-navstevy');\n if(in_array($get, $neverejne) && !isSet($_SESSION['username'])){\n $this->tpl = 'neprihlasen.htm';\n return;\n } \n \n # rozjedem to!!! :) \n if($get == NULL || $get == 'historie-navstev'){\n $this->prehledNavstev();\n }\n elseif($get == 'prihlasit'){\n $this->prihlaseni();\n }\n elseif($get == 'odhlasit'){\n $this->odhlaseni();\n } \n elseif($get == 'konec-navstevy'){\n $this->najitNavstevu();\n } \n elseif($get == 'detail-navstevy'){\n $this->detailNavstevy();\n } \n elseif($get == 'nova-navsteva'){\n $this->novaNavsteva();\n }\n \n \n # tpl je nutno priradit priponu\n if($this->tpl == \"\"){\n $this->prehledNavstev();\n }\n $this->tpl .= \".htm\";\n \n # session pole je nutne vzdy\n $this->render['session'] = @$_SESSION; \t\n }", "public function & GetRouter ();", "private function parseGET()\n {\n if (isset($_GET['method'])) {\n $this->method = $_GET['method'];\n unset($_GET['method']);\n }\n\n if (isset($_GET['output'])) {\n $this->output = $_GET['output'];\n unset($_GET['output']);\n }\n\n $testDN = Get_User_Principle_PI();\n if (empty($testDN) == false) {\n $this->identifier = $testDN;\n }\n\n if (count($_GET) > 0) {\n $this->params = $_GET;\n }\n }", "abstract public function get_url_update();", "public function __construct(){\n\t\t$this->url = YaffmapConfig::get('url').$this->path;\n\t}", "public function __construct()\n {\n $this->_remove_magic_quotes();\n $this->_unregister_globals();\n\n $this->_params = Router::factory()->parse($this->get('url'));\n }", "function got_url_rewrite()\n {\n }", "function getUrl();", "abstract public function get_url_read();", "function Get($name, $args);", "public function __construct()\r\n {\r\n $pageRequest = 'homePage';\r\n //check for parameters\r\n if (isset($_REQUEST['page'])) {\r\n $pageRequest = $_REQUEST['page'];\r\n }\r\n //instantiate the class that is being requested\r\n $page = new $pageRequest;\r\n\r\n if ($_SERVER['REQUEST_METHOD'] == 'GET') {\r\n $page->get();\r\n } else {\r\n $page->post();\r\n }\r\n\r\n }", "public function __construct(){\n $this->get_parameters = get_magic_quotes_gpc() ? myTools::stripslashes_deep($_GET) : $_GET;\n $this->post_parameters = get_magic_quotes_gpc() ? myTools::stripslashes_deep($_POST) : $_POST; \n }", "public function __construct() {\r\n\t\t$this->page = isset($_GET['page']) ? $_GET['page'] : null;\r\n\t}", "public function __construct($keyword=\"\", $website=\"\",$motor='http://www.google.es'){\n if(trim($keyword)==\"\"){\n trigger_error(\"Keyword cannot the left blank.\",E_USER_ERROR); die();\n }\n if(trim($website)==\"\"){\n trigger_error(\"Website cannot the left blank.\",E_USER_ERROR); die();\n }\n $website=strtolower(trim($website));\n $website=str_replace(\"http://www.\",\"\",$website);\n $website=str_replace(\"http://\",\"\",$website);\n $website=str_replace(\"www.\",\"\",$website);\n $website=str_replace(\"/\",\"\",$website);\n \n $this->website=$website;\n $this->keyword=trim($keyword);\n $this->motor=$motor;\n $this->enableVerbose= '';//$enableVerbose; \n $this->url=$this->updateUrl($keyword, $this->start,$motor);\n }", "private static function generateUrlPrams(){\n\t\t$url = [] ;\n\t\tif ( isset($_GET['urlFromHtaccess']) ){\n\t\t\t$url = explode('/' , trim($_GET['urlFromHtaccess']) );\n\t\t}\n\t\tself::$url = $url ;\n\t}", "public function __get($key) {\n\n\t\tif($key == 'pageNum') return $this->pageNum; \n\t\tif($key == 'urlSegments') return $this->urlSegments; \n\t\tif($key == 'urlSegmentsStr' || $key == 'urlSegmentStr') return $this->urlSegmentStr();\n\t\tif($key == 'url') return $this->url();\n\t\tif($key == 'httpUrl' || $key == 'httpURL') return $this->httpUrl();\n\t\tif($key == 'fragment') return $this->fragment();\n\t\tif($key == 'queryString') return $this->queryString();\n\t\tif($key == 'scheme') return $this->scheme();\n\n\t\tif(strpos($key, 'urlSegment') === 0) {\n\t\t\tif($key === 'urlSegmentFirst') {\n\t\t\t\t$num = 1;\n\t\t\t} else if($key === 'urlSegmentLast') {\n\t\t\t\t$num = -1;\n\t\t\t} else if(strlen($key) > 10) {\n\t\t\t\t$num = (int) substr($key, 10);\n\t\t\t} else {\n\t\t\t\t$num = 1;\n\t\t\t}\n\t\t\treturn $this->urlSegment($num);\n\t\t}\n\n\t\t$value = null;\n\t\t$gpc = array('get', 'post', 'cookie', 'whitelist'); \n\n\t\tif(in_array($key, $gpc)) {\n\t\t\t$value = $this->$key(); \n\n\t\t} else {\n\t\t\t// Like PHP's $_REQUEST where accessing $input->var considers get/post/cookie/whitelist\n\t\t\t// what it actually considers depends on what's set in the $config->wireInputOrder variable\n\t\t\t$order = (string) $this->wire('config')->wireInputOrder; \n\t\t\tif(!$order) return null;\n\t\t\t$types = explode(' ', $order); \n\t\t\tforeach($types as $t) {\n\t\t\t\tif(!in_array($t, $gpc)) continue; \t\n\t\t\t\t$value = $this->$t($key); \n\t\t\t\tif(!is_null($value)) break;\n\t\t\t}\n\t\t}\n\t\treturn $value; \n\t}", "private function spiltUrl()\n {\n // the .htaccess file.\n // TODO: create .htaccess file and add rule.\n if (isset($_GET['url'])) {\n // echo $_GET['url'];\n \n // Trim the last '/' from the url\n // so the http://example.com/sample/ will be http://example.com/sample\n $url = rtrim($_GET['url'], '/');\n \n $url = filter_var($url, FILTER_SANITIZE_URL);\n \n $url = explode('/', $url);\n \n // Put URL parts into the appropiate properties.\n $this->url_controller = (isset($url[0])) ? $url[0] : null;\n $this->url_action = (isset($url[1])) ? $url[1] : null;\n $this->url_parameter_1 = (isset($url[2])) ? $url[2] : null;\n $this->url_parameter_2 = (isset($url[3])) ? $url[3] : null;\n $this->url_parameter_3 = (isset($url[4])) ? $url[4] : null;\n }\n }", "function get_url()\n {\n }", "function cl_issarqsimplesreg() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"issarqsimplesreg\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "protected function doGet()\n {\n }", "public function __construct() {\r\n session_start();\r\n\r\n //store the absolute script directory\r\n //note that this is not the admin directory\r\n self::$abs_path = dirname(dirname(__FILE__));\r\n\r\n //initialize the post variable\r\n if($_SERVER['REQUEST_METHOD'] == 'POST') {\r\n $this->post = $_POST;\r\n if(get_magic_quotes_gpc ()) {\r\n //get rid of magic quotes and slashes if present\r\n array_walk_recursive($this->post, array($this, 'stripslash_gpc'));\r\n }\r\n }\r\n\r\n //initialize the get variable\r\n $this->get = $_GET;\r\n //decode the url\r\n array_walk_recursive($this->get, array($this, 'urldecode'));\r\n }", "public function __construct()\n {\n if(isset($_GET['correo'])){$this->Correo=$_GET['correo'];}\n if(isset($_GET['pregunta'])){$this->Pregunta=$_GET['pregunta'];}\n if(isset($_GET['respuesta'])){$this->Respuesta=$_GET['respuesta'];}\n }", "public function __construct()\r\n\t{\r\n\t\t// Primeiro limpamos o caminho informado na URL\r\n\t\t$this->setUrl();\r\n\r\n\t\t// Depois quebramos ela para ajudar no processo\r\n\t\t$this->setExplode();\r\n\r\n\t\t// Retiramos a Controller da URL (caso exista uma)\r\n\t\t$this->setController();\r\n\r\n\t\t// Retiramos a Action da URL (caso exista uma)\r\n\t\t$this->setAction();\r\n\r\n\t\t// Retiramos os Parâmetros da URL (caso eles existam)\r\n\t\t$this->setParams();\r\n\r\n\t\t// Organizamos a Controller e Action para buscar elas dinamicamente\r\n\t\t$this->arrangeControllerAction();\r\n\t}", "public function __construct()\n {\n $this->url = isset($_GET['url']) ? filter_var(rtrim($_GET['url'], FILTER_SANITIZE_URL)) : self::LANDING_PAGE;\n }", "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 __construct()\n {\n //print_r($this->getUrl()) ;\n $url =$this->getUrl();\n //LOOK IN Controller for first value\n\n\n\n if(file_exists('..'.DS.'app'.DS.'controllers'.DS.ucwords($url[0]).'.php'))\n {\n //if exists set as controller\n $this->currentController=ucwords($url[0]);\n //unset zero index\n unset($url[0]);\n }\n $classControllers='MVCPHP\\controllers\\\\'.$this->currentController;\n //Require controller\n //require_once '../app/controllers/'.$this->currentController.'.php';\n $classController =new $classControllers();\n //CHECK for second part of url\n //var_dump($url);\n if(isset($url[1]))\n {\n if(method_exists($classController,$url[1]))\n {\n $this->currentMethod=$url[1];\n unset($url[1]);\n }\n }\n // GET PARAMS\n\n $this->params =$url?array_values($url) : [];\n //var_dump($classController);\n call_user_func_array([$classController,$this->currentMethod],$this->params);\n\n }", "public function & GetRequest ();", "abstract public function getUrl();", "public function Get( $sUrl );", "#[Pure]\n public function getUrl() {}", "public static function parse() {\n\t\t/* Grab the base URL from the Site class */\n\t\t$baseurl = parse_url( Config::instance()->get('baseurl') );\n\t\t$baseurl = $baseurl['path'];\n\n\t\t/* Start with the entire URL coming from web server... */\n\t\tif(isset($_SERVER['REQUEST_URI']))\n\t\t\t$request = str_replace('?' . $_SERVER['QUERY_STRING'], '', $_SERVER['REQUEST_URI']);\n\t\telse\n\t\t\t$request = $_SERVER['SCRIPT_NAME'] . ( isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '' );\n\n\t\t/* Strip out the base URL from the requested URL */\n\t\t/* but only if the base URL isn't / */\n\t\tif ( '/' != $baseurl ) {\n\t\t\t$request = str_replace($baseurl, '', $request);\n\t\t}\n\n\t\t$request = trim($request, '/');\n\t\tself::$request = $request;\n\t}", "public function construct()\n {\n ini_set('magic_quotes_runtime','0');\n\n // But in this one it takes a hate-powered flamethrower\n if(ini_get('magic_quotes_gpc'))\n {\n $oddlib=&$this->system->model('oddlib');\n\n if(!empty($_GET))\n {\n $oddlib->stripslashes($_GET);\n }\n if(!empty($_POST))\n {\n $oddlib->stripslashes($_POST);\n }\n if(!empty($_COOKIE))\n {\n $oddlib->stripslashes($_COOKIE);\n }\n if(!empty($_FILES))\n {\n $oddlib->stripslashes($_FILES);\n }\n if(!empty($_SESSION))\n {\n $oddlib->stripslashes($_SESSION);\n }\n }\n\n // Yank the GET variable a\n $input=explode('/',trim($_GET['a'],'./'));\n\n // Shave off necessary components and store them inside the system for reference\n $this->_['information']['input']['controller']=array_shift($input);\n $this->_['information']['input']['method']=array_shift($input);\n $this->_['information']['input']['parameters']=&$input;\n\n // If the method is null, default to index\n if(is_null($this->_['information']['input']['method']))\n {\n $this->_['information']['input']['method']='index';\n }\n\n // If the parameters are null, default to blank array\n if(is_null($this->_['information']['input']['parameters']))\n {\n $this->_['information']['input']['parameters']=array();\n }\n }", "private function ParseQuerystring()\r\n\t{\r\n\t\t$this->Object \t= isset($_GET['obj']) \t\t? $_GET['obj'] \t\t\t\t\t: $this->Object;\r\n\t\t$this->Task \t= isset($_GET['task']) \t\t? '&task='.$_GET['task'] \t\t: '&task='.$this->Task;\r\n\t\t$this->Subtask \t= isset($_GET['subtask']) \t? '&subtask='.$_GET['subtask'] \t: '&subtask='.$this->Subtask;\r\n\t\t$this->Item\t\t= isset($_GET['id']) \t\t? '&id='.$_GET['id'] \t\t\t: '&id='.$this->Item;\r\n\t\t\r\n\t\t$this->Action \t\t= '?obj='.$this->Object.$this->Task.$this->Subtask.$this->Item;\r\n\t\t$this->URL \t\t\t= '?obj='.$this->Object.$this->Task.$this->Item;\r\n\t\t$this->GenericPage \t= '?obj='.$this->Object.$this->Task;\t\r\n\t}", "public function __construct()\n {\n $this->buildUrl();\n }", "public function __construct()\n{\n\t// Use POST and GET if there are any\n\tif (!empty($_GET) || !empty($_POST))\n\t{\n\t\t// GET POST and GET values\n\t\t$values = array_merge($_POST, $_GET);\n\n\t\t// Trim values\n\t\t$trim_func = function (&$item, $key) {\n\t\t\t$item = trim($item);\n\t\t};\n\t\tarray_walk_recursive($values, $trim_func);\n\n\t\t// Store values\n\t\t$this->assign($values);\n\t}\n\n\t// If command line, then also parse arguments\n\tif (PHP_SAPI == 'cli')\n\t{\n\t\t$values = $_SERVER['argv'];\n\t\tarray_shift($values);\n\t\tforeach ($values as $arg)\n\t\t{\n\t\t\tparse_str($arg, $params);\n\t\t\tif (!empty($params))\n\t\t\t{\n\t\t\t\t$this->assign($params);\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set NULL to be returned for undefined values\n\t$this->setUndefinedValue(null);\n}", "public function __construct()\n {\n $this->collection = $_GET;\n $_GET = array();\n }", "public function get( /* void */ );", "public function __construct() {\n // Initialisation du mappage du site\n if ($this->router === false) {\n $router = new Router();\n $router->map();\n $this->router = true;\n }\n // On récupère l'URL et on la traite\n $this->request = new Request();\n $this->request = new Router($this->request->url);\n $this->request = $this->request->request;\n // On appelle soit le controlleur soit une page d'erreur\n $controller = $this->loadController();\n $action = $this->request['action']; \n if (class_exists($controller) && in_array($action, get_class_methods($controller))) {\n call_user_func_array(array(new $controller, $action), $this->request['params']);\n } else {\n Router::error(); \n } \n }", "public function __construct(){\n\t\t$this->headers = apache_request_headers();\n\t\t// Save the special x-RESTProxy-* headers\n\t\t$this->Host = $this->Host? $this->Host : $this->headers['x-RESTProxy-Host'];\n\t\t$this->Port = $this->headers['x-RESTProxy-Port'] ? ':'.$this->headers['x-RESTProxy-Port'] : \"\";\n\t\t$this->Https = ($this->headers['x-RESTProxy-HTTPS'])? $this->headers['x-RESTProxy-HTTPS'] : false;\n\t\t// Create a temp file in memory\n\t\t$this->fp = fopen('php://temp/maxmemory:256000','w');\n\t\tif (!$this->fp){\n\t\t\t$this->Error(100);\n\t\t}\n\t\t// Write the input into the in-memory tempfile\n\t\t$this->input = file_get_contents(\"php://input\");\n\t\tfwrite($this->fp,$this->input);\n\t\tfseek($this->fp,0);\n\n\t\t//Get the REST Path\n\t\tif(!empty($_SERVER['PATH_INFO'])){\n\t\t $this->_G = substr($_SERVER['PATH_INFO'], 1);\n\t\t //$this->_G = explode('/', $_mGET);\n\t\t }\n\t\t \n\t\t // Get the raw GET request\n\t\t $tmp = explode('?',$_SERVER['REQUEST_URI']);\n\t\t if ($tmp[1]) {\n\t\t \t$this->_RawGET = $tmp[1];\n\t\t } else {\n\t\t \t$this->_RawGET = \"\";\n\t\t }\n\t \n\t}", "function getLink() {return $this->_link;}", "function getLink() {return $this->_link;}", "function cl_rhfolhapagamento() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"rhfolhapagamento\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "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 }", "public function GetRouter ();", "public function __construct() {\r\n\t\tparent::__construct();\r\n\t\t$this->shortner = Url_Shortner::factory();\r\n\t}", "public function HTTPRequest(){\n\t}", "function cl_aguacorte() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"aguacorte\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "function cl_aguacalc() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"aguacalc\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "public function __construct()\n {\n $this->ParseUrl();\n $this->Dispatch();\n }", "abstract public function get() ;", "function cl_moblevantamentoedi() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"moblevantamentoedi\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "function cl_rhempenhofolharubrica() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"rhempenhofolharubrica\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "public function __construct() {\n // BIG THANKS!!!\n foreach ($_POST as $key => $val) {\n if (substr($key, 0, 8) == 'action::') {\n $_POST['action'] = substr($key, 8);\n unset($_POST[$key]);\n }\n }\n\n $this->post = (object)$_POST;\n foreach($this->post as $key => $value) $this->post->$key = stripslashes($value);\n $this->_uri = array_key_exists('PATH_INFO', $_SERVER) ? $_SERVER['PATH_INFO'] : '';\n // Fix: workaround for lighttp rewrite rules, pse check for better solution\n if ('/index.php' === substr($this->_uri,0, 10))\n $this->_uri = substr($this->_uri, 10);\n $this->_rootUri = $this->getBaseUri() . substr($this->_uri, 1);\n\n $i = strrpos($_SERVER['SCRIPT_NAME'], '/') + 1;\n $this->baseUri = substr($_SERVER['REQUEST_URI'], 0, $i);\n\n $this->uri = $this->_uri;\n $this->requestUri = $_SERVER['REQUEST_URI'];\n }", "function __construct($pageMethod = null)\n\t{\n\t\t// echo $pageURI;\n\t\t$this->load = new Load();\n\t\t$this->model = new Model();\n\t\t// Determine what page you are on\n\t\t$this->$pageMethod();\n\t}", "public function __construct ()\n\t{\n\t\t$this->protocol = isset($_SERVER['HTTPS']) && strcasecmp(\"off\", $_SERVER['HTTPS']) !== 0 ? \"https\" : \"http\";\n\t\t$this->host = $_SERVER['HTTP_HOST'];\n\t\t$this->path = dirname(isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : $_SERVER['PHP_SELF']);\n\n\t\tif (isset($_GET['mollie_action']))\n\t\t{\n\t\t\t// Call the action, if an $action_action method exists. Prevents exposing private methods. Note we should NEVER use $_GET['action'], as there's an osCommerce setting that forces sessions for GET actions. Our\n\t\t\t// API does not accept sessions for webhook calls.\n\t\t\tif (method_exists($this, $_GET['mollie_action'] . \"_action\"))\n\t\t\t{\n\t\t\t\tcall_user_func(array($this, $_GET['mollie_action'] . \"_action\"));\n\t\t\t}\n\t\t}\n\t}", "function url ($link) {\r\n\treturn $link;\r\n}", "public function __construct() {\n $this->autodetectActions([\n // Method => pattern...should be set by default.\n HTTP::GET => new RegEx(\"get_(.+)$\")\n ]);\n }", "public function work() {\n if(isset($_GET['r'])) {\n $this->route = $_GET['r'];\n }\n\n $this->transform();\n }", "function cl_rhemitecontracheque() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"rhemitecontracheque\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "public function __construct()\n {\n $this->uri = $_SERVER['REQUEST_URI'];\n $this->method = $_SERVER['REQUEST_METHOD'];\n\n // Get all parameters from the request depending on request method\n $parameters = match ($this->method) {\n 'GET' => $_GET,\n 'POST' => $_POST,\n };\n // Remove 'path' from Request parameters because we use it in rewrite rule in htaccess for pretty url,\n // and it is handled by the Route later.\n unset($parameters['path']);\n $this->parameters = $parameters;\n }", "function got_mod_rewrite()\n {\n }", "function _wp_http_get_object()\n {\n }", "public function parse()\n {\n // turn the url into an array by nodes\n $this->nodes = explode('/', $this->url);\n \n // slide the controller off the first element\n $this->controller = array_shift($this->nodes);\n\t // break the path apart into its segments\n\t // controller - params ( node will always be empty for restful urls )\n\t //@list( , $this->nodes ) = explode( '/', $this->url, 2 );\n\t\n\t // add params to the to the params array\n/*\n\t if ( !empty( $params ) ) {\n\t \n\t // break apart the params\n\t $params = explode( '/', $params );\n\t\n\t for ( $i = 0; $i < count( $params ); $i++ ) {\n\t $this->params[] = str_replace( KEYWORD_SEPARATOR, ' ', $params[$i]);\n\t }\n\t }\n*/\n \n \n }", "public function __construct()\n {\n $this->spiltUrl();\n \n // For debug: uncomment the line line bellow.\n // echo \"Controller: {$this->url_controller}, Action: {$this->url_action}\";\n \n // check for controller: is the url_controller NOT empty?\n if ($this->url_controller) {\n // check for cotroller: does such controller exist ?\n if (file_exists(CONTROLLERS_PATH . $this->url_controller . '.php')) {\n // if so then load the file and create this controller\n // example: if the controller is car, then this line would translate into $this->car = new car();\n require CONTROLLERS_PATH . $this->url_controller . '.php';\n $this->url_controller = new $this->url_controller();\n \n // check for method: does such a method exist in the controller ?\n if ($this->url_action) {\n if (method_exists($this->url_controller, $this->url_action)) {\n // call the method and pass the arguments to it\n if (isset($this->url_parameter_3)) {\n $this->url_controller->{$this->url_action}($this->url_parameter_1, $this->url_parameter_2, $this->url_parameter_3);\n } elseif (isset($this->url_parameter_2)) {\n $this->url_controller->{$this->url_action}($this->url_parameter_1, $this->url_parameter_2, $this->url_parameter_3);\n } elseif (isset($this->url_parameter_1)) {\n $this->url_controller{$this->url_action}($this->url_parameter_1);\n } else {\n // if there is no parameter then just call the method without any arguments\n $this->url_controller->{$this->url_action}();\n }\n } else {\n // TODO: implement error check\n // action doesn't match anything in our predefined action (don't have any method in the controller\n // to process the action)\n die('Invalid action');\n }\n } else {\n // there is no action provided. like http://example.com/controll/\n // default/fallback: call the index() method of the selected controller.\n $this->url_controller->index();\n }\n } else {\n // there is no appropiate controller that is requested\n // TODO: implement error page\n die(\"controller doesn't exist.\");\n }\n } else {\n // invalid URL, so simply show home/index\n require CONTROLLERS_PATH . 'index.php';\n $controller = new Index();\n $controller->index();\n }\n }", "function cl_moblevantamento() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"moblevantamento\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "static function parseURL()\n {\n if(isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO']!=\"/\")\n {\n $url=explode(\"/\",trim($_SERVER['PATH_INFO'],\"/\"));\n if($url[0]==\"admin\")\n {\n define(\"SIDE\", \"admin\");\n self::$controller = $url[0];\n self::$controller = isset($url[1]) ? $url[1] : \"welcome\";\n self::$action = isset($url[2]) ? $url[2] : \"index\";\n }\n else\n {\n define(\"SIDE\", \"client\");\n self::$controller = $url[0];\n self::$action = isset($url[1]) ? $url[1] : \"index\";\n }\n }\n else\n {\n define(\"SIDE\", \"client\");\n self::$controller = \"welcome\";\n self::$action = \"index\";\n }\n }", "function cl_rhbasesreg() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"rhbasesreg\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "public function __construct()\n {\n // create array with URL parts in $url\n $this->splitUrl();\t\t\t\t\n\t\tif ($this->url_controller == '') {$this->url_controller='home';} /* set to default home */\t\t\n\t\t\n // check for controller: does such a controller exist ?\n if (file_exists('./apps/control/' . $this->url_controller . '.php') ) \n\t\t\t{\n\n\t\t\t\trequire './apps/control/' . $this->url_controller . '.php';\t\t\t\t\t\t \n\t\t\t\tif ($this->url_controller == 'report') \n\t\t\t\t{ \n\t\t\t\t\t$this->url_controller = new $this->url_controller(); \n\t\t\t\t\t$this->url_controller->index($this->url_action);\n\t\t\t\t}\n\t\t\t\tif ($this->url_controller == 'home') { \t\t\t\t\n\t\t\t\t\t$this->url_controller = new $this->url_controller(); \n\t\t\t\t\t$this->url_controller->index('home',$this->url_action);\n\t\t\t\t}\n\t\t\t}\n\n\n \n\t\telse\n\t\t{\n\t\t\t\n\t\t\t$this->url_controller = 'home';\n\t\t\t$this->url_action = '404';\t\t\t\n\t\t\trequire './apps/control/' . $this->url_controller . '.php';\t\t\t\t\t\t \n\t\t\t$this->url_controller = new $this->url_controller(); \n $this->url_controller->index('home',$this->url_action);\n\t\t}\n }", "public function __construct()\r\n {\r\n global $IP;\r\n $this->url = \"http://\" . $IP . \"/user/info/update/\";\r\n $this->http = new HttpClass();\r\n $this->InfoGet = new TestUserInfoGet();\r\n }", "function htaccess(){\r\n\t}", "abstract public function url($manipulation_name = '');", "function cl_rhdirfgeracao() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"rhdirfgeracao\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "#[Pure]\n public function getRequestUrl() {}", "public function __construct()\n {\n $this->protocol = api_get_setting('sso_authentication_protocol');\n // There can be multiple domains, so make sure to take only the first\n // This might be later extended with a decision process\n $domains = explode(',', api_get_setting('sso_authentication_domain'));\n $this->domain = trim($domains[0]);\n $this->auth_uri = api_get_setting('sso_authentication_auth_uri');\n $this->deauth_uri = api_get_setting('sso_authentication_unauth_uri');\n //cut the string to avoid recursive URL construction in case of failure\n $this->referer = $this->protocol.$_SERVER['HTTP_HOST'].substr($_SERVER['REQUEST_URI'],0,strpos($_SERVER['REQUEST_URI'],'sso'));\n $this->deauth_url = $this->protocol.$this->domain.$this->deauth_uri;\n $this->master_url = $this->protocol.$this->domain.$this->auth_uri;\n $this->referrer_uri = base64_encode($_SERVER['REQUEST_URI']);\n $this->target = api_get_path(WEB_PATH);\n }", "public function __construct(){\n\t\t\t$this->genLink();\n\t\t}", "public function gett()\n {\n return \"hello from gett\";\n }", "function cl_conplanosis() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"conplanosis\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "function redirect()\n\t {\n\t\t$this->ifExists();\n\t\trequire CTRL.DS.$this->url[0].'.php';\n\t\t$class= ucfirst($this->url[0]);\n\t\t$controller=new $class();\n\t\t$method=\"\";\n\t\tif(isset($this->url[3]))\n\t\t{\n\t\t\t\t$method=$this->url[1];\n\t\t if (method_exists($controller, $this->url[1])) {\n\t\t\t $controller->{$this->url[1]}($this->url[2], $this->url[3]);\n\t\t\t\n\t\t\t $method=new ReflectionMethod($controller,$this->url[1] );\n\n $paramsize= sizeof($method->getParameters());\n\t\t\t \n\t\t\t if($paramsize<1)\n\t\t\t {\n\t\t\t\t \n\t\t\t\t $this->error('Invalid Url');\n\t\t\t\t exit;\n\t\t\t }\n\t\t\t} \n\t\t\telse\n\t\t\t {\n\t\t\t\t$this->error('Invalid methods');\n\t\t\t}\n\t\t}\n\t\telse if(isset($this->url[2]))\n\t\t{\n\t\t\t$method=$this->url[1];\n\t\t if (method_exists($controller, $this->url[1])) {\n\t\t\t $controller->{$this->url[1]}($this->url[2]);\n\t\t\t $method=new ReflectionMethod($controller,$this->url[1] );\n\n $paramsize= sizeof($method->getParameters());\n\t\t\t if($paramsize<1)\n\t\t\t {\n\t\t\t\t \n\t\t\t\t $this->error('Invalid Url');\n\t\t\t\t exit;\n\t\t\t }\n\t\t\t} \n\t\t\telse\n\t\t\t {\n\t\t\t\t$this->error('Invalid methods');\n\t\t\t}\n\t\t}\n\t\telse if(isset($this->url[1]))\n\t\t{\n\t\t\t$method=$this->url[1];\n\t\t\tif(method_exists($class, $method))\n\t\t\t{\n\t\t\t\t$controller->$method();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$this->error(\"METHOD DOES NOT EXIST\");\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$controller->Index();\n\t }\n\t \n\t\n }", "public function __construct() {\n $this->setGetter( new HttpGetter() );\n }", "public function getme(){\n return $this->make_http_request(__FUNCTION__);\n }", "function cl_escrito() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"escrito\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }" ]
[ "0.62460595", "0.62101996", "0.6179156", "0.6078745", "0.60286623", "0.6012724", "0.59758365", "0.59691864", "0.595355", "0.59461904", "0.5921252", "0.5878194", "0.5868297", "0.58500016", "0.5828836", "0.5795395", "0.5781789", "0.5760737", "0.5760601", "0.5749422", "0.5731805", "0.57182455", "0.56893533", "0.56847596", "0.56763136", "0.5669574", "0.56615704", "0.5656211", "0.5654634", "0.56506294", "0.56229967", "0.56219685", "0.5620204", "0.5602795", "0.55924034", "0.5580628", "0.5579251", "0.5571449", "0.5570613", "0.5564346", "0.5559838", "0.5555207", "0.55409384", "0.55405945", "0.5532178", "0.55285317", "0.55240095", "0.55079776", "0.55043703", "0.5491168", "0.5487231", "0.54749763", "0.54700863", "0.54655725", "0.54638326", "0.54598904", "0.54544055", "0.5451463", "0.54491705", "0.54358715", "0.54358715", "0.5434726", "0.5434707", "0.54330564", "0.54262054", "0.54155827", "0.54081243", "0.5395879", "0.53930676", "0.5389828", "0.53895986", "0.5381316", "0.53794986", "0.53739357", "0.5373128", "0.5371552", "0.5366241", "0.53610635", "0.5355596", "0.5355457", "0.53547597", "0.53495985", "0.5339732", "0.5331551", "0.53313893", "0.53308845", "0.53207904", "0.5314739", "0.53130007", "0.5311773", "0.53082615", "0.53057843", "0.53051394", "0.530306", "0.53000677", "0.5298251", "0.5297768", "0.5295089", "0.52948725", "0.5279815", "0.52785164" ]
0.0
-1
/$this>Get=new Get(); $this>url=$this>Get>GetURL(); $this>url=$this>Get>GetRewriteMatch();
public function GetAdminHTML(){ /*unset($this->url[0]); $cnt=1; foreach($this->url as $v){ if(count($this->url)==$cnt && $v>0 && is_numeric($v)){ //$this->out_url.=$v.'/'; } else $this->out_url.=$v.'/'; $cnt++; }*/ $next=$this->list['current']+1; $prev=$this->list['current']-1; $limit=($this->page-1)*$this->take+1; $limit2=$limit+$this->take-1; if ($this->page==$this->total_pages) $limit2=$this->total; $str=''; $str .=""; $str .=<<<OUT <div class="pagination"> <ul class="pag_list"> OUT; if($prev>0){ $str .=<<<OUT <li class="prev"><a href="{$this->out_url}{$prev}/"><i class="i"></i></a></li> OUT; } for ($i=1; $i < $this->page ; $i++) { if ($i>((int)$this->page-(int)$this->half_block)){ if($i==1){ $str .=<<<OUT <li><a href="{$this->out_url}{$this->list[$i]}/">{$this->list[$i]}</a></li> OUT; } else { $str .=<<<OUT <li><a href="{$this->out_url}{$this->list[$i]}/">{$this->list[$i]}</a></li> OUT; } } } if($this->total_pages==$this->list['current']) $str .="<li class='last'>".$this->list['current']."</li>"; else $str .="<li>".$this->list['current']."</li>"; $cnt=1; for ($i=$this->page+1; $i <= $this->total_pages ; $i++) { if($this->total_pages==$i || ($this->half_block-1)==$cnt) $classlast=' class="last"'; else $classlast=''; if ($this->half_block==$cnt) break; $str .=<<<OUT <li{$classlast}><a href="{$this->out_url}{$this->list[$i]}/">{$this->list[$i]}</a></li> OUT; $cnt++; } if($this->list['current']<$this->total_pages){ $str .=<<<OUT <li class="next"><a href="{$this->out_url}{$next}/"><i class="i"></i></a></li> OUT; } $str .=<<<OUT </div> OUT; if ($this->total_pages>1) return $str; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function __construct(){\n\t\t$this->request = $_REQUEST;\n\t\t$this->get = $_GET;\n\t\t$this->post = $_POST;\n\t\t$this->checkHtaccess();\n\t}", "public function __construct()\n\t{\n\t\t$this->uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';\n\t\t$this->method = isset($_SERVER['REQUEST_METHOD']) ? strtolower($_SERVER['REQUEST_METHOD']) : 'get';\n\n\t\t$this->get = $_GET;\n\t\t$this->post = $_POST;\n\t\t$this->cookie = $_COOKIE;\n\t}", "public function __construct()\r\n {\r\n $this->geturl();\r\n }", "public function __construct( $get )\n\t{\n\t\t$this->m_common = new Common();\n\t\t$this->m_active_controller_name = ucfirst( strtolower( $get['v'] ) );\n\t\t\n\t}", "function init() {\n $this->properties = array();\n if(isset($_SERVER['REQUEST_METHOD'])) {\n $urlPieces = explode(\"/\", $_GET['q']);\n array_shift($urlPieces);// the way our mod_rewrite does this, it adds an empty string as an extra element on the beginning\n if($urlPieces[0] === \"a\") {// something like foo/bar/test\n $this->setProperty(\"app\", \"true\");\n $this->setProperty(\"cmd\", $urlPieces[1]);\n $this->setProperty(\"action\", $urlPieces[2]);\n } else {\n $this->setProperty(\"cmd\", $urlPieces[0]);\n $this->setProperty(\"action\", $urlPieces[1]);\n\n if(count($urlPieces) > 2) {\n for($i = 2; $i < count($urlPieces); ++$i) {\n $this->extras[] = $urlPieces[$i];\n }\n }\n }\n }\n\n if(isset($_SERVER['argv'][0])) {\n $argPieces = explode(\"&\", $_SERVER['argv'][0]);\n } else {\n $argPieces = array();\n }\n\n foreach($argPieces as $arg) {\n if(strpos($arg, '=')) {\n list($key, $val) = explode(\"=\", $arg);// a=login <- a = 'cmd' in CommandResolver\n $this->setProperty($key, $val);\n }\n }\n }", "public static function Get() {\r\n }", "private static function url($get, $checks)\n\t{\n\t\treturn $get;\n\t}", "public function __construct() {\n\n\t\t// get uri\n\t\t// remove slash\n\t\t// get first param\n\t\t// switch case\n\t\t\n\t\t$uri = self::getUri(); \n\t\t// trong truong hop $uri chi gom domain name thi array $uri van co first element va element rong\n\n\t\t$first = $uri[0];\n\t\t$first = \"first here\";\n\t\tself::$_first = $first;\n\n\t\tswitch ($first) {\n\t\t\tcase \"\":\n\t\t\t\t$this->_cPage = \"index\";\n\t\t\t\tbreak;\n\n\t\t\tcase $this->_admin:\n\t\t\t\t$this->adminProcess();\n\t\t\t\tbreak;\n\n\t\t\tcase $this->_college_Url:\n\t\t\t\t$this->_cPage = $this->_college_temp;\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tdefault:\n\t\t\t\t$this->_cPage = $this->_article_temp;\n\t\t}\n\t}", "function get()\n {\n }", "public function __construct(){\r\n $pageRequest ='homepage';\r\n //check if there are parameters\r\n if(isset($_REQUEST['page'])) {\r\n\r\n //load the type of page the request wants into page request\r\n \r\n $pageRequest = $_REQUEST['page'];\r\n }\r\n //instantiate the class that is being requested\r\n $page = new $pageRequest;\r\n\r\n if($_SERVER['REQUEST_METHOD'] == 'GET') {\r\n $page->get();\r\n } else {\r\n $page->post();\r\n }\r\n\r\n\r\n\r\n }", "public function __construct()\n\t{\n\t\t$this->get = $_GET;\n\t\t$this->post = $_POST;\n\t\t$this->request = $_REQUEST;\n\t}", "public function getGet ();", "function __construct() {\n $this->reg = Core_Registery::singleton();\n $this->reg->controller = $this;\n $this->view = $this->reg->view;\n\n //Actie aanroepen. Dus: als www.skynet.nl/test dan TestAction();\n if(isset($_GET['page']))\n {\n //remove install/ from begin of string and change / to \"_\"\n $action = str_replace(\"/\",\"_\",$_GET['page']);\n //substr last char since that is always a /\n $action = strtolower(substr($action,0,-1)).'Action';\n if(method_exists($this, $action))\n {\n call_user_func(array($this,$action));\n }\n else\n {\n $this->indexAction();\n }\n }\n else\n {\n $this->indexAction();\n }\n }", "public function rewriteGet()\n {\n global $rlDb, $config;\n\n $this->fixRewrite();\n\n if ($this->debug) {\n echo '<pre>';\n print_r($_GET);\n echo '</pre>';\n }\n\n if (isset($_GET['reset_location'])) {\n $this->resetLocation();\n return false;\n }\n\n // Rewrite rule corrections\n if (isset($_GET['wildcard']) && $_GET['rlVareables'] && strpos($_GET['rlVareables'], '.html')) {\n $_GET['rlVareables'] = str_replace('.html', '', $_GET['rlVareables']);\n }\n\n if (isset($_GET['wildcard']) && $_GET['wildcard'] == '') {\n unset($_GET['wildcard']);\n }\n\n if (strlen($_GET['page']) == 2) {\n $rw_lang = $_GET['page'];\n\n $tmp = explode(\"/\", $_GET['rlVareables']);\n $page = array_splice($tmp, 0, 1)[0];\n\n if ($rlDb->getOne(\"Key\", \"`Path` = '\" . $page . \"' AND `Status` = 'active'\", 'data_formats')) {\n $_GET['page'] = $page;\n $_GET['rlVareables'] = implode(\"/\", $tmp);\n }\n } elseif (substr($_GET['rlVareables'], 2, 1) == '/') {\n $tmp = explode(\"/\", $_GET['rlVareables']);\n $page = array_splice($tmp, 0, 1)[0];\n\n if ($rlDb->getOne(\"Code\", \"`Code` = '\" . $page . \"'\", \"languages\")) {\n $rw_lang = $page;\n $_GET['rlVareables'] = implode(\"/\", $tmp);\n }\n }\n\n $get_vars = array();\n if ($_GET['page']) {\n $get_vars[] = $_GET['page'];\n\n if ($_GET['rlVareables']) {\n foreach (explode('/', $_GET['rlVareables']) as $k => $get_var) {\n $get_vars[] = $get_var;\n }\n }\n }\n\n if ($get_vars) {\n $this->geo_filter_data['applied_location'] = $this->prepareGetVars($get_vars);\n\n if ($this->geo_filter_data['applied_location']) {\n $this->saveLocation($this->geo_filter_data['applied_location']);\n\n foreach (explode('/', $this->geo_filter_data['applied_location']['Path']) as $k => $v) {\n $get_pos = array_search($v, $get_vars);\n unset($get_vars[$get_pos]);\n }\n\n unset($_GET['page']);\n unset($_GET['rlVareables']);\n\n if ($get_vars || $rw_lang) {\n if ($rw_lang) {\n array_unshift($get_vars, $rw_lang);\n }\n\n foreach (array_values($get_vars) as $k => $v) {\n if ($k == 0) {\n $_GET['page'] = $v;\n } elseif ($k > 0 && strlen($v) > 2) {\n $_GET['rlVareables'] .= $v . '/';\n }\n }\n\n if ($_GET['rlVareables']) {\n $_GET['rlVareables'] = trim($_GET['rlVareables'], '/');\n }\n }\n } elseif ($rw_lang && strlen($_GET['page']) > 2) {\n $_GET['rlVareables'] = $rw_lang . '/' . $_GET['rlVareables'];\n }\n } elseif ($rw_lang) {\n $_GET['page'] = $rw_lang;\n }\n\n // It's not possible to affect applied geo filter from Listing Details URL\n if ($_GET['listing_id']) {\n unset($this->geo_filter_data['applied_location']);\n }\n\n if ($this->debug) {\n echo '<pre> after rewrite';\n print_r($_GET);\n echo '</pre>';\n }\n }", "function __construct(){\n\t\t//htaccess设置\n\t\t//路由分析 / index.php/Home/Index/index/id/1\t\t\n\t\t$path = $_SERVER['REQUEST_URI'];\n //p($_REQUEST);\t\n\t\tif(isset($path) && $path!='/'){\n\t\t\t$pathArr = explode('/', ltrim($path,'/'));\t\t\n\t\t\t//重置路由\n\t\t\tif(isset($pathArr[0])){\n\t\t\t\t$this->module = $pathArr[0];\n\t\t\t\tunset($pathArr[0]);\n\t\t\t}\n\t\t\tif(isset($pathArr[1])){\n\t\t\t\t$this->ctrl = $pathArr[1];\n\t\t\t\tunset($pathArr[1]);\n\t\t\t}\n\t\t\tif(isset($pathArr[2])){\n\t\t\t\t$this->action = $pathArr[2];\n\t\t\t\tunset($pathArr[2]);\n\t\t\t}\n\t\t\t//参数解析\n\t\t\t$count = count($pathArr);\n\t\t\t//$paras = array();\n\t\t\t//p($pathArr);\n\t\t\tfor($i=3;$i<$count+3;$i=$i+2){\n\t\t\t\tif(isset($pathArr[$i+1])){//处理参数不匹配的\n\t\t\t\t\t$_GET[$pathArr[$i]] = $pathArr[$i+1];\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t//$_GET['paras'] = $paras;\n\t\t\t\n\t\t }else{\n\t\t $this->module = Conf::get('MODULE','config');\n\t\t\t $this->ctrl = Conf::get('CTRL','config');\n\t\t\t $this->action = Conf::get('ACTION','config');\n\t\t }\n\t}", "public function __construct($get_fields=NULL){\n\t\tif($_SERVER['REQUEST_URI'] != ''){\n\t\t\tif($_SERVER['QUERY_STRING']){\n\t\t\t\t$this->request = explode('/',$_SERVER['QUERY_STRING']);\n\t\t\t\t// this is a wee bit of code to make the array_combine function work\n\t\t\t\t// and to process query strings as the URLS they resemble in the order of the array that is passed to it\n\t\t\t\tif( (int) count($this->request) != (int) count($get_fields) )\n\t\t\t\t\t\tforeach($get_fields as $loc=>$value)\n\t\t\t\t\t\t\tif(!array_key_exists($loc,$this->request ))\n\t\t\t\t\t\t\t\tunset($get_fields[$loc]);\n\t\t\t\t$this->script_name = $_SERVER['SCRIPT_NAME'];\n\t\t\t\t$this->request = array_combine($get_fields,$this->request);\n\t\t\t\t$get_fields!=NULL && is_array($get_fields) AND self::set_get( $this->request) ;\n\t\t\t}\n\t\t}\n\t}", "function __construct(){\n\t\t// URL Rewriting\n\t\t$params = explode(\"/\",$_SERVER['REQUEST_URI']);\n\t\t$this->view = empty($params[1]) ? $this->view : $params[1];\n\t\t$this->list = empty($params[2]) ? $this->list :$params[2];\n\t\t$this->query = empty($_POST['query']) ? $this->query : $_POST['query'];\n\t\t// Live Debugging\n\t\tif (stristr($this->view,\"debug\")){\n\t\t\tinclude(DEBUG_DIR.\"/live_debug.php\");\n\t\t\treturn;\n\t\t}\n\t\t// Front End\n\t\t$this->setListings();\n\t\tif (is_file(ROOT_DIR.\"/view/\".$this->view.\".php\")){\n\t\t\tinclude(ROOT_DIR.\"/view/header.php\");\n\t\t\tif ($this->list == 'search'){\n\t\t\t\tinclude (ROOT_DIR.'/view/search.php');\n\t\t\t}\n\t\t\tinclude(ROOT_DIR.\"/view/\".$this->view.\".php\");\n\t\t\tinclude(ROOT_DIR.\"/view/footer.php\");\n\t\t} else {\n\t\t\tinclude(ROOT_DIR.\"/view/404.php\");\n\t\t}\n\t}", "function cl_rhsolicita() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"rhsolicita\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "private function rebuildGet()\n {\n $url = $_SERVER['REQUEST_URI'];\n $pos = strpos($url, '?');\n \n if ($pos !== false)\n {\n parse_str(substr($url, $pos+1, (strlen($url)-($pos+1))), $_GET);\n }\n }", "public function __construct()\n {\n if(!empty(filter_input(INPUT_GET, 'url', FILTER_DEFAULT))){\n $this->Url = filter_input(INPUT_GET, 'url', FILTER_DEFAULT);\n $this->limparUrl();\n $this->UrlConjunto = explode(\"/\", $this->Url);\n \n if(isset($this->UrlConjunto[0]))\n {\n $this->UrlController = $this->slugController($this->UrlConjunto[0]);\n }else{\n $this->UrlController = CONTROLER;\n }\n\n //condição dos segundo paramentro \n if(isset($this->UrlConjuto[1]))\n {\n $this->UrlParamentro = $this->UrlConjunto[1];\n }else{\n $this->UrlParamentro = null;\n }\n\n echo \"{$this->Url} <br>\";\n echo \"Controller: {$this->UrlController} <br>\";\n // caso nao tenha paramentro entra else aonde vai ter valores fixos\n }else{\n $this->UrlController = CONTROLER;\n $this->UrlParamentro= null;\n }\n \n\n }", "public function __construct($get, $db){\n $this->get = $get;\n $this->db = $db;\n \n # kontrola opravneni\n $neverejne = array('nova-navsteva', 'konec-navstevy', 'detail-navstevy');\n if(in_array($get, $neverejne) && !isSet($_SESSION['username'])){\n $this->tpl = 'neprihlasen.htm';\n return;\n } \n \n # rozjedem to!!! :) \n if($get == NULL || $get == 'historie-navstev'){\n $this->prehledNavstev();\n }\n elseif($get == 'prihlasit'){\n $this->prihlaseni();\n }\n elseif($get == 'odhlasit'){\n $this->odhlaseni();\n } \n elseif($get == 'konec-navstevy'){\n $this->najitNavstevu();\n } \n elseif($get == 'detail-navstevy'){\n $this->detailNavstevy();\n } \n elseif($get == 'nova-navsteva'){\n $this->novaNavsteva();\n }\n \n \n # tpl je nutno priradit priponu\n if($this->tpl == \"\"){\n $this->prehledNavstev();\n }\n $this->tpl .= \".htm\";\n \n # session pole je nutne vzdy\n $this->render['session'] = @$_SESSION; \t\n }", "public function & GetRouter ();", "private function parseGET()\n {\n if (isset($_GET['method'])) {\n $this->method = $_GET['method'];\n unset($_GET['method']);\n }\n\n if (isset($_GET['output'])) {\n $this->output = $_GET['output'];\n unset($_GET['output']);\n }\n\n $testDN = Get_User_Principle_PI();\n if (empty($testDN) == false) {\n $this->identifier = $testDN;\n }\n\n if (count($_GET) > 0) {\n $this->params = $_GET;\n }\n }", "abstract public function get_url_update();", "public function __construct(){\n\t\t$this->url = YaffmapConfig::get('url').$this->path;\n\t}", "public function __construct()\n {\n $this->_remove_magic_quotes();\n $this->_unregister_globals();\n\n $this->_params = Router::factory()->parse($this->get('url'));\n }", "function got_url_rewrite()\n {\n }", "function getUrl();", "abstract public function get_url_read();", "function Get($name, $args);", "public function __construct()\r\n {\r\n $pageRequest = 'homePage';\r\n //check for parameters\r\n if (isset($_REQUEST['page'])) {\r\n $pageRequest = $_REQUEST['page'];\r\n }\r\n //instantiate the class that is being requested\r\n $page = new $pageRequest;\r\n\r\n if ($_SERVER['REQUEST_METHOD'] == 'GET') {\r\n $page->get();\r\n } else {\r\n $page->post();\r\n }\r\n\r\n }", "public function __construct(){\n $this->get_parameters = get_magic_quotes_gpc() ? myTools::stripslashes_deep($_GET) : $_GET;\n $this->post_parameters = get_magic_quotes_gpc() ? myTools::stripslashes_deep($_POST) : $_POST; \n }", "public function __construct() {\r\n\t\t$this->page = isset($_GET['page']) ? $_GET['page'] : null;\r\n\t}", "public function __construct($keyword=\"\", $website=\"\",$motor='http://www.google.es'){\n if(trim($keyword)==\"\"){\n trigger_error(\"Keyword cannot the left blank.\",E_USER_ERROR); die();\n }\n if(trim($website)==\"\"){\n trigger_error(\"Website cannot the left blank.\",E_USER_ERROR); die();\n }\n $website=strtolower(trim($website));\n $website=str_replace(\"http://www.\",\"\",$website);\n $website=str_replace(\"http://\",\"\",$website);\n $website=str_replace(\"www.\",\"\",$website);\n $website=str_replace(\"/\",\"\",$website);\n \n $this->website=$website;\n $this->keyword=trim($keyword);\n $this->motor=$motor;\n $this->enableVerbose= '';//$enableVerbose; \n $this->url=$this->updateUrl($keyword, $this->start,$motor);\n }", "private static function generateUrlPrams(){\n\t\t$url = [] ;\n\t\tif ( isset($_GET['urlFromHtaccess']) ){\n\t\t\t$url = explode('/' , trim($_GET['urlFromHtaccess']) );\n\t\t}\n\t\tself::$url = $url ;\n\t}", "public function __get($key) {\n\n\t\tif($key == 'pageNum') return $this->pageNum; \n\t\tif($key == 'urlSegments') return $this->urlSegments; \n\t\tif($key == 'urlSegmentsStr' || $key == 'urlSegmentStr') return $this->urlSegmentStr();\n\t\tif($key == 'url') return $this->url();\n\t\tif($key == 'httpUrl' || $key == 'httpURL') return $this->httpUrl();\n\t\tif($key == 'fragment') return $this->fragment();\n\t\tif($key == 'queryString') return $this->queryString();\n\t\tif($key == 'scheme') return $this->scheme();\n\n\t\tif(strpos($key, 'urlSegment') === 0) {\n\t\t\tif($key === 'urlSegmentFirst') {\n\t\t\t\t$num = 1;\n\t\t\t} else if($key === 'urlSegmentLast') {\n\t\t\t\t$num = -1;\n\t\t\t} else if(strlen($key) > 10) {\n\t\t\t\t$num = (int) substr($key, 10);\n\t\t\t} else {\n\t\t\t\t$num = 1;\n\t\t\t}\n\t\t\treturn $this->urlSegment($num);\n\t\t}\n\n\t\t$value = null;\n\t\t$gpc = array('get', 'post', 'cookie', 'whitelist'); \n\n\t\tif(in_array($key, $gpc)) {\n\t\t\t$value = $this->$key(); \n\n\t\t} else {\n\t\t\t// Like PHP's $_REQUEST where accessing $input->var considers get/post/cookie/whitelist\n\t\t\t// what it actually considers depends on what's set in the $config->wireInputOrder variable\n\t\t\t$order = (string) $this->wire('config')->wireInputOrder; \n\t\t\tif(!$order) return null;\n\t\t\t$types = explode(' ', $order); \n\t\t\tforeach($types as $t) {\n\t\t\t\tif(!in_array($t, $gpc)) continue; \t\n\t\t\t\t$value = $this->$t($key); \n\t\t\t\tif(!is_null($value)) break;\n\t\t\t}\n\t\t}\n\t\treturn $value; \n\t}", "private function spiltUrl()\n {\n // the .htaccess file.\n // TODO: create .htaccess file and add rule.\n if (isset($_GET['url'])) {\n // echo $_GET['url'];\n \n // Trim the last '/' from the url\n // so the http://example.com/sample/ will be http://example.com/sample\n $url = rtrim($_GET['url'], '/');\n \n $url = filter_var($url, FILTER_SANITIZE_URL);\n \n $url = explode('/', $url);\n \n // Put URL parts into the appropiate properties.\n $this->url_controller = (isset($url[0])) ? $url[0] : null;\n $this->url_action = (isset($url[1])) ? $url[1] : null;\n $this->url_parameter_1 = (isset($url[2])) ? $url[2] : null;\n $this->url_parameter_2 = (isset($url[3])) ? $url[3] : null;\n $this->url_parameter_3 = (isset($url[4])) ? $url[4] : null;\n }\n }", "function get_url()\n {\n }", "function cl_issarqsimplesreg() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"issarqsimplesreg\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "protected function doGet()\n {\n }", "public function __construct() {\r\n session_start();\r\n\r\n //store the absolute script directory\r\n //note that this is not the admin directory\r\n self::$abs_path = dirname(dirname(__FILE__));\r\n\r\n //initialize the post variable\r\n if($_SERVER['REQUEST_METHOD'] == 'POST') {\r\n $this->post = $_POST;\r\n if(get_magic_quotes_gpc ()) {\r\n //get rid of magic quotes and slashes if present\r\n array_walk_recursive($this->post, array($this, 'stripslash_gpc'));\r\n }\r\n }\r\n\r\n //initialize the get variable\r\n $this->get = $_GET;\r\n //decode the url\r\n array_walk_recursive($this->get, array($this, 'urldecode'));\r\n }", "public function __construct()\n {\n if(isset($_GET['correo'])){$this->Correo=$_GET['correo'];}\n if(isset($_GET['pregunta'])){$this->Pregunta=$_GET['pregunta'];}\n if(isset($_GET['respuesta'])){$this->Respuesta=$_GET['respuesta'];}\n }", "public function __construct()\r\n\t{\r\n\t\t// Primeiro limpamos o caminho informado na URL\r\n\t\t$this->setUrl();\r\n\r\n\t\t// Depois quebramos ela para ajudar no processo\r\n\t\t$this->setExplode();\r\n\r\n\t\t// Retiramos a Controller da URL (caso exista uma)\r\n\t\t$this->setController();\r\n\r\n\t\t// Retiramos a Action da URL (caso exista uma)\r\n\t\t$this->setAction();\r\n\r\n\t\t// Retiramos os Parâmetros da URL (caso eles existam)\r\n\t\t$this->setParams();\r\n\r\n\t\t// Organizamos a Controller e Action para buscar elas dinamicamente\r\n\t\t$this->arrangeControllerAction();\r\n\t}", "public function __construct()\n {\n $this->url = isset($_GET['url']) ? filter_var(rtrim($_GET['url'], FILTER_SANITIZE_URL)) : self::LANDING_PAGE;\n }", "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 __construct()\n {\n //print_r($this->getUrl()) ;\n $url =$this->getUrl();\n //LOOK IN Controller for first value\n\n\n\n if(file_exists('..'.DS.'app'.DS.'controllers'.DS.ucwords($url[0]).'.php'))\n {\n //if exists set as controller\n $this->currentController=ucwords($url[0]);\n //unset zero index\n unset($url[0]);\n }\n $classControllers='MVCPHP\\controllers\\\\'.$this->currentController;\n //Require controller\n //require_once '../app/controllers/'.$this->currentController.'.php';\n $classController =new $classControllers();\n //CHECK for second part of url\n //var_dump($url);\n if(isset($url[1]))\n {\n if(method_exists($classController,$url[1]))\n {\n $this->currentMethod=$url[1];\n unset($url[1]);\n }\n }\n // GET PARAMS\n\n $this->params =$url?array_values($url) : [];\n //var_dump($classController);\n call_user_func_array([$classController,$this->currentMethod],$this->params);\n\n }", "public function & GetRequest ();", "abstract public function getUrl();", "public function Get( $sUrl );", "#[Pure]\n public function getUrl() {}", "public static function parse() {\n\t\t/* Grab the base URL from the Site class */\n\t\t$baseurl = parse_url( Config::instance()->get('baseurl') );\n\t\t$baseurl = $baseurl['path'];\n\n\t\t/* Start with the entire URL coming from web server... */\n\t\tif(isset($_SERVER['REQUEST_URI']))\n\t\t\t$request = str_replace('?' . $_SERVER['QUERY_STRING'], '', $_SERVER['REQUEST_URI']);\n\t\telse\n\t\t\t$request = $_SERVER['SCRIPT_NAME'] . ( isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '' );\n\n\t\t/* Strip out the base URL from the requested URL */\n\t\t/* but only if the base URL isn't / */\n\t\tif ( '/' != $baseurl ) {\n\t\t\t$request = str_replace($baseurl, '', $request);\n\t\t}\n\n\t\t$request = trim($request, '/');\n\t\tself::$request = $request;\n\t}", "public function construct()\n {\n ini_set('magic_quotes_runtime','0');\n\n // But in this one it takes a hate-powered flamethrower\n if(ini_get('magic_quotes_gpc'))\n {\n $oddlib=&$this->system->model('oddlib');\n\n if(!empty($_GET))\n {\n $oddlib->stripslashes($_GET);\n }\n if(!empty($_POST))\n {\n $oddlib->stripslashes($_POST);\n }\n if(!empty($_COOKIE))\n {\n $oddlib->stripslashes($_COOKIE);\n }\n if(!empty($_FILES))\n {\n $oddlib->stripslashes($_FILES);\n }\n if(!empty($_SESSION))\n {\n $oddlib->stripslashes($_SESSION);\n }\n }\n\n // Yank the GET variable a\n $input=explode('/',trim($_GET['a'],'./'));\n\n // Shave off necessary components and store them inside the system for reference\n $this->_['information']['input']['controller']=array_shift($input);\n $this->_['information']['input']['method']=array_shift($input);\n $this->_['information']['input']['parameters']=&$input;\n\n // If the method is null, default to index\n if(is_null($this->_['information']['input']['method']))\n {\n $this->_['information']['input']['method']='index';\n }\n\n // If the parameters are null, default to blank array\n if(is_null($this->_['information']['input']['parameters']))\n {\n $this->_['information']['input']['parameters']=array();\n }\n }", "private function ParseQuerystring()\r\n\t{\r\n\t\t$this->Object \t= isset($_GET['obj']) \t\t? $_GET['obj'] \t\t\t\t\t: $this->Object;\r\n\t\t$this->Task \t= isset($_GET['task']) \t\t? '&task='.$_GET['task'] \t\t: '&task='.$this->Task;\r\n\t\t$this->Subtask \t= isset($_GET['subtask']) \t? '&subtask='.$_GET['subtask'] \t: '&subtask='.$this->Subtask;\r\n\t\t$this->Item\t\t= isset($_GET['id']) \t\t? '&id='.$_GET['id'] \t\t\t: '&id='.$this->Item;\r\n\t\t\r\n\t\t$this->Action \t\t= '?obj='.$this->Object.$this->Task.$this->Subtask.$this->Item;\r\n\t\t$this->URL \t\t\t= '?obj='.$this->Object.$this->Task.$this->Item;\r\n\t\t$this->GenericPage \t= '?obj='.$this->Object.$this->Task;\t\r\n\t}", "public function __construct()\n {\n $this->buildUrl();\n }", "public function __construct()\n{\n\t// Use POST and GET if there are any\n\tif (!empty($_GET) || !empty($_POST))\n\t{\n\t\t// GET POST and GET values\n\t\t$values = array_merge($_POST, $_GET);\n\n\t\t// Trim values\n\t\t$trim_func = function (&$item, $key) {\n\t\t\t$item = trim($item);\n\t\t};\n\t\tarray_walk_recursive($values, $trim_func);\n\n\t\t// Store values\n\t\t$this->assign($values);\n\t}\n\n\t// If command line, then also parse arguments\n\tif (PHP_SAPI == 'cli')\n\t{\n\t\t$values = $_SERVER['argv'];\n\t\tarray_shift($values);\n\t\tforeach ($values as $arg)\n\t\t{\n\t\t\tparse_str($arg, $params);\n\t\t\tif (!empty($params))\n\t\t\t{\n\t\t\t\t$this->assign($params);\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set NULL to be returned for undefined values\n\t$this->setUndefinedValue(null);\n}", "public function __construct()\n {\n $this->collection = $_GET;\n $_GET = array();\n }", "public function get( /* void */ );", "public function __construct() {\n // Initialisation du mappage du site\n if ($this->router === false) {\n $router = new Router();\n $router->map();\n $this->router = true;\n }\n // On récupère l'URL et on la traite\n $this->request = new Request();\n $this->request = new Router($this->request->url);\n $this->request = $this->request->request;\n // On appelle soit le controlleur soit une page d'erreur\n $controller = $this->loadController();\n $action = $this->request['action']; \n if (class_exists($controller) && in_array($action, get_class_methods($controller))) {\n call_user_func_array(array(new $controller, $action), $this->request['params']);\n } else {\n Router::error(); \n } \n }", "public function __construct(){\n\t\t$this->headers = apache_request_headers();\n\t\t// Save the special x-RESTProxy-* headers\n\t\t$this->Host = $this->Host? $this->Host : $this->headers['x-RESTProxy-Host'];\n\t\t$this->Port = $this->headers['x-RESTProxy-Port'] ? ':'.$this->headers['x-RESTProxy-Port'] : \"\";\n\t\t$this->Https = ($this->headers['x-RESTProxy-HTTPS'])? $this->headers['x-RESTProxy-HTTPS'] : false;\n\t\t// Create a temp file in memory\n\t\t$this->fp = fopen('php://temp/maxmemory:256000','w');\n\t\tif (!$this->fp){\n\t\t\t$this->Error(100);\n\t\t}\n\t\t// Write the input into the in-memory tempfile\n\t\t$this->input = file_get_contents(\"php://input\");\n\t\tfwrite($this->fp,$this->input);\n\t\tfseek($this->fp,0);\n\n\t\t//Get the REST Path\n\t\tif(!empty($_SERVER['PATH_INFO'])){\n\t\t $this->_G = substr($_SERVER['PATH_INFO'], 1);\n\t\t //$this->_G = explode('/', $_mGET);\n\t\t }\n\t\t \n\t\t // Get the raw GET request\n\t\t $tmp = explode('?',$_SERVER['REQUEST_URI']);\n\t\t if ($tmp[1]) {\n\t\t \t$this->_RawGET = $tmp[1];\n\t\t } else {\n\t\t \t$this->_RawGET = \"\";\n\t\t }\n\t \n\t}", "function getLink() {return $this->_link;}", "function getLink() {return $this->_link;}", "public function GetRouter ();", "function cl_rhfolhapagamento() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"rhfolhapagamento\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "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 }", "public function __construct() {\r\n\t\tparent::__construct();\r\n\t\t$this->shortner = Url_Shortner::factory();\r\n\t}", "public function HTTPRequest(){\n\t}", "function cl_aguacorte() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"aguacorte\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "function cl_aguacalc() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"aguacalc\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "public function __construct()\n {\n $this->ParseUrl();\n $this->Dispatch();\n }", "function cl_moblevantamentoedi() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"moblevantamentoedi\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "abstract public function get() ;", "function cl_rhempenhofolharubrica() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"rhempenhofolharubrica\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "public function __construct() {\n // BIG THANKS!!!\n foreach ($_POST as $key => $val) {\n if (substr($key, 0, 8) == 'action::') {\n $_POST['action'] = substr($key, 8);\n unset($_POST[$key]);\n }\n }\n\n $this->post = (object)$_POST;\n foreach($this->post as $key => $value) $this->post->$key = stripslashes($value);\n $this->_uri = array_key_exists('PATH_INFO', $_SERVER) ? $_SERVER['PATH_INFO'] : '';\n // Fix: workaround for lighttp rewrite rules, pse check for better solution\n if ('/index.php' === substr($this->_uri,0, 10))\n $this->_uri = substr($this->_uri, 10);\n $this->_rootUri = $this->getBaseUri() . substr($this->_uri, 1);\n\n $i = strrpos($_SERVER['SCRIPT_NAME'], '/') + 1;\n $this->baseUri = substr($_SERVER['REQUEST_URI'], 0, $i);\n\n $this->uri = $this->_uri;\n $this->requestUri = $_SERVER['REQUEST_URI'];\n }", "function __construct($pageMethod = null)\n\t{\n\t\t// echo $pageURI;\n\t\t$this->load = new Load();\n\t\t$this->model = new Model();\n\t\t// Determine what page you are on\n\t\t$this->$pageMethod();\n\t}", "public function __construct ()\n\t{\n\t\t$this->protocol = isset($_SERVER['HTTPS']) && strcasecmp(\"off\", $_SERVER['HTTPS']) !== 0 ? \"https\" : \"http\";\n\t\t$this->host = $_SERVER['HTTP_HOST'];\n\t\t$this->path = dirname(isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : $_SERVER['PHP_SELF']);\n\n\t\tif (isset($_GET['mollie_action']))\n\t\t{\n\t\t\t// Call the action, if an $action_action method exists. Prevents exposing private methods. Note we should NEVER use $_GET['action'], as there's an osCommerce setting that forces sessions for GET actions. Our\n\t\t\t// API does not accept sessions for webhook calls.\n\t\t\tif (method_exists($this, $_GET['mollie_action'] . \"_action\"))\n\t\t\t{\n\t\t\t\tcall_user_func(array($this, $_GET['mollie_action'] . \"_action\"));\n\t\t\t}\n\t\t}\n\t}", "function url ($link) {\r\n\treturn $link;\r\n}", "public function __construct() {\n $this->autodetectActions([\n // Method => pattern...should be set by default.\n HTTP::GET => new RegEx(\"get_(.+)$\")\n ]);\n }", "public function work() {\n if(isset($_GET['r'])) {\n $this->route = $_GET['r'];\n }\n\n $this->transform();\n }", "function cl_rhemitecontracheque() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"rhemitecontracheque\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "function got_mod_rewrite()\n {\n }", "public function __construct()\n {\n $this->uri = $_SERVER['REQUEST_URI'];\n $this->method = $_SERVER['REQUEST_METHOD'];\n\n // Get all parameters from the request depending on request method\n $parameters = match ($this->method) {\n 'GET' => $_GET,\n 'POST' => $_POST,\n };\n // Remove 'path' from Request parameters because we use it in rewrite rule in htaccess for pretty url,\n // and it is handled by the Route later.\n unset($parameters['path']);\n $this->parameters = $parameters;\n }", "function _wp_http_get_object()\n {\n }", "public function parse()\n {\n // turn the url into an array by nodes\n $this->nodes = explode('/', $this->url);\n \n // slide the controller off the first element\n $this->controller = array_shift($this->nodes);\n\t // break the path apart into its segments\n\t // controller - params ( node will always be empty for restful urls )\n\t //@list( , $this->nodes ) = explode( '/', $this->url, 2 );\n\t\n\t // add params to the to the params array\n/*\n\t if ( !empty( $params ) ) {\n\t \n\t // break apart the params\n\t $params = explode( '/', $params );\n\t\n\t for ( $i = 0; $i < count( $params ); $i++ ) {\n\t $this->params[] = str_replace( KEYWORD_SEPARATOR, ' ', $params[$i]);\n\t }\n\t }\n*/\n \n \n }", "function cl_moblevantamento() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"moblevantamento\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "static function parseURL()\n {\n if(isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO']!=\"/\")\n {\n $url=explode(\"/\",trim($_SERVER['PATH_INFO'],\"/\"));\n if($url[0]==\"admin\")\n {\n define(\"SIDE\", \"admin\");\n self::$controller = $url[0];\n self::$controller = isset($url[1]) ? $url[1] : \"welcome\";\n self::$action = isset($url[2]) ? $url[2] : \"index\";\n }\n else\n {\n define(\"SIDE\", \"client\");\n self::$controller = $url[0];\n self::$action = isset($url[1]) ? $url[1] : \"index\";\n }\n }\n else\n {\n define(\"SIDE\", \"client\");\n self::$controller = \"welcome\";\n self::$action = \"index\";\n }\n }", "public function __construct()\n {\n $this->spiltUrl();\n \n // For debug: uncomment the line line bellow.\n // echo \"Controller: {$this->url_controller}, Action: {$this->url_action}\";\n \n // check for controller: is the url_controller NOT empty?\n if ($this->url_controller) {\n // check for cotroller: does such controller exist ?\n if (file_exists(CONTROLLERS_PATH . $this->url_controller . '.php')) {\n // if so then load the file and create this controller\n // example: if the controller is car, then this line would translate into $this->car = new car();\n require CONTROLLERS_PATH . $this->url_controller . '.php';\n $this->url_controller = new $this->url_controller();\n \n // check for method: does such a method exist in the controller ?\n if ($this->url_action) {\n if (method_exists($this->url_controller, $this->url_action)) {\n // call the method and pass the arguments to it\n if (isset($this->url_parameter_3)) {\n $this->url_controller->{$this->url_action}($this->url_parameter_1, $this->url_parameter_2, $this->url_parameter_3);\n } elseif (isset($this->url_parameter_2)) {\n $this->url_controller->{$this->url_action}($this->url_parameter_1, $this->url_parameter_2, $this->url_parameter_3);\n } elseif (isset($this->url_parameter_1)) {\n $this->url_controller{$this->url_action}($this->url_parameter_1);\n } else {\n // if there is no parameter then just call the method without any arguments\n $this->url_controller->{$this->url_action}();\n }\n } else {\n // TODO: implement error check\n // action doesn't match anything in our predefined action (don't have any method in the controller\n // to process the action)\n die('Invalid action');\n }\n } else {\n // there is no action provided. like http://example.com/controll/\n // default/fallback: call the index() method of the selected controller.\n $this->url_controller->index();\n }\n } else {\n // there is no appropiate controller that is requested\n // TODO: implement error page\n die(\"controller doesn't exist.\");\n }\n } else {\n // invalid URL, so simply show home/index\n require CONTROLLERS_PATH . 'index.php';\n $controller = new Index();\n $controller->index();\n }\n }", "function cl_rhbasesreg() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"rhbasesreg\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "public function __construct()\n {\n // create array with URL parts in $url\n $this->splitUrl();\t\t\t\t\n\t\tif ($this->url_controller == '') {$this->url_controller='home';} /* set to default home */\t\t\n\t\t\n // check for controller: does such a controller exist ?\n if (file_exists('./apps/control/' . $this->url_controller . '.php') ) \n\t\t\t{\n\n\t\t\t\trequire './apps/control/' . $this->url_controller . '.php';\t\t\t\t\t\t \n\t\t\t\tif ($this->url_controller == 'report') \n\t\t\t\t{ \n\t\t\t\t\t$this->url_controller = new $this->url_controller(); \n\t\t\t\t\t$this->url_controller->index($this->url_action);\n\t\t\t\t}\n\t\t\t\tif ($this->url_controller == 'home') { \t\t\t\t\n\t\t\t\t\t$this->url_controller = new $this->url_controller(); \n\t\t\t\t\t$this->url_controller->index('home',$this->url_action);\n\t\t\t\t}\n\t\t\t}\n\n\n \n\t\telse\n\t\t{\n\t\t\t\n\t\t\t$this->url_controller = 'home';\n\t\t\t$this->url_action = '404';\t\t\t\n\t\t\trequire './apps/control/' . $this->url_controller . '.php';\t\t\t\t\t\t \n\t\t\t$this->url_controller = new $this->url_controller(); \n $this->url_controller->index('home',$this->url_action);\n\t\t}\n }", "public function __construct()\r\n {\r\n global $IP;\r\n $this->url = \"http://\" . $IP . \"/user/info/update/\";\r\n $this->http = new HttpClass();\r\n $this->InfoGet = new TestUserInfoGet();\r\n }", "function htaccess(){\r\n\t}", "abstract public function url($manipulation_name = '');", "function cl_rhdirfgeracao() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"rhdirfgeracao\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "#[Pure]\n public function getRequestUrl() {}", "public function __construct()\n {\n $this->protocol = api_get_setting('sso_authentication_protocol');\n // There can be multiple domains, so make sure to take only the first\n // This might be later extended with a decision process\n $domains = explode(',', api_get_setting('sso_authentication_domain'));\n $this->domain = trim($domains[0]);\n $this->auth_uri = api_get_setting('sso_authentication_auth_uri');\n $this->deauth_uri = api_get_setting('sso_authentication_unauth_uri');\n //cut the string to avoid recursive URL construction in case of failure\n $this->referer = $this->protocol.$_SERVER['HTTP_HOST'].substr($_SERVER['REQUEST_URI'],0,strpos($_SERVER['REQUEST_URI'],'sso'));\n $this->deauth_url = $this->protocol.$this->domain.$this->deauth_uri;\n $this->master_url = $this->protocol.$this->domain.$this->auth_uri;\n $this->referrer_uri = base64_encode($_SERVER['REQUEST_URI']);\n $this->target = api_get_path(WEB_PATH);\n }", "public function __construct(){\n\t\t\t$this->genLink();\n\t\t}", "public function gett()\n {\n return \"hello from gett\";\n }", "function cl_conplanosis() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"conplanosis\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "function redirect()\n\t {\n\t\t$this->ifExists();\n\t\trequire CTRL.DS.$this->url[0].'.php';\n\t\t$class= ucfirst($this->url[0]);\n\t\t$controller=new $class();\n\t\t$method=\"\";\n\t\tif(isset($this->url[3]))\n\t\t{\n\t\t\t\t$method=$this->url[1];\n\t\t if (method_exists($controller, $this->url[1])) {\n\t\t\t $controller->{$this->url[1]}($this->url[2], $this->url[3]);\n\t\t\t\n\t\t\t $method=new ReflectionMethod($controller,$this->url[1] );\n\n $paramsize= sizeof($method->getParameters());\n\t\t\t \n\t\t\t if($paramsize<1)\n\t\t\t {\n\t\t\t\t \n\t\t\t\t $this->error('Invalid Url');\n\t\t\t\t exit;\n\t\t\t }\n\t\t\t} \n\t\t\telse\n\t\t\t {\n\t\t\t\t$this->error('Invalid methods');\n\t\t\t}\n\t\t}\n\t\telse if(isset($this->url[2]))\n\t\t{\n\t\t\t$method=$this->url[1];\n\t\t if (method_exists($controller, $this->url[1])) {\n\t\t\t $controller->{$this->url[1]}($this->url[2]);\n\t\t\t $method=new ReflectionMethod($controller,$this->url[1] );\n\n $paramsize= sizeof($method->getParameters());\n\t\t\t if($paramsize<1)\n\t\t\t {\n\t\t\t\t \n\t\t\t\t $this->error('Invalid Url');\n\t\t\t\t exit;\n\t\t\t }\n\t\t\t} \n\t\t\telse\n\t\t\t {\n\t\t\t\t$this->error('Invalid methods');\n\t\t\t}\n\t\t}\n\t\telse if(isset($this->url[1]))\n\t\t{\n\t\t\t$method=$this->url[1];\n\t\t\tif(method_exists($class, $method))\n\t\t\t{\n\t\t\t\t$controller->$method();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$this->error(\"METHOD DOES NOT EXIST\");\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$controller->Index();\n\t }\n\t \n\t\n }", "public function __construct() {\n $this->setGetter( new HttpGetter() );\n }", "public function getme(){\n return $this->make_http_request(__FUNCTION__);\n }", "function cl_escrito() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"escrito\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }" ]
[ "0.6246088", "0.62104636", "0.6180162", "0.6079397", "0.60276186", "0.60145605", "0.5975488", "0.59697837", "0.59542394", "0.59474164", "0.592135", "0.58795863", "0.58692807", "0.58498526", "0.5829711", "0.57947385", "0.5782005", "0.57624394", "0.57587624", "0.574976", "0.57311934", "0.5720875", "0.5688396", "0.56853676", "0.56773096", "0.56691414", "0.5662932", "0.5657307", "0.5655406", "0.56508106", "0.5624042", "0.56214905", "0.5620532", "0.560193", "0.55924493", "0.5581018", "0.55785006", "0.5572563", "0.5571739", "0.55654585", "0.5559274", "0.555588", "0.55412173", "0.5540356", "0.5532679", "0.5529887", "0.55251694", "0.55099094", "0.55046886", "0.54931235", "0.54873425", "0.5474378", "0.54692996", "0.5466596", "0.5462459", "0.54602194", "0.54543734", "0.5452663", "0.5449098", "0.5438384", "0.5438384", "0.54365754", "0.54365104", "0.5435797", "0.54274935", "0.5417214", "0.5409509", "0.53974587", "0.53938633", "0.5391358", "0.5390976", "0.53828245", "0.5379759", "0.5375409", "0.5373775", "0.5372845", "0.5367204", "0.53612584", "0.5356531", "0.53563", "0.535626", "0.53507876", "0.5339587", "0.5333136", "0.5331853", "0.5331655", "0.53225434", "0.53149205", "0.53132457", "0.5312917", "0.5309487", "0.5307511", "0.53070205", "0.530356", "0.5301883", "0.52997786", "0.5299505", "0.5296069", "0.5295497", "0.5281629", "0.5279535" ]
0.0
-1
Run the database seeds.
public function run() { Shifts::create( [ "shift"=>0, "time"=>"00:00:00" ] ); Shifts::create( [ "shift"=>1, "time"=>"00:30:00" ] ); Shifts::create( [ "shift"=>2, "time"=>"01:00:00" ] ); Shifts::create( [ "shift"=>3, "time"=>"01:30:00" ] ); Shifts::create( [ "shift"=>4, "time"=>"02:00:00" ] ); Shifts::create( [ "shift"=>5, "time"=>"02:30:00" ] ); Shifts::create( [ "shift"=>6, "time"=>"03:00:00" ] ); Shifts::create( [ "shift"=>7, "time"=>"03:30:00" ] ); Shifts::create( [ "shift"=>8, "time"=>"04:00:00" ] ); Shifts::create( [ "shift"=>9, "time"=>"04:30:00" ] ); Shifts::create( [ "shift"=>10, "time"=>"05:00:00" ] ); Shifts::create( [ "shift"=>11, "time"=>"05:30:00" ] ); Shifts::create( [ "shift"=>12, "time"=>"06:00:00" ] ); Shifts::create( [ "shift"=>13, "time"=>"06:30:00" ] ); Shifts::create( [ "shift"=>14, "time"=>"07:00:00" ] ); Shifts::create( [ "shift"=>15, "time"=>"07:30:00" ] ); Shifts::create( [ "shift"=>16, "time"=>"08:00:00" ] ); Shifts::create( [ "shift"=>17, "time"=>"08:30:00" ] ); Shifts::create( [ "shift"=>18, "time"=>"09:00:00" ] ); Shifts::create( [ "shift"=>19, "time"=>"09:30:00" ] ); Shifts::create( [ "shift"=>20, "time"=>"10:00:00" ] ); Shifts::create( [ "shift"=>21, "time"=>"10:30:00" ] ); Shifts::create( [ "shift"=>22, "time"=>"11:00:00" ] ); Shifts::create( [ "shift"=>23, "time"=>"11:30:00" ] ); Shifts::create( [ "shift"=>24, "time"=>"12:00:00" ] ); Shifts::create( [ "shift"=>25, "time"=>"12:30:00" ] ); Shifts::create( [ "shift"=>26, "time"=>"13:00:00" ] ); Shifts::create( [ "shift"=>27, "time"=>"13:30:00" ] ); Shifts::create( [ "shift"=>28, "time"=>"14:00:00" ] ); Shifts::create( [ "shift"=>29, "time"=>"14:30:00" ] ); Shifts::create( [ "shift"=>30, "time"=>"15:00:00" ] ); Shifts::create( [ "shift"=>31, "time"=>"15:30:00" ] ); Shifts::create( [ "shift"=>32, "time"=>"16:00:00" ] ); Shifts::create( [ "shift"=>33, "time"=>"16:30:00" ] ); Shifts::create( [ "shift"=>34, "time"=>"17:00:00" ] ); Shifts::create( [ "shift"=>35, "time"=>"17:30:00" ] ); Shifts::create( [ "shift"=>36, "time"=>"18:00:00" ] ); Shifts::create( [ "shift"=>37, "time"=>"18:30:00" ] ); Shifts::create( [ "shift"=>38, "time"=>"19:00:00" ] ); Shifts::create( [ "shift"=>39, "time"=>"19:30:00" ] ); Shifts::create( [ "shift"=>40, "time"=>"20:00:00" ] ); Shifts::create( [ "shift"=>41, "time"=>"20:30:00" ] ); Shifts::create( [ "shift"=>42, "time"=>"21:00:00" ] ); Shifts::create( [ "shift"=>43, "time"=>"21:30:00" ] ); Shifts::create( [ "shift"=>44, "time"=>"22:00:00" ] ); Shifts::create( [ "shift"=>45, "time"=>"22:30:00" ] ); Shifts::create( [ "shift"=>46, "time"=>"23:00:00" ] ); Shifts::create( [ "shift"=>47, "time"=>"23:30:00" ] ); Shifts::create( [ "shift"=>48, "time"=>"24:00:00" ] ); }
{ "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
Display a listing of the resource.
public function index() { $contatos = FaleConosco::orderByDesc('created_at')->paginate(); return view('admin.fale-conosco.index', compact('contatos')); }
{ "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() { // }
{ "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->request->all(); $validator = $this->validator($data); if($validator->fails()) { return back()->withErrors($validator)->withInput(); } FaleConosco::create($data); flash('Mensagem envida com sucesso.')->success()->important(); return redirect()->route('fale_conosco'); }
{ "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) { // }
{ "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(Form $form)\n {\n //\n }", "public function edit()\n { \n return view('admin.control.edit');\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(form $form)\n {\n //\n }", "public function actionEdit($id) { }", "public function edit()\n {\n return view('catalog::edit');\n }", "public function edit()\n {\n return view('catalog::edit');\n }", "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($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($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(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()\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 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 edit(Form $form)\n {\n return view('admin.forms.edit', compact('form'));\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 $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($articulo_id)\n {\n $titulo = \"Editar\";\n return View(\"articulos.formulario\",compact('titulo','articulo_id'));\n }", "public function edit($id)\n {\n return view('cataloguemodule::edit');\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 editAction()\n {\n View::renderTemplate('Profile/edit.html', [\n 'user' => $this->user\n ]);\n }", "public function edit()\n {\n return view('initializer::edit');\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_person($person_id){\n \t$person = Person::find($person_id);\n \treturn view('resource_detail._basic_info.edit',compact('person'));\n }", "public function edit(Question $question)\n {\n $edit = TRUE;\n return view('questionForm', ['question' => $question, 'edit' => $edit ]);\n }", "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) {\n\t\t$viewModel = new PersonFormViewModel();\n\t\treturn view('person.form', $viewModel);\n\t}", "public function edit($id)\n {\n $data = Restful::find($id);\n return view('restful.edit', compact('data'));\n }", "public function edit($id)\n {\n $professor = $this->repository->find($id);\n return view('admin.professores.edit',compact('professor'));\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.7855196", "0.76957726", "0.7273917", "0.7241426", "0.71717227", "0.7064183", "0.70528984", "0.69836885", "0.694763", "0.69469565", "0.6941572", "0.69301945", "0.6903868", "0.68989486", "0.68989486", "0.68787694", "0.68641657", "0.6860115", "0.6857286", "0.68464494", "0.6834566", "0.68116575", "0.68075293", "0.6805924", "0.6801357", "0.6796291", "0.67915684", "0.67915684", "0.67874014", "0.678544", "0.67787844", "0.6777662", "0.67675763", "0.676299", "0.6746726", "0.6745706", "0.67450166", "0.67450166", "0.6739429", "0.6734577", "0.6725992", "0.67127997", "0.6694406", "0.6692487", "0.6689421", "0.66884303", "0.6687299", "0.6685663", "0.6682167", "0.66701853", "0.66697115", "0.6666091", "0.6666091", "0.66627705", "0.6661716", "0.6661522", "0.6657919", "0.6656454", "0.6653187", "0.6642113", "0.66332614", "0.66324973", "0.66275465", "0.66275465", "0.6619777", "0.6619387", "0.6617973", "0.66154003", "0.66110945", "0.6607966", "0.66065043", "0.6596376", "0.65953517", "0.65941286", "0.6591486", "0.6590759", "0.6588404", "0.658161", "0.6580548", "0.6579757", "0.6577171", "0.65761065", "0.657386", "0.65686774", "0.6567784", "0.65672046", "0.6566417", "0.65615803", "0.65615714", "0.65615714", "0.65592474", "0.65586483", "0.65568006", "0.6556628", "0.65564895", "0.6555322", "0.65551996", "0.6555016", "0.654888", "0.65477645", "0.65451735" ]
0.0
-1
Update the specified resource in storage.
public function update(Request $request, $id) { // }
{ "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($id) { // }
{ "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
Adds a header parameter
public function addHeader(string $name, string $value = null) { if (!is_null($value)) { return $this->set('headers', $name, $value); } return $this->set('headers', $name, null); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function addHeader($header);", "public function addHeader($name, $value);", "public function addHeader($name, $value);", "public function addHeader()\n {\n }", "public function setHeader($header = null, $value=null)\n{\n if($header && !is_null($value))\n {\n $header .= ': '. $value;\n }\n array_push($this->headers, $header);\n}", "function addHeader( $header )\n\t\t{\n\t\t\tif( is_string( $header ))\n\t\t\t{\n\t\t\t\t$this->_requestHeaders[] = (string) $header;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tthrow new \\System\\Base\\InvalidArgumentException(\"Argument 1 passed to \".get_class($this).\"::setRequestHeader() must be a string\");\n\t\t\t}\n\t\t}", "public function add_header( $header )\n\t{\n\t\tif ( is_array( $header ) ) {\n\t\t\t$this->headers = array_merge( $this->headers, $header );\n\t\t}\n\t\telse {\n\t\t\tlist( $k, $v )= explode( ': ', $header );\n\t\t\t$this->headers[$k] = $v;\n\t\t}\n\t}", "public function add_header() {\n }", "public function addHeader ($param, $content)\n {\n $this->header[$param] = $content;\n }", "public function header($header)\n {\n $this->headers[] = $header;\n }", "public static function addHeader($header)\n {\n self::$headers[] = $header;\n }", "public function addHeader($header){\n\t\theader($header);\n\t}", "public function add_header($key, $value)\n {\n }", "public function set_header($header, $value);", "function httpHeader($header) {\r\n\t\t$this->customHeaders[] = $header;\r\n\t}", "public function setHeader($header);", "public static function addHeader($header)\n {\n self::$legacyHeaders[] = $header;\n }", "public static function addHeader($header)\n {\n header($header, false);\n }", "function addHeader( $headerName, $headerValue )\r\n\t{\r\n\t\tif( $this->debug & DBGTRACE ) echo \"addHeader( $headerName, $headerValue )\\n\";\r\n\t\t$this->requestHeaders[$headerName] = $headerValue;\r\n\t}", "public function addHeader($header)\n\t{\n\t\theader($header);\n\t}", "public function addHeader($header, $value) {\n\t\t$this->mail['Headers'][] = array('Name' => $header, 'Value' => $value);\n\t}", "public function addHeader($name, $value) {\n $this->customHeader[$name]= $value;\n }", "public function withAddedHeader($name, $value)\n {\n }", "public function withAddedHeader($name, $value)\n {\n }", "public function withHeader($name, $value)\n {\n }", "public function addRequestHeader($key, $value)\r\r\n {\r\r\n $this->requestHeaders[$key] = $value;\r\r\n }", "public function set_header($header, $value)\n {\n }", "public function addHeader(string $header, string $value)\n {\n $this->mailObj->addCustomHeader($header, $value);\n }", "public function setHeader($name, $value) {}", "public function setHeader($name, $value);", "public function setHeader($name, $value);", "public function set_header($header, $value)\r\n {\r\n $this->headers[$header] = $value;\r\n }", "public function addHeader($key, $value, $type)\n {\n }", "public function addRequestHeader($key, $value)\n {\n $this->headers[$key] = $value;\n }", "public function setHeader($header, $value) {\r\n $this->headers[$header] = $value;\r\n }", "public function setHeader(PoHeader $header) {\n }", "public function setHeader(string $header_name, string $header_value): void;", "public function headerCallback($arrAdd);", "public function setHeader($header, $value)\r\n {\r\n $this->_headers[$header] = $value;\r\n }", "function setHeader($header)\t{\n\t\tif(isset($header))\t{\n\t\t\tcurl_setopt($this->ch, CURLOPT_HTTPHEADER, $header);\n\t\t}\n\t\telse {\n\t\t\techo \"** Expecting header.\\n\";\n\t\t}\n\t}", "abstract public function header($name, $value);", "public function setHeader($header)\n {\n $this->_header = $header;\n }", "public function addHeader($key, $value)\n {\n $this->headers[$key] = $value;\n }", "public function addHeader(string $header) {\n\t\t$this->headers[] = $header;\n\n\t\treturn $this;\n\t}", "public function addHeader($key, $value) {\r\n $this->headers[$key] = $value;\r\n }", "public function addAmfHeader(Value\\MessageHeader $header);", "public function setHeader( $header, $value = NULL )\n\t{\n\t\tif ( is_array( $header ) ) {\n\t\t\t$this->headers = array_merge( $this->headers, $header );\n\t\t}\n\t\telse {\n\t\t\t$this->headers[$header] = $value;\n\t\t}\n\t}", "function addHeaderLine($name, $value) {\n\t\t$this->headerLines [$name] = $value;\n\t}", "public function addHeader($name, $value)\n {\n $this->_headers[$name] = $value;\n }", "function add_header($key, $value) {\n $this->headers[$key] = $value;\n return $this;\n }", "public function addHeader($header) {\n\t\t$this->headers .= $header.\"\\n\";\n\n\t\treturn $this;\n\t}", "function set_header_line($param, $value){\n\t\t$r = '';\n\t\tif($param != '' && $value != ''){\n\t\t\t$r = $param.': '.$value;\n\t\t\t$r .= $this->eol;\n\t\t}\n\t\treturn $r;\n\t}", "function setHeader($a_sHeader)\n {\n $this->_sHeader = (string) $a_sHeader;\n $this->setSearchParameter('header', $this->_sHeader);\n }", "public function addHeaders($headers) {}", "public function addHeader($name, $value)\n {\n $this->getRequest()->addHeader($name, $value);\n }", "public function testGetParameterFromHeader(): void\n {\n // setup\n Layer::setAllHeaders([\n 'Custom-Header' => 'header value'\n ]);\n\n $requestParams = $this->getRequestParamsMock();\n\n // test body\n /** @var string $param */\n $param = $requestParams->getParam('Custom-Header');\n\n // assertions\n $this->assertEquals('header value', $param, 'Header value must be fetched but it was not');\n }", "public function addHeader($header): CuxMailer{\n $this->_headers[] = $header;\n return $this;\n }", "public function setHeaders(array $header) {}", "public function addHeader(string $name, string $value)\n {\n $this->headers[$name] = $value;\n }", "static public function addAdditionalHeader($new_header) {\n\t\tif (is_array($new_header)) {\n\t\t\tself::$additional_headers = array_merge(self::$additional_headers, $new_header);\n\t\t} else {\n self::$additional_headers[] = (string)trim($new_header);\n }\n\t}", "public function setHeader($headerName, $headerValue);", "public static function setHeader($name, $value = null, $replace = null) {}", "public function addHeader($header, $value): Request\n {\n $this->outputHeaders[$header] = $value;\n\n return $this;\n }", "public function withAddedHeader($name, $value)\r\n {\r\n // TODO: Implement withAddedHeader() method.\r\n }", "public function set_header($key, $value)\n {\n }", "public function add_headers($header)\n\t{\n\t\tif (is_string($header)) \n\t\t\t$this->headers[] = $header;\n\n\t\treturn $this;\n\t}", "function setHeader($headerName, $headerValue){ \n if(!isset($this->requestHeaders)){\n $this->requestHeaders = array($headerName => $headerValue);\n }else{\n if (array_key_exists ($headerName, $this->requestHeaders )){\n $this->requestHeaders[$headerName] = array_merge($this->requestHeaders[$headerName],$headerValue);\n }else{\n $this->requestHeaders[$headerName] = $headerValue;\n }\n \n }\n $headers = array();\n foreach($this->requestHeaders as $key => $values){\n array_push($headers, new SoapHeader(\"urn:QueryService2\", $key, new SoapVar($values, SOAP_ENC_OBJECT),false));\n } \n \n $this->soapHeaders = $headers;\n\t}", "public function setHeader($key,$val){ return $this->headers->set($key,$val); }", "public function addHeader(string $headerName, string $headerValue): void\n {\n self::$headers[$headerName] = $headerValue;\n }", "public function addCustomHeader($name, $value = null)\n {\n }", "static public function setAdditionalHeader($new_header) {\n\t\tif (is_string($new_header)) {\n\t\t\tself::$additional_headers = array($new_header);\n\t\t}\n\t\tself::$additional_headers = (array)$new_header;\n\t}", "public function & addHeader( $a_header )\r\n\t{\r\n\t\t$h = null;\r\n\t\tswitch(func_num_args())\r\n\t\t{\r\n\t\t\tcase 1:\r\n\t\t\t\t$h = new ZHeader(func_get_arg(0));\r\n\t\t\t\tbreak;\r\n\r\n\t\t\tcase 2:\r\n\t\t\t\t$h = new ZHeader(func_get_args());\r\n\t\t\t\tbreak;\r\n\t\t}\r\n\r\n\t\tif($h)\r\n\t\t\t$this->m_headers[trim(strtolower($h->getKey()))] = $h;\r\n\r\n\t\treturn $this;\r\n\t}", "public function withHeader($name, $value)\r\n {\r\n // TODO: Implement withHeader() method.\r\n }", "public function iSetHeaderWithValue($name, $value)\n {\n $this->addHeader($name, $value);\n }", "public function iSetHeaderWithValue($name, $value)\n {\n $this->addHeader($name, $value);\n }", "public function iSetHeaderWithValue($name, $value)\n {\n $this->addHeader($name, $value);\n }", "public function append_header(string $p_name, ?string $p_value) {\n $origName = $this->get_header_name($p_name);\n\n if (array_key_exists($origName, $this->headers)) {\n\n if (!in_array($p_value, $this->headers[$origName], true)) {\n $this->headers[$origName] = $p_value;\n }\n } else {\n $this->set_header($p_name, $p_value);\n }\n\n }", "protected function header(string $header, string $value, bool $replace = true)\n {\n if ($replace) {\n $this->headers[$header] = [];\n }\n\n $this->headers[$header][] = $value;\n }", "public function withAddedHeader($name, $value)\n {\n // TODO: Implement withAddedHeader() method.\n }", "function SetHeader()\n\t{\n\t\tif (!func_num_args())\n\t\t{\n\t\t\t// No parameters were passed\n\t\t\treturn NULL;\n\t\t}\n\t\t\n\t\t// Store the header values\n\t\t$this->_arrHeader = func_get_args();\n\n\t\treturn $this->_arrHeader;\n\t}", "public function addToHeader(string $header, string $content): ResponseInterface;", "function setHeader($string)\n {\n if (!empty($this->header))\n {\n $this->header .= $string;\n }\n else \n {\n $this->header = $string;\n }\n }", "public function addHeader($name, $value)\n {\n // normalize header names in case of 'Content-type' into 'Content-Type'\n $name = str_replace(' ', '-', ucwords(str_replace('-', ' ', $name)));\n\n $this->headers[$name] = $value;\n }", "protected function add_header($name, $value)\n\t{\n\t\tforeach ($this->_headers as $k=>$v) {\n\t\t\tif (strtolower($k) == strtolower($name)) {\n\t\t\t\t$this->_headers[$k] = $value;\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\t$this->_headers[$name] = $value;\n\t}", "public function withHeader($name, $value)\n {\n // TODO: Implement withHeader() method.\n }", "public static function setHeader($header)\n {\n header($header, true);\n }", "public function header($string)\n\t{\n\t\t$this->headers[] = $string;\n\t}", "public function setHeader($name, $value) {\n\t\t$this->headers[$name] = $value;\n\t}", "public function setHeader($attribute, $value);", "public function header( $key, $value = null ) {\n\t\tself::$_headers->header( $key, $value );\n\t}", "public function addHeader(string $headerKey, string $headerValue)\n {\n $this->headers[] = $headerKey . ': ' . $headerValue;\n }", "public function addCustomHeader($name, $value = null)\n {\n if ($value === null) {\n // Value passed in as name:value\n $this->CustomHeader[] = explode(':', $name, 2);\n } else {\n $this->CustomHeader[] = array($name, $value);\n }\n }", "public function setHttpHeader($name, $value = null);", "function setHeader($name,$value = \"\"){\n\t\tsettype($name,\"string\");\n\t\tsettype($value,\"string\");\n\n\t\tif($value==\"\" && preg_match('/^([a-z0-9-]+):\\s?(.+)/i',$name,$matches)){\n\t\t\t$name = $matches[1];\n\t\t\t$value = $matches[2];\n\t\t}\n\n\t\tif(strtolower($name)==\"content-type\"){\n\t\t\t$this->setContentType($value);\n\t\t\treturn;\n\t\t}\n\n\t\t// pokud uz tato header existuje, smazeme ji\n\t\tforeach(array_keys($this->_Headers) as $_key){\n\t\t\tif(strtoupper($_key)== strtoupper($name)){\n\t\t\t\tunset($this->_Headers[$_key]);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\tif(strlen($value)==0){\n\t\t\treturn;\n\t\t}\n\n\t\t$this->_Headers[$name] = $value;\n\t}", "public function setHeader($header) {\n $this->gz = (is_array($header) && in_array(\"Accept-Encoding: gzip\",$header));\n\n return curl_setopt($this->ch,CURLOPT_HTTPHEADER,$header);\n }", "protected function setHeader(){\n $this->header = [\n 'Auth-id' => $this->username,\n 'Auth-token' => $this->generateToken(),\n 'Timestamp' => time()\n ];\n }", "public function addHeader($name,$value){\n $_SERVER['HTTP_'.strtoupper(str_replace('-','_',$name))]=$value;\n return $this;\n }", "protected function header($header) {\r\n\t\theader($header);\r\n\t}", "public function addHeaders(array $headers) {}", "public function addHeader($name, $value)\n {\n if (!is_array($value)) {\n $this->headers[$name][] = $value;\n } else {\n $values = isset($this->headers[$name]) ? $this->headers[$name] : array();\n $this->headers[$name] = $values + $value;\n }\n }" ]
[ "0.8166975", "0.77107227", "0.77107227", "0.7663986", "0.7597182", "0.7557023", "0.75161093", "0.7508732", "0.7501712", "0.7491212", "0.7343465", "0.73419607", "0.73210216", "0.7253538", "0.7240446", "0.7239857", "0.72092545", "0.7133277", "0.71212727", "0.7105096", "0.7045226", "0.70015067", "0.699874", "0.699874", "0.6989037", "0.69430166", "0.69311756", "0.69262785", "0.69167286", "0.69105643", "0.69105643", "0.68782365", "0.6877555", "0.6868812", "0.68141973", "0.67841333", "0.6767544", "0.6766985", "0.67581975", "0.6758072", "0.6740547", "0.6735235", "0.6734809", "0.6714021", "0.6710114", "0.6699912", "0.6687496", "0.66847825", "0.66618663", "0.6655598", "0.6652429", "0.664335", "0.6634619", "0.66176534", "0.6605764", "0.6576057", "0.6553541", "0.6550116", "0.65457255", "0.65393335", "0.6527987", "0.65149426", "0.64926404", "0.64749795", "0.6472465", "0.64660555", "0.64659953", "0.64625394", "0.6459363", "0.6453368", "0.64505005", "0.6449468", "0.6449319", "0.6428732", "0.6428732", "0.6428732", "0.64154875", "0.63808024", "0.6363366", "0.63619536", "0.6358909", "0.6338027", "0.63311285", "0.63281256", "0.63281006", "0.6326633", "0.63068366", "0.629153", "0.62368256", "0.6229653", "0.6220834", "0.6215801", "0.61884266", "0.6180658", "0.61769056", "0.6175847", "0.6152198", "0.6139532", "0.61201787", "0.61181813" ]
0.6134667
98
Returns either the header value given the name or the all headers
public function getHeaders(string $name = null) { if (is_null($name)) { return $this->get('headers'); } return $this->get('headers', $name); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getHeader($name) {\r\n\t\t$name = $this->_normalizeHeader ( $name );\r\n\t\tforeach ( $this->headers as $header ) {\r\n\t\t\tif ($header ['name'] == $name) {\r\n\t\t\t\treturn $header ['value'];\r\n\t\t\t}\r\n\t\t}\r\n\t}", "public function header($name) {\n return isset($this->headers[$name])? $this->headers[ucfirst($name)] : null;\n }", "function getHeader($name){\n\t\t$name = strtoupper($name);\n\t\tforeach(array_keys($this->_Headers) as $_key){\n\t\t\tif(strtoupper($_key)== strtoupper($name)){\n\t\t\t\treturn $this->_Headers[$_key];\n\t\t\t}\n\t\t}\n\t}", "public function getHeader($name) {\n if (!$this->headers->hasHeader($name)) {\n return null;\n }\n\n $header = $this->headers->getHeader($name);\n\n if (!is_array($header)) {\n return $header->getValue();\n }\n\n $values = array();\n foreach ($header as $h) {\n $values[] = $h->getValue();\n }\n\n return $values;\n }", "public function getHeader(string $name): string;", "public function getHeader($name)\r\n {\r\n $name = strtolower($name);\r\n if ($this->hasHeader($name)) {\r\n return $this->headers[$name];\r\n }\r\n return NUll;\r\n }", "private function header($name = '')\r\n {\r\n static $header = null;\r\n\r\n if (is_null($header)) {\r\n $header = [];\r\n $server = $_SERVER;\r\n\r\n foreach ($server as $key => $val) {\r\n if (0 === strpos($key, 'HTTP_')) {\r\n $key = str_replace('_', '-', strtolower(substr($key, 5)));\r\n $header[$key] = $val;\r\n }\r\n }\r\n\r\n if (isset($server['CONTENT_TYPE'])) {\r\n $header['content-type'] = $server['CONTENT_TYPE'];\r\n }\r\n\r\n if (isset($server['CONTENT_LENGTH'])) {\r\n $header['content-length'] = $server['CONTENT_LENGTH'];\r\n }\r\n\r\n $header = array_change_key_case($header);\r\n }\r\n\r\n if ('' === $name) {\r\n return $header;\r\n }\r\n\r\n $name = str_replace('_', '-', strtolower($name));\r\n\r\n return $header[$name] ?? null;\r\n }", "public function getHeader($name)\n {\n if (preg_match('/^'.$name.': (.*)$/m',$this->response,$result))\n {\n return trim($result[1]);\n }\n else\n {\n return false;\n }\n }", "public function getHeader($name)\n {\n if (preg_match('/^'.$name.': (.*)$/m',$this->response,$result))\n {\n return trim($result[1]);\n }\n else\n {\n return false;\n }\n }", "public function get($name) {\n\n\t\treturn (isset($this->_headers[$name]) ? $this->_headers[$name] : false);\n\t}", "public function header($name = null)\n {\n if ($name === null) {\n return $this->_getHeaders();\n }\n $header = $this->getHeader($name);\n if (count($header) === 1) {\n return $header[0];\n }\n\n return $header;\n }", "public function getHeader($name);", "public function getHeader(string $name);", "public function header($name = null) {\n\t\t\tif($name === null) {\n\t\t\t\treturn $this->headers;\n\t\t\t} elseif(array_key_exists($name, $this->headers)) {\n\t\t\t\treturn $this->headers[$name];\n\t\t\t} else {\n\t\t\t\treturn null;\n\t\t\t}\n\t\t}", "public function __get($name)\n {\n $name = strtolower(preg_replace('/([A-Z])/', '-$1', $name));\n\n return isset($this->headers[$name]) ? $this->headers[$name] : NULL;\n }", "public function header($name)\n\t{\n\t\treturn isset($this->_headers[$name]) ? $this->_headers[$name] : null;\n\t}", "public function getHeader($name)\n {\n if (isset($this->headers[$name])) {\n return $this->headers[$name];\n }\n }", "public function getHeader($name, $treatAsSingle = true)\n {\n $value = null;\n\n if (!empty($this->headers[$name])) {\n if ($treatAsSingle) {\n $value = reset($this->headers[$name]);\n } else {\n $value = $this->headers[$name];\n }\n }\n\n return $value;\n }", "public function getHttpHeader($name = null);", "public function getHeader($name)\n {\n $name = strtolower($name);\n\n return array_key_exists($name, $this->headers) ? $this->headers[$name] : null;\n }", "public function header($name, $value = null) {\n // set various headers at once\n if (is_array($name)) {\n foreach ($name as $h => $v) {\n $this->header($h, $v);\n }\n return null;\n }\n // set one header\n if (func_num_args() > 1) {\n $this->headers[$name] = $value;\n return $this->headers[$name];\n }\n // get one header\n if (isset($this->headers[$name])) {\n return $this->headers[$name];\n }\n return false;\n }", "public function header($name)\n\t{\n\t\t$origName = $this->getHeaderName($name);\n\n\t\tif (! isset($this->headers[$origName]))\n\t\t{\n\t\t\treturn null;\n\t\t}\n\n\t\treturn $this->headers[$origName];\n\t}", "public function getHeaderRaw(string $name): string;", "public function getHeader($name = null) {}", "protected function searchHeader($name)\n {\n $keysHeader = array_keys($this->headers);\n $index = array_search(strtolower($name), array_map('strtolower', $keysHeader));\n\n return false !== $index ? $keysHeader[$index] : $index;\n }", "public static function getHeader($name = null) {}", "public function getHeader(string $name, mixed $default = null): mixed;", "public function getHeader($name)\n {\n }", "public function getHeader($name)\n {\n }", "public function getHeader($name, $default = false) {\n\n $name = $this->_getCaseInsensitiveName($name);\n\n if(!$this->has($name)) {\n return $default;\n }\n\n return $this->get($name);\n\n }", "public function header($name, $value = null)\n {\n if (!is_null($value)) {\n $this->headers->set($name, $value);\n }\n\n return $this->headers->get($name);\n }", "public function getHeaderField(string $name)\n {\n if (isset($this->header[$name])) {\n return $this->header[$name];\n }\n\n return null;\n }", "public function getHeader($header)\n {\n foreach ($this->headers as $key => $value)\n {\n if (str_replace('-', '_', strtolower($key)) == str_replace('-', '_', strtolower($header)))\n {\n return $value;\n }\n }\n }", "public function getHeader($name)\n {\n assert(is_string($name));\n\n $name = strtolower($name);\n\n if (isset($this->_headers[$name])) {\n return $this->_headers[$name];\n }\n\n return null;\n }", "public function getHeaders($name = ''){\n if($name) {\n return isset($this->headers[$name]) ? $this->headers[$name] : '';\n }\n else {\n return $this->headers;\n }\n }", "public function getHeader($name)\r\n {\r\n // TODO: Implement getHeader() method.\r\n }", "public function getHeader(string $header): string;", "public function header($name)\n {\n return $this->connection->header($name);\n }", "function getHeader( $headername )\r\n\t{\r\n\t\tif( $this->debug & DBGTRACE ) echo \"getHeaderName( $headername )\\n\";\r\n\t\treturn $this->responseHeaders[$headername];\r\n\t}", "public function header($name, $default = null) {\n\t\t$r = $this->getHeader($name);\n\t\treturn $r === null ? $default : $r;\n\t}", "public function getResponseHeader($name = NULL, $default= NULL){\n\t\treturn $this->response->getHeader($name, $default);\n\t}", "public function getHeader($name)\n {\n // TODO: Implement getHeader() method.\n }", "public function getHeader(string $name)\n\t{\n\t\treturn $this->header($name);\n\t}", "public function getHeader($name, $default = \"\") {\n\t\tif (!isset($this->headers[$name])) {\n\t\t\treturn $default;\n\t\t}\n\n\t\treturn $this->headers[$name];\n\t}", "public function getHeader($headerName);", "public function get($name, $returnArray = false)\n\t{\n\t\t$nameLower = strtolower($name);\n\n\t\tif (isset($this->headers[$nameLower]))\n\t\t{\n\t\t\tif ($returnArray)\n\t\t\t{\n\t\t\t\treturn $this->headers[$nameLower][\"values\"];\n\t\t\t}\n\n\t\t\treturn $this->headers[$nameLower][\"values\"][0];\n\t\t}\n\n\t\treturn null;\n\t}", "public function getHeader($name)\n {\n $lines = $this->getHeaderLines($name);\n\n if (!empty($lines)) {\n return implode(', ', $lines);\n } else {\n return null;\n }\n\n }", "public function get_header(string $p_name) {\n $orig_name = $this->get_header_name($p_name);\n\n return $this->headers[$orig_name] ?? null;\n\n }", "public function getHeader($name = NULL, $default = NULL) {\n\t\tif ($name != NULL) {\n\t\t\treturn array_key_exists($name, $this->headers) ? $this->headers[$name] : $default;\n\t\t}\n\t\treturn $this->headers;\n\t}", "function get_header($name = \\null, $args = array())\n {\n }", "public function getHeader($name)\n {\n $key = $this->searchHeader($name);\n if (false !== $key) {\n return $this->headers[$key];\n }\n\n return [];\n }", "public function getHeader($name)\r\n\t{\r\n\t\tif (isset($this->parts[1])) {\r\n\t\t\t$headers = $this->getPartHeaders($this->parts[1]);\r\n\t\t\tif (isset($headers[$name])) {\r\n\t\t\t\treturn $headers[$name];\r\n\t\t\t}\r\n\t\t} else {\r\n\t\t\tthrow new RuntimeException('Parser::setPath() or Parser::setText() must be called before retrieving email headers.');\r\n\t\t}\r\n\t\treturn false;\r\n\t}", "#[Pure]\n public function getResponseHeader($name = null) {}", "function getresponseheader($header = false){\n $headers = $this->getLastResponseHeaders();\n foreach ($headers as $head){\n if ( is_integer(strpos ($head, $header) )){\n $hstart = strpos ($head, \": \");\n $head = trim(substr($head,$hstart+2,100));\n return $head;\n }\n }\n }", "public function getHeader(string $name): string\n {\n if (!isset($this->headers[$name])) {\n throw new OutOfBoundsException(sprintf(\"Header %s doesn't exists\", $name));\n }\n\n return $this->headers[$name];\n }", "public function getHeader($name, $default = null)\n {\n if (isset($this->headers[$name])) {\n return $this->headers[$name];\n } else {\n return $default;\n }\n }", "public function getValueForHeader($header)\n {\n switch ($header){\n case '#':\n return $this->id;\n case 'Fatura':\n return $this->fatura_join()->first()->nome;\n case 'Ordem Serviço':\n return $this->ordem_servico_join()->first()->nome;\n }\n }", "public function getHeader($name, $default = null) {\n\t\t$name = strtolower($name);\n\n\t\treturn isset($this->headers[$name]) ? $this->headers[$name] : $default;\n\t}", "public function GetHeader()\n {\n return $this->HeaderName;\n }", "static function header($name)\n\t{\n\t\t$key = 'HTTP_' . str_replace('-', '_', strtoupper($name));\n\t\tif (isset($_SERVER[$key])) {\n\t\t\treturn $_SERVER[$key];\n\t\t}\n\t\treturn null;\n\t}", "public function header($name, $value = null)\n {\n // Validation\n if (!is_string($name)) {\n throw new \\Exception(sprintf('The function [%s->%s()] was called with an invalid parameter. The $name parameter must be defined a string but instead was defined as type [%s].', __CLASS__, __FUNCTION__, gettype($name)));\n } elseif ($name === '') {\n throw new \\Exception(sprintf('The function [%s->%s()] was called with invalid parameters. The $name parameter defined as an empty string. It must instead be set to a valid header field.', __CLASS__, __FUNCTION__));\n }\n\n // Convert the name to a lower-case string\n $name_lower_case = strtolower($name);\n\n // Validation for Value Variable Type\n $value_is_valid = ($value === null || is_string($value));\n $value_is_valid = ($value_is_valid || ($name_lower_case === 'etag' && $value instanceof \\Closure));\n $value_is_valid = ($value_is_valid || (is_int($value) && ($name_lower_case === 'expires' || $name_lower_case === 'last-modified' || $name_lower_case === 'content-length')));\n if (!$value_is_valid) {\n throw new \\Exception(sprintf('The function [%s->%s()] was called with an invalid parameter. The parameter $value must be either [string|null] for most headers, [string|int|null] for [Expires], [Last-Modified], or [Content-Length] Response Headers, and [string|int|Closure|null] for the [ETag] Response Header. The function was called with the following parameters: $name = [%s], type of $value = [%s]', __CLASS__, __FUNCTION__, $name, gettype($value)));\n }\n\n // First check for exact match, example 'Content-Type'\n $key_exists = false;\n if (isset($this->header_fields[$name])) {\n $key_exists = true;\n }\n\n // If not found perform a case-insensitive search of the array keys\n if (!$key_exists) {\n foreach ($this->header_fields as $key => $data) {\n if (strtolower($key) === $name_lower_case) {\n $name = $key;\n $key_exists = true;\n break;\n }\n }\n }\n\n // Return the header value, clear if '', or set\n if ($value === null) {\n return ($key_exists ? $this->header_fields[$name] : null);\n } elseif ($value === '') {\n unset($this->header_fields[$name]);\n } else {\n $this->header_fields[$name] = $value;\n }\n\n // When setting or clearing return this Response Object Instance\n return $this;\n }", "public function getHeader($name,$defaultValue=null){\n\t\treturn isset($_SERVER[$name])? $_SERVER[$name] : $defaultValue;\n\t}", "public function getHttpHeader($name, $default = null)\n {\n $name = $this->normalizeHeaderName($name);\n\n return isset($this->headers[$name]) ? $this->headers[$name] : $default;\n }", "private function get_header_id_by_header_name($header_name) {\n\n /**\n * Search for cached items\n */\n $cache_key = \"HEADERS_LOOKUP\";\n $headers = $this->get_cache($cache_key);\n if (is_array($headers) && array_key_exists($header_name, $headers)) {\n return $headers[$header_name];\n }\n\n /**\n * Not found - cache 'dbmail_headername' lookup table\n */\n $sql = \"SELECT * \"\n . \"FROM dbmail_headername \";\n\n $res = $this->dbmail->query($sql);\n\n $headers = array();\n while ($row = $this->dbmail->fetch_assoc($res)) {\n $headers[$row['headername']] = $row['id'];\n }\n\n /**\n * Cache headers lookup\n */\n $this->update_cache($cache_key, $headers);\n\n /**\n * return result\n */\n return (is_array($headers) && array_key_exists($header_name, $headers) ? $headers[$header_name] : FALSE);\n }", "public function getHeader();", "public function getHeader();", "public function getHeader();", "public static function getHeader($name,$default=null) {\n\t\t$name = 'HTTP_'.strtoupper(str_replace('-','_',$name));\n\t\tif(isset($_SERVER[$name])) {\n\t\t\treturn $_SERVER[$name];\n\t\t}\n\t\treturn $default;\n\t}", "protected function getHeaderName(string $name): string\n\t{\n\t\treturn $this->headerMap[strtolower($name)] ?? $name;\n\t}", "public function getValueForHeader($header)\n {\n switch ($header){\n case 'ID':\n return $this->id;\n case 'Ponto':\n return $this->title;\n case 'Endereço':\n return $this->address;\n case 'Cidade':\n return $this->city . ' - ' . $this->state;\n }\n }", "public function getHeader($key){\n $key = FW_String::strtolower($key);\n \n if($this->getHeader($key)){\n return $this->header[$key];\n }\n \n return null;\n }", "protected function getHeader($header)\n {\n $this->initialize();\n $header = str_replace('-','_',$header);\n return isset($this->parsed['headers'][$header]) ? $this->parsed['headers'][$header] : null;\n }", "public function getHeader($key) {\r\n $key = strtolower($key);\r\n $tmp = array_change_key_case($this->headers);\r\n if (isset($tmp[$key])) return $tmp[$key];\r\n return false;\r\n }", "public function getHeader(string $name, $default = null) {\n\n return $this->headers[$name] ?? $default;\n }", "public function getHeaderLine($name)\r\n {\r\n $name = strtolower($name);\r\n if ($this->hasHeader($name)) {\r\n return implode(',', $this->headers[$name]);\r\n }\r\n return NUll;\r\n }", "function rc_request_header($name)\n{\n if (function_exists('getallheaders'))\n {\n $hdrs = array_change_key_case(getallheaders(), CASE_UPPER);\n $key = strtoupper($name);\n }\n else\n {\n $key = 'HTTP_' . strtoupper(strtr($name, '-', '_'));\n $hdrs = array_change_key_case($_SERVER, CASE_UPPER);\n }\n\n return $hdrs[$key];\n }", "public function header($headerName)\n {\n $headerName = strtolower(trim($headerName));\n\n return isset($this->headers[$headerName])\n ? $this->headers[$headerName]\n : null;\n }", "public function getHeaderValue();", "public function getHeader($header) {\n\n $normalized = strtolower($header);\n\n if (isset($this->headers[$normalized])) {\n return $this->headers[$normalized]['value'];\n }\n\n return '';\n\n }", "public function getHeader(string $name): string {\n $lines = $this->getHeaderLines($name);\n return implode(',', $lines);\n }", "public function getValueForHeader($header)\n {\n switch ($header) {\n\n\n case \"Descrição\":\n return $this->descricao;\n }\n }", "public function header($key)\n {\n if (isset($this->headers[$key])) {\n return $this->headers[$key];\n }\n return null;\n }", "abstract public function header($name, $value);", "public function get_header($param = null)\n\t{\n\t\treturn\n\t\t\tis_null($param)\n\t\t\t? $this->header_info\n\t\t\t: isset($this->header_info[$param])\n\t\t\t\t? $this->header_info[$param]\n\t\t\t\t: false;\n\t}", "public function hasHeader($name)\n {\n }", "public function hasHeader($name)\n {\n }", "public function header($name = null){\n return Route::headers($name);\n }", "public static function getHeader(ResponseInterface $response, $name)\n {\n $headers = $response->getHeader($name);\n return array_shift($headers);\n }", "public function get_header() {\n\t\tif (!isset($this->header)) {\n\t\t\t$this->get_array();\n\t\t}\n\t\treturn $this->header;\n\t}", "public function getHeader($name = null)\n {\n do_action('get_header', $name);\n $this->getPartial('header', $name);\n }", "public function getHeader($name, $default = false)\n {\n return $this->getHeaders($name, $default);\n }", "function get_header( $name = null ) {\n\t$templates = array();\n\t$name = (string) $name;\n\tif ( '' !== $name ) { $templates[] = \"header-{$name}.php\"; }\n\t$templates[] = 'header.php';\n\tlocate_template( $templates, true );\n}", "public function pickOne( $header )\r\n\t{\r\n\t\tif( is_array( $header ) ) {\r\n\t\t\treturn $header[0];\r\n\t\t}\r\n\t\treturn $header;\r\n\t}", "static function extractHeader($header,$alternate=null)\n {\n if (function_exists('apache_request_headers')) {\n $request_headers = apache_request_headers();\n if (array_key_exists($header, $request_headers)) {\n return $request_headers[$header];\n }else if(!($alternate===null) && array_key_exists($alternate,$request_headers))\n return $request_headers[$alternate];\n } else {\n $request_headers = $_SERVER;\n }\n\n $conv_header = 'HTTP_' . strtoupper(preg_replace('/-/', '_', $header));\n if (array_key_exists($conv_header, $request_headers)) {\n return $request_headers[$conv_header];\n } else {\n if (array_key_exists(strtoupper($header), $request_headers)) {\n return $request_headers[strtoupper($header)];\n } else {\n return '';\n }\n }\n }", "protected function get_header_value($header, $token) {\n\n /*\n * Init header value container\n */\n $header_value = FALSE;\n\n /*\n * Init language / content encoding containers\n */\n $content_encoding = FALSE;\n $content_language = FALSE;\n\n /*\n * Remove any trailing WSP\n */\n $header = trim($header);\n\n /*\n * Unfolding according to RFC 2822, chapter 2.2.3\n */\n $header = str_replace(\"\\r\\n \", \" \", $header);\n $header = str_replace(\"\\r\\n\\t\", \" \", $header);\n\n /*\n * Unfolding with compatibility with some non-standard mailers\n * that only add \\n instead of \\r\\n\n */\n $header = str_replace(\"\\n \", \" \", $header);\n $header = str_replace(\"\\n\\t\", \" \", $header);\n\n /*\n * explode headers on new line\n */\n $rows = explode(\"\\n\", $header);\n\n /*\n * standard delimiter is ':', match '=' only for following properties\n */\n $delimiter = $this->get_header_delimiter($token);\n\n /*\n * convert token to uppercase to perform case-insensitive search\n */\n $ci_token = strtoupper($token);\n\n /*\n * loop each row searching for supplied token\n */\n foreach ($rows as &$row) {\n\n /*\n * trim whitespaces\n */\n $row = trim($row);\n\n /*\n * split row by ';' to manage multiple key=>value pairs within same row\n */\n $items = explode(';', $row);\n\n foreach ($items as &$item) {\n\n $item = trim($item);\n\n /*\n * Parameter Value Continuations\n * \n * Long MIME media type or disposition parameter values do not interact\n * well with header line wrapping conventions. In particular, proper\n * header line wrapping depends on there being places where linear\n * whitespace (LWSP) is allowed, which may or may not be present in a\n * parameter value, and even if present may not be recognizable as such\n * since specific knowledge of parameter value syntax may not be\n * available to the agent doing the line wrapping. The result is that\n * long parameter values may end up getting truncated or otherwise\n * damaged by incorrect line wrapping implementations.\n * \n * A mechanism is therefore needed to break up parameter values into\n * smaller units that are amenable to line wrapping. Any such mechanism\n * MUST be compatible with existing MIME processors. This means that\n * \n * (1) the mechanism MUST NOT change the syntax of MIME media\n * type and disposition lines, and\n * \n * (2) the mechanism MUST NOT depend on parameter ordering\n * since MIME states that parameters are not order\n * sensitive. Note that while MIME does prohibit\n * modification of MIME headers during transport, it is\n * still possible that parameters will be reordered when\n * user agent level processing is done.\n * \n * The obvious solution, then, is to use multiple parameters to contain\n * a single parameter value and to use some kind of distinguished name\n * to indicate when this is being done. And this obvious solution is\n * exactly what is specified here: The asterisk character (\"*\") followed\n * by a decimal count is employed to indicate that multiple parameters\n * are being used to encapsulate a single parameter value. The count\n * starts at 0 and increments by 1 for each subsequent section of the\n * parameter value. Decimal values are used and neither leading zeroes\n * nor gaps in the sequence are allowed.\n * \n * The original parameter value is recovered by concatenating the\n * various sections of the parameter, in order. For example, the\n * content-type field\n * \n * Content-Type: message/external-body; access-type=URL;\n * URL*0=\"ftp://\";\n * URL*1=\"cs.utk.edu/pub/moore/bulk-mailer/bulk-mailer.tar\"\n * \n * is semantically identical to\n * \n * Content-Type: message/external-body; access-type=URL;\n * URL=\"ftp://cs.utk.edu/pub/moore/bulk-mailer/bulk-mailer.tar\"\n * \n * Note that quotes around parameter values are part of the value\n * syntax; they are NOT part of the value itself. Furthermore, it is\n * explicitly permitted to have a mixture of quoted and unquoted\n * continuation fields.\n * \n * \n * \n * =================================================================\n * \n * \n * Combining Character Set, Language, and Parameter Continuations\n * \n * Character set and language information may be combined with the\n * parameter continuation mechanism. For example:\n * \n * Content-Type: application/x-stuff\n * title*0*=us-ascii'en'This%20is%20even%20more%20\n * title*1*=%2A%2A%2Afun%2A%2A%2A%20\n * title*2=\"isn't it!\"\n * \n * Note that:\n * \n * (1) Language and character set information only appear at\n * the beginning of a given parameter value.\n * \n * (2) Continuations do not provide a facility for using more\n * than one character set or language in the same\n * parameter value.\n * \n * (3) A value presented using multiple continuations may\n * contain a mixture of encoded and unencoded segments.\n * \n * (4) The first segment of a continuation MUST be encoded if\n * language and character set information are given.\n * \n * (5) If the first segment of a continued parameter value is\n * encoded the language and character set field delimiters\n * MUST be present even when the fields are left blank.\n * \n * https://tools.ietf.org/html/rfc2231\n */\n\n \n // filename*=UTF-8''Sito%20Feste%20dell%E2%80%99unita%CC%80.docx\n // filename*0*=UTF-8''OVIDIO-TECH-RELAZIONE-DEL-REVISORE-LEGALE-DEI-CONTI-31\n \n // UTF8 decode filename\n if(strpos($item, 'UTF-8') !== false && strpos($item, 'filename') !== false){\n $res = array();\n preg_match('/=UTF-8\\'\\'(.*)$/', $item, $res);\n $item = $res[1];\n $filename_tmp = urldecode($item);\n $item = 'filename=\"'. $filename_tmp . '\"';\n }\n\n if (preg_match(\"/^{$ci_token}\\*0\\*{$delimiter}/i\", $item)) {\n /*\n * - multi-line property\n * - first occurrence\n * - language and encoding supplied (they could be empty though)\n * - must decode value\n * \n * example: title*0*=us-ascii'en'This%20is%20even%20more%20\n */\n list($key, $value) = explode($delimiter, $item, 2);\n\n /*\n * Split content on:\n * 1. content encoding\n * 2. language\n * 3. value\n */\n $exploded = explode(\"'\", $value);\n\n $content_encoding = strtoupper($exploded[0]);\n $content_language = strtoupper($exploded[1]);\n\n $value = implode(\"'\", array_slice($exploded, 2));\n\n /*\n * Content encoding supplied?\n */\n if (strlen($content_encoding) > 0 && $content_encoding != 'UTF-8') {\n $value = mb_convert_encoding($value, 'UTF-8', $content_encoding);\n }\n\n /*\n * Decode ASCII chars (if present)\n */\n $value = urldecode($value);\n } elseif (preg_match(\"/^{$ci_token}\\*\\d\\*{$delimiter}/i\", $item)) {\n\n /*\n * - multi-line property\n * - following occurrence\n * - language and encoding (if any) are supplied within first occurrence\n * - must decode value\n * \n * example: title*1*=%2A%2A%2Afun%2A%2A%2A%20\n */\n list($key, $value) = explode($delimiter, $item, 2);\n\n /*\n * Content encoding supplied?\n */\n if (strlen($content_encoding) > 0 && $content_encoding != 'UTF-8') {\n $value = mb_convert_encoding($value, 'UTF-8', $content_encoding);\n }\n\n /*\n * Decode ASCII chars (if present)\n */\n $value = urldecode($value);\n } elseif (preg_match(\"/^{$ci_token}\\*\\d{$delimiter}/i\", $item)) {\n\n /*\n * - multi-line property\n * - must NOT decode value\n * \n * example: title*2=\"isn't it!\"\n */\n list($key, $value) = explode($delimiter, $item, 2);\n } elseif (preg_match(\"/^{$ci_token}{$delimiter}/i\", $item)) {\n /*\n * - single-line property\n * - must NOT decode value\n * \n * example: title=myTitle\n */\n list($key, $value) = explode($delimiter, $item, 2);\n } else {\n /*\n * Doesn't match!\n */\n continue;\n }\n\n /*\n * remove trailing / leading:\n * - spaces \n * - quotes\n * - double quotes\n * from $value\n */\n $value = trim($value);\n\n if (strlen($value) > 2 && substr($value, 0, 1) == \"'\" && substr($value, -1) == \"'\") {\n $value = trim($value, \"'\");\n } elseif (strlen($value) > 2 && substr($value, 0, 1) == \"\\\"\" && substr($value, -1) == \"\\\"\") {\n $value = trim($value, \"\\\"\");\n }\n\n /*\n * Init header value to empty string (if needed) \n */\n if (strlen($header_value) == 0) {\n $header_value = '';\n }\n\n $header_value .= $value;\n }\n }\n\n return $header_value;\n }", "#[Pure]\nfunction http_match_request_header($header, $value, $match_case = null) {}", "public static function getHeader(ResponseInterface $response, $name)\n {\n $headers = $response->getHeader($name);\n\n return array_shift($headers);\n }", "public static function getHeader(ResponseInterface $response, $name)\n {\n $headers = $response->getHeader($name);\n\n return array_shift($headers);\n }", "public function get(string $name, string $format = Header::FORMAT_RAW)\n {\n\t\tif (!in_array($format, [Header::FORMAT_RAW, Header::FORMAT_ENCODED]))\n\t\t\tthrow new \\InvalidArgumentException(\"Invalid format: \" . $format);\n\n $name = self::normalizeHeader($name);\n if (!isset($this->header_fields[$name]))\n return null;\n\n\t\t$value = $this->header_fields[$name];\n\t\tif ($format === Header::FORMAT_RAW)\n\t\t\treturn $value;\n\n\t\tswitch ($name)\n\t\t{\n case 'From':\n case 'To':\n case 'Reply-To':\n case 'Cc':\n case 'Bcc':\n case 'Sender':\n return $this->getAddress($name, $format);\n case 'Content-Type':\n return $this->getContentType($format);\n case 'Date':\n return $name . ': ' . $value->format('r');\n\t\t\tdefault:\n\t\t\t\treturn $name . ': ' . $this->wrap($value);\n\t\t}\n }", "public function getHeader($headerKey);", "protected function getHeader($headers, $header)\n {\n return empty($headers[$header]) ? '' : $headers[$header];\n }" ]
[ "0.80958045", "0.7657978", "0.7603035", "0.73604316", "0.73467886", "0.72380173", "0.71976876", "0.7190976", "0.7190976", "0.7162746", "0.7128431", "0.71279097", "0.71083957", "0.7102678", "0.7088638", "0.7071271", "0.70474917", "0.70329815", "0.6910702", "0.689678", "0.6851648", "0.68235767", "0.6804096", "0.6794477", "0.6768262", "0.67364466", "0.67280006", "0.67127806", "0.67127806", "0.6689001", "0.6681163", "0.66518146", "0.66268736", "0.66139954", "0.6598616", "0.6597809", "0.6542915", "0.65278584", "0.6526914", "0.6504526", "0.646772", "0.6465081", "0.6463203", "0.64523524", "0.6439561", "0.64321816", "0.6424252", "0.64236104", "0.6408286", "0.64054376", "0.6400653", "0.6381687", "0.637192", "0.63205653", "0.6314333", "0.62886226", "0.6288094", "0.62633955", "0.62141985", "0.619779", "0.6194109", "0.6181392", "0.617367", "0.61732703", "0.61691225", "0.61691225", "0.61691225", "0.61655915", "0.6159369", "0.6156605", "0.613143", "0.61008626", "0.6093487", "0.60879517", "0.60769385", "0.60534173", "0.6031905", "0.60132027", "0.60129464", "0.5998902", "0.59873617", "0.59853286", "0.597633", "0.59735155", "0.5962027", "0.5962027", "0.5961628", "0.5961254", "0.5959733", "0.59559697", "0.59310496", "0.59271884", "0.592142", "0.59195215", "0.5918645", "0.5915405", "0.58967817", "0.58967817", "0.58846", "0.58807135", "0.58793557" ]
0.0
-1
Removes a header parameter
public function removeHeader(string $name) { return $this->remove('headers', $name); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function deleteHeader ($param)\n {\n unset($this->header[$param]);\n }", "public function removeHeader($header)\n {\n if ($this->isHeaderSet($header))\n {\n unset($this->headers[$header]);\n }\n }", "public function remove($header) {\n\n\t\tunset($this->_headers[$header]);\n\t}", "public function withoutHeader($header)\n {\n\n }", "public function removeFromHeader(string $header): ResponseInterface;", "function removeHeader( $headerName ) \r\n\t{\r\n\t\tif( $this->debug & DBGTRACE )\techo \"removeHeader( $headerName) \\n\";\r\n\t\tunset( $this->requestHeaders[$headerName] );\r\n\t}", "public function unSetHeader($header) {\n\t\tforeach($this->headers as $hdr) {\n\t\t\tif(strcasecmp($hdr, $header)==0) {\n\t\t\t\t// remove header\n\t\t\t}\n\t\t}\n\t}", "public function remove_header($key)\n {\n }", "public function remove_header($key)\n {\n }", "function header_remove($name = null)\n{\n HeaderStack::remove($name);\n}", "public function remove_header( $header_entry_key ) {\n // A array key has been passed\n if ( is_numeric( $header_entry_key ) ) {\n \n if ( array_key_exists( $header_entry_key ) )\n unset( $this->headers[ $key ] );\n \n } else {\n $key = array_search ( $header_entry_key, $this->headers );\n \n if ( $key )\n unset( $this->headers[ $key ] );\n }\n }", "public function deleteHeader($name);", "public function removeHeader($directive)\n {\n if ($directive === static::REMOVE_ALL) {\n $this->headers = array();\n } elseif (is_array($directive)) {\n\n foreach($directive as $key) {\n \tif ($this->hasHeader($key)) {\n \t\tunset($this->headers[$key]);\n \t}\n }\n } else {\n\n \tif (isset($this->headers[$directive])) {\n \t\tunset($this->headers[$directive]);\n \t}\n }\n }", "public function removeHeader($name) {\n\n $name = $this->_getCaseInsensitiveName($name);\n $this->remove($name);\n\n }", "public function __unset($param)\r\n {\r\n $this->params_named->remove($param);\r\n }", "function removeHeader() {\n $id = request('id');\n Header::find($id)->delete();\n return back();\n }", "public function remove($parameter);", "function unregister_default_headers($header)\n {\n }", "public function remove(string $header): self\n {\n unset($this->headers[$header]);\n\n return $this;\n }", "public function withoutHeader($name)\n {\n }", "public function withoutHeader($name)\n {\n }", "protected function removeHeader($headerName)\n {\n if (array_key_exists($headerName, $this->headers)) {\n unset($this->headers[$headerName]);\n }\n }", "protected function removeHeader($headerName)\n {\n if (array_key_exists($headerName, $this->headers)) {\n unset($this->headers[$headerName]);\n }\n }", "public function removeHeader($key, $type)\n {\n }", "public function remove($name)\n {\n header_remove($name);\n }", "function clearHeader($name){\n\t\treturn $this->setHeader($name,\"\");\n\t}", "public function remove($key) {\n $key = $this->formatKey($key);\n array_remove($this->headers, $key);\n }", "public static function deleteHeader($key)\n {\n if (self::hasHeader($key)) {\n unset(self::$__headers[strtolower($key)]);\n }\n }", "public function unsetHeader($label)\n {\n if(array_key_exists($label, $this->headers)) \n unset($this->headers[$label]);\n }", "public function dontSeeHeader($header, $value = NULL)\n\t{\n\t\t$headers = $this->getActiveClient()->getInternalResponse()->getHeaders();\n\t\t\n\t\tif ($value !== NULL AND array_key_exists($header, $headers))\n\t\t{\n\t\t\t$this->assertNotEquals($headers[$header], $value);\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->assertArrayNotHasKey($header, $headers);\n\t\t}\n\t}", "public function ajax_header_remove()\n {\n }", "private function unsetHttpHeader(string $name): void\n {\n $headerId = strtolower($name);\n\n if (array_key_exists($headerId, $this->httpHeadersNames)) {\n unset($this->httpHeaders[$this->httpHeadersNames[$headerId]]);\n unset($this->httpHeadersNames[$headerId]);\n }\n }", "public function clearHeaders()\n {\n }", "public function remove(string $key): void\n\t{\n\t\tunset($this->headers[$this->formatKey($key)]);\n\t}", "public function offsetUnset($param)\n\t{\n\t\tunset($this->params[(string) $param]);\n\t}", "public function withoutHeader($name)\r\n {\r\n // TODO: Implement withoutHeader() method.\r\n }", "public function deleteDefaultHeader($headerName) {\n unset($this->defaultHeaders[$headerName]);\n }", "public function withoutHeader($name)\n {\n // TODO: Implement withoutHeader() method.\n }", "public function removeHeader(string $name): self\n\t{\n\t\t$origName = $this->getHeaderName($name);\n\n\t\tunset($this->headers[$origName]);\n\t\tunset($this->headerMap[strtolower($name)]);\n\n\t\treturn $this;\n\t}", "public function deleteDefaultHeader($headerName)\n {\n unset($this->defaultHeaders[$headerName]);\n }", "public final function remove_header_image()\n {\n }", "public function clearHeaders(): void\n {\n self::$headers = [];\n }", "private function removeDuplicateHeader(Headers $headers, $header)\n {\n if ($header instanceof HeaderInterface) {\n // all good\n return;\n }\n\n $headerName = $header[0]->getFieldName();\n $headers->removeHeader($headerName);\n $headers->addHeader($header[0]);\n }", "private function removeHeader($name, array &$options)\n {\n foreach (array_keys($options['_headers']) as $key) {\n if (!strcasecmp($key, $name)) {\n unset($options['_headers'][$key]);\n return;\n }\n }\n }", "function mizzouRemoveXPingbackHeader($aryHeaders){\n if(isset($aryHeaders['X-Pingback'])){\n unset($aryHeaders['X-Pingback']);\n }\n\n return $aryHeaders;\n}", "public function setHeader($header);", "public function setRaw($header) {\n\n\t\t$this->_headers[$header] = null;\n\t}", "public function testRemovingHeaderWorksAndIsNoLongerInTheHeadersArray()\n {\n $inputHeaders = array(\n 'Host' => 'test.mysite.local',\n 'Connection' => 'close'\n );\n $inputHeaderName = 'Connection';\n $mock = new Headers($inputHeaders);\n\n $mock->remove($inputHeaderName);\n $this->assertNull($mock->get($inputHeaderName));\n }", "private function clearParam($param) {\n return str_replace(self::REQUIRED_PARAM,\"\",$param);\n }", "public function testInvalidHeaderName($header)\n {\n $request = new Aspamia_Http_Request('GET', '/');\n $request->setHeader($header);\n }", "public function removeHeader(string $name)\n {\n if (!isset($this->headers[$name])) {\n throw new OutOfBoundsException(sprintf(\"Header %s doesn't exists\", $name));\n }\n\n unset($this->headers[$name]);\n }", "public function delete($name)\n\t{\n\t\t$nameLower = strtolower($name);\n\n\t\tif (isset($this->headers[$nameLower]))\n\t\t{\n\t\t\tunset($this->headers[$nameLower]);\n\t\t}\n\t}", "protected function clearHeaders()\n {\n $this->headers = array();\n }", "function remove_custom_image_header()\n {\n }", "public function deleteAction(Request $request, Header $header)\n {\n $form = $this->createDeleteForm($header);\n $form->handleRequest($request);\n\n if ($form->isSubmitted() && $form->isValid()) {\n $em = $this->getDoctrine()->getManager();\n $em->remove($header);\n $em->flush();\n }\n\n return $this->redirectToRoute('header_show_all');\n }", "public function offsetUnset($offset)\n {\n unset($this->headers[$offset]);\n }", "public function clearCustomHeaders()\n {\n }", "public function setHeaders($header)\n\t{\n\t\treturn array_replace($this->headers,$header);\n\t}", "public function testGetParameterFromHeader(): void\n {\n // setup\n Layer::setAllHeaders([\n 'Custom-Header' => 'header value'\n ]);\n\n $requestParams = $this->getRequestParamsMock();\n\n // test body\n /** @var string $param */\n $param = $requestParams->getParam('Custom-Header');\n\n // assertions\n $this->assertEquals('header value', $param, 'Header value must be fetched but it was not');\n }", "protected function removeHeaders($input) {\n $part_array = explode(\"\\n\", $input);\n\n // Will strip these headers according to RFC2045.\n $headers_to_strip = [\n 'Content-Type',\n 'Content-Transfer-Encoding',\n 'Content-ID',\n 'Content-Disposition',\n ];\n $pattern = '/^(' . implode('|', $headers_to_strip) . '):/';\n\n while (count($part_array) > 0) {\n\n // Ignore trailing spaces/newlines.\n $line = rtrim($part_array[0]);\n\n // If the line starts with a known header string.\n if (preg_match($pattern, $line)) {\n $line = rtrim(array_shift($part_array));\n // Remove line containing matched header.\n // If line ends in a ';' and the next line starts with four spaces, it's a continuation\n // of the header split onto the next line. Continue removing lines while we have this condition.\n while (substr($line, -1) == ';' && count($part_array) > 0 && substr($part_array[0], 0, 4) == ' ') {\n $line = rtrim(array_shift($part_array));\n }\n }\n else {\n // No match header, must be past headers; stop searching.\n break;\n }\n }\n\n $output = implode(\"\\n\", $part_array);\n return $output;\n }", "private function getParamHeader()\n {\n $header = $this->getMenuParams()->get( 'header', '' );\n return (string)$header;\n }", "static function unsetReporticoSessionParam($param)\n {\n if (isset($_SESSION[ReporticoApp::get(\"session_namespace_key\")][$param])) {\n unset($_SESSION[ReporticoApp::get(\"session_namespace_key\")][$param]);\n }\n }", "public function testUnsetHeader()\n {\n $request = new Aspamia_Http_Request('GET', '/');\n \n $request->setHeader('User-Agent', 'Foo/Bar');\n $this->assertEquals('Foo/Bar', $request->getHeader('user-agent'));\n \n $request->setHeader('user-agent', false);\n $this->assertNull($request->getHeader('user-agent'));\n }", "public function unsetHeader($key) {\n\n\t\t\tunset($this->headers[(string)$key]);\n\t\t\treturn $this;\n\n\t\t}", "protected function cleanHeaders()\n {\n //Clean up header\n $this->headers = ['Accept' => 'application/json'];\n }", "public function clearHeaders()\n {\n $this->headers = [];\n }", "public function removeParameter($name)\n {\n $this->getParameters();\n unset($this->parameters[$name]);\n }", "public function removeHeader($headerName)\n {\n unset($this->headers[$headerName]);\n\n return $this;\n }", "public function removeHeader(string $key)\n {\n if (isset($this->headers[$key])) {\n unset($this->headers[$key]);\n }\n\n return $this;\n }", "public static function setHeader($name, $value = null, $replace = null) {}", "public function destroy(Header $header)\n {\n $header -> delete();\n\n return redirect() -> back();\n }", "public function withoutHeader($name)\r\n {\r\n if ($this->hasHeader($name)) {\r\n unset($this->headers[$name]);\r\n }\r\n return $this;\r\n }", "function get_header_params()\n\t{\n\t\treturn '';\n\t}", "public function assertNotHeaderContains($header, $match, $message = '') {\r\n\t\t$this->_incrementAssertionCount();\r\n\t\trequire_once 'Zend/Test/PHPUnit/Constraint/ResponseHeader.php';\r\n\t\t$constraint = new Zend_Test_PHPUnit_Constraint_ResponseHeader();\r\n\t\t$constraint->setNegate(true);\r\n\t\t$response = $this->_response;\r\n\t\tif (!$constraint->evaluate($response, __FUNCTION__, $header, $match)) {\r\n\t\t\t$constraint->fail($response, $message);\r\n\t\t}\r\n\t}", "public function clearHeader($name) {\n $this->checkNotStopped();\n $normalized = strtolower($name);\n unset($this->headers[$normalized]);\n return $this;\n }", "function setHeader($name,$value = \"\"){\n\t\tsettype($name,\"string\");\n\t\tsettype($value,\"string\");\n\n\t\tif($value==\"\" && preg_match('/^([a-z0-9-]+):\\s?(.+)/i',$name,$matches)){\n\t\t\t$name = $matches[1];\n\t\t\t$value = $matches[2];\n\t\t}\n\n\t\tif(strtolower($name)==\"content-type\"){\n\t\t\t$this->setContentType($value);\n\t\t\treturn;\n\t\t}\n\n\t\t// pokud uz tato header existuje, smazeme ji\n\t\tforeach(array_keys($this->_Headers) as $_key){\n\t\t\tif(strtoupper($_key)== strtoupper($name)){\n\t\t\t\tunset($this->_Headers[$_key]);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\tif(strlen($value)==0){\n\t\t\treturn;\n\t\t}\n\n\t\t$this->_Headers[$name] = $value;\n\t}", "public function clearHeader($name)\n {\n if (! count($this->_headers)) {\n return $this;\n }\n\n foreach ($this->_headers as $index => $header) {\n if ($name == $header['name']) {\n unset($this->_headers[$index]);\n }\n }\n\n return $this;\n }", "public function actionDelete($param)\n {\n $params = $this->getConfig($this->config);\n\n if (isset($params[$param])) {\n unset($params[$param]);\n $this->setConfig($this->config, $params);\n }\n }", "public function clearCustomHeaders()\n {\n $this->CustomHeader = array();\n }", "public function getHeader(string $header): string;", "function privWriteFileHeader(&$p_header)\n {\n }", "function cheffism_remove_x_pingback($headers) {\n unset($headers['X-Pingback']);\n return $headers;\n}", "public function remove(string $key): self\n {\n if (isset($this->headers[$key]) == true) {\n unset($this->headers[$key]);\n }\n\n return $this;\n }", "public function withoutHeader($name) {\n\n $name = $this->_getCaseInsensitiveName($name);\n\n $headers = clone $this;\n $headers->remove($name);\n\n return $headers;\n\n }", "public function clearRawHeader($headerRaw)\n {\n if (! count($this->_headersRaw)) {\n return $this;\n }\n\n $key = array_search($headerRaw, $this->_headersRaw);\n if ($key !== false) {\n unset($this->_headersRaw[$key]);\n }\n\n return $this;\n }", "public function assertNotHeader($header, $message = '') {\r\n\t\t$this->_incrementAssertionCount();\r\n\t\trequire_once 'Zend/Test/PHPUnit/Constraint/ResponseHeader.php';\r\n\t\t$constraint = new Zend_Test_PHPUnit_Constraint_ResponseHeader();\r\n\t\t$constraint->setNegate(true);\r\n\t\t$response = $this->_response;\r\n\t\tif (!$constraint->evaluate($response, __FUNCTION__, $header)) {\r\n\t\t\t$constraint->fail($response, $message);\r\n\t\t}\r\n\t}", "public function cleanHeaders()\n {\n /* @codeCoverageIgnoreStart() */\n @header_remove();\n /* @codeCoverageIgnoreEnd */\n }", "public function delete($what, $param = NULL){\n \n switch ($what) {\n case 'payhead':\n \n\n break;\n\n default:\n break;\n }\n }", "public function removeParameter($key) {\n\t\tunset($this->parameters[$key]);\n\t\treturn $this;\n\t}", "public function setHeader(string $header_name, string $header_value): void;", "public function stripHeaders()\n {\n $headers = $this->headers;\n\n // process exact matches\n $ignore_headers = array(\n 'to',\n 'cc',\n 'bcc',\n 'return-path',\n 'received',\n 'Disposition-Notification-To',\n );\n foreach ($ignore_headers as $name) {\n if ($headers->has($name)) {\n $headers->removeHeader($name);\n }\n }\n\n // process patterns\n array_walk(\n $headers->toArray(), function ($value, $name) use ($headers) {\n if (preg_match('/^resent.*/i', $name)) {\n $headers->removeHeader($name);\n }\n }\n );\n }", "public function clearHttpHeaders()\n {\n $this->headers = array();\n }", "public function withoutHeader($name)\n {\n $clone = clone $this;\n $key = $this->searchHeader($name);\n if (false !== $key) {\n unset($clone->headers[$key]);\n }\n\n return $clone;\n }", "private static function tryParseHeaderRequestModifierParameter(string $command, ?string $argument, ?string &$headerName = null, ?string &$headerValue = null): void\n {\n if ($argument === null) {\n throw new ParseException('Missing argument: Missing header name and value for request modifier \"' . $command . '\".');\n }\n\n $argumentParts = explode(':', $argument, 2);\n\n $headerName = trim($argumentParts[0]);\n if ($headerName === '') {\n throw new ParseException('Missing argument: Missing header name for request modifier \"' . $command . '\".');\n }\n\n if (count($argumentParts) < 2) {\n throw new ParseException('Missing argument: Missing header value for request modifier \"' . $command . '\".');\n }\n\n $headerValue = trim($argumentParts[1]);\n }", "public function remove_declaration($property)\n {\n }", "public function offsetUnset($name)\n {\n if (is_int($name)) {\n parent::offsetUnset($name);\n // @codeCoverageIgnoreStart\n // This will never be reached, because an exception is always\n // thrown.\n return;\n // @codeCoverageIgnoreEnd\n }\n\n unset($this->parameters[strtoupper($name)]);\n }", "public function setHeader(PoHeader $header) {\n }", "public function set_header($header, $value);", "public function getHeader($name = null) {}", "private static function split_header($header)\n {\n $pattern = '/(([-_a-z]*)=(\"([^\"]*)\"|([^,]*)),?)/';\n $offset = 0;\n $params = array();\n while (preg_match($pattern, $header, $matches, PREG_OFFSET_CAPTURE, $offset) > 0)\n {\n $match = $matches[0];\n $header_name = $matches[2][0];\n $header_content = (isset($matches[5])) ? $matches[5][0] : $matches[4][0];\n $params[$header_name] = OAuthUtil::urldecode_rfc3986( $header_content );\n $offset = $match[1] + strlen($match[0]);\n }\n\n if (isset($params['realm']))\n unset($params['realm']);\n\n return $params;\n }" ]
[ "0.8084849", "0.7644898", "0.7629266", "0.758609", "0.7399265", "0.7376662", "0.72613996", "0.70685136", "0.70685136", "0.7049663", "0.6974639", "0.6931676", "0.68577874", "0.68537635", "0.6809737", "0.66980386", "0.6687525", "0.66279", "0.6594936", "0.65804076", "0.65804076", "0.65755564", "0.65755564", "0.65345824", "0.65247834", "0.6427995", "0.6423778", "0.63221145", "0.6300736", "0.6289217", "0.62657034", "0.6242429", "0.6232112", "0.61875314", "0.6146465", "0.61123496", "0.60409856", "0.60169566", "0.6007795", "0.5977544", "0.5957024", "0.589121", "0.5856582", "0.5855582", "0.58517265", "0.58496374", "0.5847317", "0.58365566", "0.58217263", "0.57987714", "0.5793809", "0.57570994", "0.57296675", "0.56802905", "0.565991", "0.5658182", "0.56542224", "0.56448466", "0.5631825", "0.56276053", "0.56154823", "0.5612843", "0.5612508", "0.5600339", "0.55988353", "0.5590323", "0.5579807", "0.557881", "0.5576318", "0.5571768", "0.55434376", "0.55273104", "0.5509292", "0.54979146", "0.5497881", "0.5485775", "0.5480176", "0.54791653", "0.5463094", "0.5442276", "0.54392004", "0.5433074", "0.54330575", "0.54322803", "0.5428999", "0.54241675", "0.5419411", "0.54127556", "0.5410574", "0.53941387", "0.53880525", "0.53773206", "0.5361489", "0.53406674", "0.5322704", "0.5314521", "0.5306582", "0.5303039", "0.5274863", "0.5273249" ]
0.6171523
34
Apply plugin modifications to Composer
public function activate(Composer $composer, IOInterface $io) { $this->composer = $composer; $this->io = $io; if ($this->isWorkspace()) { $workspaceRoot = $this->getWorkspaceRoot(); $workspacePath = getcwd(); $workspace = $workspaceRoot->resolveWorkspace($workspacePath); if ($workspace === null) { throw new RuntimeException('Could not resolve workspace for path "' . $workspacePath . '"'); } $this->configureWorkspace($workspaceRoot, $workspace, $composer); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function setUpTheme() {\n parent::setUpPlugin();\n\n $this->composer->addAction( 'edit_post', 'saveMetaBoxes' );\n $this->composer->addAction( 'wp_ajax_wpb_get_element_backend_html', 'elementBackendHtmlJavascript_callback' );\n $this->composer->addAction( 'wp_ajax_wpb_shortcodes_to_visualComposer', 'shortCodesVisualComposerJavascript_callback' );\n $this->composer->addAction( 'wp_ajax_wpb_show_edit_form', 'showEditFormJavascript_callback' );\n $this->composer->addAction('wp_ajax_wpb_save_template', 'saveTemplateJavascript_callback');\n $this->composer->addAction('wp_ajax_wpb_load_template', 'loadTemplateJavascript_callback');\n $this->composer->addAction('wp_ajax_wpb_delete_template', 'deleteTemplateJavascript_callback');\n\n // Add specific CSS class by filter\n $this->addFilter('body_class', 'jsComposerBodyClass');\n $this->addFilter( 'get_media_item_args', 'jsForceSend' );\n\n $this->addAction( 'admin_menu','composerSettings' );\n $this->addAction( 'admin_init', 'composerRedirect' );\n $this->addAction( 'admin_init', 'jsComposerEditPage', 5 );\n\n $this->addAction( 'admin_init', 'registerCss' );\n $this->addAction( 'admin_init', 'registerJavascript' );\n\n $this->addAction( 'admin_print_scripts-post.php', 'editScreen_js' );\n $this->addAction( 'admin_print_scripts-post-new.php', 'editScreen_js' );\n\n /* Create Media tab for images */\n $this->composer->createImagesMediaTab();\n }", "protected static function updateComposer()\n {\n $packages = json_decode(file_get_contents(base_path('composer.json')), true);\n $packages['require'] = static::updateComposerArray($packages['require']);\n ksort($packages['require']);\n\n file_put_contents(\n base_path('composer.json'),\n json_encode($packages, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT).PHP_EOL\n );\n }", "protected function configure()\n {\n parent::configure();\n\n $this->composer = new Composer($this->preset->filesystem(), $this->preset->basePath());\n }", "function _maybe_update_plugins()\n {\n }", "protected function composerUpdate()\n {\n $this->runCommand(['composer', 'update'], getcwd(), $this->output);\n }", "function rpostinstall() {\n\t\tif (file_exists('composer.json')) {\n\t\t\t$composer = json_decode(file_get_contents('composer.json'));\n\t\t\t//debug($composer);\n\t\t\tif (isset($composer->scripts) && isset($composer->scripts->{'post-install-cmd'})) {\n\t\t\t\t$cmd = $this->composerCommand . ' run-script post-install-cmd';\n\t\t\t\t$deployPath = $this->getVersionPath();\n\t\t\t\t$remoteCmd = 'cd ' . $deployPath . ' && ' . $cmd;\n\t\t\t\t$this->ssh_exec($remoteCmd);\n\t\t\t}\n\t\t}\n\t}", "public function afterUpdate()\n {\n ((Settings::get('use_plugin') == FALSE)? $this->update_plugin_versions(TRUE) : $this->update_plugin_versions(FALSE));\n }", "function wp_update_plugins($extra_stats = array())\n {\n }", "protected function configure()\n {\n $name = 'add-plugin';\n $desc = '<warning>Downloads</warning> a <info>YOURLS plugin</info> and add it to your <comment>`user/composer.json`</comment>';\n $def = [ new InputArgument('plugins', InputArgument::IS_ARRAY, 'YOURLS plugin(s) to download') ];\n $help = <<<EOT\nExample: <comment>`composer add-plugin ozh/example-plugin`</comment>\nThis command downloads plugins in the appropriate subfolder of <comment>user/plugins/</comment>, adds them to\nyour <comment>user/composer.json</comment> file, and updates dependencies.\nRead more at https://github.com/yourls/composer-installer/\n\nEOT;\n\n $this->setName($name)\n ->setDescription($desc)\n ->setDefinition($def)\n ->setHelp($help);\n }", "protected function patchComposerJson()\n {\n if ( ! $this->fileExists('composer.json')) {\n $this->write('Failed to locate composer.json in local directory', 'error');\n\n return;\n }\n\n $structure = json_decode(file_get_contents($this->path('composer.json')));\n if (json_last_error() !== JSON_ERROR_NONE) {\n $this->write('Failed to parse composer.json', 'error');\n\n return;\n }\n\n $structure->require->{'offline/oc-bootstrapper'} = '^' . VERSION;\n\n $contents = json_encode($structure, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);\n if (file_put_contents($this->path('composer.json'), $contents) === false) {\n $this->write('Failed to write new composer.json', 'error');\n }\n }", "function wp_update_plugin($plugin, $feedback = '')\n {\n }", "protected static function updateComposerScripts(): void\n {\n if (! file_exists(base_path('composer.json'))) {\n return;\n }\n\n $composer = json_decode(file_get_contents(base_path('composer.json')), true);\n\n $composer['scripts'] = static::updateComposerScriptsArray(\n array_key_exists('scripts', $composer) ? $composer['scripts'] : []\n );\n\n ksort($composer['scripts']);\n\n file_put_contents(\n base_path('composer.json'),\n json_encode($composer, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT).PHP_EOL\n );\n }", "public abstract function resetComposer();", "function install_plugins_upload()\n {\n }", "public function updateConfig()\n {\n $this->aframe_assets_url = $this->composer->getConfig()->get('aframe-url') ?? '/aframe';\n \n $composer_json = $this->getVendorDir() . DIRECTORY_SEPARATOR . 'mkungla' . DIRECTORY_SEPARATOR . 'aframe-php' . DIRECTORY_SEPARATOR . 'composer.json';\n \n if (file_exists($composer_json)) {\n $config = json_decode(file_get_contents($composer_json));\n $config->config->{'aframe-dir'} = $this->getPublicRoot();\n $config->config->{'aframe-url'} = $this->aframe_assets_url;\n $config->version = self::AFRAME_PHP_VERSION;\n file_put_contents($composer_json, json_encode($config, JSON_PRETTY_PRINT));\n }\n }", "function rcomposer() {\n\t\t$this->checkOnce();\n\t\t$deployPath = $this->getVersionPath();\n\t\t//$this->ssh_exec($this->composerCommand.' clear-cache');\n\t\t$this->ssh_exec($this->composerCommand.' config -g secure-http false');\n\t\t$remoteCmd = 'cd '.$deployPath.' && '.$this->composerCommand.' install --ignore-platform-reqs';\n\t\t$this->ssh_exec($remoteCmd);\n\t}", "function acf_register_plugin_update($plugin)\n{\n}", "function wp_default_packages_vendor($scripts)\n {\n }", "public function extract_plugin_update() {\n \n // Extract Plugin Update\n (new MidrubBaseAdminCollectionUpdateHelpers\\Plugins)->extract_update();\n \n }", "public function execute()\n {\n\t $composer = $this->composer;\n\n\t $composer->extra = isset($composer->extra) ? $composer->extra : array('fof' => new \\stdClass());\n\t $composer->extra->fof = isset($composer->extra->fof) ? $composer->extra->fof : new \\stdClass();\n\n\t $info = $composer->extra->fof;\n\n\t if (!is_object($info))\n\t {\n\t\t if (empty($info))\n\t\t {\n\t\t\t $info = new \\stdClass();\n\t\t }\n\t\t else\n\t\t {\n\t\t\t $info = (object) $info;\n\t\t }\n\t }\n\n\t\t// Component Name (default: what's already stored in composer / composer package name)\n\t\t$info->name = $this->getComponentName($composer);\n\n\t\t$files = array(\n\t\t\t'backend' => 'component/backend',\n\t\t\t'frontend' => 'component/frontend',\n\t\t\t'media' => 'component/media',\n\t\t\t'translationsbackend' => 'translations/component/backend',\n\t\t\t'translationsfrontend' => 'translations/component/frontend'\n\t\t);\n\n\t if (!isset($info->paths) || empty($info->paths) || is_null($info->paths))\n\t {\n\t\t $info->paths = array();\n\t }\n\n\t if (is_object($info->paths))\n\t {\n\t\t $info->paths = (array) $info->paths;\n\t }\n\n\t $files = array_merge($files, $info->paths);\n\n\t\tforeach ($files as $key => $default)\n {\n\t\t\t$info->paths[$key] = $this->getPath($composer, $key, $default);\n\t\t}\n\n\t\t// Now check for fof.xml file\n\t\t$fof_xml = getcwd() . '/' . $info->paths['backend'] . '/fof.xml';\n\n\t\tif (file_exists($fof_xml))\n {\n // @todo Read the XML?\n\t\t}\n\n\t // @todo Maybe ask for namespaces?\n\n\t\t// Store back the info into the composer.json file\n\t $composer->extra->fof = $info;\n\t \\JFile::write(getcwd() . '/composer.json', json_encode($composer, JSON_PRETTY_PRINT));\n\n\t\t$this->setDevServer(false);\n\t}", "public function download_plugin_update() {\n \n // Download Update\n (new MidrubBaseAdminCollectionUpdateHelpers\\Plugins)->download_update();\n \n }", "function a13_do_plugin_install($plugin = array()) {\n\tif(!isset($plugin['source'])) {\n\t\t$plugin['source'] = 'repo';\n\t}\n\n\t// Retrieve a list of all the plugins\n\t$installed_plugins = get_plugins();\n\n\t// Add file_path key for plugin\n\t$plugin['file_path'] = a13_get_plugin_basename_from_slug( $plugin['slug'], $installed_plugins );\n\n\t// Install/update/activate states\n\t$install_type = false;\n\t$activate_plugin = false;\n\n\t// What to do with this plugin\n\t// Do nothing or update\n\tif ( isset( $installed_plugins[$plugin['file_path']] ) ) {\n\t\t// A minimum version has been specified\n\t\tif ( isset( $plugin['version'] ) && isset( $installed_plugins[$plugin['file_path']]['Version'] ) ) {\n\t\t\tif ( version_compare( $installed_plugins[$plugin['file_path']]['Version'], $plugin['version'], '<' ) ) {\n\t\t\t\t$install_type = 'update';\n\t\t\t\t$activate_plugin = true;\n\t\t\t}\n\t\t}\n\t}\n\t// Install\n\telse{\n\t\t$install_type = 'install';\n\t\t$activate_plugin = true;\n\t}\n\n\t// Activate\n\tif ( is_plugin_inactive( $plugin['file_path'] ) ) {\n\t\t$activate_plugin = true;\n\t}\n\n\t/** Pass all necessary information via URL if WP_Filesystem is needed */\n\t$url = esc_url( wp_nonce_url(\n\t\tadd_query_arg(\n\t\t\tarray(\n\t\t\t\t'page' => '',\n\t\t\t\t'plugin' => $plugin['slug'],\n\t\t\t\t'plugin_name' => $plugin['name'],\n\t\t\t\t'plugin_source' => $plugin['source'],\n\t\t\t\t'a13-plugin-install' => 'install-plugin',\n\t\t\t),\n\t\t\tadmin_url()\n\t\t),\n\t\t'a13-plugin-install'\n\t) );\n\t$method = ''; // Leave blank so WP_Filesystem can populate it as necessary\n\t$fields = array( sanitize_key( 'a13-plugin-install' ) ); // Extra fields to pass to WP_Filesystem\n\n\tif ( false === ( $creds = request_filesystem_credentials( $url, $method, false, false, $fields ) ) )\n\t\treturn true;\n\n\tif ( ! WP_Filesystem( $creds ) ) {\n\t\trequest_filesystem_credentials( $url, $method, true, false, $fields ); // Setup WP_Filesystem\n\t\treturn true;\n\t}\n\n\trequire_once ABSPATH . 'wp-admin/includes/plugin-install.php'; // Need for plugins_api\n\trequire_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; // Need for upgrade classes\n\trequire_once dirname(__FILE__). '/class-a13-plugin-installer-skin.php'; // Overwrite of Plugin_Installer_Skin that doesn't clear buffer\n\n\n\t/** Set plugin source to WordPress API link if available */\n\tif ( isset( $plugin['source'] ) && 'repo' == $plugin['source'] ) {\n\t\t$api = plugins_api( 'plugin_information', array( 'slug' => $plugin['slug'], 'fields' => array( 'sections' => false ) ) );\n\n\t\tif ( is_wp_error( $api ) )\n\t\t\twp_die( $api );\n\n\t\tif ( isset( $api->download_link ) )\n\t\t\t$plugin['source'] = $api->download_link;\n\t}\n\n\t/** Set type, based on whether the source starts with http:// or https:// */\n\t$type = preg_match( '|^http(s)?://|', $plugin['source'] ) ? 'web' : 'upload';\n\n\t/** Prep variables for Plugin_Installer_Skin class */\n\t$title = sprintf( a13__be('Installing %s'), $plugin['name'] );\n\t$url = esc_url( add_query_arg( array( 'action' => 'install-plugin', 'plugin' => $plugin['slug'] ), 'update.php' ) );\n\n\t$nonce = 'install-plugin_' . $plugin['slug'];\n\n\t/** Prefix a default path to pre-packaged plugins */\n\t$source = $plugin['source'];\n\n\n\n\t/** Create a new instance of Plugin_Upgrader */\n\t$upgrader = new Plugin_Upgrader( $skin = new A13_Plugin_Installer_Skin( compact( 'type', 'title', 'url', 'nonce', 'plugin', 'api' ) ) );\n\n\t// Enable maintenance mode if needed\n\tif($install_type !== false || $activate_plugin !== false){\n\t\t$upgrader->maintenance_mode(true);\n\t}\n\n\t/** Perform the action and install the plugin from the $source urldecode() */\n\tif ( $install_type === 'update' ) {\n\t\tdelete_site_transient('update_plugins');\n\t\t$data = get_site_transient( 'update_plugins' );\n\t\tif ( ! is_object($data) )\n\t\t\t$data = new stdClass;\n\t\t@$data->response[$plugin['slug']]->package = $source; // @ cause it is often made from StdClass and it gives warning\n\t\t$data->response[$plugin['slug']]->version = $plugin['version'];\n\n\t\tset_site_transient( 'update_plugins', $data );\n\t\t$upgrader->upgrade( $plugin['slug'] );\n\t\techo sprintf( a13__be('Plugin updated: %s'), $plugin['name'] ).\"\\r\\n\";\n\t}\n\telseif($install_type === 'install'){\n\t\t$upgrader->install( $source );\n\t\techo sprintf( a13__be('Plugin installed: %s'), $plugin['name'] ).\"\\r\\n\";\n\t}\n\n\t/** Flush plugins cache so we can make sure that the installed plugins list is always up to date */\n\twp_cache_flush();\n\n\t// Try to activate plugin\n\tif($activate_plugin){\n\t\t$plugin_activate = $upgrader->plugin_info(); // Grab the plugin info from the Plugin_Upgrader method\n\t\t// Activation of only inactive plugins\n\t\tif($plugin_activate === false){\n\t\t\t$activate = activate_plugin( $plugin['file_path'] );\n\t\t}\n\t\t// Activating while installing/updating\n\t\telse{\n\t\t\t$activate = activate_plugin( $plugin_activate );\n\t\t}\n\n\t\tif ( is_wp_error( $activate ) ) {\n\t\t\techo $activate->get_error_message();\n\t\t}\n\t\telse {\n\t\t\techo sprintf( a13__be('Plugin activated: %s'), $plugin['name'] ).\"\\r\\n\";\n\t\t}\n\t}\n\n\t// Disable maintenance mode if needed\n\tif($install_type !== false || $activate_plugin !== false){\n\t\t$upgrader->maintenance_mode(false);\n\t}\n\n\treturn true;\n}", "public function onAfterInstall()\n {\n craft()->db->createCommand()->update(\n 'fields',\n array('type' => 'BetterRedactor'),\n array('type' => 'RichText')\n );\n\n $publicDirectory = craft()->path->appPath . '../../public/redactor_plugins';\n\n if (!IOHelper::folderExists($publicDirectory)) {\n $initialDirectory = craft()->path->getPluginsPath()\n . '/betterredactor/redactor_plugins';\n\n $files = array_filter(\n scandir($initialDirectory),\n function($file) use ($initialDirectory) {\n return is_file(\"$initialDirectory/$file\");\n }\n );\n\n foreach ($files as $file) {\n if (preg_match('((.js|.css)$)i', $file)) {\n IOHelper::copyFile(\n \"$initialDirectory/$file\",\n \"$publicDirectory/$file\"\n );\n }\n }\n }\n }", "public function installPlugins(){\n\n $listPlugin = $this->sanitizePluginsArray();\n\n foreach ($listPlugin as $Plugin) {\n $command = \"{$this->node} {$this->ltpm} install {$Plugin['filename']}\";\n\n exec($command,$output);\n\n Artisan::call('lt-plugin:update',['--vendor-name'=> $Plugin['vendor'].','.$Plugin['name'], '--silent' => true]);\n\n Artisan::call('lt-migration:up',['--vendor-name'=>$Plugin['vendor'].','.$Plugin['name'], '--silent' => true]);\n }\n }", "public function add_dependencies(self ...$plugins): static;", "public function plugin_updater()\n {\n $license_key = trim(get_option('wpstg_license_key'));\n\n // Check for 'undefined' here because WPSTG_PLUGIN_FILE will be undefined if plugin is uninstalled to prevent issue #216\n $pluginFile = !defined('WPSTG_PLUGIN_FILE') ? null : WPSTG_PLUGIN_FILE;\n\n new EDD_SL_Plugin_Updater(WPSTG_STORE_URL, $pluginFile, [\n 'version' => WPStaging\\Core\\WPStaging::getVersion(), // current version number\n 'license' => $license_key, // license key (used get_option above to retrieve from DB)\n 'item_name' => WPSTG_ITEM_NAME, // name of this plugin\n 'author' => 'Rene Hermenau', // author of this plugin\n 'beta' => $this->isBetaVersion()\n ]\n );\n }", "private function manipulateComposerJsonWithAllowAutoInstall(): void\n {\n [$json, $manipulator] = Util::getComposerJsonFileAndManipulator();\n\n $manipulator->addSubNode('extra', 'automatic.allow-auto-install', true);\n\n $this->container->get(Filesystem::class)->dumpFile($json->getPath(), $manipulator->getContents());\n }", "function howes_register_required_plugins(){\n\t\n\t/**\n\t * Array of plugin arrays. Required keys are name and slug.\n\t * If the source is NOT from the .org repo, then source is also required.\n\t */\n\t$plugins = array(\n\t\tarray(\n\t\t\t'name' \t\t\t\t=> 'Revolution Slider', // The plugin name\n\t\t\t'slug' \t\t\t\t=> 'revslider', // The plugin slug (typically the folder name)\n\t\t\t'source' \t\t\t\t=> get_template_directory() . '/inc/plugins/revslider.zip', // The plugin source\n\t\t\t'required' \t\t\t\t=> true, // If false, the plugin is only 'recommended' instead of required\n\t\t\t'version' \t\t\t\t=> '5.4.7.4', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented\n\t\t\t'force_activation' \t\t=> false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch\n\t\t\t'force_deactivation' \t=> false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins\n\t\t\t'external_url' \t\t\t=> '', // If set, overrides default API URL and points to an external URL\n\t\t),\n\t\tarray(\n\t\t\t'name' \t\t\t\t=> 'WPBakery Visual Composer', // The plugin name\n\t\t\t'slug' \t\t\t\t=> 'js_composer', // The plugin slug (typically the folder name)\n\t\t\t'source' \t\t\t\t=> get_template_directory() . '/inc/plugins/js_composer.zip', // The plugin source\n\t\t\t'required' \t\t\t\t=> true, // If false, the plugin is only 'recommended' instead of required\n\t\t\t'version' \t\t\t\t=> '5.4.7', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented\n\t\t\t'force_activation' \t\t=> false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch\n\t\t\t'force_deactivation' \t=> false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins\n\t\t\t'external_url' \t\t\t=> '', // If set, overrides default API URL and points to an external URL\n\t\t),\n\t\tarray(\n\t\t\t'name' \t\t\t\t=> 'CF Post Formats', // The plugin name\n\t\t\t'slug' \t\t\t\t=> 'cf-post-formats', // The plugin slug (typically the folder name)\n\t\t\t'source' \t\t\t\t=> get_template_directory() . '/inc/plugins/cf-post-formats.zip', // The plugin source\n\t\t\t'required' \t\t\t\t=> true, // If false, the plugin is only 'recommended' instead of required\n\t\t\t'version' \t\t\t\t=> '', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented\n\t\t\t'force_activation' \t\t=> true, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch\n\t\t\t'force_deactivation' \t=> false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins\n\t\t\t'external_url' \t\t\t=> '', // If set, overrides default API URL and points to an external URL\n\t\t),\n\t\tarray(\n\t\t\t'name' \t\t\t\t=> 'Envato Market', // The plugin name\n\t\t\t'slug' \t\t\t\t=> 'envato-market', // The plugin slug (typically the folder name)\n\t\t\t'source' \t\t\t\t=> get_template_directory() . '/inc/plugins/envato-market.zip', // The plugin source\n\t\t\t'required' \t\t\t\t=> true, // If false, the plugin is only 'recommended' instead of required\n\t\t\t'version' \t\t\t\t=> '', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented\n\t\t\t'force_activation' \t\t=> false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch\n\t\t\t'force_deactivation' \t=> false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins\n\t\t\t'external_url' \t\t\t=> '', // If set, overrides default API URL and points to an external URL\n\t\t),\n\t\tarray(\n\t\t\t'name' => 'Breadcrumb NavXT',\n\t\t\t'slug' => 'breadcrumb-navxt',\n\t\t\t'required' => true,\n\t\t),\n\t\tarray(\n\t\t\t'name' => 'Contact Form 7',\n\t\t\t'slug' => 'contact-form-7',\n\t\t\t'required' => true,\n\t\t),\n\t\tarray(\n\t\t\t'name' => 'Max Mega Menu',\n\t\t\t'slug' => 'megamenu',\n\t\t\t'required' => false,\n\t\t),\n\t\tarray(\n\t\t\t'name' => 'Easy Pricing Tables Lite by Fatcat Apps',\n\t\t\t'slug' => 'easy-pricing-tables',\n\t\t\t'required' => false,\n\t\t),\n\t);\n\n\t// Change this to your theme text domain, used for internationalising strings\n\t//$theme_text_domain = 'howes';\n\n\t/**\n\t * Array of configuration settings. Amend each line as needed.\n\t * If you want the default strings to be available under your own theme domain,\n\t * leave the strings uncommented.\n\t * Some of the strings are added into a sprintf, so see the comments at the\n\t * end of each line for what each argument will be.\n\t */\n\t$config = array(\n\t\t'domain' \t\t=> 'howes', \t// Text domain - likely want to be the same as your theme.\n\t\t'default_path' \t\t=> '', \t// Default absolute path to pre-packaged plugins\n\t\t//'parent_menu_slug' \t=> 'themes.php', \t\t\t\t// Default parent menu slug\n\t\t//'parent_url_slug' \t=> 'themes.php', \t\t\t\t// Default parent URL slug\n\t\t'menu' \t\t=> 'install-required-plugins', \t// Menu slug\n\t\t'has_notices' \t=> true, \t// Show admin notices or not\n\t\t'is_automatic' \t=> true,\t\t\t\t\t \t// Automatically activate plugins after installation or not\n\t\t'message' \t\t\t=> '',\t\t\t\t\t\t\t// Message to output right before the plugins table\n\t\t'strings' \t\t=> array(\n\t\t\t'page_title' \t\t\t=> __( 'Install Required Plugins', 'howes' ),\n\t\t\t'menu_title' \t\t\t=> __( 'Install Plugins', 'howes' ),\n\t\t\t'installing' \t\t\t=> __( 'Installing Plugin: %s', 'howes' ), // %1$s = plugin name\n\t\t\t'oops' \t\t\t=> __( 'Something went wrong with the plugin API.', 'howes' ),\n\t\t\t'notice_can_install_required' \t\t\t=> _n_noop( 'This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.' ), // %1$s = plugin name(s)\n\t\t\t'notice_can_install_recommended'\t\t\t=> _n_noop( 'This theme recommends the following plugin: %1$s.', 'This theme recommends the following plugins: %1$s.' ), // %1$s = plugin name(s)\n\t\t\t'notice_cannot_install' \t\t\t\t\t=> _n_noop( 'Sorry, but you do not have the correct permissions to install the %s plugin. Contact the administrator of this site for help on getting the plugin installed.', 'Sorry, but you do not have the correct permissions to install the %s plugins. Contact the administrator of this site for help on getting the plugins installed.' ), // %1$s = plugin name(s)\n\t\t\t'notice_can_activate_required' \t\t\t=> _n_noop( 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.' ), // %1$s = plugin name(s)\n\t\t\t'notice_can_activate_recommended'\t\t\t=> _n_noop( 'The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.' ), // %1$s = plugin name(s)\n\t\t\t'notice_cannot_activate' \t\t\t\t\t=> _n_noop( 'Sorry, but you do not have the correct permissions to activate the %s plugin. Contact the administrator of this site for help on getting the plugin activated.', 'Sorry, but you do not have the correct permissions to activate the %s plugins. Contact the administrator of this site for help on getting the plugins activated.' ), // %1$s = plugin name(s)\n\t\t\t'notice_ask_to_update' \t\t\t\t\t\t=> _n_noop( 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.' ), // %1$s = plugin name(s)\n\t\t\t'notice_cannot_update' \t\t\t\t\t\t=> _n_noop( 'Sorry, but you do not have the correct permissions to update the %s plugin. Contact the administrator of this site for help on getting the plugin updated.', 'Sorry, but you do not have the correct permissions to update the %s plugins. Contact the administrator of this site for help on getting the plugins updated.' ), // %1$s = plugin name(s)\n\t\t\t'install_link' \t\t\t\t\t \t\t\t=> _n_noop( 'Begin installing plugin', 'Begin installing plugins' ),\n\t\t\t'activate_link' \t\t\t\t \t\t\t=> _n_noop( 'Activate installed plugin', 'Activate installed plugins' ),\n\t\t\t'return' \t\t\t=> __( 'Return to Required Plugins Installer', 'howes' ),\n\t\t\t'plugin_activated' \t\t\t=> __( 'Plugin activated successfully.', 'howes' ),\n\t\t\t'complete' \t\t\t\t\t\t\t\t\t=> __( 'All plugins installed and activated successfully. %s', 'howes' ), // %1$s = dashboard link\n\t\t)\n\t);\n\ttgmpa( $plugins, $config );\n}", "public function bootPlugin();", "public function dependencies() {\n\t\tif ($customPath = $this->params['custom']) {\n\t\t\t$this->_paths = [$customPath];\n\t\t} elseif (!empty($this->params['plugin'])) {\n\t\t\t$this->_paths = [CakePlugin::path($this->params['plugin'])];\n\t\t} else {\n\t\t\t$this->_paths = [APP];\n\t\t}\n\n\t\t$this->_findFiles('php');\n\t\tforeach ($this->_files as $file) {\n\t\t\t$this->out(sprintf('Updating %s...', $file), 1, Shell::VERBOSE);\n\n\t\t\t$this->_correctFile($file);\n\n\t\t\t$this->out(sprintf('Done updating %s', $file), 1, Shell::VERBOSE);\n\t\t}\n\t}", "function pmpro_setupAddonUpdateInfo() {\n\tadd_filter( 'plugins_api', 'pmpro_plugins_api', 10, 3 );\n\tadd_filter( 'pre_set_site_transient_update_plugins', 'pmpro_update_plugins_filter' );\n\tadd_filter( 'http_request_args', 'pmpro_http_request_args_for_addons', 10, 2 );\n\tadd_action( 'update_option_pmpro_license_key', 'pmpro_reset_update_plugins_cache', 10, 2 );\n}", "private function composerReload()\n {\n $composer = $this->findComposer();\n\n $process = new Process($composer.' dump-autoload');\n $process->setTimeout(null); // Setting timeout to null to prevent installation from stopping at a certain point in time\n $process->setWorkingDirectory(base_path())->run();\n }", "function wp_cli_app_basic_composer( $args, $assoc_args ) {\n\n\t//Check Composer is installed in System\n\tif ( CLI::command_exists( \"composer\" ) === false ) {\n\t\tCLI::error( \"Composer Package Manager is not active in your system, read more : https://getcomposer.org/doc/00-intro.md\" );\n\t\treturn;\n\t}\n\n\t//Check Active Workspace\n\tWorkSpace::is_active_workspace();\n\t$workspace = WorkSpace::get_workspace();\n\n\t//Create Custom Composer Cli\n\t$arg = array();\n\tfor ( $x = 0; $x <= 3; $x ++ ) {\n\t\tif ( isset( $args[ $x ] ) and ! empty( $args[ $x ] ) ) {\n\t\t\t$arg[] = $args[ $x ];\n\t\t}\n\t}\n\n\t//Run command\n\tCLI::run_composer( $workspace['path'], $arg );\n}", "private function initRequirePlugin(){\n\t\t$this->addRequiredPlugin(array(\n\t\t\t'name' => 'Options Framework', // The plugin name\n\t\t 'slug' => 'options-framework', // The plugin slug (typically the folder name)\n\t\t 'required' => true, // If false, the plugin is only 'recommended' instead of required\n\t\t));\n\n\t\t$this->addRequiredPlugin(array(\n\t\t\t'name' => 'WooCommerce', // The plugin name\n\t\t 'slug' => 'woocommerce', // The plugin slug (typically the folder name)\n\t\t 'required' => true, // If false, the plugin is only 'recommended' instead of required\n\t\t));\n\n\t\t$this->addRequiredPlugin(array(\n\t\t\t'name' => 'Contact Form 7', // The plugin name\n\t\t 'slug' => 'contact-form-7', // The plugin slug (typically the folder name)\n\t\t 'required' => true, // If false, the plugin is only 'recommended' instead of required\n\t\t 'source'\t\t\t\t => get_stylesheet_directory_uri() . '/sub/plugins/contact-form-7.zip', // The plugin source\n\t\t));\n\n\t\t$this->addRequiredPlugin(array(\n\t\t\t'name' => 'WPBakery Visual Composer', // The plugin name\n\t\t 'slug' => 'js_composer', // The plugin slug (typically the folder name)\n\t\t 'required' => true,\n\t\t 'source' => get_stylesheet_directory_uri() . '/sub/plugins/js_composer.zip', // The plugin source\n\t\t));\n\n\t\t$this->addRequiredPlugin(array(\n\t\t\t'name' => 'Revolution Slider', // The plugin name\n 'slug' => 'revslider', // The plugin slug (typically the folder name)\n 'required' => true, // If false, the plugin is only 'recommended' instead of required\n 'source' => get_stylesheet_directory_uri() . '/sub/plugins/revslider.zip', // The plugin source\n\t\t));\n\n\t\t$this->addRequiredPlugin(array(\n\t\t\t'name' => 'YITH WooCommerce Wishlist', // The plugin name\n 'slug' => 'yith-woocommerce-wishlist', // The plugin slug (typically the folder name)\n 'required' => true\n\t\t));\n\n\t\t$this->addRequiredPlugin(array(\n\t\t\t'name' => 'YITH Woocommerce Compare', // The plugin name\n 'slug' => 'yith-woocommerce-compare', // The plugin slug (typically the folder name)\n 'required' => true\n\t\t));\n\n\t\t$this->addRequiredPlugin(array(\n\t\t\t'name' => 'YITH WooCommerce Zoom Magnifier', // The plugin name\n\t\t 'slug' => 'yith-woocommerce-zoom-magnifier', // The plugin slug (typically the folder name)\n\t\t 'required' => true\n\t\t));\n\n\t\t$this->addRequiredPlugin(array(\n\t\t\t'name' => 'MailChimp', // The plugin name\n\t\t 'slug' => 'mailchimp-for-wp', // The plugin slug (typically the folder name)\n\t\t 'required' => true\n\t\t));\n\t}", "abstract public function register_plugin();", "function wpec_authsim_plugin_updater() {\n\t\t$license = get_option( 'wpec_product_'. WPEC_AUTHSIM_PRODUCT_ID .'_license_active' );\n\t\t$key = ! $license ? '' : $license->license_key;\n\t\t// setup the updater\n\t\t$wpec_updater = new WPEC_Product_Licensing_Updater( 'https://wpecommerce.org', __FILE__, array(\n\t\t\t\t'version' \t=> WPEC_AUTHSIM_VERSION, \t\t\t\t// current version number\n\t\t\t\t'license' \t=> $key, \t\t// license key (used get_option above to retrieve from DB)\n\t\t\t\t'item_id' \t=> WPEC_AUTHSIM_PRODUCT_ID \t// id of this plugin\n\t\t\t)\n\t\t);\n\t}", "public static function getComposer();", "public static function _setup_plugin() {\n\t\t\tadd_filter( 'mce_external_plugins', array( __CLASS__, 'mce_external_plugins' ) );\n\t\t\tadd_filter( 'mce_buttons_2', array( __CLASS__, 'mce_buttons_2' ) );\n\t\t\tadd_filter( 'content_save_pre', array( __CLASS__, 'content_save_pre' ), 20 );\n\t\t}", "public function updater() {\n\t\t// Bail if current user cannot manage plugins.\n\t\tif ( ! current_user_can( 'install_plugins' ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Bail if plugin updater is not loaded.\n\t\tif ( ! class_exists( 'Puc_v4_Factory' ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup the updater.\n\t\t$updater = Puc_v4_Factory::buildUpdateChecker( 'https://github.com/maithemewp/mai-ads-extra-content/', __FILE__, 'mai-ads-extra-content' );\n\n\t\t// Maybe set github api token.\n\t\tif ( defined( 'MAI_GITHUB_API_TOKEN' ) ) {\n\t\t\t$updater->setAuthentication( MAI_GITHUB_API_TOKEN );\n\t\t}\n\n\t\t// Add icons for Dashboard > Updates screen.\n\t\tif ( function_exists( 'mai_get_updater_icons' ) && $icons = mai_get_updater_icons() ) {\n\t\t\t$updater->addResultFilter(\n\t\t\t\tfunction ( $info ) use ( $icons ) {\n\t\t\t\t\t$info->icons = $icons;\n\t\t\t\t\treturn $info;\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\t}", "public function hookUpdate(): void\n {\n $this->say(\"Executing the Plugin's update hook...\");\n $this->_exec(\"php ./src/hook_update.php\");\n }", "public function runComposerUpdate():self {\n\n # Composer Update\n $log = Composer::exec(\"update\", \"\", false);\n\n # Return instance\n return $this;\n\n }", "abstract protected function activate_plugin();", "public static function install(): void\n {\n static::updatePackages();\n static::updatePackages(false);\n static::updateComposerPackages();\n static::updateComposerPackages(false);\n static::updateComposerScripts();\n static::updatePackagesScripts();\n static::updateStyles();\n static::updateBootstrapping();\n static::updateWelcomePage();\n static::updatePagination();\n static::updateLayout();\n static::removeNodeModules();\n }", "function add_plugin($plugin)\n {\n }", "function install(){}", "function edd_test_plugin_updater() {\n\t$config = [\n\t\t'type' => 'plugin', // Declare the type.\n\t\t'file' => __FILE__,\n\t\t'api_url' => 'http://eddstore.test', // Site where EDD SL store is located.\n\t\t'item_name' => 'EDD Test Plugin', // Name of plugin.\n\t\t'item_id' => 11, // ID of the product.\n\t\t'version' => '1.0', // Current version number.\n\t\t'author' => 'Andy Fragen', // Author of this plugin.\n\t\t'beta' => false,\n\t\t'license' => '', // Optional, if plugin handles license actions you can set license here.\n\t];\n\tif ( class_exists( 'EDD\\\\Software_Licensing\\\\Updater\\\\Bootstrap' ) ) {\n\t\t( new EDD\\Software_Licensing\\Updater\\Init() )->run( $config );\n\t}\n}", "function _add_plugin_file_editor_to_tools()\n {\n }", "function install_plugin_information()\n {\n }", "public function activatePlugin();", "function get_plugin_update($basename = '', $force_check = \\false)\n {\n }", "public function plugin_update() {\n\t\tif ( VERSION === get_option( SLUG . '-version' ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tupdate_option( SLUG . '-version', VERSION );\n\n\t\t$this->register_conference_editor();\n\n\t\tflush_rewrite_rules();\n\t}", "private function extendComposer(array $backtrace): void\n {\n foreach ($backtrace as $trace) {\n if (isset($trace['object']) && $trace['object'] instanceof Installer) {\n /** @var \\Composer\\Installer $installer */\n $installer = $trace['object'];\n $installer->setSuggestedPackagesReporter(new SuggestedPackagesReporter(new NullIO()));\n\n break;\n }\n }\n\n foreach ($backtrace as $trace) {\n if (! isset($trace['object']) || ! isset($trace['args'][0])) {\n continue;\n }\n\n if ($trace['object'] instanceof GlobalCommand) {\n self::$isGlobalCommand = true;\n }\n\n if (! $trace['object'] instanceof Application || ! $trace['args'][0] instanceof ArgvInput) {\n continue;\n }\n\n /** @var \\Symfony\\Component\\Console\\Input\\InputInterface $input */\n $input = $trace['args'][0];\n $app = $trace['object'];\n\n try {\n /** @var null|string $command */\n $command = $input->getFirstArgument();\n $command = $command !== null ? $app->find($command)->getName() : null;\n } catch (InvalidArgumentException $e) {\n $command = null;\n }\n\n if ($command === 'create-project') {\n if (\\version_compare(Util::getComposerVersion(), '1.7.0', '>=')) {\n $input->setOption('remove-vcs', true);\n } else {\n $input->setInteractive(false);\n }\n } elseif ($command === 'suggests') {\n $input->setOption('by-package', true);\n }\n\n if ($input->hasOption('no-suggest')) {\n $input->setOption('no-suggest', true);\n }\n\n break;\n }\n }", "function lambert_register_required_plugins() {\n /*\n * Array of plugin arrays. Required keys are name and slug.\n * If the source is NOT from the .org repo, then source is also required.\n */\n $plugins = array(\n\n array('name' => esc_html__('WPBakery Page Builder','lambert'),\n // The plugin name.\n 'slug' => 'js_composer',\n // The plugin slug (typically the folder name).\n 'source' => 'http://assets.cththemes.com/plugins/js_composer.zip',\n // The plugin source.\n 'required' => true,\n 'external_url' => esc_url(lambert_relative_protocol_url().'://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431' ),\n // If set, overrides default API URL and points to an external URL.\n\n 'function_to_check' => '',\n 'class_to_check' => 'Vc_Manager'\n ), \n\n array(\n 'name' => esc_html__('WooCommerce','lambert'),\n // The plugin name.\n 'slug' => 'woocommerce',\n // The plugin slug (typically the folder name).\n 'required' => true,\n // If false, the plugin is only 'recommended' instead of required.\n 'external_url' => esc_url(lambert_relative_protocol_url().'://wordpress.org/plugins/woocommerce/' ), \n // If set, overrides default API URL and points to an external URL.\n\n 'function_to_check' => '',\n 'class_to_check' => 'WooCommerce'\n ), \n\n array('name' => esc_html__('Redux Framework','lambert'),\n // The plugin name.\n 'slug' => 'redux-framework',\n // The plugin source.\n 'required' => true,\n // If false, the plugin is only 'recommended' instead of required.\n 'external_url' => esc_url(lambert_relative_protocol_url().'://wordpress.org/plugins/redux-framework/' ),\n // If set, overrides default API URL and points to an external URL.\n 'function_to_check' => '',\n 'class_to_check' => 'ReduxFramework'\n ), \n\n array(\n 'name' => esc_html__('Contact Form 7','lambert'),\n // The plugin name.\n 'slug' => 'contact-form-7',\n // The plugin slug (typically the folder name).\n 'required' => true,\n // If false, the plugin is only 'recommended' instead of required.\n 'external_url' => esc_url(lambert_relative_protocol_url().'://wordpress.org/plugins/contact-form-7/' ),\n // If set, overrides default API URL and points to an external URL.\n\n 'function_to_check' => 'wpcf7',\n 'class_to_check' => 'WPCF7'\n ), \n\n\n array(\n 'name' => esc_html__('CMB2','lambert'),\n // The plugin name.\n 'slug' => 'cmb2',\n // The plugin slug (typically the folder name).\n 'required' => true,\n // If false, the plugin is only 'recommended' instead of required.\n 'external_url' => esc_url(lambert_relative_protocol_url().'://wordpress.org/support/plugin/cmb2'),\n // If set, overrides default API URL and points to an external URL.\n\n 'function_to_check' => 'cmb2_bootstrap',\n 'class_to_check' => 'CMB2_Base'\n ),\n \n\n array(\n 'name' => esc_html__('Lambert Add-ons','lambert' ),\n // The plugin name.\n 'slug' => 'lambert-add-ons',\n // The plugin slug (typically the folder name).\n 'source' => 'lambert-add-ons.zip',\n // The plugin source.\n 'required' => true,\n // If false, the plugin is only 'recommended' instead of required.\n\n 'force_deactivation' => true,\n\n 'function_to_check' => '',\n 'class_to_check' => 'Lambert_Addons'\n ), \n\n array(\n 'name' => esc_html__('Loco Translate','lambert'),\n // The plugin name.\n 'slug' => 'loco-translate',\n // The plugin slug (typically the folder name).\n 'required' => false,\n // If false, the plugin is only 'recommended' instead of required.\n 'external_url' => esc_url(lambert_relative_protocol_url().'://wordpress.org/plugins/loco-translate/'),\n // If set, overrides default API URL and points to an external URL.\n\n 'function_to_check' => 'loco_autoload',\n 'class_to_check' => 'Loco_Locale'\n ),\n\n \n array(\n 'name' => esc_html__('Envato Market','lambert' ),\n // The plugin name.\n 'slug' => 'envato-market',\n // The plugin slug (typically the folder name).\n 'source' => esc_url(lambert_relative_protocol_url().'://envato.github.io/wp-envato-market/dist/envato-market.zip' ),\n // The plugin source.\n 'required' => true,\n // If false, the plugin is only 'recommended' instead of required.\n 'external_url' => esc_url('//envato.github.io/wp-envato-market/' ),\n // If set, overrides default API URL and points to an external URL.\n\n 'function_to_check' => 'envato_market',\n 'class_to_check' => 'Envato_Market'\n ),\n\n array('name' => esc_html__('One Click Demo Import','lambert'),\n // The plugin name.\n 'slug' => 'one-click-demo-import',\n // The plugin slug (typically the folder name).\n 'required' => false,\n // If false, the plugin is only 'recommended' instead of required.\n 'external_url' => esc_url(lambert_relative_protocol_url().'://wordpress.org/plugins/one-click-demo-import/'),\n // If set, overrides default API URL and points to an external URL.\n\n 'function_to_check' => '',\n 'class_to_check' => 'OCDI_Plugin'\n ),\n\n array('name' => esc_html__('Regenerate Thumbnails','lambert'),\n // The plugin name.\n 'slug' => 'regenerate-thumbnails',\n // The plugin slug (typically the folder name).\n 'required' => false,\n // If false, the plugin is only 'recommended' instead of required.\n 'external_url' => esc_url(lambert_relative_protocol_url().'://wordpress.org/plugins/regenerate-thumbnails/' ),\n // If set, overrides default API URL and points to an external URL.\n\n 'function_to_check' => 'RegenerateThumbnails',\n 'class_to_check' => 'RegenerateThumbnails'\n ),\n\n \n\n\n );\n\n /*\n * Array of configuration settings. Amend each line as needed.\n *\n * TGMPA will start providing localized text strings soon. If you already have translations of our standard\n * strings available, please help us make TGMPA even better by giving us access to these translations or by\n * sending in a pull-request with .po file(s) with the translations.\n *\n * Only uncomment the strings in the config array if you want to customize the strings.\n */\n $config = array(\n 'id' => 'lambert', // Unique ID for hashing notices for multiple instances of TGMPA.\n 'default_path' => get_template_directory() . '/lib/plugins/', // Default absolute path to bundled plugins.\n 'menu' => 'tgmpa-install-plugins', // Menu slug.\n 'has_notices' => true, // Show admin notices or not.\n 'dismissable' => true, // If false, a user cannot dismiss the nag message.\n 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag.\n 'is_automatic' => false, // Automatically activate plugins after installation or not.\n 'message' => '', // Message to output right before the plugins table.\n\n \n );\n\n tgmpa( $plugins, $config );\n}", "function wpec_square_plugin_updater() {\n\t\t$license = get_option( 'wpec_product_'. WPEC_SQUARE_PRODUCT_ID .'_license_active' );\n\t\t$key = ! $license ? '' : $license->license_key;\n\t\t// setup the updater\n\t\t$wpec_updater = new WPEC_Product_Licensing_Updater( 'https://wpecommerce.org', __FILE__, array(\n\t\t\t\t'version' \t=> WPEC_SQUARE_VERSION, \t\t\t\t// current version number\n\t\t\t\t'license' \t=> $key, \t\t// license key (used get_option above to retrieve from DB)\n\t\t\t\t'item_id' \t=> WPEC_SQUARE_PRODUCT_ID \t// id of this plugin\n\t\t\t)\n\t\t);\n\t}", "static function init_js_composer(){\n\n\t\t\tif(defined('WPB_VC_VERSION')){//check if visual composer is active and the version is 3.7 or greater.\n\n\t\t\t\tif( version_compare(WPB_VC_VERSION, '3.7') <= 0){\n\n\t\t\t\t\tadd_action( 'admin_notices', array(__CLASS__, 'admin_version_notification') );\n \n\t\t\t\t} else {\n\n\t\t\t\t\tself::add_actions();\n\t\t\t\t\trequire_once(PS_PATH . \t'config/setup.php');\n\t\t\t\t\trequire_once(PS_PATH . \t'config/custon_paramaters.php');\n\t\t\t\t\tself::declare_shortcodes();\n\t\t\t\t}\n\n\t\t\t} else {\n\n\t\t\t\tadd_action( 'admin_notices', array(__CLASS__, 'admin_activation_notification') );\n\t\t\t}\n\t\t}", "public function update_midrub_plugin() {\n \n // Verify if the Midrub's plugin can be updated\n (new MidrubBaseAdminCollectionUpdateHelpers\\Plugins)->verify();\n \n }", "public function run()\n {\n passthru('cd ' . realpath($this->basedir) . ' && git pull origin master && curl -sS https://getcomposer.org/installer | php && php composer.phar install && git remote update && cd -');\n }", "function installPlugins()\n{\n outputString(PHP_EOL.'Installing plugins', Console::FG_YELLOW);\n $installPluginCmd = './craft install/plugin ';\n foreach (INSTALL_PLUGINS as $pluginHandle) {\n outputString('- installing plugin '.$pluginHandle);\n executeShellCommand($installPluginCmd . $pluginHandle);\n }\n}", "private function finalize() {\n\n\t\t// Remove git before it's moved.\n\t\t$plugin_dir = untrailingslashit( dirname( app()->plugin_file ) );\n\n\t\tif ( ! $this->dryrun ) {\n\t\t\t$this->fs->delete( \"{$plugin_dir}/.git\", true ); // Remove git.\n\t\t\t$this->fs->delete( \"{$plugin_dir}/.gitignore\", true ); // Remove gitignore.\n\t\t}\n\n\t\t// Move it.\n\t\t$slug = $this->slugify( $this->cli_args->get_arg( 'name' ) );\n\n\t\t$plugins_dir = untrailingslashit( dirname( dirname( app()->plugin_file ) ) );\n\n\t\t$olddir = dirname( app()->plugin_file );\n\t\t$newdir = \"{$plugins_dir}/{$slug}\";\n\n\t\tif ( ! file_exists( $newdir ) ) {\n\t\t\tif ( ! $this->dryrun ) {\n\t\t\t\t$this->fs->move( $olddir, $newdir );\n\t\t\t}\n\t\t}\n\n\t\tif ( ! $this->dryrun ) {\n\t\t\t// @codingStandardsIgnoreLine: Try and activate that plugin.\n\t\t\tshell_exec( \"wp plugin activate {$slug} --allow-root\" );\n\t\t}\n\t}", "public function install() {\r\n \r\n }", "public function bootstrap(): void\n {\n $this->addPlugin(MeTools::class);\n }", "function install() {}", "public function updater() {\n\n\t\t// Bail if current user cannot manage plugins.\n\t\tif ( ! current_user_can( 'install_plugins' ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Bail if plugin updater is not loaded.\n\t\tif ( ! class_exists( 'Puc_v4_Factory' ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup the updater.\n\t\t// $updater = Puc_v4_Factory::buildUpdateChecker( 'https://github.com/maithemewp/mai-grid-entries/', __FILE__, 'mai-grid' );\n\t}", "public function install(){\r\n\t\t\r\n\t}", "public function updateComposer($file){\n\t\tif(!file_exists($file)) throw new \\Exception('The file '.$file.' is not exists');\n\t\t//get version from composer file\n\t\t$composer_content = file_get_contents($file);\n\t\t$composer = json_decode($composer_content, true);\n\t\t$versions = $this->get('magento/update_composer/versions'); //all update json\n\t\tif(!isset($composer['version'])){\n\t\t\t$composer['version'] = current(array_keys($versions));//get composer version is the key of the first setting versions\n\t\t}\n\t\t$setting_versions = array_keys($versions);\n\t\t\n\t\t//compare version\n\t\t$biggest = $composer['version'];\n\t\tforeach($setting_versions as $ver){\n\t\t\tif(Comparator::greaterThanOrEqualTo($ver, $biggest)){\n\t\t\t\t$biggest = $ver;\n\t\t\t}\n\t\t}\n\t\t//check exists in version setting\n\t\tif(!in_array($biggest, $setting_versions)){\n\t\t\t$biggest = $setting_versions[0]; //get first version key in array\n\t\t}\n\t\t//get update composer json\n\t\t$update = $versions[$biggest];//$this->get('magento/update_composer/versions/'.$biggest);\n\t\t\n\t\t//update\n\t\t$new_composer = array_replace_recursive($composer, $update);\n\t\t//write new update composer file\n\t\t$_handle = fopen($file, \"w\");\n\t\tif ($_handle) {\n\t\t\tfwrite($_handle, str_replace('\\/', '/', json_encode($new_composer, JSON_PRETTY_PRINT)));\n\t\t\tfclose($_handle);\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}", "function gumlet_plugin_activate()\n{\n if (!get_option('gumlet_settings')) {\n update_option('gumlet_settings', [\"lazy_load\" => 1, \"original_images\" => 1, \"auto_compress\"=> 1, \"server_webp\"=> 0]);\n }\n}", "private function load_dependencies() {\n\n /**\n * The class responsible for defining options functionality\n * of the plugin.\n */\n include plugin_dir_path(dirname(__FILE__)) . 'envato_setup/envato_setup.php';\n include plugin_dir_path(dirname(__FILE__)) . 'envato_setup/envato_setup_init.php';\n include plugin_dir_path(dirname(__FILE__)) . 'includes/class-form-fields.php';\n // common functions file\n include plugin_dir_path(dirname(__FILE__)) . 'includes/common-functions.php';\n include plugin_dir_path(dirname(__FILE__)) . 'includes/careerfy-detail-pages.php';\n \n include plugin_dir_path(dirname(__FILE__)) . 'includes/careerfyframe-end-jsfile.php';\n\n // redux frameworks extension loader files\n include plugin_dir_path(dirname(__FILE__)) . 'admin/redux-ext/loader.php';\n\n // icons manager\n include plugin_dir_path(dirname(__FILE__)) . 'icons-manager/icons-manager.php';\n\n // visual composer files\n include plugin_dir_path(dirname(__FILE__)) . 'includes/vc-support/vc-actions.php';\n include plugin_dir_path(dirname(__FILE__)) . 'includes/vc-support/vc-shortcodes.php';\n // visual icon files\n include plugin_dir_path(dirname(__FILE__)) . 'includes/vc-icons/icons.php';\n // Mailchimp\n include plugin_dir_path(dirname(__FILE__)) . 'includes/mailchimp/vendor/autoload.php';\n include plugin_dir_path(dirname(__FILE__)) . 'includes/mailchimp/mailchimp-functions.php';\n\n // post types\n include plugin_dir_path(dirname(__FILE__)) . 'includes/post-types/faq.php';\n\n // meta box file\n include plugin_dir_path(dirname(__FILE__)) . 'admin/meta-boxes.php';\n\n // Custom Typography\n include plugin_dir_path(dirname(__FILE__)) . 'includes/custom-typography.php';\n\n // twitter oauth\n include plugin_dir_path(dirname(__FILE__)) . 'includes/twitter-tweets/twitteroauth.php';\n // maintenace mode\n include plugin_dir_path(dirname(__FILE__)) . 'includes/maintenance-mode/maintenance-mode.php';\n\n // redux frameworks files\n include plugin_dir_path(dirname(__FILE__)) . 'admin/ReduxFramework/class-redux-framework-plugin.php';\n include plugin_dir_path(dirname(__FILE__)) . 'admin/ReduxFramework/careerfy-options/options-config.php';\n\n include plugin_dir_path(dirname(__FILE__)) . 'admin/user/user-custom-fields.php';\n\n // instagram admin actions\n include plugin_dir_path(dirname(__FILE__)) . 'admin/instagram.php';\n // load Elementor Extension\n require plugin_dir_path(dirname(__FILE__)) . 'includes/class-careerfy-elementor.php';\n\n }", "private function updateComposerLock(): void\n {\n $composerLockPath = Util::getComposerLockFile();\n $composerJson = \\file_get_contents(Factory::getComposerFile());\n $composer = $this->container->get(Composer::class);\n\n $lockFile = new JsonFile($composerLockPath, null, $this->container->get(IOInterface::class));\n $locker = new Locker(\n $this->container->get(IOInterface::class),\n $lockFile,\n $composer->getRepositoryManager(),\n $composer->getInstallationManager(),\n (string) $composerJson\n );\n\n $lockData = $locker->getLockData();\n $lockData['content-hash'] = Locker::getContentHash((string) $composerJson);\n\n $lockFile->write($lockData);\n }", "public function start_plugin_backup() {\n \n // Backups the files to update and save update\n (new MidrubBaseAdminCollectionUpdateHelpers\\Plugins)->start_backup();\n \n }", "public function hookInstall(): void\n {\n $this->say(\"Executing the Plugin's install hook...\");\n $this->_exec(\"php ./src/hook_install.php\");\n }", "function postCopyHook()\n {\n foreach ($this->plugins as &$plugin) {\n $plugin->postCopyHook();\n }\n unset($plugin);\n }", "public function autoupdate() {\n\t\t$uC = new PluginUpdateChecker( $this->autoupdate_endpoint, $this->path . $this->slug . '.php', $this->slug );\n\t}", "public function updater() {\n\t\t// Kludge to override capability check when doing cron.\n\t\t$doing_cron = defined( 'DOING_CRON' ) && DOING_CRON;\n\t\tif ( ! current_user_can( 'manage_options' ) && ! $doing_cron ) {\n\t\t\treturn;\n\t\t}\n\n\t\t( new Theme_Updater(\n\t\t\t[\n\t\t\t\t'api_url' => $this->api_url,\n\t\t\t\t'api_data' => $this->api_data,\n\t\t\t\t'version' => $this->version,\n\t\t\t\t'license' => $this->license,\n\t\t\t\t'item_name' => $this->item_name,\n\t\t\t\t'item_id' => $this->item_id,\n\t\t\t\t'author' => $this->author,\n\t\t\t\t'beta' => $this->beta,\n\t\t\t\t'cache_key' => $this->cache_key,\n\t\t\t],\n\t\t\t$this->strings\n\t\t) )->load_hooks();\n\t}", "public function run () {\n\t\trequire_once $this->pluginFile;\n\t}", "public function install()\n {\n }", "public function install()\n {\n }", "function aione_register_required_plugins() {\n\t/**\n\t * Array of plugin arrays. Required keys are name and slug.\n\t * If the source is NOT from the .org repo, then source is also required.\n\t */\n\t$plugins = array(\n\t\tarray(\n\t\t\t'name' => 'Oxo Core',\n\t\t\t'slug' => 'oxo-core',\n\t\t\t'source' => get_template_directory() . '/framework/plugins/oxo-core.zip',\n\t\t\t'required' => true,\n\t\t\t'version' => '1.8.3',\n\t\t\t'force_activation' => false,\n\t\t\t'force_deactivation' => false,\n\t\t\t'external_url' => '',\n\t\t\t'image_url' => Aione()->get_framework_dir() . '/assets/images/oxo_core.png',\n\t\t),\n\t\tarray(\n\t\t\t'name' => 'LayerSlider WP',\n\t\t\t'slug' => 'LayerSlider',\n\t\t\t'source' => get_template_directory() . '/framework/plugins/LayerSlider.zip',\n\t\t\t'required' => false,\n\t\t\t'version' => '5.6.2',\n\t\t\t'force_activation' => false,\n\t\t\t'force_deactivation' => false,\n\t\t\t'external_url' => '',\n\t\t\t'image_url' => Aione()->get_framework_dir() . '/assets/images/layer_slider.png',\n\t\t),\n\t\tarray(\n\t\t\t'name' => 'Revolution Slider',\n\t\t\t'slug' => 'revslider',\n\t\t\t'source' => get_template_directory() . '/framework/plugins/revslider.zip',\n\t\t\t'required' => false,\n\t\t\t'version' => '5.1.6',\n\t\t\t'force_activation' => false,\n\t\t\t'force_deactivation' => false,\n\t\t\t'external_url' => '',\n\t\t\t'image_url' => Aione()->get_framework_dir() . '/assets/images/rev_slider.png',\n\t\t),\n\t\tarray(\n\t\t\t'name' => 'WooCommerce',\n\t\t\t'slug' => 'woocommerce',\n\t\t\t'required' => false,\n\t\t\t'image_url' => Aione()->get_framework_dir() . '/assets/images/woocommerce.png',\n\t\t),\n\t\tarray(\n\t\t\t'name' => 'bbPress',\n\t\t\t'slug' => 'bbpress',\n\t\t\t'required' => false,\n\t\t\t'image_url' => Aione()->get_framework_dir() . '/assets/images/bbpress.png',\n\t\t),\n\t\tarray(\n\t\t\t'name' => 'The Events Calendar',\n\t\t\t'slug' => 'the-events-calendar',\n\t\t\t'required' => false,\n\t\t\t'image_url' => Aione()->get_framework_dir() . '/assets/images/the_events_calendar.png',\n\t\t),\n\t\tarray(\n\t\t\t'name' => 'Contact Form 7',\n\t\t\t'slug' => 'contact-form-7',\n\t\t\t'required' => false,\n\t\t\t'image_url' => Aione()->get_framework_dir() . '/assets/images/contact_form_7.jpg',\n\t\t),\n\t);\n\n\t// Change this to your theme text domain, used for internationalising strings\n\t$theme_text_domain = 'Aione';\n\n\t/**\n\t * Array of configuration settings. Amend each line as needed.\n\t * If you want the default strings to be available under your own theme domain,\n\t * leave the strings uncommented.\n\t * Some of the strings are added into a sprintf, so see the comments at the\n\t * end of each line for what each argument will be.\n\t */\n\t$config = array(\n\n\t\t'domain' \t=> $theme_text_domain,\n\t\t'default_path' \t=> '',\n\t\t'parent_slug' \t\t=> 'themes.php',\n\t\t'menu' \t=> 'install-required-plugins',\n\t\t'has_notices' \t=> true,\n\t\t'is_automatic' \t=> true,\n\t\t'message' \t=> '',\n\t\t'strings' \t=> array(\n\t\t\t'page_title' => __( 'Install Required Plugins', 'Aione' ),\n\t\t\t'menu_title' => __( 'Install Plugins', 'Aione' ),\n\t\t\t'installing' => __( 'Installing Plugin: %s', 'Aione' ), // %1$s = plugin name\n\t\t\t'oops' => __( 'Something went wrong with the plugin API.', 'Aione' ),\n\t\t\t'notice_can_install_required' => _n_noop( 'This theme requires the following plugin installed or updated: %1$s.', 'This theme requires the following plugins installed or updated: %1$s.', 'Aione' ), // %1$s = plugin name(s)\n\t\t\t'notice_can_install_recommended' => _n_noop( str_replace( '{{system-status}}', admin_url( 'admin.php?page=aione-system-status' ), 'This theme recommends the following plugin installed or updated: %1$s.<br />IMPORTANT: If your hosting plan has low resources, activating additional plugins can lead to fatal \"out of memory\" errors. We recommend at least 128MB of memory. Check your resources on the <a href=\"{{system-status}}\" target=\"_self\">System Status</a> tab.' ), str_replace( '{{system-status}}', admin_url( 'admin.php?page=aione-system-status' ), 'This theme recommends the following plugins installed or updated: %1$s.<br />IMPORTANT: If your hosting plan has low resources, activating additional plugins can lead to fatal \"out of memory\" errors. We recommend at least 128MB of memory. Check your resources on the <a href=\"{{system-status}}\" target=\"_self\">System Status</a> tab.' ), 'Aione' ), // %1$s = plugin name(s)\n\t\t\t'notice_cannot_install' => _n_noop( 'Sorry, but you do not have the correct permissions to install the %s plugin. Contact the administrator of this site for help on getting the plugin installed.', 'Sorry, but you do not have the correct permissions to install the %s plugins. Contact the administrator of this site for help on getting the plugins installed.', 'Aione' ), // %1$s = plugin name(s)\n\t\t\t'notice_can_activate_required' => _n_noop( 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.', 'Aione' ), // %1$s = plugin name(s)\n\t\t\t'notice_can_activate_recommended' => _n_noop( str_replace( '{{system-status}}', admin_url( 'admin.php?page=aione-system-status' ), 'The following recommended plugin is currently inactive: %1$s.<br />IMPORTANT: If your hosting plan has low resources, activating additional plugins can lead to fatal \"out of memory\" errors. We recommend at least 128MB of memory. Check your resources on the <a href=\"{{system-status}}\" target=\"_self\">System Status</a> tab.' ), str_replace( '{{system-status}}', admin_url( 'admin.php?page=aione-system-status' ), 'The following recommended plugins are currently inactive: %1$s.<br />IMPORTANT: If your hosting plan has low resources, activating additional plugins can lead to fatal \"out of memory\" errors. We recommend at least 128MB of memory. Check your resources on the <a href=\"{{system-status}}\" target=\"_self\">System Status</a> tab.' ), 'Aione' ), // %1$s = plugin name(s)\n\t\t\t'notice_cannot_activate' => _n_noop( 'Sorry, but you do not have the correct permissions to activate the %s plugin. Contact the administrator of this site for help on getting the plugin activated.', 'Sorry, but you do not have the correct permissions to activate the %s plugins. Contact the administrator of this site for help on getting the plugins activated.', 'Aione' ), // %1$s = plugin name(s)\n\t\t\t'notice_ask_to_update' => _n_noop( '<span class=\"oxo-update-heading\" style=\"margin-top:-0.4em\">%1$s Update Required</span>The plugin needs to be updated to its latest version to ensure maximum compatibility with Aione.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 'Aione' ), // %1$s = plugin name(s)\n\t\t\t'notice_cannot_update' => _n_noop( 'Sorry, but you do not have the correct permissions to update the %s plugin. Contact the administrator of this site for help on getting the plugin updated.', 'Sorry, but you do not have the correct permissions to update the %s plugins. Contact the administrator of this site for help on getting the plugins updated.', 'Aione' ), // %1$s = plugin name(s)\n\t\t\t'install_link' => _n_noop( 'Go Install Plugin', 'Go Install Plugins', 'Aione' ),\n\t\t\t'activate_link' => _n_noop( 'Go Activate Plugin', 'Go Activate Plugins', 'Aione' ),\n\t\t\t'return' => __( 'Return to Required Plugins Installer', 'Aione' ),\n\t\t\t'plugin_activated' => __( 'Plugin activated successfully.', 'Aione' ),\n\t\t\t'complete' => __( 'All plugins installed and activated successfully. %s', 'Aione' ), // %1$s = dashboard link\n\t\t\t'nag_type' => 'error' // Determines admin notice type - can only be 'updated' or 'error'\n\t\t)\n\t);\n\n\ttgmpa( $plugins, $config );\n}", "public function install(){\n // Create plugin tables\n Project::createTable();\n\n Repo::createTable();\n\n CommitCache::createTable();\n\n MergeRequest::createTable();\n\n MergeRequestComment::createTable();\n\n $htracker = PLugin::get('h-tracker');\n if($htracker && !$htracker->isInstalled()) {\n $htracker->install();\n }\n\n // Create permissions\n Permission::add($this->_plugin . '.access-plugin', 1, 0);\n Permission::add($this->_plugin . '.create-projects', 0, 0);\n }", "public function install() {\n\n\n }", "function Yonk_register_required_plugins() {\n $plugins = array(\n\n // This is an example of how to include a plugin bundled with a theme.\n array(\n 'name' => 'Elementor',\n 'slug' => 'elementor',\n 'source' => 'https://downloads.wordpress.org/plugin/elementor.3.9.2.zip',\n 'required' => true,\n 'version' => '3.9.2',\n 'force_activation' => false,\n 'force_deactivation' => false,\n 'external_url' => 'https://pt.wordpress.org/plugins/elementor/',\n 'is_callable' => '',\n ),\n\n array(\n 'name' => 'Classic Widgets',\n 'slug' => 'classic-widgets',\n 'source' => 'https://downloads.wordpress.org/plugin/classic-widgets.0.3.zip',\n 'required' => true,\n 'version' => '0.3',\n 'force_activation' => false,\n 'force_deactivation' => false,\n 'external_url' => 'https://pt.wordpress.org/plugins/classic-widgets/',\n 'is_callable' => '',\n ),\n\n array(\n 'name' => 'Classic Editor',\n 'slug' => 'classic-editor',\n 'source' => 'https://downloads.wordpress.org/plugin/classic-editor.1.6.2.zip',\n 'required' => true,\n 'version' => '1.6.2',\n 'force_activation' => false,\n 'force_deactivation' => false,\n 'external_url' => 'https://pt.wordpress.org/plugins/classic-editor/',\n 'is_callable' => '',\n ),\n\n );\n\n $config = array(\n 'id' => 'blank', // Unique ID for hashing notices for multiple instances of TGMPA.\n 'default_path' => '', // Default absolute path to bundled plugins.\n 'menu' => 'tgmpa-install-plugins', // Menu slug.\n 'parent_slug' => 'themes.php', // Parent menu slug.\n 'capability' => 'edit_theme_options', // Capability needed to view plugin install page, should be a capability associated with the parent menu used.\n 'has_notices' => true, // Show admin notices or not.\n 'dismissable' => true, // If false, a user cannot dismiss the nag message.\n 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag.\n 'is_automatic' => false, // Automatically activate plugins after installation or not.\n 'message' => '', // Message to output right before the plugins table.\n );\n\n tgmpa( $plugins, $config );\n }", "function adrotate_licensed_update() {\n\tadd_filter('site_transient_update_plugins', 'adrotate_update_check');\n\tadd_filter('plugins_api', 'adrotate_get_plugin_information', 20, 3);\n}", "public function install();", "public function install();", "public function installPlugin()\n\t{\n\t\treturn true;\t\n\t}", "protected function install(){ return true;}", "function load_transfer_plugin_scripts( $hook ) {\n // if( $hook != 'toplevel_page_get-user' ) {\n \n // return;\n \n // }\n\n // Load style & scripts.\n wp_enqueue_style( 'getUser-css-plugin' );\n wp_enqueue_style( 'bootstrap-plugin' );\n \n wp_enqueue_script( 'my-plugin' );\n \n}", "public function handle()\n {\n if (parent::handle() === false) {\n return;\n } \n\n $this->addIndex();\n\n $this->call('extension:composer', [\n 'type'=> 'plugin',\n 'name' => $this->getNameInput(),\n ]); \n }", "public static function install(){\n\t}", "function install_wbf_wp_update_hooks(){\n\tadd_filter('plugins_api_args', function(\\stdClass $args){\n\t\tif(isset($args->slug) && $args->slug === 'wbf'){\n\t\t\t$args->fields['short_description'] = 'WordPress Extension Framework';\n\t\t\t$args->fields['homepage'] = 'https://www.waboot.io';\n\t\t}\n\t\treturn $args;\n\t});\n\tadd_filter('plugins_api', function($res, $action, $args){\n\t\tif(isset($args->slug) && $args->slug === 'wbf'){\n\t\t\t$info_url = \"http://update.waboot.org/resource/info/plugin/wbf\";\n\t\t\t$info_request = wp_remote_get($info_url);\n\t\t\tif(isset($info_request['response']) && $info_request['response']['code'] === 200){\n\t\t\t\t$info = json_decode($info_request['body']);\n\t\t\t\t$res = new \\stdClass();\n\t\t\t\t$res->name = $info->name;\n\t\t\t\t$res->slug = $info->slug;\n\t\t\t\t$res->version = $info->version;\n\t\t\t\t$res->download_link = $info->download_url;\n\t\t\t}\n\t\t}\n\t\treturn $res;\n\t},10,3);\n\tadd_action('admin_head', function(){\n\t\t$labels = [\n\t\t\t'installing' => __( 'Installing...' ), //@see: script-loader.php\n\t\t\t'installFailedShort' => __( 'Install Failed!' ), //@see: script-loader.php\n\t\t\t'activate' => __( 'Activate' ) //@see: class-wp-plugin-install-list-table.php\n\t\t];\n\t\t//@see: class-wp-plugin-install-list-table.php\n\t\t$activate_link = add_query_arg([\n\t\t\t'action' => 'activate',\n\t\t\t'plugin' => 'wbf/wbf.php',\n\t\t\t'_wpnonce' => wp_create_nonce('activate-plugin_' . 'wbf/wbf.php')\n\t\t],network_admin_url('plugins.php'));\n\t\t?>\n\t\t<!-- WBF Custom Installer: Begin -->\n\t\t<script type=\"text/javascript\">\n if(typeof wbf_install_script_flag === 'undefined'){\n jQuery( document ).ready(function(){\n var $wbf_install_buttons_wrapper = jQuery('.wbf-install-now'),\n $wbf_install_buttons = $wbf_install_buttons_wrapper.find('a.wbf-install-btn');\n $wbf_install_buttons.on('click', function(e){\n e.preventDefault();\n var $my_parent_wrapper = jQuery(this).parents('.wbf-install-now');\n $wbf_install_buttons_wrapper.not($my_parent_wrapper).html('');\n jQuery(this).addClass('updating-message').html('<?php echo $labels['installing']; ?>');\n var req = wp.updates.installPlugin( {\n slug: 'wbf'\n } );\n req.then(function(){\n $my_parent_wrapper.find('a.wbf-install-btn').removeClass('updating-message').addClass('button-primary').html('<?php echo $labels['activate']; ?>').attr('href','<?php echo $activate_link; ?>');\n $wbf_install_buttons.off('click');\n },function(){\n $my_parent_wrapper.find('a.wbf-install-btn').removeClass('updating-message').removeClass('button-primary').html('<?php echo $labels['installFailedShort']; ?>').attr('disabled','disabled');\n });\n });\n });\n var wbf_install_script_flag = true;\n }\n\t\t</script>\n\t\t<!-- WBF Custom Installer: End -->\n\t\t<?php\n\t},99);\n}", "public function update(\n InstalledRepositoryInterface $repo,\n PackageInterface $initial,\n PackageInterface $target\n ) {\n parent::update($repo, $initial, $target);\n $this->pluginManager->removePlugin($initial);\n $this->pluginManager->addPlugin($target);\n $this->pluginManager->exportPlugins($this->filesystem);\n }", "function load_zc_plugins()\n{\n\tglobal $context, $settings, $options, $scripturl, $txt;\n\tglobal $zc, $blog, $blog_info, $article, $comment, $draft;\n\t\n\t/* \n\t\tfunctions in each slot's function array are executed wherever those plug-in slots are in zCommunity's code...\n\t\tSLOT NUMBER => array(\n\t\t\tfunctions => array('function1', 'function2'),\n\t\t),\n\t*/\n\t\n\t$edit_files = array();\n\t$context['zc']['plugin_slots'] = array();\n\t$context['zc']['plugins'] = array();\n\t\n\t// plugins directory is not readable or doesn't exist!\n\tif (!file_exists($zc['plugins_dir']) || !is_readable($zc['plugins_dir']))\n\t\treturn false;\n\t\n\tif (is_dir($zc['plugins_dir']))\n\t{\n\t\tif ($dir = @opendir($zc['plugins_dir']))\n\t\t{\n\t\t\twhile (($file = readdir($dir)) !== false)\n\t\t\t{\n\t\t\t\t// skip folders ... skip files that don't end with .php... and skip the index.php\n\t\t\t\tif (is_dir($zc['plugins_dir'] . '/' . $file) || (substr($file, -4) !== '.php') || $file === 'index.php')\n\t\t\t\t\tcontinue;\n\t\t\t\t\t\n\t\t\t\t$full_path = $zc['plugins_dir'] . '/' . $file;\n\t\t\t\t\n\t\t\t\t// get the file...\n\t\t\t\trequire_once($full_path);\n\t\t\t\t\n\t\t\t\tif (!empty($context['zc']['plugin']))\n\t\t\t\t{\n\t\t\t\t\t$plugin = $context['zc']['plugin'];\n\t\t\t\t\t\n\t\t\t\t\t// plugin ID must be unique!\n\t\t\t\t\tif (!isset($context['zc']['plugins'][$plugin['id']]))\n\t\t\t\t\t\t$context['zc']['plugins'][$plugin['id']] = $plugin;\n\t\t\t\t\t// we'll have to make it unique then...\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\t$old_plugin_id = $plugin['id'];\n\t\t\t\t\t\t$plugin['id'] = zc_make_unique_array_key($plugin['id'], array($context['zc']['plugins']));\n\t\t\t\t\t\t$context['zc']['plugins'][$plugin['id']] = $plugin;\n\t\t\t\t\t\t\n\t\t\t\t\t\tif (!isset($edit_files[$full_path]))\n\t\t\t\t\t\t\t$edit_files[$full_path] = array();\n\t\t\t\t\t\t\t\n\t\t\t\t\t\tif (!isset($edit_files[$full_path]['str_replace']))\n\t\t\t\t\t\t\t$edit_files[$full_path]['str_replace'] = array();\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t$edit_files[$full_path]['str_replace'][] = array('\\''. $old_plugin_id .'\\'', '\\''. $plugin['id'] .'\\'');\n\t\t\t\t\t}\n\t\t\t\t\t$context['zc']['plugins'][$plugin['id']]['file'] = $full_path;\n\t\t\t\t\tunset($context['zc']['plugin'], $plugin);\n\t\t\t\t}\n\t\t\t}\n\t\t\tclosedir($dir);\n\t\t}\n\t}\n\t\n\t// stuff to add to $context['zc'] as arrays... key => array\n\t$key_array_pairs = array('menu', 'zcActions', 'page_relative_links', 'preferences');\n\t\n\t// only need these in the blog control panel...\n\tif (isset($_REQUEST['zc']) && $_REQUEST['zc'] == 'bcp')\n\t\t$key_array_pairs += array('bcp_subMenu', 'bcp_subActions');\n\t\n\t// stuff to add to $context['zc'] as arrays... value\n\t$simple_arrays = array('load_js_files', 'load_css_stylesheets', 'extra_small_bottom_links');\n\t\t\t\t\n\t$context['zc']['admin_plugin_settings'] = array();\n\tif (!empty($context['zc']['plugins']))\n\t\tforeach ($context['zc']['plugins'] as $plugin_id => $array)\n\t\t{\n\t\t\t// plugins must be enabled...\n\t\t\tif (empty($zc['settings']['zcp_' . $plugin_id . '_enabled']))\n\t\t\t\tcontinue;\n\t\t\n\t\t\tif (!empty($array['plugin_slots']))\n\t\t\t\tforeach ($array['plugin_slots'] as $slot => $functions)\n\t\t\t\t\tif (!empty($functions) && is_array($functions))\n\t\t\t\t\t{\n\t\t\t\t\t\tif (!isset($context['zc']['plugin_slots'][$slot]))\n\t\t\t\t\t\t\t$context['zc']['plugin_slots'][$slot] = array();\n\t\t\t\t\t\t\t\n\t\t\t\t\t\tif (!isset($context['zc']['plugin_slots'][$slot]['functions']))\n\t\t\t\t\t\t\t$context['zc']['plugin_slots'][$slot]['functions'] = array();\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t$context['zc']['plugin_slots'][$slot]['functions'] = array_merge($context['zc']['plugin_slots'][$slot]['functions'], $functions);\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\tforeach ($key_array_pairs as $key)\n\t\t\t\tif (!empty($array[$key]))\n\t\t\t\t{\n\t\t\t\t\tif (!isset($context['zc'][$key]))\n\t\t\t\t\t\t$context['zc'][$key] = array();\n\t\t\t\t\t\t\n\t\t\t\t\tforeach ($array[$key] as $k => $v)\n\t\t\t\t\t\t$context['zc'][$key][$k] = $v;\n\t\t\t\t}\n\t\t\t\t\t\n\t\t\tforeach ($simple_arrays as $key)\n\t\t\t\tif (!empty($array[$key]))\n\t\t\t\t{\n\t\t\t\t\tif (!isset($context['zc'][$key]))\n\t\t\t\t\t\t$context['zc'][$key] = array();\n\t\t\t\t\t\t\n\t\t\t\t\tforeach ($array[$key] as $v)\n\t\t\t\t\t\t$context['zc'][$key][] = $v;\n\t\t\t\t}\n\t\t\n\t\t\tif (!empty($array['settings']))\n\t\t\t\tforeach ($array['settings'] as $setting => $array2)\n\t\t\t\t\t// if $setting is already taken... we'll need to make a unique key...\n\t\t\t\t\tif (!isset($context['zc']['admin_plugin_settings'][$setting]) && !isset($temp[$setting]))\n\t\t\t\t\t\t$temp[$setting] = '';\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\t$old_setting_key = $setting;\n\t\t\t\t\t\t$setting = zc_make_unique_array_key($setting, array($temp, $context['zc']['admin_plugin_settings']));\n\t\t\t\t\t\t$context['zc']['plugins'][$plugin_id]['settings'][$setting] = $array2;\n\t\t\t\t\t\t$temp[$setting] = '';\n\t\t\t\t\t\t\n\t\t\t\t\t\tif (!isset($edit_files[$array['file']]))\n\t\t\t\t\t\t\t$edit_files[$array['file']] = array();\n\t\t\t\t\t\t\t\n\t\t\t\t\t\tif (!isset($edit_files[$array['file']]['str_replace']))\n\t\t\t\t\t\t\t$edit_files[$array['file']]['str_replace'] = array();\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t$edit_files[$array['file']]['str_replace'][] = array('\\''. $old_setting_key .'\\'', '\\''. $setting .'\\'');\n\t\t\t\t\t}\n\t\t\t\t\n\t\t\tif (!empty($array['admin_settings']))\n\t\t\t\tforeach ($array['admin_settings'] as $setting => $array2)\n\t\t\t\t\t// make sure $setting is not already taken\n\t\t\t\t\tif (!isset($context['zc']['admin_plugin_settings'][$setting]) && !isset($temp[$setting]))\n\t\t\t\t\t\t$context['zc']['admin_plugin_settings'][$setting] = $array2;\n\t\t\t\t\t// we have to make a unique key...\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\t$old_setting_key = $setting;\n\t\t\t\t\t\t$setting = zc_make_unique_array_key($setting, array($context['zc']['admin_plugin_settings']));\n\t\t\t\t\t\t$context['zc']['admin_plugin_settings'][$setting] = $array2;\n\t\t\t\t\t\t$context['zc']['plugins'][$plugin_id]['admin_settings'][$setting] = $array2;\n\t\t\t\t\t\t\n\t\t\t\t\t\tif (!isset($edit_files[$array['file']]))\n\t\t\t\t\t\t\t$edit_files[$array['file']] = array();\n\t\t\t\t\t\t\t\n\t\t\t\t\t\tif (!isset($edit_files[$array['file']]['str_replace']))\n\t\t\t\t\t\t\t$edit_files[$array['file']]['str_replace'] = array();\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t$edit_files[$array['file']]['str_replace'][] = array('\\''. $old_setting_key .'\\'', '\\''. $setting .'\\'');\n\t\t\t\t\t}\n\t\t}\n\t\t\n\t// now for admin plugin settings...\n\tif (!empty($context['zc']['admin_plugin_settings']))\n\t\tforeach($context['zc']['admin_plugin_settings'] as $setting => $array)\n\t\t{\n\t\t\tif (!isset($zc['settings'][$setting]))\n\t\t\t\t$zc['settings'][$setting] = $array['value'];\n\t\t\t\t\n\t\t\tif ($array['type'] == 'text')\n\t\t\t\t$zc['settings'][$setting] = $zcFunc['un_htmlspecialchars']($zc['settings'][$setting]);\n\t\t\t\t\n\t\t\tif (!empty($array['needs_explode']) && !is_array($zc['settings'][$setting]))\n\t\t\t\t$zc['settings'][$setting] = !empty($zc['settings'][$setting]) ? explode(',', $zc['settings'][$setting]) : array();\n\t\t}\n\t\t\n\tif (!empty($edit_files) && file_exists($zc['sources_dir'] . '/Subs-Files.php'))\n\t{\n\t\t// we'll need this...\n\t\trequire_once($zc['sources_dir'] . '/Subs-Files.php');\n\t\t\n\t\tif (function_exists('zcWriteChangeToFile'))\n\t\t\tforeach ($edit_files as $file => $edits)\n\t\t\t\tif (!empty($edits))\n\t\t\t\t\tzcWriteChangeToFile($file, $edits);\n\t}\n}", "public function install() {\n\n\t\trequire_once( $this->get_plugin_path() . '/includes/admin/class-wc-cog-admin.php' );\n\n\t\t// install default settings\n\t\tforeach ( WC_COG_Admin::get_global_settings() as $setting ) {\n\n\t\t\tif ( isset( $setting['default'] ) ) {\n\t\t\t\tupdate_option( $setting['id'], $setting['default'] );\n\t\t\t}\n\t\t}\n\t}", "function wpestate_add_plugin($plugin_array) { \n $plugin_array['slider_recent_items'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['testimonials'] = get_template_directory_uri() . '/js/shortcodes.js';\n<<<<<<< HEAD\n=======\n $plugin_array['testimonial_slider'] = get_template_directory_uri() . '/js/shortcodes.js';\n>>>>>>> 64662fd89bea560852792d7203888072d7452d48\n $plugin_array['recent_items'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['featured_agent'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['featured_article'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['featured_property'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['login_form'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['register_form'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['list_items_by_id'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['advanced_search'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['font_awesome'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['spacer'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['icon_container'] = get_template_directory_uri() . '/js/shortcodes.js';\n<<<<<<< HEAD\n \n=======\n $plugin_array['list_agents'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['places_list'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['listings_per_agent'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['property_page_map'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['estate_membership_packages'] = get_template_directory_uri() . '/js/shortcodes.js';\n $plugin_array['estate_featured_user_role'] = get_template_directory_uri() . '/js/shortcodes.js';\n\t\n\t// slick function\n\t$plugin_array['places_slider'] = get_template_directory_uri() . '/js/shortcodes.js';\n\t\n>>>>>>> 64662fd89bea560852792d7203888072d7452d48\n \n return $plugin_array;\n}", "function itstar_register_required_plugins() {\n\t/*\n\t * Array of plugin arrays. Required keys are name and slug.\n\t * If the source is NOT from the .org repo, then source is also required.\n\t */\n\t$plugins = array(\n\n\t\t// This is an example of how to include a plugin bundled with a theme.\n\t\tarray(\n\t\t\t'name' => 'Image Widget Plugin', // The plugin name.\n\t\t\t'slug' => 'image-widget', // The plugin slug (typically the folder name).\n\t\t\t'source' => get_template_directory() . '/plugins/image-widget.4.2.2.zip', // The plugin source.\n\t\t\t'required' => true\n\t\t\t),\n\t\tarray(\n\t\t\t'name' => 'Kirki', // The plugin name.\n\t\t\t'slug' => 'kirki', // The plugin slug (typically the folder name).\n\t\t\t'source' => get_template_directory() . '/plugins/kirki.2.3.6.zip', // The plugin source.\n\t\t\t'required' => true\n\t\t\t),\n//\t\tarray(\n//\t\t\t'name' => 'Redux Framework', // The plugin name.\n//\t\t\t'slug' => 'redux-framework', // The plugin slug (typically the folder name).\n//\t\t\t'source' => get_template_directory() . '/plugins/redux-framework.3.6.1.zip', // The plugin source.\n//\t\t\t'required' => true\n//\t\t\t),\n array(\n\t\t\t'name' => 'CMB2', // The plugin name.\n\t\t\t'slug' => 'cmb2', // The plugin slug (typically the folder name).\n\t\t\t'source' => get_template_directory() . '/plugins/cmb2.zip', // The plugin source.\n\t\t\t'required' => true\n\t\t\t),\n\n\n//\t\tarray(\n//\t\t\t'name' => 'TGM Example Plugin', // The plugin name.\n//\t\t\t'slug' => 'tgm-example-plugin', // The plugin slug (typically the folder name).\n//\t\t\t'source' => get_template_directory() . '/plugins/tgm-example-plugin.zip', // The plugin source.\n//\t\t\t'required' => false, // If false, the plugin is only 'recommended' instead of required.\n//\t\t\t'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher. If the plugin version is higher than the plugin version installed, the user will be notified to update the plugin.\n//\t\t\t'force_activation' => true, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch.\n//\t\t\t'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins.\n//\t\t\t'external_url' => '', // If set, overrides default API URL and points to an external URL.\n//\t\t\t'is_callable' => '', // If set, this callable will be be checked for availability to determine if a plugin is active.\n//\t\t),\n\n\t\t// This is an example of how to include a plugin from an arbitrary external source in your theme.\n//\t\tarray(\n//\t\t\t'name' => 'TGM New Media Plugin', // The plugin name.\n//\t\t\t'slug' => 'tgm-new-media-plugin', // The plugin slug (typically the folder name).\n//\t\t\t'source' => 'https://s3.amazonaws.com/tgm/tgm-new-media-plugin.zip', // The plugin source.\n//\t\t\t'required' => true, // If false, the plugin is only 'recommended' instead of required.\n//\t\t\t'external_url' => 'https://github.com/thomasgriffin/New-Media-Image-Uploader', // If set, overrides default API URL and points to an external URL.\n//\t\t\t'required' => false,\n//\t\t),\n//\n//\t\t// This is an example of how to include a plugin from a GitHub repository in your theme.\n//\t\t// This presumes that the plugin code is based in the root of the GitHub repository\n//\t\t// and not in a subdirectory ('/src') of the repository.\n//\t\tarray(\n//\t\t\t'name' => 'Adminbar Link Comments to Pending',\n//\t\t\t'slug' => 'adminbar-link-comments-to-pending',\n//\t\t\t'source' => 'https://github.com/jrfnl/WP-adminbar-comments-to-pending/archive/master.zip',\n//\t\t\t'required' => false,\n//\t\t),\n//\n//\t\t// This is an example of how to include a plugin from the WordPress Plugin Repository.\n\t\tarray(\n\t\t\t'name' => 'Regenerate Thumbnails',\n\t\t\t'slug' => 'regenerate-thumbnails',\n\t\t\t'required' => false,\n\t\t),\n//\n//\t\t// This is an example of the use of 'is_callable' functionality. A user could - for instance -\n//\t\t// have WPSEO installed *or* WPSEO Premium. The slug would in that last case be different, i.e.\n//\t\t// 'wordpress-seo-premium'.\n//\t\t// By setting 'is_callable' to either a function from that plugin or a class method\n//\t\t// `array( 'class', 'method' )` similar to how you hook in to actions and filters, TGMPA can still\n//\t\t// recognize the plugin as being installed.\n//\t\tarray(\n//\t\t\t'name' => 'WordPress SEO by Yoast',\n//\t\t\t'slug' => 'wordpress-seo',\n//\t\t\t'is_callable' => 'wpseo_init',\n//\t\t\t'required' => false,\n//\t\t),\n\n\t);\n\n\t/*\n\t * Array of configuration settings. Amend each line as needed.\n\t *\n\t * TGMPA will start providing localized text strings soon. If you already have translations of our standard\n\t * strings available, please help us make TGMPA even better by giving us access to these translations or by\n\t * sending in a pull-request with .po file(s) with the translations.\n\t *\n\t * Only uncomment the strings in the config array if you want to customize the strings.\n\t */\n\t$config = array(\n\t\t'id' => 'itstar', // Unique ID for hashing notices for multiple instances of TGMPA.\n\t\t'default_path' => '', // Default absolute path to bundled plugins.\n\t\t'menu' => 'tgmpa-install-plugins', // Menu slug.\n\t\t'parent_slug' => 'themes.php', // Parent menu slug.\n\t\t'capability' => 'edit_theme_options', // Capability needed to view plugin install page, should be a capability associated with the parent menu used.\n\t\t'has_notices' => true, // Show admin notices or not.\n\t\t'dismissable' => true, // If false, a user cannot dismiss the nag message.\n\t\t'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag.\n\t\t'is_automatic' => false, // Automatically activate plugins after installation or not.\n\t\t'message' => '', // Message to output right before the plugins table.\n\n\t\t/*\n\t\t'strings' => array(\n\t\t\t'page_title' => __( 'Install Required Plugins', 'itstar' ),\n\t\t\t'menu_title' => __( 'Install Plugins', 'itstar' ),\n\t\t\t/* translators: %s: plugin name. * /\n\t\t\t'installing' => __( 'Installing Plugin: %s', 'itstar' ),\n\t\t\t/* translators: %s: plugin name. * /\n\t\t\t'updating' => __( 'Updating Plugin: %s', 'itstar' ),\n\t\t\t'oops' => __( 'Something went wrong with the plugin API.', 'itstar' ),\n\t\t\t'notice_can_install_required' => _n_noop(\n\t\t\t\t/* translators: 1: plugin name(s). * /\n\t\t\t\t'This theme requires the following plugin: %1$s.',\n\t\t\t\t'This theme requires the following plugins: %1$s.',\n\t\t\t\t'itstar'\n\t\t\t),\n\t\t\t'notice_can_install_recommended' => _n_noop(\n\t\t\t\t/* translators: 1: plugin name(s). * /\n\t\t\t\t'This theme recommends the following plugin: %1$s.',\n\t\t\t\t'This theme recommends the following plugins: %1$s.',\n\t\t\t\t'itstar'\n\t\t\t),\n\t\t\t'notice_ask_to_update' => _n_noop(\n\t\t\t\t/* translators: 1: plugin name(s). * /\n\t\t\t\t'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.',\n\t\t\t\t'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.',\n\t\t\t\t'itstar'\n\t\t\t),\n\t\t\t'notice_ask_to_update_maybe' => _n_noop(\n\t\t\t\t/* translators: 1: plugin name(s). * /\n\t\t\t\t'There is an update available for: %1$s.',\n\t\t\t\t'There are updates available for the following plugins: %1$s.',\n\t\t\t\t'itstar'\n\t\t\t),\n\t\t\t'notice_can_activate_required' => _n_noop(\n\t\t\t\t/* translators: 1: plugin name(s). * /\n\t\t\t\t'The following required plugin is currently inactive: %1$s.',\n\t\t\t\t'The following required plugins are currently inactive: %1$s.',\n\t\t\t\t'itstar'\n\t\t\t),\n\t\t\t'notice_can_activate_recommended' => _n_noop(\n\t\t\t\t/* translators: 1: plugin name(s). * /\n\t\t\t\t'The following recommended plugin is currently inactive: %1$s.',\n\t\t\t\t'The following recommended plugins are currently inactive: %1$s.',\n\t\t\t\t'itstar'\n\t\t\t),\n\t\t\t'install_link' => _n_noop(\n\t\t\t\t'Begin installing plugin',\n\t\t\t\t'Begin installing plugins',\n\t\t\t\t'itstar'\n\t\t\t),\n\t\t\t'update_link' \t\t\t\t\t => _n_noop(\n\t\t\t\t'Begin updating plugin',\n\t\t\t\t'Begin updating plugins',\n\t\t\t\t'itstar'\n\t\t\t),\n\t\t\t'activate_link' => _n_noop(\n\t\t\t\t'Begin activating plugin',\n\t\t\t\t'Begin activating plugins',\n\t\t\t\t'itstar'\n\t\t\t),\n\t\t\t'return' => __( 'Return to Required Plugins Installer', 'itstar' ),\n\t\t\t'plugin_activated' => __( 'Plugin activated successfully.', 'itstar' ),\n\t\t\t'activated_successfully' => __( 'The following plugin was activated successfully:', 'itstar' ),\n\t\t\t/* translators: 1: plugin name. * /\n\t\t\t'plugin_already_active' => __( 'No action taken. Plugin %1$s was already active.', 'itstar' ),\n\t\t\t/* translators: 1: plugin name. * /\n\t\t\t'plugin_needs_higher_version' => __( 'Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.', 'itstar' ),\n\t\t\t/* translators: 1: dashboard link. * /\n\t\t\t'complete' => __( 'All plugins installed and activated successfully. %1$s', 'itstar' ),\n\t\t\t'dismiss' => __( 'Dismiss this notice', 'itstar' ),\n\t\t\t'notice_cannot_install_activate' => __( 'There are one or more required or recommended plugins to install, update or activate.', 'itstar' ),\n\t\t\t'contact_admin' => __( 'Please contact the administrator of this site for help.', 'itstar' ),\n\n\t\t\t'nag_type' => '', // Determines admin notice type - can only be one of the typical WP notice classes, such as 'updated', 'update-nag', 'notice-warning', 'notice-info' or 'error'. Some of which may not work as expected in older WP versions.\n\t\t),\n\t\t*/\n\t);\n\n\ttgmpa( $plugins, $config );\n}", "public function plugin_activate() {\r\n\t\tupdate_option( $this->options_name, $this->options);\r\n\t}", "function my_theme_register_required_plugins() {\r\n\r\n /**\r\n * Array of plugin arrays. Required keys are name and slug.\r\n * If the source is NOT from the .org repo, then source is also required.\r\n */\r\n $plugins = array(\r\n\r\n \r\n\r\n // This is an example of how to include a plugin from the WordPress Plugin Repository.\r\n array(\r\n 'name' => 'Redux Framework',\r\n 'slug' => 'redux-framework',\r\n 'required' => true,\r\n\t\t\t'force_activation' => false, \r\n 'force_deactivation' => false, \r\n ),\r\n array(\r\n 'name' => 'Visual Composer',\r\n 'slug' => 'js_composer',\r\n\t\t\t'source' => 'http://webredox.net/plugins/js_composer.zip',\r\n 'required' => true,\r\n ),\t\t\r\n\t\t\r\n\t\tarray(\r\n 'name' => 'Contact Form 7',\r\n 'slug' => 'contact-form-7',\r\n 'required' => true,\r\n ),\r\n\t\tarray(\r\n 'name' => 'Revolution Slider', \r\n 'slug' => 'revslider',\r\n 'source' => 'http://webredox.net/plugins/revslider.zip',\r\n 'required' => false, \r\n ),\t\r\n\t\tarray(\r\n 'name' => 'Redux Developer Mode Disabler',\r\n 'slug' => 'redux-developer-mode-disabler',\r\n 'required' => true,\r\n ),\t\t\r\n \t\t\r\n\r\n );\r\n\r\n /**\r\n * Array of configuration settings. Amend each line as needed.\r\n * If you want the default strings to be available under your own theme domain,\r\n * leave the strings uncommented.\r\n * Some of the strings are added into a sprintf, so see the comments at the\r\n * end of each line for what each argument will be.\r\n */\r\n $config = array(\r\n 'default_path' => '', // Default absolute path to pre-packaged plugins.\r\n 'menu' => 'tgmpa-install-plugins', // Menu slug.\r\n 'has_notices' => true, // Show admin notices or not.\r\n 'dismissable' => true, // If false, a user cannot dismiss the nag message.\r\n 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag.\r\n 'is_automatic' => false, // Automatically activate plugins after installation or not.\r\n 'message' => '', // Message to output right before the plugins table.\r\n \r\n );\r\n\r\n tgmpa( $plugins, $config );\r\n\r\n}", "private function hooks() {\n\n\t\t$plugin_admin = shortbuild_bu_hooks();\n add_filter( 'advanced_import_demo_lists', array( $plugin_admin, 'add_demo_lists' ), 10, 1 );\n add_filter( 'admin_menu', array( $plugin_admin, 'import_menu' ), 10, 1 );\n add_filter( 'wp_ajax_shortbuild_bu_getting_started', array( $plugin_admin, 'install_advanced_import' ), 10, 1 );\n add_filter( 'admin_enqueue_scripts', array( $plugin_admin, 'enqueue_styles' ), 10, 1 );\n add_filter( 'admin_enqueue_scripts', array( $plugin_admin, 'enqueue_scripts' ), 10, 1 );\n\n /*Replace terms and post ids*/\n add_action( 'advanced_import_replace_term_ids', array( $plugin_admin, 'replace_term_ids' ), 20 );\n }", "protected function afterInstall()\n {\n }", "function add_options_packages() {\n $this->configure_propack();\n }", "function handleShortcode($atts = [], $content = null, $tag = '') {\n\n if (is_admin()){\n return;\n }\n \n $vueRootUrl = plugin_dir_url( __FILE__ ) . 'dist';\n $vueFileRoot = plugin_dir_path( __FILE__) . 'dist';\n\n $jsCore = ['bootstrap.min.js', 'jquery-3.3.1.min.js', 'popper.min.js'];\n\n // Find the build files\n $jsMatches = glob(plugin_dir_path( __FILE__) . 'dist/js/*.*.js');\n $cssMatches = glob(plugin_dir_path( __FILE__) . 'dist/css/*.*.css');\n\n // Bring in core dependencies first\n\n $isLocal = true;\n\n if ($isLocal){\n\n //wp_deregister_script('jquery');\n\n //wp_register_script('actiontracker_vuecore_jquery', $vueRootUrl . '/js/jquery-3.3.1.min.js', false, null, true);\n\n wp_register_script('actiontracker_vuecore_popper', $vueRootUrl . '/js/popper.min.js', false, null, true);\n wp_register_script('actiontracker_vuecore_bootstrap4', $vueRootUrl . '/js/bootstrap.min.js', false, null, true);\n \n foreach ($jsMatches as $i => $jsItem) {\n if (!in_array(basename($jsItem), $jsCore)){\n $url = $vueRootUrl . '/js/' . basename($jsItem);\n $name = \"actiontracker_vuejs_\".$i;\n if (!wp_script_is($name, 'enqueued')){\n //print_r('BUILD JS: ' . $jsItem . '<br/>');\n wp_register_script($name, $url);\n wp_enqueue_script($name); \n }\n }\n }\n \n foreach ($cssMatches as $i => $cssItem) { \n $url = $vueRootUrl . '/css/' . basename($cssItem);\n $name = \"actiontracker_vuecss_\".$i;\n if (!wp_script_is($name, 'enqueued')){\n //print_r('CSS JS: ' . $i . '<br/>');\n wp_register_style($name, $url);\n wp_enqueue_style($name); \n }\n \n }\n\n }\n else {\n\n wp_register_script('actiontracker_vuecore_popper', 'http://app.actiontracker.org/js/popper.min.js', false, null, true);\n wp_register_script('actiontracker_vuecore_bootstrap4', 'http://app.actiontracker.org/js/bootstrap.min.js', false, null, true);\n \n //wp_enqueue_script('actiontracker_vuecore_jquery');\n wp_enqueue_script('actiontracker_vuecore_popper');\n wp_enqueue_script('actiontracker_vuecore_bootstrap4');\n \n }\n\n\n \n \n\n /*\n\n */\n \n // Handle short code params\n\n if (array_key_exists('view', $atts)) {\n $str = \"<div class='actionTrackerVuePlugin' view='\".$atts['view'].\"'>You need Javascript for this feature, sorry.</div>\"; \n }\n else {\n $str = \"<div class='actionTrackerVuePlugin' view='all'>You need Javascript for this feature, sorry.</div>\"; \n }\n\n return $str;\n }", "function install($moduleName);" ]
[ "0.6106509", "0.6075103", "0.59702986", "0.59070516", "0.5816272", "0.5803809", "0.57815146", "0.57666075", "0.57633096", "0.5751792", "0.5734745", "0.5730334", "0.57284015", "0.5682182", "0.5681651", "0.56356996", "0.56282705", "0.5626145", "0.5617321", "0.5602698", "0.56014204", "0.5601257", "0.560105", "0.56009567", "0.55912966", "0.5571059", "0.55447567", "0.55381346", "0.55269694", "0.55165577", "0.55162615", "0.55025536", "0.54764014", "0.54603297", "0.5454469", "0.545316", "0.5451431", "0.5443374", "0.5439555", "0.5418359", "0.54077363", "0.5377232", "0.5370643", "0.536905", "0.5356258", "0.5355244", "0.5346108", "0.5326138", "0.5315598", "0.53119725", "0.52975726", "0.52914995", "0.52896416", "0.52752143", "0.5271084", "0.5270973", "0.5250427", "0.5241584", "0.52355695", "0.52286935", "0.5228628", "0.52282095", "0.5226831", "0.52229995", "0.52229786", "0.5222919", "0.5219712", "0.5218179", "0.5217145", "0.52167356", "0.5197746", "0.5191333", "0.51903176", "0.5166922", "0.51490426", "0.51490426", "0.514675", "0.5142642", "0.51406103", "0.5139004", "0.5138615", "0.51336783", "0.51336783", "0.5133022", "0.513033", "0.5128313", "0.5112699", "0.5110282", "0.5108641", "0.5101491", "0.5100304", "0.5088272", "0.50816023", "0.507715", "0.5053505", "0.50479424", "0.50465304", "0.5046006", "0.5039658", "0.50342995", "0.50324905" ]
0.0
-1
Method by which a Plugin announces its API implementations, through an array with a special structure. The key must be a string, representing a fully qualified class/interface name which Composer Plugin API exposes. The value must be a string as well, representing the fully qualified class name of the implementing class.
public function getCapabilities() { return [ \Composer\Plugin\Capability\CommandProvider::class => CommandProvider::class, ]; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function registerClass( $fileName )\n\t{\n\t\tif(isset($this->alreadyRegistered[$fileName]))\n\t\t{\n\t\t\treturn;\n\t\t}\n\n\t\t$potentialPaths = array(\n\t\t\t PIWIK_INCLUDE_PATH . \"/plugins/\". $fileName .\"/API.php\",\n\t \t);\n\n\t\t$found = false;\n\t\tforeach($potentialPaths as $path)\n\t\t{\n\t\t\tif(is_file($path))\n\t\t\t{\n\t\t\t\trequire_once $path;\n\t\t\t\t$found = true;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\tif(!$found)\n\t\t{\n\t\t\tthrow new Exception(\"API module $fileName not found.\");\n\t\t}\n\n\t\t$class= $this->getClassNameFromModule($fileName);\n\n\t\t$rClass = new ReflectionClass($class);\n\n\t\t// check that it is a subclass of Piwik_APIable\n\t\tif(!$rClass->isSubclassOf(new ReflectionClass(\"Piwik_Apiable\")))\n\t\t{\n\t\t\tthrow new Exception(\"To publish its public methods in the API, the class '$class' must be a subclass of 'Piwik_Apiable'.\");\n\t\t}\n\n\t\t// check that is is singleton\n\t\t$this->checkClassIsSingleton($class);\n\n\t\t$rMethods = $rClass->getMethods();\n\t\tforeach($rMethods as $method)\n\t\t{\n\t\t\t// use this trick to read the static attribute of the class\n\t\t\t// $class::$methodsNotToPublish doesn't work\n\t\t\t$variablesClass = get_class_vars($class);\n\t\t\t$variablesClass['methodsNotToPublish'][] = 'getInstance';\n\n\t\t\tif($method->isPublic()\n\t\t\t\t&& !$method->isConstructor()\n\t\t\t\t&& !in_array($method->getName(), $variablesClass['methodsNotToPublish'] )\n\t\t\t)\n\t\t\t{\n\t\t\t\t$name = $method->getName();\n\n\t\t\t\t$parameters = $method->getParameters();\n\n\t\t\t\t$aParameters = array();\n\t\t\t\tforeach($parameters as $parameter)\n\t\t\t\t{\n\t\t\t\t\t$nameVariable = $parameter->getName();\n\n\t\t\t\t\t$defaultValue = Piwik_API_Proxy::NO_DEFAULT_VALUE;\n\t\t\t\t\tif($parameter->isDefaultValueAvailable())\n\t\t\t\t\t{\n\t\t\t\t\t\t$defaultValue = $parameter->getDefaultValue();\n\t\t\t\t\t}\n\n\t\t\t\t\t$aParameters[$nameVariable] = $defaultValue;\n\t\t\t\t}\n\t\t\t\t$this->api[$class][$name]['parameters'] = $aParameters;\n\t\t\t\t$this->api[$class][$name]['numberOfRequiredParameters'] = $method->getNumberOfRequiredParameters();\n\t\t\t}\n\t\t}\n\n\t\t$this->alreadyRegistered[$fileName] = true;\n\t}", "public function provides()\n {\n return [\n 'api-presentor'\n ];\n }", "public function __invoke(): array\n {\n return [\n TaskRepositoryInterface::class => TaskRepository::class,\n ];\n }", "protected function getClassImplementations()\n {\n }", "public function getInterfacesProvider(): array\n {\n return [\n [new A(), [IStrictPropertiesContainer::class]],\n [new B(), [IStrictPropertiesContainer::class]],\n [new C(), [ICustomPrefixedPropertiesContainer::class, IStrictPropertiesContainer::class]],\n [new ToString(), [IConvertibleToString::class, 'Stringable']],\n [new WithMagicPropertiesBaseClass(), [IMagicPropertiesContainer::class, IStrictPropertiesContainer::class]],\n ['string', []],\n ];\n }", "protected static function _getImplements() {\n return array(\n 'Nimbles\\Core\\Delegates\\Delegatable' => array(\n 'delegates' => array(\n 'headers_sent' => 'headers_sent',\n 'header' => 'header'\n )\n ),\n 'Nimbles\\Core\\Config\\Options' => array(\n 'status' => Status::STATUS_OK\n )\n );\n }", "public function getInterfaces() {}", "private function getServiceMap()\n {\n $result = array(\n 'transport' => 'POST',\n 'envelope' => 'JSON-RPC-2.0',\n 'SMDVersion' => '2.0',\n 'contentType' => 'application/json',\n 'target' => !empty($_SERVER['REQUEST_URI']) ? substr($_SERVER['REQUEST_URI'], 0, strpos($_SERVER['REQUEST_URI'], '?')) : '',\n 'services' => array(),\n 'description' => '',\n );\n\n foreach ($this->instances as $namespace => $instance) {\n $rc = new ReflectionClass($instance);\n\n // Get Class Description\n if ($rcDocComment = $this->getDocDescription($rc->getDocComment())) {\n $result['description'] .= $rcDocComment . PHP_EOL;\n }\n\n foreach ($rc->getMethods() as $method) {\n /** @var ReflectionMethod $method */\n if (!$method->isPublic() || in_array(strtolower($method->getName()), $this->hiddenMethods)) {\n continue;\n }\n\n $methodName = ($namespace ? $namespace . '.' : '') . $method->getName();\n $docComment = $method->getDocComment();\n\n $result['services'][$methodName] = array('parameters' => array());\n\n // set description\n if ($rmDocComment = $this->getDocDescription($docComment)) {\n $result['services'][$methodName]['description'] = $rmDocComment;\n }\n\n // @param\\s+([^\\s]*)\\s+([^\\s]*)\\s*([^\\s\\*]*)\n $parsedParams = array();\n if (preg_match_all('/@param\\s+([^\\s]*)\\s+([^\\s]*)\\s*([^\\n\\*]*)/', $docComment, $matches)) {\n foreach ($matches[2] as $number => $name) {\n $type = $matches[1][$number];\n $desc = $matches[3][$number];\n $name = trim($name, '$');\n\n $param = array('type' => $type, 'description' => $desc);\n $parsedParams[$name] = array_filter($param);\n }\n };\n\n // process params\n foreach ($method->getParameters() as $parameter) {\n $name = $parameter->getName();\n $param = array('name' => $name, 'optional' => $parameter->isDefaultValueAvailable());\n if (array_key_exists($name, $parsedParams)) {\n $param += $parsedParams[$name];\n }\n\n if ($param['optional']) {\n $param['default'] = $parameter->getDefaultValue();\n }\n\n $result['services'][$methodName]['parameters'][] = $param;\n }\n\n // set return type\n if (preg_match('/@return\\s+([^\\s]+)\\s*([^\\n\\*]+)/', $docComment, $matches)) {\n $returns = array('type' => $matches[1], 'description' => trim($matches[2]));\n $result['services'][$methodName]['returns'] = array_filter($returns);\n }\n }\n }\n\n return $result;\n }", "function _mn_slingshot_ctools_plugin_api() {\n $args = func_get_args();\n $module = array_shift($args);\n $api = array_shift($args);\n if ($module == \"feeds\" && $api == \"feeds_importer_default\") {\n return array(\"version\" => 1);\n }\n else if ($module == \"keyauth\" && $api == \"keyauth_key_default\") {\n return array(\"version\" => 1);\n }\n else if ($module == \"strongarm\" && $api == \"strongarm\") {\n return array(\"version\" => 1);\n }\n}", "public function extractApi();", "protected static function _getImplements() {\n return array('Nimbles\\Core\\Config\\Options');\n }", "function _ec_partners_ctools_plugin_api() {\n $args = func_get_args();\n $module = array_shift($args);\n $api = array_shift($args);\n if ($module == \"feeds\" && $api == \"feeds_importer_default\") {\n return array(\"version\" => 1);\n }\n else if ($module == \"strongarm\" && $api == \"strongarm\") {\n return array(\"version\" => 1);\n }\n}", "public function getImplements() {\n return array(\n 'pdoMap_Dao_IAdapter',\n $this->getGeneratedInterface()\n );\n }", "public function provides()\n {\n return [SwisscomClient::class];\n }", "public function getPluginsList()\n {\n $plugins = [];\n // @codingStandardsIgnoreStart\n $reflection = new \\ReflectionClass($this->pluginList);\n // @codingStandardsIgnoreEnd\n\n $processed = $reflection->getProperty('_processed');\n $processed->setAccessible(true);\n $processed = $processed->getValue($this->pluginList);\n\n $inherited = $reflection->getProperty('_inherited');\n $inherited->setAccessible(true);\n $inherited = $inherited->getValue($this->pluginList);\n\n $types = [\n DefinitionInterface::LISTENER_BEFORE => 'before',\n DefinitionInterface::LISTENER_AROUND => 'around',\n DefinitionInterface::LISTENER_AFTER => 'after'\n ];\n\n /**\n * @see: Magento/Framework/Interception/PluginList/PluginList::_inheritPlugins($type)\n */\n foreach ($processed as $currentKey => $processDef) {\n if (preg_match('/^(.*)_(.*)___self$/', $currentKey, $matches) ||\n preg_match('/^(.*?)_(.*?)_(.*)$/', $currentKey, $matches)\n ) {\n $type = $matches[1];\n $method = $matches[2];\n\n if (!empty($inherited[$type])) {\n foreach ($processDef as $keyType => $pluginsNames) {\n if (!is_array($pluginsNames)) {\n $pluginsNames = [$pluginsNames];\n }\n\n $classMethod = $type . '::' . $method;\n // @codingStandardsIgnoreStart\n $key = md5($classMethod);\n // @codingStandardsIgnoreEnd\n\n if (!isset($plugins[$key])) {\n $fileName = $this->config->getPhpClassFile($type);\n\n $plugins[$key] = [\n 'class_method' => $classMethod,\n 'file' => $fileName,\n 'phpstorm_url' => $this->config->getPhpStormUrl($fileName),\n 'plugins' => [],\n 'phpstorm_links' => [],\n ];\n\n if ($this->config->isPhpStormEnabled()) {\n $plugins[$key]['phpstorm_links'] = [\n [\n 'key' => 'Original Class',\n 'file' => $fileName,\n 'link' => $this->config->getPhpStormUrl($fileName),\n ],\n ];\n }\n }\n\n foreach ($pluginsNames as $pluginName) {\n if (!empty($inherited[$type][$pluginName])) {\n $sortOrder = (int) $inherited[$type][$pluginName]['sortOrder'];\n\n $fileName = $this->config->getPhpClassFile(\n $inherited[$type][$pluginName]['instance']\n );\n\n $plugins[$key]['plugins'][$pluginName] = [\n 'order' => $sortOrder,\n 'plugin' => $inherited[$type][$pluginName]['instance'],\n 'method' => $types[$keyType] . ucfirst($method),\n 'file' => $fileName,\n ];\n if ($this->config->isPhpStormEnabled()) {\n $plugins[$key]['phpstorm_links'][] = [\n 'key' => 'Plugin \"' . $pluginName . '\"',\n 'file' => $fileName,\n 'link' => $this->config->getPhpStormUrl($fileName),\n ];\n }\n }\n }\n }\n }\n }\n }\n\n return $plugins;\n }", "public function provides()\n {\n return [\n StackApi::class\n ];\n }", "public function registeringNewSchemeProvider()\n {\n return [\n ['ssh', 'Foo\\Bar\\Class'],\n ['ntp', 'No real class at all!!!'],\n ];\n }", "protected function set_installed_apis() {\n\t\t/**\n\t\t * Filter to add active git servers.\n\t\t *\n\t\t * @since 10.0.0\n\t\t * @param array static::$git_servers Array of git servers.\n\t\t */\n\t\tstatic::$git_servers = \\apply_filters( 'gu_git_servers', static::$git_servers );\n\n\t\t/**\n\t\t * Filter to add installed APIs.\n\t\t *\n\t\t * @since 10.0.0\n\t\t * @param array static::$installed_apis Array of installed APIs.\n\t\t */\n\t\tstatic::$installed_apis = \\apply_filters( 'gu_installed_apis', static::$installed_apis );\n\t}", "public function __construct(\\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {\n parent::__construct(\n 'Plugin/Endpoint',\n $namespaces,\n $module_handler,\n 'Drupal\\api_storage\\ApiEndpointPluginInterface',\n 'Drupal\\api_storage\\Annotation\\ApiEndpoint'\n );\n\n $this->alterInfo('api_endpoint');\n $this->setCacheBackend($cache_backend, 'api_endpoints_plugins');\n\n //$this->getDiscovery()->getDefinitions()\n //$this->factory = new DefaultFactory($this->getDiscovery());\n }", "public function getApi();", "public function getApi();", "public function getApi();", "public function apiList();", "public function providerUpdate()\n {\n $updateList = $this->getMethodsName('update');\n $provider = [];\n\n foreach ($updateList as $name => $method) {\n $provider[$name] = [\n $name\n ];\n }\n\n return $provider;\n }", "private function getMethodClassMap()\n {\n return [\n 'account_channels' => \\XRPHP\\Api\\Anon\\Account\\AccountChannelsMethod::class,\n 'account_currencies' => \\XRPHP\\Api\\Anon\\Account\\AccountCurrenciesMethod::class,\n 'account_info' => \\XRPHP\\Api\\Anon\\Account\\AccountInfoMethod::class,\n 'account_lines' => \\XRPHP\\Api\\Anon\\Account\\AccountLinesMethod::class,\n 'account_objects' => \\XRPHP\\Api\\Anon\\Account\\AccountObjectsMethod::class,\n 'account_offers' => \\XRPHP\\Api\\Anon\\Account\\AccountOffersMethod::class,\n 'account_tx' => \\XRPHP\\Api\\Anon\\Account\\AccountTxMethod::class,\n 'gateway_balances' => \\XRPHP\\Api\\Anon\\Account\\GatewayBalancesMethod::class,\n 'noripple_check' => \\XRPHP\\Api\\Anon\\Account\\NorippleCheckMethod::class,\n 'ledger' => \\XRPHP\\Api\\Anon\\Ledger\\LedgerMethod::class,\n 'ledger_closed' => \\XRPHP\\Api\\Anon\\Ledger\\LedgerClosedMethod::class,\n 'ledger_current' => \\XRPHP\\Api\\Anon\\Ledger\\LedgerCurrentMethod::class,\n 'ledger_data' => \\XRPHP\\Api\\Anon\\Ledger\\LedgerDataMethod::class,\n 'ledger_entry' => \\XRPHP\\Api\\Anon\\Ledger\\LedgerEntryMethod::class,\n 'sign' => \\XRPHP\\Api\\Anon\\Transaction\\SignMethod::class,\n 'sign_for' => \\XRPHP\\Api\\Anon\\Transaction\\SignForMethod::class,\n 'submit' => \\XRPHP\\Api\\Anon\\Transaction\\SubmitMethod::class,\n 'submit_multisigned' => \\XRPHP\\Api\\Anon\\Transaction\\SubmitMultisignedMethod::class,\n 'transaction_entry' => \\XRPHP\\Api\\Anon\\Transaction\\TransactionEntryMethod::class,\n 'tx' => \\XRPHP\\Api\\Anon\\Transaction\\TxMethod::class,\n 'book_offers' => \\XRPHP\\Api\\Anon\\PathOrderBook\\BookOffersMethod::class,\n 'ripple_path_find' => \\XRPHP\\Api\\Anon\\PathOrderBook\\RipplePathFindMethod::class,\n 'channel_authorize' => \\XRPHP\\Api\\Anon\\PaymentChannel\\ChannelAuthorizeMethod::class,\n 'channel_verify' => \\XRPHP\\Api\\Anon\\PaymentChannel\\ChannelVerifyMethod::class,\n 'fee' => \\XRPHP\\Api\\Anon\\ServerInfo\\FeeMethod::class,\n 'server_info' => \\XRPHP\\Api\\Anon\\ServerInfo\\ServerInfoMethod::class,\n 'server_state' => \\XRPHP\\Api\\Anon\\ServerInfo\\ServerStateMethod::class,\n 'ping' => \\XRPHP\\Api\\Anon\\Utility\\PingMethod::class,\n 'random' => \\XRPHP\\Api\\Anon\\Utility\\RandomMethod::class\n ];\n }", "function _hippel_discussions_ctools_plugin_api() {\n $args = func_get_args();\n $module = array_shift($args);\n $api = array_shift($args);\n if ($module == \"strongarm\" && $api == \"strongarm\") {\n return array(\"version\" => 1);\n }\n}", "function _gizra_access_ctools_plugin_api() {\n $args = func_get_args();\n $module = array_shift($args);\n $api = array_shift($args);\n if ($module == \"context\" && $api == \"context\") {\n return array(\"version\" => 3);\n }\n else if ($module == \"system\" && $api == \"strongarm\") {\n return array(\"version\" => 1);\n }\n}", "public function createInvokableScriptsApi(): InvokableScriptsApi;", "function RegisterMyClasses(array $classes)\n{\n $PublicClassName = PublicLibManager::getInstance();\n $PublicClassName->RegisterMyClasses($classes);\n}", "public function provides()\n {\n return array('piwiktracker');\n }", "private function include_rest_api() {\n\t\trequire_once wpcd_path . 'includes/core/apps/wordpress-app/rest-api/class-wpcd-rest-api-controller-base.php';\n\t\trequire_once wpcd_path . 'includes/core/apps/wordpress-app/rest-api/class-wpcd-rest-api-controller-servers.php';\n\t\trequire_once wpcd_path . 'includes/core/apps/wordpress-app/rest-api/class-wpcd-rest-api-controller-sites.php';\n\t\trequire_once wpcd_path . 'includes/core/apps/wordpress-app/rest-api/class-wpcd-rest-api-controller-tasks.php';\n\n\t\t/**\n\t\t * Need to add new REST API controllers from an add-on?\n\t\t * Then this action hook MUST be used! Otherwise, weird\n\t\t * stuff will happen and you will not know why!\n\t\t *\n\t\t * Third parties that need to add a plugin to extend\n\t\t * the rest api by adding new controllers should\n\t\t * ensure that the filter a few lines above is used\n\t\t * to add the new controller to the array so that\n\t\t * they can be instantiated.\n\t\t */\n\t\tdo_action( 'wpcd_wpapp_include_rest_api' );\n\n\t\t// List of controllers to instantiate.\n\t\t// This list should be added to by other plugins adding their own rest api controllers.\n\t\t$controllers = apply_filters(\n\t\t\t\"wpcd_app_{$this->get_app_name()}_rest_api_controller_list\",\n\t\t\tarray(\n\t\t\t\tWPCD_REST_API_Controller_Servers::class,\n\t\t\t\tWPCD_REST_API_Controller_Sites::class,\n\t\t\t\tWPCD_REST_API_Controller_Tasks::class,\n\t\t\t)\n\t\t);\n\n\t\t// Loop through list and instantiate.\n\t\tforeach ( $controllers as $controller_class ) {\n\t\t\t$controller = new $controller_class();\n\t\t\t$this->rest_controllers[ $controller->get_name() ] = $controller;\n\t\t}\n\n\t}", "public function init() {\n parent::init();\n if (!is_object($this->api)) {\n $class = $this->api;\n $this->api = new $class;\n }\n $this->loadPlugins();\n }", "public function getApiService();", "public function doAPI() {\r\n\t\t\t/** @var ICWP_APP_FeatureHandler_Plugin $oFO */\r\n\t\t\t$oFO = $this->getFeatureOptions();\r\n\r\n\t\t\tif ( $oFO->fetchIcwpRequestParam( 'worpit_link', 0 ) == 1 ) {\r\n\t\t\t\trequire_once( ABSPATH . 'wp-admin/includes/upgrade.php' );\r\n\t\t\t\trequire_once( dirname(__FILE__).ICWP_DS.'plugin_sitelink.php' );\r\n\t\t\t\t$oLinkProcessor = new ICWP_APP_Processor_Plugin_SiteLink( $this->getFeatureOptions() );\r\n\t\t\t\t$oLinkResponse = $oLinkProcessor->run();\r\n\t\t\t\t$this->sendApiResponse( $oLinkResponse );\r\n\t\t\t\tdie();\r\n\t\t\t}\r\n\t\t\telse if ( $oFO->fetchIcwpRequestParam( 'worpit_api', 0 ) == 1 ) {\r\n\t\t\t\trequire_once( ABSPATH . 'wp-admin/includes/upgrade.php' );\r\n\t\t\t\trequire_once( dirname(__FILE__).ICWP_DS.'plugin_api.php' );\r\n\t\t\t\t$oApiProcessor = new ICWP_APP_Processor_Plugin_Api( $this->getFeatureOptions() );\r\n\t\t\t\t$oApiResponse = $oApiProcessor->run();\r\n\t\t\t\t$this->sendApiResponse( $oApiResponse );\r\n\t\t\t\tdie();\r\n\t\t\t}\r\n\t\t}", "public function get_api_functions() {\n return [\n 'upload' => [\n 'endpoint' => 'https://www.googleapis.com/upload/drive/v3/files',\n 'method' => 'post',\n 'args' => [\n 'uploadType' => PARAM_RAW,\n 'fields' => PARAM_RAW\n ],\n 'response' => 'headers'\n ],\n 'upload_content' => [\n 'endpoint' => '{uploadurl}',\n 'method' => 'put',\n 'args' => [\n 'uploadurl' => PARAM_URL\n ],\n 'response' => 'json'\n ],\n 'create' => [\n 'endpoint' => 'https://www.googleapis.com/drive/v3/files',\n 'method' => 'post',\n 'args' => [\n 'fields' => PARAM_RAW\n ],\n 'response' => 'json'\n ],\n 'delete' => [\n 'endpoint' => 'https://www.googleapis.com/drive/v3/files/{fileid}',\n 'method' => 'delete',\n 'args' => [\n 'fileid' => PARAM_RAW\n ],\n 'response' => 'json'\n ],\n ];\n }", "protected abstract function registerClasses(): void;", "public function getInfos(){\n\t\treturn array(\n\t\t\t\"serviceDescription\" => \"This is the Comunic API Server.\",\n\t\t\t\"clientURL\" => \"https://communiquons.org/\",\n\t\t);\n\t}", "function wpcom_rest_api_v2_load_plugin( $class_name ) {\n\tglobal $wpcom_rest_api_v2_plugins;\n\n\tif ( ! isset( $wpcom_rest_api_v2_plugins ) ) {\n\t\t$_GLOBALS['wpcom_rest_api_v2_plugins'] = $wpcom_rest_api_v2_plugins = array();\n\t}\n\n\tif ( ! isset( $wpcom_rest_api_v2_plugins[ $class_name ] ) ) {\n\t\t$wpcom_rest_api_v2_plugins[ $class_name ] = new $class_name;\n\t}\n}", "public function register()\n {\n return [T_CLASS, T_INTERFACE];\n }", "function apiai()\n {\n $this->name = \"apiai\";\n $this->title = \"API.AI\";\n $this->module_category = \"<#LANG_SECTION_OBJECTS#>\";\n $this->api_endpoint = \"https://api.dialogflow.com/v1/\";\n $this->api_version = \"20170712\";\n $this->checkInstalled();\n }", "public function aim_register_handler()\r\n\t{\r\n\t\tforeach (func_get_args() as $arg) {\r\n\t\t\tif (is_array($arg) && count($arg) >= 1) {\r\n\t\t\t\tforeach ($arg as $k => $v) {\r\n if (empty($v[1]) || is_null($v[1]) || !isset($v[1])) $v[1] = CLIENT_DEFAULT;\r\n $k = strtolower($k);\r\n\t\t\t\t\t$this->core->handlers[$k] = array('name' => $k, 'callback' => $v[0], 'type' => $v[1]);\r\n\t\t\t\t} \r\n\t\t\t} else {\r\n\t\t\t\t$this->core->aim_debug('Empty/invalid array cannot be a handler in ' . __FUNCTION__, AIM_WARN);\r\n\t\t\t} \r\n\t\t}\r\n\t}", "public function processApi()\n {\n try {\n $api = new API();\n $rMethod = new reflectionMethod('API', $this->serviceName);\n if (!method_exists($api, $this->serviceName)) {\n $this->throwException(API_DOES_NOT_EXIST, \"API does not exist.\");\n }\n $rMethod->invoke($api);\n } catch (Exception $e) {\n // Not valid service\n $this->throwException(API_DOES_NOT_EXIST, $e->getMessage());\n }\n }", "public function __invoke() : array\n {\n return [\n 'dependencies' => $this->getDependencies(),\n 'authentication' => include __DIR__ . '/../config/oauth2.php',\n 'routes' => $this->getRoutes()\n ];\n }", "public function getImplementedMethods() {\n\n $supported_methods = $this->getConfiguration()->get('supported-http-methods');\n\n if ( is_null($supported_methods) ) $supported_methods = self::$supported_methods;\n\n if ( method_exists($this, 'any') ) {\n\n return $supported_methods;\n\n }\n\n $implemented_methods = [];\n\n foreach ( $supported_methods as $method ) {\n\n if ( method_exists($this, strtolower($method)) ) array_push($implemented_methods, $method);\n\n }\n\n return $implemented_methods;\n\n }", "public function provides()\n {\n return [AmazonProductApiClient::class];\n }", "public function getInterfaces($extension = null, $version = null);", "protected function registerExtensions()\n {\n $apiResult = Event::fire('editor.extension.register');\n\n if (!is_array($apiResult)) {\n return;\n }\n\n foreach ($apiResult as $extensionClassName) {\n if (!is_string($extensionClassName)) {\n continue;\n }\n\n $this->extensionClassNames[] = $extensionClassName;\n }\n }", "static public function getInterfaces();", "public function provides()\n {\n return [__CLASS__];\n }", "protected static function _getImplements() {\n return array(\n 'Nimbles\\Core\\Config\\Options' => array(\n 'format' => '%timestamp% %pid% %level% - %category% - %message%'\n )\n );\n }", "function WS_Class() {\r\n\t\t$arr_authen = array('authen_user' => 'string', 'authen_pass' => 'string');\r\n\t\tfor($i=0; $i< func_num_args(); $i++) {\r\n\t\t\t$arg = func_get_arg($i);\r\n\t\t\t$function_name = $arg[0];\r\n\t\t\t\r\n\t\t\t$input = array_merge($arr_authen, $arg[1]);\r\n\t\t\t\r\n\t\t\t$output = $arg[2];\r\n\r\n\t\t\t$this->__dispatch_map[$function_name] =\r\n\t\t\t\t\t\tarray(\r\n\t\t\t\t\t\t\t'in' => $input,\r\n\t\t\t\t\t\t\t'out' => $output\r\n\t\t\t\t\t\t);\r\n\t\t}\r\n\t}", "public function getApiEndpoints(): array;", "public function provides()\n {\n return [\n 'kuainiu',\n ];\n }", "public function __construct($domain = null, $key = null, $as_index = false) {\n\t\t$this->domain = $domain;\n\t\t$this->key = $key;\n $this->url = \"http://{$this->domain}/api\";\n if ($as_index) $this->url .= \"/index.php\";\n\n # populate our components\n foreach(get_declared_classes() as $class){\n if(is_subclass_of($class, \"ArcticDeskAPIComponent\")) {\n # we have a new component, lets proceed\n $component = new $class($this);\n $pluralized_identifier = $component->pluralized;\n $this->$pluralized_identifier = $component;\n }\n }\n }", "public function provides()\n {\n return [\n ZhyuInfoServiceProvider::class,\n ];\n }", "function H_API() {\n\treturn H_API\\Endpoints::get_instance();\n}", "public static function add_providers() {\n\t\t$args = func_get_args();\n\t\tif($args) {\n\t\t\tif(is_array($args[0])) {\n\t\t\t\tself::$providers += $args[0];\n\t\t\t} elseif(count($args) == 2) {\n\t\t\t\tself::$providers[$args[0]] = $args[1];\n\t\t\t} else {\n\t\t\t\tuser_error(__METHOD__ . ' expects either an array of providers or a URL scheme and JSON API endpoint');\n\t\t\t}\n\t\t} else {\n\t\t\tuser_error(__METHOD__ . ' expects either an array of providers or a URL scheme and JSON API endpoint');\n\t\t}\n\t}", "public function provides()\n {\n return [\n ShippingAddressInterface::class,\n UserInterface::class,\n GoodsInterface::class,\n ShoppingCartInterface::class,\n FeedbackInterface::class,\n ];\n }", "public function provides()\n {\n return [Client::class, Services\\OAuth::class];\n }", "public static function getInstalledPlugins($withClassName = false){\n\n\t\t$plugins = glob(app_path().\"/kblis/plugins/*.php\");\n\t\t$dummyIP = \"10.10.10.1\";\n\t\t$plugs = array();\n\n\t\tforeach ($plugins as $plugin) {\n\t\t\t$className = \"\\\\KBLIS\\\\Plugins\\\\\".head(explode(\".\", last(explode(\"/\", $plugin))));\n\n\t\t\t// Check if its a valid plugin file\n\t\t\tif(class_exists($className)){\n\n\t\t\t\t$instrument = new $className($dummyIP);\n\n\t\t\t\tif(is_subclass_of($instrument, '\\\\KBLIS\\\\Instrumentation\\\\AbstractInstrumentor')){\n\n\t\t\t\t\t$code = $instrument->getEquipmentInfo()['code'];\n\t\t\t\t\t$name = $instrument->getEquipmentInfo()['name'];\n\n\t\t\t\t\tif ($withClassName) {\n\t\t\t\t\t\t$plugs[$code] = array('name' => $name, 'class' => $className);\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$plugs[$code] = $name;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tLog::error(\"invalid-driver-file: \" . $className);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn $plugs;\n\t}", "function las_get_interface($name = null) {\n\tglobal $LAS_CFG, $LAS_API;\n\n\t$las_api = $LAS_CFG->wwwroot . '/api';\n\t$report_api = $LAS_CFG->wwwroot . '/report';\n\t\n\tlas_add_interface(\n\t\t'GetAPIs',\n\t\t$las_api . '/GetAPIs',\n\t\tLAS_API_MSGTYPE_JSON,\n\t\tLAS_API_MSGTYPE_JSON\n\t);\n\t\n\tlas_add_interface(\n\t\t'UploadFile',\n\t\t$las_api . '/UploadFile',\n\t\tLAS_API_MSGTYPE_FILE,\n\t\tLAS_API_MSGTYPE_JSON\n\t);\n\t\n\tlas_add_interface(\n\t\t'GetResult',\n\t\t$las_api . '/GetResult',\n\t\tLAS_API_MSGTYPE_JSON,\n\t\tLAS_API_MSGTYPE_JSON\n\t);\n\t\n\tlas_add_interface(\n\t\t'GetReportUrl',\n\t\t$report_api . '/GetReportUrl',\n\t\tLAS_API_MSGTYPE_JSON,\n\t\tLAS_API_MSGTYPE_JSON\n\t);\n\t\n\t$GLOBALS['LAS_API'] = $LAS_API;\n\t\t\n\tif ( !empty($name) ) {\n\t\tif ( array_key_exists($name, $LAS_API) ) {\n\t\t\treturn $LAS_API[$name]->url;\n\t\t}\n\t}\n\telse {\n\t\treturn json_encode($LAS_API);\n\t}\n}", "public static function register_endpoints() {\n\t\t\n $namespace = sprintf( 'wp/%s', API_VERSION );\n \n // Create a new blank package\n register_rest_route( $namespace, API_PREFIX . 'package/add', array(\n 'methods' => 'GET',\n 'callback' => array( 'Doolittle_Package_REST_API_Endpoints', 'add' ),\n ) );\n \n // Delete a package\n register_rest_route( $namespace, API_PREFIX . 'package/delete', array(\n 'methods' => 'POST',\n 'callback' => array( 'Doolittle_Package_REST_API_Endpoints', 'delete' ),\n 'args' => array(\n 'post_ids' => array(\n 'required' => true,\n 'type' => 'object',\n 'description' => 'Package post_ids',\n ) \n )\n ) );\n \n \n // Delete a package\n register_rest_route( $namespace, API_PREFIX . 'package/update', array(\n 'methods' => 'POST',\n 'callback' => array( 'Doolittle_Package_REST_API_Endpoints', 'update' ),\n 'args' => array(\n 'data' => array(\n 'required' => true,\n 'type' => 'object',\n 'description' => 'Package form',\n ) \n )\n ) );\n\t}", "public function getServiceProviders();", "public function api()\n\t{\n\t\treturn resolve(ApiManager::class);\n\t}", "public function register(): array\n {\n return [\n T_CLASS, T_INTERFACE,\n ];\n }", "public function processApi();", "public function provides(): array\n {\n return [\n 'response',\n ];\n }", "public function getServices(): array;", "public function getHandlers(): array\n {\n }", "function _photo_gallery_ctools_plugin_api() {\n $args = func_get_args();\n $module = array_shift($args);\n $api = array_shift($args);\n if ($module == \"page_manager\" && $api == \"pages_default\") {\n return array(\"version\" => 1);\n }\n else if ($module == \"strongarm\" && $api == \"strongarm\") {\n return array(\"version\" => 1);\n }\n}", "public function getTraitsProvider(): array\n {\n return [\n [new A(), [PropertiesHandler::class]],\n [new B(), []],\n [new C(), []],\n [new ToString(), []],\n [new Type(TypeTest::class, true), [\n TypeTestProvider::class,\n ],\n ],\n ['string', []],\n ];\n }", "private function loadAPIKeys() {\n $results = $this->interface->getAPIKeys();\n $this->APIKeys = [ ];\n\n foreach ($results as $row)\n $this->APIKeys[ $row[ 'service' ] ] = $row[ 'key' ];\n }", "public static function get_services()\n {\n\n //підключаємо всі необхідні класи для активації через масив\n return [\n Pages\\Admin::class,\n Base\\Enqueue::class,\n Base\\SettingsLinks::class\n ];\n }", "function las_add_interface($name, $url, $msgtype='json', $rettype='json') {\n\tglobal $LAS_API;\n\n\tif ( $name && $url && $msgtype ) {\n\t\t$entry = new stdClass;\n\n\t\t$entry->url = $url;\n\t\t$entry->msgtype = $msgtype;\n\t\t$entry->rettype = $rettype;\n\n\t\t$LAS_API[$name] = $entry;\n\t}\n}", "public function plugin(){\r\n\t$args=func_get_args();\r\n\t$plugin_name=$args[0];\r\n\t$plugin_method=$args[1];\r\n\t$plugin_method_args = array_slice($args, 2);\r\n\tPlugins::instance()->Base=$this;\r\n\t$response=Plugins::instance()->call_method($plugin_name, $plugin_method, $plugin_method_args);\r\n\t$this->response($response);\r\n }", "public function provides()\n {\n return [MuckConnection::class, MuckObjectService::class];\n }", "public function getInterface();", "public function provides()\n {\n return ['vk_service'];\n }", "public function plugin_classes() {\r\n\t\t$this->filesystem = new PDT_Filesystem( $this );\r\n\t\t$this->auth = new PDT_Auth( $this );\r\n\t\t$this->api = new PDT_Api( $this );\r\n\t\t$this->plugins = new PDT_Plugins( $this );\r\n\t\t$this->installed = new PDT_Installed( $this );\r\n\t\t$this->cases = new PDT_Cases( $this );\r\n\t\t$this->clues = new PDT_Clues( $this );\r\n\t\t$this->detective = new PDT_Detective( $this );\r\n\t}", "public function provides()\n\t{\n return array(\n 'sendy.api',\n 'sendy.http.client'\n );\n\t}", "public function providerGetComponentName()\n {\n return array(\n array('components/jquery', array(), 'jquery'),\n array('components/jquery', array('name' => 'myownjquery'), 'myownjquery'),\n array('jquery', array(), 'jquery'),\n );\n }", "private function _registerPluginServices($classes)\n\t{\n\t\t$services = array();\n\n\t\tforeach ($classes as $class)\n\t\t{\n\t\t\t$parts = explode('_', $class);\n\n\t\t\tforeach ($parts as $index => $part)\n\t\t\t{\n\t\t\t\t$parts[$index] = lcfirst($part);\n\t\t\t}\n\n\t\t\t$serviceName = implode('_', $parts);\n\t\t\t$serviceName = mb_substr($serviceName, 0, - mb_strlen('Service'));\n\n\t\t\tif (!craft()->getComponent($serviceName, false))\n\t\t\t{\n\t\t\t\t// Register the component with the handle as (className or className_*) minus the \"Service\" suffix\n\t\t\t\t$nsClass = __NAMESPACE__.'\\\\'.$class;\n\t\t\t\t$services[$serviceName] = array('class' => $nsClass);\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tthrow new Exception(Craft::t('The plugin “{handle}” tried to register a service “{service}” that conflicts with a core service name.', array('handle' => $class, 'service' => $serviceName)));\n\t\t\t}\n\t\t}\n\n\t\tcraft()->setComponents($services, false);\n\t}", "function fn_soneritics_kiyoh_get_api(): KiyohApi\n{\n $settings = new SoneriticsKiyohSettings;\n $api = new KiyohApi($settings->getHash());\n\n return $api;\n}", "public function classes() {\n\t\t$this->ApiClass = ClassRegistry::init('ApiGenerator.ApiClass');\n\t\t$classIndex = $this->ApiClass->getClassIndex();\n\t\t$this->set('classIndex', $classIndex);\n\t}", "function humcore_deposit_api_classes_init() {\n\n\tglobal $ezid_api, $fedora_api, $solr_client;\n\n\t// Create an ezid client instance.\n\trequire_once dirname( __FILE__ ) . '/ezid-api.php';\n\t$ezid_api = new Humcore_Deposit_Ezid_Api;\n\n\t// Create a fedora client instance.\n\trequire_once dirname( __FILE__ ) . '/fedora-api.php';\n\t$fedora_api = new Humcore_Deposit_Fedora_Api;\n\n\t// Create a solr client instance.\n\trequire_once dirname( __FILE__ ) . '/solr-api.php';\n\t$solr_client = new Humcore_Deposit_Solr_Api;\n\n}", "public function getServices() {\n $serviceNames = $this->getServiceNames($this->serviceFolderPaths);\n $ret = $ret1 = array();\n// require_once AMFPHP_ROOTPATH.'Plugins/AmfphpDiscovery/CReflection.php';\n foreach ($serviceNames as $serviceName) {\n/* $methods = array();\n $objC = new CReflection(APP_PATH.'/app/controllers/'.$serviceName.'.php');\n $objComment = $objC->getDocComment();\n $arrMethod = $objC->getMethods();\n foreach ($arrMethod as $objMethods)\n {\n $methodComment = $objMethods->getDocComment();\n $parsedMethodComment = $this->parseMethodComment($methodComment);\n $arrParamenter = $objMethods->getParameters();\n foreach ($arrParamenter as $Paramenter)\n {\n $parameterInfo = new AmfphpDiscovery_ParameterDescriptor($Paramenter, '');\n $parameters[] = $parameterInfo;\n }\n $methods[$objMethods->_name] = new AmfphpDiscovery_MethodDescriptor($objMethods->_name, $parameters, $methodComment, $parsedMethodComment['return']);\n }\n\n $ret[$serviceName] = new AmfphpDiscovery_ServiceDescriptor($serviceName, $methods, $objComment); */\n $ret1[] = array('label'=>$serviceName,'date'=>'');\n }\n// var_dump($ret);exit();\n //note : filtering must be done at the end, as for example excluding a Vo class needed by another creates issues\n foreach ($ret as $serviceName => $serviceObj) {\n foreach (self::$excludePaths as $excludePath) {\n if (strpos($serviceName, $excludePath) !== false) {\n unset($ret[$serviceName]);\n break;\n }\n }\n }\n return $ret1;\n }", "abstract protected function getSupportedClasses();", "function __mashineAutoload($class_name)\n{\n if (preg_match(\"/([a-zA-Z0-9]*)ApiController$/\", $class_name, $matches)) {\n $api_path = preg_replace(\"/plugins.*/\", \"controllers\".DS.\"api\", __FILE__);\n\n $file = $api_path.DS.strtolower($matches[1]).\".php\";\n if (is_file($file)) {\n include $file;\n }\n }\n}", "public abstract function getApiObjectClass();", "function methods ()\n\t{\n\t\t/** ----------------------------------------\n\t\t/**\tSet methods array\n\t\t/** ----------------------------------------*/\n\n\t\t$settings\t= serialize(array());\n\n\t\t$method_class = 'channel_entries_sql_orderby';\n\t\t$method_name = 'channel_entries_sql_where';\n\t\t$method_hook = 'channel_entries_sql_where';\n\n\t\t$methods\t= array(\n\t\t\t$method_class\t\t\t=> array(\n\t\t\t\t'class' => ucfirst( get_class($this) ),\n\t\t\t\t'method' => $method_name,\n\t\t\t\t'hook' => $method_hook,\n\t\t\t\t'settings' => $settings,\n\t\t\t\t'priority' => 10,\n\t\t\t\t'version' => $this->version,\n\t\t\t\t'enabled' => 'y'\n\t\t\t)\n\t\t);\n\n\n\t\t/** ----------------------------------------\n\t\t/**\tFind out what already exists\n\t\t/** ----------------------------------------*/\n\n\t\t$query\t\t= $this->EE->db->query( \"SELECT method, hook, version FROM exp_extensions WHERE class = '\".ucfirst( get_class($this) ).\"'\" );\n\n\t\tforeach ( $query->result_array() as $row )\n\t\t{\n\t\t\t$dbmethods[ $row['method'] ]\t= $row;\n\t\t}\n\n\n\n\n\t\t$dbmethods\t= array();\n\n\n\t\t/** ----------------------------------------\n\t\t/**\tLoop and install / update\n\t\t/** ----------------------------------------*/\n\n\t\tforeach ( $methods as $key => $val )\n\t\t{\n\t\t\tif ( isset( $dbmethods[$key] ) )\n\t\t\t{\n\t\t\t\t$dump\t= array_shift($val);\n\n\t\t\t\t$this->EE->db->query( $this->EE->db->update_string( 'exp_extensions', $val, array( 'class' => ucfirst( get_class($this) ), 'method' => $key ) ) );\n\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\n\t\t\t\t$this->EE->db->query( $this->EE->db->insert_string( 'exp_extensions', $val ) );\n\n\t\t\t}\n\t\t}\n\n\t\t/** ----------------------------------------\n\t\t/**\tReturn\n\t\t/** ----------------------------------------*/\n\n\t\treturn TRUE;\n\t}", "function getOwnInterfaces();", "public function provides()\n\t{\n\t\treturn [\n\t\t\t\n\t\t];\n\t}", "protected function buildJSClassesArray() {}", "public function providerBasicFunctionality(): array\n {\n $exceptions = [\n InvalidArgumentException::class,\n IOException::class,\n LogicException::class,\n RuntimeException::class,\n ];\n\n $data = [];\n\n // Give data sets a key of the class short names, rather than FQNs, for readability in test results.\n foreach ($exceptions as $class) {\n $reflection = new ReflectionClass($class);\n\n $data[$reflection->getShortName()] = [$class];\n }\n\n return $data;\n }", "public function getServiceDefinitions(): array;", "private function _parseClass()\n {\n // check which interfaces are implemented\n $interfaces = $this->_reflectionClass->getInterfaceNames();\n foreach ($interfaces as $i) {\n if ($i == 'Webiny\\Component\\Rest\\Interfaces\\AccessInterface') {\n $this->_parsedClass->accessInterface = true;\n }\n\n if ($i == 'Webiny\\Component\\Rest\\Interfaces\\CacheKeyInterface') {\n $this->_parsedClass->cacheKeyInterface = true;\n }\n }\n }", "public function extendPermissionApis()\n {\n return [];\n }", "public function plugins_api( $api, $action, $args ) {\n\n\t\tif ( 'plugin_information' == $action ) {\n\n\t\t\tif ( isset( $_POST['edd_deploy'] ) ) {\n\n\t\t\t\t$api_params = array(\n\t\t\t\t\t'edd_action' => 'get_download',\n\t\t\t\t\t'item_name' => urlencode( $_POST['name'] ),\n\t\t\t\t\t'license' => isset( $_POST['license'] ) ? urlencode( $_POST['license'] ) : null,\n\t\t\t\t);\n\n\t\t\t\t$api = new stdClass();\n\t\t\t\t$api->name = $args->slug;\n\t\t\t\t$api->version = '';\n\t\t\t\t$api->download_link = $this->api_url . '?edd_action=get_download&item_name=' . $api_args['item_name'] . '&license=' . $api_args['license'];\n\n\t\t\t}\n\n\t\t}\n\n\t\treturn $api;\n\n\t}", "protected function getRegisteredClasses() {}", "public function provides()\n {\n return [\n Signhost::class\n ];\n }", "public function addInterfaces(array $interfaces): void;" ]
[ "0.57349664", "0.5593698", "0.55421966", "0.55268186", "0.5526284", "0.5449645", "0.5446731", "0.5437083", "0.5413688", "0.5369309", "0.5247495", "0.5224264", "0.5201242", "0.51922446", "0.5162399", "0.50709885", "0.50577986", "0.50557554", "0.50482696", "0.5038578", "0.5038578", "0.5038578", "0.50212145", "0.5013786", "0.50057155", "0.500052", "0.49872598", "0.49765107", "0.49741095", "0.49735087", "0.4948528", "0.4946274", "0.4944388", "0.49436763", "0.49241132", "0.4906248", "0.4902384", "0.4896158", "0.48948914", "0.489156", "0.48688832", "0.48591724", "0.48498803", "0.48483282", "0.48468265", "0.48370838", "0.4826132", "0.4820301", "0.48195526", "0.48188958", "0.48186564", "0.48079798", "0.47990173", "0.47862664", "0.47848046", "0.47808582", "0.47759935", "0.47645634", "0.4762638", "0.47601005", "0.4748214", "0.47480693", "0.47469133", "0.47435358", "0.4743046", "0.47426096", "0.47364995", "0.47357598", "0.47347823", "0.47313392", "0.47292355", "0.4728249", "0.47279283", "0.47264302", "0.4724403", "0.47082058", "0.47036847", "0.47034362", "0.4700135", "0.46989164", "0.46921372", "0.4690958", "0.46877435", "0.46874592", "0.46847856", "0.4684032", "0.46793064", "0.46767828", "0.46762618", "0.46752003", "0.4673104", "0.46725357", "0.46596947", "0.46563962", "0.46556497", "0.46542153", "0.46501076", "0.4649079", "0.4646982", "0.4646535", "0.46443963" ]
0.0
-1
$action, $function, $priority = 5
static function register_ajax($action, $function, $priority = 5){ add_action( 'learn_press_ajax_handler_' . $action, $function, $priority ); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function add_action($actionname, $function, $params = array(), $priority = 10){\r\tglobal $actions;\r\t$actions[$actionname][$function] = array(\r\t\"name\" => $function,\r\t\"parameter\" => $params,\r\t\"priority\" => $priority\r\t);\r\t$actions[$actionname] = array_reverse($actions[$actionname]);\r\tuasort($actions[$actionname], 'action_sort');\r}", "function add_action($name, $function, $priority=10){\n return Plugins::instance()->add_action($name, $function, $priority);\n}", "function enqueue_action($action_name, $func_name, $priority = 0, $num_para = 0){\n if(empty($action_name) || empty($func_name)) return false;\n global $_lms_action_arr;\n $_lms_action_arr[$action_name][$priority] = array(\n 'name' => $func_name, 'num_para' => $num_para,\n );\n ksort($_lms_action_arr[$action_name]);\n}", "function add_action($tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1)\n {\n }", "function action_sort($a, $b) {\r return $a['priority'] > $b['priority'] ? 1 : -1;\r}", "public function test_add_several_actions_default_priority() {\n $hook = rand_str();\n\n $times = mt_rand( 5, 15 );\n for ( $i = 1; $i <= $times; $i++ ) {\n yourls_add_action( $hook, rand_str() );\n }\n\n $this->assertTrue( yourls_has_action( $hook ) );\n global $yourls_filters;\n $this->assertSame( $times, count( $yourls_filters[ $hook ][10] ) );\n }", "function add_action($hook, $functionname, $priority = plugin_default_priority){\n\tglobal $actions;\n\t$actions[$hook][] = ['name' => $functionname, 'priority' => $priority];\n}", "function add_action($hook_name, $callback, $priority = 10, $accepted_args = 1)\n {\n }", "public function hook($name, $action, $priority = 10, $accepted_args = 1);", "public function\n\t\tdo_actions()\n\t{\n\t}", "function add_actions()\n {\n }", "function dequeue_action($action_name, $func_name = null){\n global $_lms_action_arr;\n if(empty($_lms_action_arr[$action_name])) return false;\n if($func_name === null){\n //Reset the whole action completely\n $_lms_action_arr[$action_name] = null;\n }else{\n foreach($_lms_action_arr[$action_name] as $priority => $item){\n if($item['name'] === $func_name){\n $_lms_action_arr[$action_name][$priority] = null;\n }\n }\n }\n ksort($_lms_action_arr[$action_name]);\n return false;\n}", "function add_field_action($tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1)\n {\n }", "public function actions();", "function woocommerce_change_actions_priorities() {\n $actions = array(\n array(\n 'tag' => 'woocommerce_after_shop_loop_item_title',\n 'action' => 'woocommerce_template_loop_price',\n 'priority' => 10,\n 'priority_to_set' => 10\n ),\n array(\n 'tag' => 'woocommerce_after_shop_loop_item_title',\n 'action' => 'woocommerce_template_loop_rating',\n 'priority' => 5,\n 'priority_to_set' => 11\n )\n );\n \n foreach($actions as $action) {\n //actions which priorities needs to be changed\n remove_action($action['tag'], $action['action'], $action['priority']);\n \n //new priorities\n add_action($action['tag'], $action['action'], $action['priority_to_set']);\n }\n }", "private function add_actions()\n {\n }", "function getAction();", "public function filter($name, $action, $priority = 10, $accepted_args = 1);", "public function __construct() {\t\t\n\t\n\t\t$ci = get_instance();\n\t\t\n\t\t$ci->event->register('red.flare',function(&$input) {\n\t\t\t$input .= ' add some content to $input';\n\t\t});\n\t\t\n\n\t\t/* this is registered first but has a priority of 0 default */\n\t\t$ci->event->register('priority.example',function(&$input) {\n\t\t\t$input .= ' priority.example priority 0 - i\\'m just the default level<br>';\n\t\t}); /* the default is 0 */\n\n\t\t/* this is registered second but has a priority of 10 lower (unix style levels) */\n\t\t$ci->event->register('priority.example',function(&$input) {\n\t\t\t$input .= ' priority.example priority 10 I should go last :( <br>';\n\t\t},10);\n\n\t\t/* this is registered last but has a priority of -23 higher (unix style levels) */\n\t\t$ci->event->register('priority.example',function(&$input) {\n\t\t\t$input .= ' priority.example priority -23 I should get to go first :) !<br>';\n\t\t},-23);\n\n\t\t/*\n\t\tthis is registered first but has a priority of 0 default\n\t\tso this actually goes last\n\t\t*/\n\t\t$ci->event->register('math.boom',function(&$a,&$b,&$c) {\n\t\t\t$c = '$a('.$a.') + $b('.$b.') = '.($a + $b);\t\t\t\n\t\t}); /* the default is 0 */\n\n\t\t/*\n\t\tthis is registered last but has a priority of -23 higher (unix style levels)\n\t\tso remember it goes first\n\t\t*/\n\t\t$ci->event->register('math.boom',function(&$a,&$b,&$c) {\n\t\t\t$c = '$a('.$a.') * $b('.$b.') = '.($a * $b);\t\t\t\n\t\t},-999);\n\n\t\t\n\t\t$ci->event->register('orders',function(&$a) { $a .= ' add \"100\"'; },100);\n\t\t$ci->event->register('orders',function(&$a) { $a .= ' add \"-100\"'; },-100);\n\t\t$ci->event->register('orders',function(&$a) { $a .= ' add \"23\"'; },23);\n\t\t$ci->event->register('orders',function(&$a) { $a .= ' add \"-23\"'; },-23);\n\t\t$ci->event->register('orders',function(&$a) { $a .= ' add \"0\"'; },0);\n\t\t$ci->event->register('orders',function(&$a) { $a .= ' add \"10\"'; },10);\n\t\t$ci->event->register('orders',function(&$a) { $a .= ' add \"-17\"'; },-17);\n\t\t$ci->event->register('orders',function(&$a) { $a .= ' add \"23\"'; },23);\n\t\t\n\t\t\n\t\t/*\n\t\tif you don't set a priority then it is set to 0\n\t\tand the events are triggered in \n\t\tthe order they are registered\n\t\t*/\n\t\t\n\t\t$ci->event->register('user.login',function(&$user_name,&$user_id,&$user_email) {\n\t\t\t$user_name = $user_id.' '.$user_email;\n\t\t});\n\t\t\n\t}", "public static function actionA() {\n // …\n }", "private function actions()\n {\n }", "function process_action($target, $action) {\n //implement if needed\n }", "function getPriority() ;", "function getPriority() ;", "function getPriority() ;", "function getPriority() ;", "function getPriority() ;", "function getPriority() ;", "function getPriority() ;", "function favorite_actions()\n {\n }", "public function _doAction();", "function acf_maybe_add_action($tag, $function_to_add, $priority = 10, $accepted_args = 1)\n{\n}", "function getExecutionPriority() ;", "function defaultAction($args) {\n\t}", "public function action($func, $params)\n {\n }", "public function add_action($action, $method, $priority = 10, $accepted_args = 1)\n {\n }", "public function addAction()\n\t{\n\n\t}", "public function priority() : int;", "public function test_remove_only_actions_with_given_prio() {\n $hook = rand_str();\n $priorities = array();\n\n $times = mt_rand( 10, 30 );\n for ( $i = 1; $i <= $times; $i++ ) {\n $prio = mt_rand( 1, 100 );\n $priorities[] = $prio;\n yourls_add_action( $hook, rand_str(), $prio );\n }\n $this->assertTrue( yourls_has_action( $hook ) );\n\n global $yourls_filters;\n\n // Pick a random number of randomly picked priorities (but not all of them)\n $priorities = array_unique( $priorities );\n $random_priorities = (array) array_rand( $priorities, mt_rand( 1, count( $priorities ) - 1 ) );\n\n // Count how many we're supposed to remove\n $removed = 0;\n foreach( $yourls_filters[ $hook ] as $prio => $action ) {\n if( in_array( $prio, $random_priorities ) )\n $removed += count( $yourls_filters[ $hook ][ $prio ] );\n }\n\n // Remove the randomly picked priorities\n foreach( $random_priorities as $random_priority ) {\n yourls_remove_all_actions( $hook, $random_priority );\n }\n\n $this->assertTrue( yourls_has_action( $hook ) );\n\n // Count how many are left\n $remaining = 0;\n foreach( $yourls_filters[ $hook ] as $prio => $action ) {\n $remaining += count( $yourls_filters[ $hook ][ $prio ] );\n }\n $this->assertSame( $remaining, $times - $removed );\n }", "public function tempAction()\n\t{\n\t}", "function acf_doing_action($action)\n{\n}", "static public function priorityForAction($action, $dependency = null)\n\t{\n\t\t// low priorities up here (*lots* of dependencies)\n\t\tstatic $priorities = array(\n\t\t\tQUICKBOOKS_DEL_DATAEXT, \n\t\t\tQUICKBOOKS_MOD_DATAEXT,\n\t\t\tQUICKBOOKS_ADD_DATAEXT, \n\t\t\n\t\t\tQUICKBOOKS_MOD_RECEIVEPAYMENT, \n\t\t\tQUICKBOOKS_ADD_RECEIVEPAYMENT, \n\t\t\t\n\t\t\tQUICKBOOKS_MOD_BILLPAYMENTCHECK, \n\t\t\tQUICKBOOKS_ADD_BILLPAYMENTCHECK, \n\t\t\t\n\t\t\t//QUICKBOOKS_MOD_BILLPAYMENTCREDITCARD, \n\t\t\tQUICKBOOKS_ADD_BILLPAYMENTCREDITCARD, \n\t\t\t\n\t\t\tQUICKBOOKS_MOD_BILL, \n\t\t\tQUICKBOOKS_ADD_BILL, \n\t\t\t\n\t\t\tQUICKBOOKS_MOD_PURCHASEORDER, \n\t\t\tQUICKBOOKS_ADD_PURCHASEORDER, \n\t\t\t\n\t\t\tQUICKBOOKS_MOD_SALESORDER, \n\t\t\tQUICKBOOKS_ADD_SALESORDER, \n\t\t\t\n\t\t\tQUICKBOOKS_MOD_ESTIMATE, \n\t\t\tQUICKBOOKS_ADD_ESTIMATE, \n\t\t\t\n\t\t\tQUICKBOOKS_MOD_INVOICE,\n\t\t\tQUICKBOOKS_ADD_INVOICE,\n\t\t\t\n\t\t\tQUICKBOOKS_ADD_INVENTORYADJUSTMENT, \n\n\t\t\tQUICKBOOKS_ADD_RECEIPTITEM,\n\t\t\tQUICKBOOKS_MOD_RECEIPTITEM,\n\n\t\t\tQUICKBOOKS_MOD_SALESRECEIPT, \n\t\t\tQUICKBOOKS_ADD_SALESRECEIPT, \n\n\t\t\tQUICKBOOKS_ADD_SALESTAXITEM, \n\t\t\tQUICKBOOKS_MOD_SALESTAXITEM, \n\t\t\t\n\t\t\tQUICKBOOKS_ADD_DISCOUNTITEM, \n\t\t\tQUICKBOOKS_MOD_DISCOUNTITEM, \n\t\t\t\n\t\t\tQUICKBOOKS_ADD_OTHERCHARGEITEM, \n\t\t\tQUICKBOOKS_MOD_OTHERCHARGEITEM, \n\t\t\t\n\t\t\tQUICKBOOKS_MOD_NONINVENTORYITEM, \n\t\t\tQUICKBOOKS_ADD_NONINVENTORYITEM,\n\t\t\t\n\t\t\tQUICKBOOKS_MOD_INVENTORYITEM, \n\t\t\tQUICKBOOKS_ADD_INVENTORYITEM, \n\t\t\t\n\t\t\tQUICKBOOKS_MOD_SERVICEITEM, \n\t\t\tQUICKBOOKS_ADD_SERVICEITEM, \n\t\t\t\n\t\t\tQUICKBOOKS_MOD_SALESREP, \n\t\t\tQUICKBOOKS_ADD_SALESREP, \n\t\t\t\n\t\t\tQUICKBOOKS_MOD_EMPLOYEE, \n\t\t\tQUICKBOOKS_ADD_EMPLOYEE, \n\t\t\t\n\t\t\t//QUICKBOOKS_MOD_SALESTAXCODE, \t\t// The SDK doesn't support this\n\t\t\tQUICKBOOKS_ADD_SALESTAXCODE, \n\t\t\t\n\t\t\tQUICKBOOKS_MOD_VENDOR, \n\t\t\tQUICKBOOKS_ADD_VENDOR, \n\t\t\t\n\t\t\tQUICKBOOKS_MOD_CUSTOMER,\n\t\t\tQUICKBOOKS_ADD_CUSTOMER,\n\t\t\t\n\t\t\tQUICKBOOKS_MOD_ACCOUNT, \n\t\t\tQUICKBOOKS_ADD_ACCOUNT, \n\t\t\t\n\t\t\t//QUICKBOOKS_MOD_CLASS,\t\t(does not exist in qbXML API) \n\t\t\tQUICKBOOKS_ADD_CLASS, \n\t\t\t\n\t\t\tQUICKBOOKS_ADD_PAYMENTMETHOD, \n\t\t\tQUICKBOOKS_ADD_SHIPMETHOD, \n\t\t\t\n\t\t\t// Queries \n\t\t\tQUICKBOOKS_QUERY_PURCHASEORDER,\n\t\t\tQUICKBOOKS_QUERY_RECEIPTITEM,\n\t\t\tQUICKBOOKS_QUERY_SALESORDER, \n\t\t\tQUICKBOOKS_QUERY_SALESRECEIPT, \n\t\t\tQUICKBOOKS_QUERY_INVOICE,\n\t\t\tQUICKBOOKS_QUERY_ESTIMATE, \n\t\t\tQUICKBOOKS_QUERY_RECEIVEPAYMENT, \n\t\t\t\n\t\t\tQUICKBOOKS_QUERY_BILLPAYMENTCHECK, \n\t\t\tQUICKBOOKS_QUERY_BILLPAYMENTCREDITCARD, \n\t\t\tQUICKBOOKS_QUERY_BILLTOPAY, \n\t\t\tQUICKBOOKS_QUERY_BILL, \n\t\t\t\n\t\t\tQUICKBOOKS_QUERY_CREDITCARDCHARGE, \n\t\t\tQUICKBOOKS_QUERY_CREDITCARDCREDIT, \n\t\t\tQUICKBOOKS_QUERY_CHECK, \n\t\t\tQUICKBOOKS_QUERY_CHARGE,\n\t\t\t\n\t\t\tQUICKBOOKS_QUERY_DELETEDITEMS, //This gets all items deleted in the last 90 days.\n\t\t\tQUICKBOOKS_QUERY_DELETEDTXNS, //This gets all transactions deleted in the last 90 days.\n\t\t\t\n\t\t\tQUICKBOOKS_QUERY_TIMETRACKING, \n\t\t\tQUICKBOOKS_QUERY_VENDORCREDIT, \n\t\t\t\n\t\t\tQUICKBOOKS_QUERY_INVENTORYADJUSTMENT, \n\t\t\t\n\t\t\tQUICKBOOKS_QUERY_ITEM, \n\t\t\tQUICKBOOKS_QUERY_DISCOUNTITEM, \n\t\t\tQUICKBOOKS_QUERY_SALESTAXITEM, \n\t\t\tQUICKBOOKS_QUERY_SERVICEITEM,\n\t\t\tQUICKBOOKS_QUERY_NONINVENTORYITEM, \n\t\t\tQUICKBOOKS_QUERY_INVENTORYITEM, \n\n\t\t\tQUICKBOOKS_QUERY_SALESREP, \n\n\t\t\tQUICKBOOKS_QUERY_VEHICLEMILEAGE, \n\t\t\tQUICKBOOKS_QUERY_VEHICLE, \n\n\t\t\tQUICKBOOKS_QUERY_CUSTOMER,\n\t\t\tQUICKBOOKS_QUERY_VENDOR, \n\t\t\tQUICKBOOKS_QUERY_EMPLOYEE, \n\n\t\t\tQUICKBOOKS_QUERY_WORKERSCOMPCODE, \n\n\t\t\tQUICKBOOKS_QUERY_UNITOFMEASURESET,\n\t\t\t\n\t\t\tQUICKBOOKS_QUERY_JOURNALENTRY, \n\t\t\tQUICKBOOKS_QUERY_DEPOSIT, \n\n\t\t\tQUICKBOOKS_QUERY_SHIPMETHOD, \n\t\t\tQUICKBOOKS_QUERY_PAYMENTMETHOD, \n\t\t\tQUICKBOOKS_QUERY_PRICELEVEL, \n\t\t\tQUICKBOOKS_QUERY_DATEDRIVENTERMS, \n\t\t\tQUICKBOOKS_QUERY_BILLINGRATE, \n\t\t\tQUICKBOOKS_QUERY_CUSTOMERTYPE, \n\t\t\tQUICKBOOKS_QUERY_CUSTOMERMSG, \n\t\t\tQUICKBOOKS_QUERY_TERMS, \n\t\t\tQUICKBOOKS_QUERY_SALESTAXCODE, \n\t\t\tQUICKBOOKS_QUERY_ACCOUNT, \n\t\t\tQUICKBOOKS_QUERY_CLASS, \n\t\t\tQUICKBOOKS_QUERY_JOBTYPE, \n\t\t\tQUICKBOOKS_QUERY_VENDORTYPE, \n\t\t\t\n\t\t\tQUICKBOOKS_QUERY_COMPANY, \n\t\t);\n\t\t// high priorities down here (no dependencies OR queries)\n\t\t\n\t\t// Now, let's space those priorities out a little bit, it gives us some \n\t\t//\twiggle room in case we need to add things inbetween the default \n\t\t//\tpriority values\n\t\tstatic $wiggled = false;\n\t\t$wiggle = 4;\n\t\t\n\t\tif (!$wiggled)\n\t\t{\n\t\t\t$count = count($priorities);\n\t\t\tfor ($i = $count - 1; $i >= 0; $i--)\n\t\t\t{\n\t\t\t\t$priorities[$i * $wiggle] = $priorities[$i];\n\t\t\t\tunset($priorities[$i]);\n\t\t\t\t\n\t\t\t\t// with a wiggle multiplier of 2...\n\t\t\t\t// \tpriority 25 goes to 50\n\t\t\t\t// \tpriority 24 goes to 48\n\t\t\t\t// \tpriority 23 goes to 46\n\t\t\t\t// \tetc. etc. etc. \n\t\t\t}\n\t\t\t\n\t\t\t$wiggled = true;\n\t\t\t\n\t\t\t//print_r($priorities);\n\t\t}\n\t\t\n\t\tif ($dependency)\n\t\t{\n\t\t\t// \n\t\t\t// This is a list of dependency modifications\n\t\t\t//\tFor instance, normally, you'd want to send just any old DataExtAdd \n\t\t\t//\twith a really low priority, because whatever record it applies to \n\t\t\t//\tmust be in QuickBooks before you send the DataExtAdd/Mod request. \n\t\t\t// \n\t\t\t//\tHowever, if we pass in the $dependency of QUICKBOOKS_ADD_CUSTOMER, \n\t\t\t//\tthen we know that this DataExt applies to a CustomerAdd, and can \n\t\t\t//\ttherefore be sent with a priority *just barely lower than* than a \n\t\t\t//\tCustomerAdd request, which will ensure this gets run as soon as \n\t\t\t//\tpossible, but not sooner than the CustomerAdd.\n\t\t\t// \n\t\t\t//\tThis is important because in some cases, this data will be \n\t\t\t//\tautomatically used by QuickBooks. For instance, a custom field that \n\t\t\t//\tis placed on an Invoice *must already be populated for the \n\t\t\t//\tCustomer* before the invoice is created. \n\t\t\t//\n\t\t\t// This priority list is without dependencies, and it's bad: \t\n\t\t\t//\tCustomerAdd, InvoiceAdd, DataExtAdd\t\t\n\t\t\t//\t(the custom field for the customer doesn't get populated in the invoice)\n\t\t\t//\n\t\t\t// This priority list is with dependencies, and it's good: \n\t\t\t// \tCustomerAdd, DataExtAdd, InvoiceAdd\n\t\t\t//\t\n\t\t\t$dependencies = array(\n\t\t\t\tQUICKBOOKS_ADD_DATAEXT => array( \n\t\t\t\t\tQUICKBOOKS_ADD_CUSTOMER => QuickBooks_API::priority(QUICKBOOKS_ADD_CUSTOMER) - 1, \n\t\t\t\t\tQUICKBOOKS_MOD_CUSTOMER => QuickBooks_API::priority(QUICKBOOKS_MOD_CUSTOMER) - 1, \n\t\t\t\t),\n\t\t\t\tQUICKBOOKS_MOD_DATAEXT => array(\n\t\t\t\t\tQUICKBOOKS_ADD_CUSTOMER => QuickBooks_API::priority(QUICKBOOKS_ADD_CUSTOMER) - 1, \n\t\t\t\t\tQUICKBOOKS_MOD_CUSTOMER => QuickBooks_API::priority(QUICKBOOKS_MOD_CUSTOMER) - 1, \n\t\t\t\t\t), \n\t\t\t\t);\t\t\t\n\t\t}\n\t\t\n\t\t// Check for dependency priorities\n\t\tif ($dependency and \n\t\t\tisset($dependencies[$action]) and \n\t\t\tisset($dependencies[$action][$dependency]))\n\t\t{\t\t\t\n\t\t\t// Dependency modified priority\n\t\t\treturn $dependencies[$action][$dependency];\n\t\t}\n\t\telse if ($key = array_search($action, $priorities))\n\t\t{\n\t\t\t// Regular priority\n\t\t\treturn $key;\n\t\t}\n\t\t\n\t\t// Default priority\n\t\treturn 999;\t\t\n\t}", "public function get_priority() {\n\t\treturn 5;\n\t}", "public function addAction() {\r\n\t}", "public function test_add_several_actions_random_priorities() {\n $hook = rand_str();\n\n $times = mt_rand( 5, 15 );\n for ( $i = 1; $i <= $times; $i++ ) {\n yourls_add_action( $hook, rand_str(), mt_rand( 1, 10 ) );\n }\n\n $this->assertTrue( yourls_has_action( $hook ) );\n\n global $yourls_filters;\n $total = 0;\n foreach( $yourls_filters[ $hook ] as $prio => $action ) {\n $total += count( $yourls_filters[ $hook ][ $prio ] );\n }\n\n $this->assertSame( $times, $total );\n }", "function doing_action($hook_name = \\null)\n {\n }", "abstract protected function priorityHandlerReturnValue();", "public function addAction() {\n\t}", "public function addAction() {\n\t}", "public function addAction() {\n\t}", "public function take_action()\n {\n }", "public function take_action()\n {\n }", "public function addActions()\n {\n }", "public function actions(): array;", "public function action();", "public function executeAction() {\r\n\t\t\r\n\t}", "function actions()\n {\n return[];\n }", "function action($action, $forwarder = \"\") {\n \n global $CONFIG;\n \n\t $query = parse_url($_SERVER['REQUEST_URI']);\n\t\t\tif (isset($query['query'])) {\n\t\t\t\t$query = $query['query'];\n\t\t\t\t$query = rawurldecode($query);\n\t\t\t\t$query = explode('&',$query);\n\t\t\t\tif (sizeof($query) > 0) {\n\t\t\t\t\tforeach($query as $queryelement) {\n\t\t\t\t\t\t$vals = explode('=',$queryelement);\n\t\t\t\t\t\tif (sizeof($vals) > 1) {\n\t\t\t\t\t\t\tset_input(trim($vals[0]),trim($vals[1]));\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n \n $forwarder = str_replace($CONFIG->url, \"\", $forwarder);\n $forwarder = str_replace(\"http://\", \"\", $forwarder);\n $forwarder = str_replace(\"@\", \"\", $forwarder);\n\n if (substr($forwarder,0,1) == \"/\") {\n $forwarder = substr($forwarder,1);\n }\n \n if (isset($CONFIG->actions[$action])) {\n \tif (\n \t\t(isadminloggedin()) ||\n \t\t(!$CONFIG->actions[$action]['admin'])\n \t) {\n\t if ($CONFIG->actions[$action]['public'] || $_SESSION['id'] != -1) {\n\t \t\n\t \t// Trigger action event TODO: This is only called before the primary action is called. We need to rethink actions for 1.5\n\t \t$event_result = true;\n\t \t$event_result = trigger_plugin_hook('action', $action, null, $event_result);\n\t \t\n\t \t// Include action\n\t \tif ($event_result) // Event_result being false doesn't produce an error - since i assume this will be handled in the hook itself. TODO make this better!\n\t \t{\n\t\t\t if (@include($CONFIG->actions[$action]['file'])) {\n\t\t\t } else {\n\t\t\t register_error(sprintf(elgg_echo('actionundefined'),$action));\n\t\t\t }\n\t \t}\n\t } else {\n\t register_error(elgg_echo('actionloggedout'));\n\t }\n \t}\n } else {\n \tregister_error(sprintf(elgg_echo('actionundefined'),$action));\n }\n forward($CONFIG->url . $forwarder);\n \n }", "private function setAction()\n\t\t{\n\t\t\t$this->_action = ($this->_separetor[2]);\n\t\t}", "public function act()\n\t{\n\t\n\t}", "public function compareAction() {}", "public function getHandlerPriority(): int;", "function remove_action($hook_name, $callback, $priority = 10)\n {\n }", "function current_action()\n {\n }", "protected function getActions() {}", "public function test_add_action_funcname() {\n // Random function name\n $hook = rand_str();\n $this->assertFalse( yourls_has_action( $hook ) );\n yourls_add_action( $hook, rand_str() );\n $this->assertTrue( yourls_has_action( $hook ) );\n\n // Specific function name to test with yourls_do_action\n $hook = rand_str();\n $this->assertFalse( yourls_has_action( $hook ) );\n yourls_add_action( $hook, 'change_one_global' );\n $this->assertTrue( yourls_has_action( $hook ) );\n\n return $hook;\n\t}", "protected function getAction() {}", "public function getAction() {}", "public function getAction() {}", "public function getAction() {}", "public function getAction() {}", "public static function _actionB() {\n // …\n }", "public function relatorioAction() { \r\n \r\n }", "public function otherAction() {\n\t}", "public function paroleAction() {\n\t\t \t\t\t\t\n\t\t\n\t}", "function PostActions()\n {\n }", "function remove_all_actions($hook_name, $priority = \\false)\n {\n }", "public function act() {\n\t}", "public function priority()\n {\n return 5;\n }", "public function newAction()\n\t{\n\t}", "public function setup_actions() {}", "public function getPriority() : int;", "public function topAction();", "private function get_action() {\n\t\treturn $this->action;\n\t}", "private function get_action() {\n\t\treturn $this->action;\n\t}", "private function get_action() {\n\t\treturn $this->action;\n\t}", "function bind($event = null, $action = null, $priority = 0)\n {\n static $events = array();\n !empty($events) or ($events = &$GLOBALS['$horus.events']);\n\n if ( empty($event) ) return $events;\n elseif ( ! empty($event) && !empty($action) ) {\n $events[$event][$priority][] = $action;\n ksort($events[$event]);\n }\n }", "public function register_actions() {\n\t\t}", "function perform_action($action_name, ...$args){\n global $_lms_action_arr;\n if(!empty($_lms_action_arr[$action_name])){\n $func_names = $_lms_action_arr[$action_name];\n print_r($func_names);\n foreach($func_names as $func){\n if(!empty($func)){\n //Handles the bug when a hook is not properly dequeued.\n call_user_func_array($func['name'], $args);\n }\n\n }\n }\n\n}", "function Piwik_AddAction( $hookName, $function )\n{\n\tPiwik_PluginsManager::getInstance()->dispatcher->addObserver( $function, $hookName );\n}", "public function getDefaultAction();", "public function getDefaultAction();", "public function getDefaultAction();", "public function invoke($action);", "protected function action( $tag, $function_to_add, $priority = 10, $accepted_args = 1 ) {\n\t\treturn \\add_action( $tag, [ $this, $function_to_add ], $priority, $accepted_args );\n\t}", "public function preAction() {\n\n }", "public function preAction()\n {\n }", "function setAction($action);", "function wp_user_request_action_description($action_name)\n {\n }", "public function process() {\r\n if(!in_array($this->getRouter()->getAction(), $this->getAllowActions()) || $this->getRouter()->getAction() == null) {\r\n $this->defaultAction();\r\n } else {\r\n $customAction = $this->getRouter()->getAction().Globals::getConfig()->action->suffix;\r\n $this->$customAction();\r\n }\r\n }" ]
[ "0.7255801", "0.7124861", "0.70071894", "0.6794869", "0.64771", "0.6457989", "0.6412131", "0.6290229", "0.62668747", "0.6189853", "0.61698043", "0.6164691", "0.6143514", "0.60948104", "0.6088836", "0.6088788", "0.60834366", "0.60780096", "0.60488075", "0.6015536", "0.60049826", "0.6001244", "0.59948355", "0.5994444", "0.5994444", "0.5994444", "0.5994405", "0.5994405", "0.5994405", "0.59886575", "0.5938724", "0.59161294", "0.59114605", "0.5905056", "0.5881518", "0.5876083", "0.5862841", "0.5862756", "0.5844225", "0.584226", "0.58422583", "0.58387923", "0.58332473", "0.5832676", "0.5832562", "0.582572", "0.5803787", "0.5785827", "0.5785827", "0.5785827", "0.57774055", "0.57774055", "0.5768336", "0.57597387", "0.5719658", "0.57153547", "0.5710832", "0.56980705", "0.5690044", "0.5682476", "0.5665933", "0.5658735", "0.56370753", "0.563249", "0.562405", "0.56203455", "0.56163573", "0.56147367", "0.56147367", "0.56147367", "0.56147367", "0.56042874", "0.5590032", "0.5589855", "0.55846983", "0.5578069", "0.55778533", "0.5573252", "0.55634505", "0.5562404", "0.5558488", "0.55515456", "0.5543201", "0.5538277", "0.5538277", "0.5538277", "0.5534906", "0.55335367", "0.55284286", "0.5520159", "0.54902065", "0.54902065", "0.54902065", "0.5486697", "0.5485038", "0.5480231", "0.5479727", "0.5471085", "0.5462927", "0.5459818" ]
0.588377
34
valdiate user against details provided
function CheckUser($arrUser) { // get user id of verified user $verifiedUser = $this->VerifyUser($arrUser); if(!empty($verifiedUser) && $verifiedUser!=false) { // Set the values in session for a valid user // session_register("user"); $_SESSION['user'] = $verifiedUser; $_SESSION['user']['user_id'] = $verifiedUser['user_id']; $_SESSION['user']['user_middle_name'] = $verifiedUser['user_middle_name']; $_SESSION['user']['user_first_name'] = $verifiedUser['user_first_name']; $_SESSION['user']['user_last_name'] = $verifiedUser['user_last_name']; $_SESSION['user']['user_email'] = $verifiedUser['user_email']; $_SESSION['user']['user_telephone'] = $verifiedUser['user_telephone']; $_SESSION['user']['user_fax'] = $verifiedUser['user_fax']; $_SESSION['user']['user_postal_address']= $verifiedUser['user_postal_address']; $_SESSION['user']['user_city'] = $verifiedUser['user_city']; $_SESSION['user']['user_state'] = $verifiedUser['user_state']; $_SESSION['user']['user_zip_code'] = $verifiedUser['user_zip_code']; $_SESSION['user']['user_country'] = $verifiedUser['user_country']; $_SESSION['user']['user_status'] = $verifiedUser['user_status']; $_SESSION['user']['modified_date'] = $verifiedUser['modified_date']; $_SESSION['user']['valid'] = "loggedin"; $_SESSION['user']['phpsessionId'] = $_COOKIE['PHPSESSID']; //$_SESSION['user']['user_email'] = $verifiedUser->user_email; //$_SESSION['user']['id'] = $verifiedUser->user_id; //$_SESSION['user']['phpsessionId']= $_COOKIE['PHPSESSID']; // echo "<pre>"; print_r($_SESSION['user']); //die; //$this->loginUser("loggedin"); if(isset($_SESSION['from-cart']) && $_SESSION['from-cart']='true') { $_SESSION['from-cart']=''; header("location:../checkout.php"); exit; } $this->loginUser($_SESSION['user']['valid']); //return "loggedin"; } else { $msg="fail"; $this->loginUser($msg); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function valUserExisting(){\n if($this->_personDB->getActive()){\n if($this->logIn()){\n $this->addUserHttpSession();\n $this->_response = 'ok';\n }\n }else{\n $this->_response = '104';\n }\n }", "public function processUser(){\n \n $this->setCurrentUser();\n $this->setUsersAttributes();\n }", "function set_user_password_expirations() { \n\t\tglobal $wpdb;\n\n\t\t$sql = 'select ID from '.$wpdb->users;\n\n\t\t$res = $wpdb->get_results($sql, ARRAY_A);\n\n\t\tif (!$res) return; // this condition would be weird eh? \n\n\t\tforeach ($res[0] as $u) { \n\t\t\t$d = get_user_meta( $u, 'll_password_changed_date', true);\n\t\t\tif ('' == $d) \n\t\t\t update_user_meta( $u, 'll_password_changed_date', time() );\n\t\t}\n\n\t}", "public function simulateUser() {}", "public static function refreshUser() {\n\t\t$user = self::getUser();\n\t\t\n\t\t$refreshedUser = db_UserManager::getInstance()->find($user['id']);\n\t\t\n\t\tself::setUser($refreshedUser);\n\t}", "function updateUser() {\n\t\t$rating = $this -> getTaskRating();\n\t\t$sql = \"Update Users set finishedBasic=1, userRating=userRating+\" . $rating . \" where UID= (Select t.UID from Task t WHERE t.TaskId=\" . $this -> data[0]['TaskId'] . \")\";\n\t\t$stmt = $this -> DB -> prepare($sql);\n\t\tif ($stmt -> execute()) {\n\t\t\t$this -> checkforLast();\n\t\t} else {\n\t\t\tinclude_once \"Email.php\";\n\t\t\tnew Email('failed', 'to update user with TaskId=' . $this -> data[0]['TaskId'], $this -> id);\n\t\t}\n\t}", "function activateUser($userId);", "function userverifydetails($firstname, $lastname, $address1, $address2, $city, $zip, $state, $country, $dob, $username) \n\t{\n $user = UserModel::user();\n\t\t\n if ($user>user_detailssubmitted == 'submitted') \n\t\t{ \n\t\n\t\t\t//sql to run\n\t\t\t$sql = \"UPDATE user \n\t\t\t\t\tSET\tuser_firstname = ?,\n\t\t\t\t\t\tuser_lastname = ?,\n\t\t\t\t\t\tuser_address1 = ?, \n\t\t\t\t\t\tuser_address2 = ?,\n\t\t\t\t\t\tuser_city = ?,\n\t\t\t\t\t\tuser_zip = ?,\n\t\t\t\t\t\tuser_state = ?,\n\t\t\t\t\t\tuser_country = ?,\n\t\t\t\t\t\tuser_dob = ?, \n\t\t\t\t\t\tuser_detailssubmitted = 'submitted' \n\t\t\t\t\t\tWHERE user_id = ?\";\n\t\t\t\t\t\t\n\t\t\t//run the sql\n\t\t\t$updateuser = $this->db->prepare($sql);\n $updateuser->execute(array($firstname, $lastname, $address1, $address2, $city, \n\t\t\t\t\t\t\t\t\t $zip, $state, $country, $dob, $username->username));\n }\n }", "function approveMember($userId) {\r\n $sql = $this->db->prepare(\"UPDATE USER SET type=2 WHERE UserID=:user_id\");\r\n $sql->execute(array('user_id' => $userId));\r\n return true;\r\n }", "function activate_user($userid){\n\t\t$this->stmt = $this->db->update('users');\n \n\t\t// where\n\t\t$this->stmt->where('id','i',$userid);\n\t\t\n\t\t// values\n\t $this->stmt->values( array(\n\t\t \n\t\t // userlevel\n\t\t array(\n\t\t\t 'name' => 'userlevel',\n\t\t\t 'type' => 'i',\n\t\t\t 'value'=> GarageSale\\User::USER_STANDARD\n\t\t )\n\t\t));\n\t\treturn parent::set();\n\t}", "public function resetExaminedFlagForAllUsers();", "public function activate_user() {\n global $database;\n $sql = \"UPDATE user SET is_active = 1 WHERE id = \";\n $sql .= $database->escape_value($this->id);\n $database->query($sql);\n }", "function _deactivate_user() {\n\t\t$sql=\"SELECT GROUP_CONCAT(id_user) as id FROM \".TABLE_PREFIX.\"user WHERE DATEDIFF(current_date(),last_login) = \".$this->_input['day'].\" AND id_admin <> 1 \";\n\t\t$ids= getsingleindexrow($sql);\n\t\tif($this->_input['day'] && $this->_input[\"flag\"] == 1){\n\t\t if($ids['id']!=\"\"){\n\t\t\t $arr['user_status']=0;\n\t\t\t $this->obj_user->update_this(\"user\",$arr,\"id_user IN (\".$ids['id'].\")\");\n\t\t\t $this->obj_user->update_this(\"meme\",$arr,\"id_user IN (\".$ids['id'].\")\");\n\t\t\t $this->obj_user->update_this(\"reply\",$arr,\"id_user IN (\".$ids['id'].\")\");\n\t\t\t $this->obj_user->update_this(\"caption\",$arr,\"id_user IN (\".$ids['id'].\")\");\n\t\t\t print \"Succesfully Done\";\n\t\t }else{\n\t\t\t print \"No user found\";\n\t\t\t exit;\n\t\t }\n\t\t }else{\n\t\t if($ids['id']!=\"\"){\n\t\t\t $arr=explode(\",\", $ids['id']);\n\t\t\t for($x=0;$x<count($arr);$x++){\n\t\t\t $del=$this->unlink_files($arr[$x]);\n\t\t\t }\n\t\t\t $this->obj_user->deleteuser($ids['id']);\n\t\t }\n\t\t}\n\t}", "protected function update_user_is () {\n\t\t$this->is_guest = $this->user_id == User::GUEST_ID;\n\t\t$this->is_user = false;\n\t\t$this->is_admin = false;\n\t\tif ($this->is_guest) {\n\t\t\treturn;\n\t\t}\n\t\t/**\n\t\t * Checking of user type\n\t\t */\n\t\t$groups = User::instance()->get_groups($this->user_id) ?: [];\n\t\tif (in_array(User::ADMIN_GROUP_ID, $groups)) {\n\t\t\t$this->is_admin = true;\n\t\t\t$this->is_user = true;\n\t\t} elseif (in_array(User::USER_GROUP_ID, $groups)) {\n\t\t\t$this->is_user = true;\n\t\t}\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 openUser()\n {\n $this->isUser = true;\n }", "function identifyUser() {\n}", "public function doApproveUser ($uid) {\n\t\t$userInfo = resolve('userInfo');\n\n\t\tif ($userInfo->usr_role != \"AD\") {\n\t\t\treturn redirect('error');\n\t\t}\n\n\t\t$user = User::getUserById($uid);\n\n\t\tDB::table('users')->where('usr_id', $uid)->update(array('usr_approval'=>'Yes'));\n\t\tLog::doAddLog (\"Approve user\", $uid, $user->usr_firstname.' '.$user->usr_lastname);\n\t\treturn redirect('personnelboard')->with('success', \"User has been approved\");\n\n\t}", "public function verify_donor($user_id) {\n \n }", "abstract public function user();", "public function evaluate(Model_User $user);", "public function adminUserConditionMatchesRegularUser() {}", "public function loginUserConditionMatchesSingleLoggedInUser() {}", "public function loginUserConditionMatchesSingleLoggedInUser() {}", "public function accept()\n {\n\n $update['id'] = $this->session->userdata('user_id');\n $update['data']['agree'] = '1';\n $update['table'] = 'users';\n $this->Application_model->update($update);\n\n redirect('/dashboard','refresh');\n\n }", "private function maintain()\n {\n $stmt = $this->db->prepare(\"DELETE FROM \".$this->dbname.\".users WHERE NOW() > (registratoinDate + INTERVAL \".$this->timeToVerify.\" MINUTE) and isVerified=FALSE\");\n $stmt->execute(); \n }", "public function updateUser()\n {\t\t\n\t\t$user = $this->checkToken();\n\t\tif ($user) {\t\n\t\t\t$userModel = UserModel::find($user->id);\n\t\t\t$data = filter_input_array(INPUT_POST, FILTER_SANITIZE_STRING);\n\t\t\t$userModel->fill($data);\n\t\t\t$userModel->save();\n\t\t\treturn $this->sendResponse('Your details have been successfully updated');\n\t\t}\n\t\treturn $this->sendResponse('You are not authorised to update this account');\n }", "function activateUser() {\n if (isset($_GET['account'])) {\n $account = htmlspecialchars($_GET['account'], ENT_QUOTES);\n \n connectDatabase();\n \n $result = queryDatabase(\"SELECT email\n FROM user\n WHERE active = 0\");\n\n if (mysql_num_rows($result) > 0){\n while ($row = mysql_fetch_object($result)) {\n if ($account == crypt($row->email, SALT)) {\n queryDatabase(\"UPDATE user SET active = 1\n WHERE email = '$row->email'\");\n \n echo '<div class=\"good\">Activation successful - Login using EMAIL/USER ID and PASSWORD</div>';\n \n break;\n }\n }\n }\n }\n}", "function UpdateUser() {\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_USER_TYPE] = $this->reseller->getUserType();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_USERNAME] = $this->reseller->getUserLoginName();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_EMAIL_ID] = $this->reseller->getEmailId();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_CONTACT_NO] = $this->reseller->getMobileNo();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_FULL_NAME] = $this->reseller->getFullName();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_ADDRESS] = $this->reseller->getAddress();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_CITY] = $this->reseller->getCity();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_REGION] = $this->reseller->getRegion();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_COUNTRY] = $this->reseller->getCountry();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_DOMAIN_NAME] = $this->reseller->getDomainName();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_EXPIRY_DATE] = $this->reseller->getExpiryDate();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_ENABLE_CMS] = $this->reseller->getEnableCMS();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_USER_STATUS] = $this->reseller->getUserStatus();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_NEWPASSWORD] = $this->reseller->getNewPassword();\n\t\t\t$this->data[sgc_reseller_user_api_params::API_RESELLER_USER_PARAM_DLT_ENTITY_ID] = $this->reseller->getDltEntityId();\n $response = new sgc_callapi(sgc_constant::SGC_API, sgc_constant::SGC_ENDPOINT_RESELLER_UPDATE_USER, $this->data, $this->header, sgc_common_api_params::API_COMMON_METHOD_POST, $this->useRestApi);\n\t\t\treturn $response->getResponse();\n\t\t}", "protected function Authorized(){\n // usuario\n $url = $this->getUrl();\n if ($url instanceof Url && $this->isWebsiteFree($url->host)){\n return true;\n }\n \n // Autorizar la solicitud atendiendo a la activacion del usuario\n\t\t$uType = $this->getUserType();\n\t\t\n\t\tif ($uType >= USER_CLIENT){ // Ok user is active\n\t\t\t$res = DBHelper::Select('users', '*', \"email='{$this->user}'\");\n\t\t\t//if ((!$res[0]['name'] || !$res[0]['phone']) && $res[0]['expiration'] - time() >= 7 * 24 * 3600){\n\t\t\t//\t$this->url = Url::Parse(\n // \t\t\"http://\".HTTP_HOST.\"/__www/set-user-info.php?user={$this->user}&success_url=\" . urlencode((string)$this->data->url)\n \t//\t);\n\t\t\t//}\n\t\t}elseif(DBHelper::is_user_registered($this->user) > 0){ \n // La activacion del usuario ha expirado. Redirigir a\n // la pagina de recarga\n\t\t\t\n /** @var Url url */\n $url = $this->getUrlFromData();\n if (stripos($url->host, HTTP_HOST) === FALSE){\n\t\t\t $this->url = Url::Parse(ACCOUNT_EXPIRED_URL . \"&user={$this->user}&mobile={$this->data->mobile}&success_url=\". urlencode((string)$this->data->url));\n }\n\t\t}else {\n // Se permite acceso solamente al servidor de Aurora\n return FALSE;\n }\n \n return true;\n\t}", "public function expire() {\n logit_r($this, 'expire'); \n $status = ($this->status == UserLoginReq::STATUS_NOTIFIED) ? UserLoginReq::STATUS_PAST_GRACE : UserLoginReq::STATUS_EXPIRED;\n logit_r($status, 'status');\n $this->status = $status;\n $this->save(true);\n }", "public function checkUserSettings(){\n $data = $this->db->start()->get('*','user', array(array('id', '=', $_SESSION['_user']['id'])))->first();\n $_SESSION['_user'] = array('id' => $data->id, 'firstname' => $data->firstname, 'lastname' => $data->lastname, 'email' => $data->email, 'userLevel' => $this->getuserLevel($data->id)); \n }", "public function accountActivation($userId,$value)\n\t{\t$user = new User;\n\t\t$user->id=$userId;\n\t\t$user->setAccountDesactivate($value);\n\n\t}", "public function setLastActionUser(){\n\t\t// nilai authtimeout user\n\t\tYii::$app->user->authTimeout;\n\n\t\t$user = User::findOne(Yii::$app->user->id);\n\t\t$user->last_action = date('Y-m-d H:i:s');\n\t\t$user->update();\n\t}", "function check_suspension($user_id) {\n\t\t$user = get_user_by('ID', $user_id);\n\t\tupdate_user_meta($user_id, 'suspended', $_POST['suspend']);\n\t}", "private function shouldUpdateIdentity(?User $identity): bool\n {\n if (!($identity instanceof User)) {\n // no identity in the session yet - refresh\n return true;\n }\n\n if (empty($identity->getId())) {\n //no user id - refresh\n return true;\n }\n\n $cookie = $this->request->getCookie();\n\n $pid = $this->request->getHeader('X-Pid', new GenericHeader())->getFieldValue();\n\n if (!empty($cookie['secureToken']) && !empty($pid)) {\n // user authenticated\n if ($identity->getPid() !== $pid) {\n // but the one in session has different pid - refresh\n return true;\n }\n } else {\n // user not authenticated\n return true;\n }\n\n return false;\n }", "public function execute()\n {\n if ($this->getAuth()->hasIdentity() && $this->getAuth()->getIdentity() instanceof Users_Model_DbTable_Users_Row) {\n return true;\n }\n\n $email = (string) $this->getAuth()->getIdentity();\n\n $userModel = new Users_Model_DbTable_Users();\n $user = $userModel->fetchByEmail($email);\n if (!$user) {\n $this->invalidateUser();\n return false;\n }\n\n // check if user is banned\n if (!$user->canLogin()) {\n $this->invalidateUser();\n return false;\n }\n \n $this->getAuth()->clearIdentity();\n \n // record login\n $user->postLogin();\n \n // set the user to the session\n $this->getAuth()->getStorage()->write($user);\n // set helper auth\n \n $returnLink = $this->getForm()->getElement(\"return\")->getValue();\n \n // direct to change password AND clear temp password\n if ($returnLink == 'change-password') {\n //$user->clearTempPassword();\n return true;\n }\n \n return true;\n \n }", "function renewMembership(&$user){\n\t\t$dateEnd = $user->getSetting('dateEndMembership', 0);\n\t\tif (!$dateEnd) $dateEnd = 0;\n\t\t\n\t\t// if the membership is expired, extend it to today + 1 year\n\t\t$time = time();\n\t\tif ($dateEnd < $time ) $dateEnd = $time;\n\n\t\t$dateEnd = mktime(23, 59, 59, date(\"m\", $dateEnd), date(\"d\", $dateEnd), date(\"Y\", $dateEnd)+1);\n\t\t$user->updateSetting('dateEndMembership', $dateEnd, 'date', 0);\n\t}", "function unlockAccount($userid){\n $query = \"UPDATE users_account SET status ='Active' WHERE userid = ?\";\n $paramType = \"i\";\n $paramValue = array(\n $userid\n );\n $this->db_handle->update($query, $paramType, $paramValue);\n }", "function check_user() {\n\treturn false; // update allowed\n\treturn true; //no update allowed\n}", "function assign_user()\n\t{\n\t\tglobal $current_user;\n\t\t$ass_user = $this->column_fields[\"assigned_user_id\"];\t\t\n\t\tif( $ass_user != $current_user->id)\n\t\t{\n\t\t\t$result = $this->db->query(\"select id from ec_users where user_name = '\".$ass_user.\"' or last_name = '\".$ass_user.\"'\");\n\t\t\tif($this->db->num_rows($result) != 1)\n\t\t\t{\n\t\t\t\t$this->column_fields[\"assigned_user_id\"] = $current_user->id;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\n\t\t\t\t$row = $this->db->fetchByAssoc($result, -1, false);\n\t\t\t\tif (isset($row['id']) && $row['id'] != -1)\n \t {\n\t\t\t\t\t$this->column_fields[\"assigned_user_id\"] = $row['id'];\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t$this->column_fields[\"assigned_user_id\"] = $current_user->id;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "public function loginUserConditionDoesNotMatchSingleLoggedInUser() {}", "public function forUser($user);", "function activateUser($id) {\n \n $this->db->where('userID', $id);\n $this->db->update('user', array('status' => 1)); \n\n }", "function activate_user(){\n\n // use the get request since the user information \n // has been post \n if($_SERVER['REQUEST_METHOD'] == \"GET\"){\n\n if(isset($_GET['email'])) {\n \n $email = clean($_GET['email']);\n $validation_code = clean($_GET['code']);\n \n // select the user in the database \n $sql = \"SELECT id FROM users WHERE email ='\".escape($_GET['email']).\"' AND validation_code = '\".escape($_GET['code']).\"'\";\n $result = query($sql); // get the result \n\n // if the user exists in the database, activate the account by updating active by 1\n // Then the user is redirected to the login page to login \n if(row_count($result)==1){\n\n $sql2 = \"UPDATE users SET active = 1, validation_code = 0 WHERE email = '\".escape($email).\"' AND validation_code = '\".escape($validation_code).\"'\";\n $result2 = query($sql2);\n\n set_message(\"<p class='bg-success'> Your account has been activated please login</p>\");\n \n redirect(\"login.php\");\n }\n else{ // if the user is not activated display an error message\n // and redirect the user to the login page\n\n set_message(\"<p class='bg-danger'> Sorry Your account has not been activated</p>\");\n \n redirect(\"register.php\"); \n\n } \n }\n\n} // GET \n\n}", "public function run()\n {\n $this->makeUser('Erdősi Péter','[email protected]',bcrypt('12345678'),'',true);\n $this->makeUser('Hires Krisztián','[email protected]',bcrypt('12345678'),'',true);\n }", "public function active_user($db,$data) {\n\n $sql=\"UPDATE user SET activate=true where token='$data'\";\n return $db->ejecutar($sql);\n }", "private function setUserToBeImpersonated($userId)\r\n\t{\r\n\t\tif (!empty($userId)) {\r\n\t\t\tif (version_compare($this->laravel->version(), '5.2.0', '<')) {\r\n\t\t\t\t$userModel = config('auth.model');\r\n\t\t\t\t$user = $userModel::find($userId);\r\n\t\t\t\t$this->laravel['auth']->setUser($user);\r\n\t\t\t} else {\r\n\t\t\t\tif (!config('openapischemas.auth_provider')) {\r\n\t\t\t\t\t$this->error('You need to specify a \"auth_provider\" value in your openapischemas.php configuration file first.');\r\n\t\t\t\t\texit();\r\n\t\t\t\t}\r\n\t\t\t\t$provider = config('openapischemas.auth_provider');\r\n\t\t\t\t$userModel = config(\"auth.providers.$provider.model\");\r\n\t\t\t\tif (!config('auth.providers.' . $provider . '.model')) {\r\n\t\t\t\t\t$this->error('No model in your config/auth.php matching auth provider \"' . $provider . '\" from your openapischemas.php configuration file.');\r\n\t\t\t\t\texit();\r\n\t\t\t\t}\r\n\t\t\t\t$user = $userModel::find($userId);\r\n\t\t\t\t$auth_guard = config('openapischemas.auth_guard');\r\n\t\t\t\t$this->laravel['auth']->guard($auth_guard)->setUser($user);\r\n\t\t\t}\r\n\t\t}\r\n\t}", "public function reactivate_user(){\n\t\t\t\n\t\t\t//escaping the post values\n\t\t\t$uid = html_escape($this->input->post('userID'));\n\t\t\t$id = preg_replace('#[^0-9]#i', '', $uid); // filter everything but numbers\n\n\t\t\t$detail = $this->db->select('*')->from('users')->where('id',$id)->get()->row();\n\t\t\t\n\t\t\tif($detail){\n\n\t\t\t\t\t//$data['id'] = $detail->id;\n\t\t\t\t\t$update = array(\n\t\t\t\t\t\t'status' => '0',\n\t\t\t\t\t);\n\t\t\t\t\t\n\t\t\t\t\tif($this->Users->update_user($update, $id)){\n\t\t\t\t\t\t\n\t\t\t\t\t\t$data['success'] = true;\n\t\t\t\t\t\t$data['notif'] = '<div class=\"alert alert-success text-center\" role=\"alert\"> <i class=\"fa fa-check-circle\"></i><button type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-hidden=\"true\">&times;</button> User has been reactivated!</div>';\n\t\t\t\t\t}else{\n\t\t\t\t\t\t$data['success'] = false;\n\t\t\t\t\t\t$data['notif'] = '<div class=\"alert alert-danger text-center\" role=\"alert\"><i class=\"fa fa-ban\"></i><button type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-hidden=\"true\">&times;</button> Method error</div>';\n\t\t\t\t\t}\n\n\t\t\t}else {\n\t\t\t\t$data['success'] = false;\n\t\t\t\t$data['notif'] = '<div class=\"alert alert-danger text-center\" role=\"alert\"><i class=\"fa fa-ban\"></i><button type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-hidden=\"true\">&times;</button> No such user!</div>';\n\t\t\t}\n\t\t\techo json_encode($data);\n\t\t}", "public function check_insta_user() {\n \n }", "public function reload_user() \n\t{\n\t\t// only for logged in users\n\t\tif ($this->logged_in()) \n\t\t{\n\n\t\t\t// get user id from session\n\t\t\t$user_data = $this->get_user();\n\t\t\t$user_model = new Auth_Users_Model($user_data->id);\n\t\t\tif ( ! $user_model->loaded())\n\t\t\t{\n\t\t\t\t// if there is no such user in database - quit\n\t\t\t\t$this->logout();\n\t\t\t\treturn FALSE;\n\t\t\t}\t\t \n\t\t\t\n\t\t\tif (intval($user_model->active) === 1)\n\t\t\t{\n\t\t\t\t// if user is active, prepare user data to be stored in session\n\t\t\t\t$user_model->load_roles();\n\t\t\t\t$simple_user = new Simple_User;\n\t\t\t\t$simple_user->set_user($user_model->as_array()); \n\t\t\t\t$simple_user->set_roles($user_model->roles); \n\t\t\t\t$this->session->set($this->config['session_key'], $simple_user);\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t// if user is inactive, log him out\n\t\t\t\t$this->logout();\n\t\t\t}\n\t\t}\n\t}", "protected function gate()\n {\n Gate::define('viewNova', function ($user) {\n return in_array($user->email, [\n //\n ]);\n });\n }", "function SetAExpire($TL, $sToken, $uid){\n if((checkUsrPermissions($sToken) == \"ar\") | (checkUsrPermissions($sToken) == \"an\")){\n if(chkUsrExist((int)$uid)){\n $ex = GetExp($TL);\n if($ex == \"Err :: Select One Of This : [1h,12h,1d,1w,2w,1m,3m,1y,3y,5y,lifetime]\"){\n return \"Err :: Check TimeLimit\";\n }else{\n $_SESSION['db']->prepare(\"UPDATE users SET `expire-date`=:ex WHERE id=:id\")->execute(['id' => $uid,'ex' => $ex]);\n $_SESSION['db']->prepare(\"UPDATE users SET `Subscription-create-date`=:cd WHERE id=:id\")->execute(['id' => $uid,'cd' => gmdate('Y-m-d h:i:s')]);\n return \"done\"; \n }\n }else{\n return \"UserID Not Exist !!\";\n } \n }else{\n return \"Err :: May u are not admin !\";\n }\n}", "public function run()\n {\n User::whereNull('vendor_id')->get()->each(function($user) {\n \t$user->vendor_id = factory(Vendor::class)->create()->id;\n \t$user->save();\n });\n }", "public function disable_reservation_user() {\n $query = 'UPDATE reservations ';\n $query .= 'SET state_id = 3 ';\n $query .= 'WHERE state_id IN (1,2) ';\n $query .= 'AND user_id=' . $this->id;\n\n $connection = get_connection();\n $query_result = $connection->query($query);\n\n $connection->close();\n\n return $query_result;\n }", "public function matchUser( $data ){\n\t\t$success = parent::matchUser( $data );\n\n\t\tif ( $success ) {\n\t\t\treturn $this->createAnswer( 0, array(\"user\"=>$_SESSION,\"msg\"=>\"Do you have access\"));\n\t\t}else{\n\t\t\treturn $this->createAnswer( 1,\"Something went wrong\",403 );\n\t\t}\n\t}", "function setActivityUser($grab=true)\n {\n if(isset($GLOBALS['user']) && !empty($this->instance->instanceId) && !empty($this->activity_id)) \n {\n if ($this->activity->isInteractive())\n {// activity is interactive and we want the form, we'll try to grab the ticket on this instance-activity (or release)\n if ($grab)\n {\n $new_user = $GLOBALS['user'];\n }\n else\n {\n $new_user= '*';\n }\n if (!$this->instance->setActivityUser($this->activity_id,$new_user))\n {\n //fail can return in auto mode or die\n $errors = $this->fail(lang(\"You do not have the right to run this activity anymore, maybe a concurrent access problem, refresh your datas.\", true, $this->debug, !($this->auto_mode)));\n $this->error[] = $errors;\n return false;\n }\n }// if activity is not interactive there's no need to grab the token\n }\n else\n {\n //fail can return in auto mode or die\n $errors= $this->fail(lang(\"We cannot run this activity, maybe this instance or this activity do not exists anymore.\", true, $this->debug, !($this->auto_mode)));\n $this->error[] = $errors;\n return false;\n } \n }", "private function checkValidUser() {\n return;\n if(!($this->getData('key') == $this->sessionId && isset($_SESSION['user']) && isset($_SESSION['valid']) && $_SESSION['valid'] === true)) {\n $this->output = array(\n 'success' => false,\n 'key' => 'kMIvl'\n );\n\n // Terminate the call now, user isn't allowed to perform this action\n $this->renderOutput(true);\n }\n }", "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 reActivate()\n {\n $response = $this->response();\n $config = [\n ['field' => 'userid', 'label' => '', 'rules' => 'trim|required|integer'],\n ['field' => 'activationemail', 'label' => '', 'rules' => 'trim|required|min_length[4]|max_length[100]|valid_email']\n ];\n $this->form_validation->set_rules($config);\n if ($this->form_validation->run() === false) {\n $response[\"errors\"] = $this->form_validation->error_array();\n $this->output->set_output(json_encode($response));\n return false;\n }\n $userID = $this->input->post('userid');\n $email = $this->input->post('activationemail');\n if ($this->oauth_web->reActivate($userID, $email) === true) {\n $response[\"status\"] = true;\n $response[\"msg\"] = $this->lang->line(\"reActivate_ok\");\n }\n $this->output->set_output(json_encode($response));\n }", "public function editUser()\n {\n\n $this->displayAllEmployees();\n $new_data = [];\n $id = readline(\"Unesite broj ispred zaposlenika čije podatke želite izmjeniti: \");\n\n $this->displayOneEmployees( $id);\n\n foreach ( $this->employeeStorage->getEmployeeScheme() as $key => $singleUser) { //input is same as addUser method\n\n $userInput = readline(\"$singleUser : \");\n $validate = $this->validateInput($userInput, $key);\n\n while (!$validate)\n {\n $userInput = readline(\"Unesite ispravan format : \");\n $validate = $this->validateInput($userInput, $key);\n\n }\n if ($key === 'income'){\n $userInput = number_format((float)$userInput, 2, '.', '');\n }\n\n $new_data[$key] = $userInput;\n\n }\n $this->employeeStorage->updateEmployee($id, $new_data); //sends both id and data to updateEmployee so the chosen employee can be updated with new data\n\n echo \"\\033[32m\". \"## Izmjene za \". $new_data['name'].\" \". $new_data['lastname'].\" su upisane! \\n\\n\".\"\\033[0m\";\n\n }", "public function documentcheck() {\n $user = User::load(\\Drupal::currentUser()->id());\n bhge_user_registration_user_login($user);\n }", "public function user_updated( $ui ) {\n\n //fish out all the needed params\n $dirty_phone_number = $ui->getAttribute('phone_number');\n $full_country_code = (string)$ui->getAttribute('phone_country_code');\n $email_addr = $ui->getUserEmail();\n\n //and request the update\n self::updateUserAuthy( $ui, $email_addr, $dirty_phone_number, $full_country_code );\n }", "function run()\r\n {\r\n $id = Request :: get(UserManager :: PARAM_USER_USER_ID);\r\n if ($id)\r\n {\r\n \tif (!UserRights :: is_allowed_in_users_subtree(UserRights :: EDIT_RIGHT, $id))\r\n\t\t {\r\n\t\t \t$this->display_header();\r\n\t\t Display :: error_message(Translation :: get(\"NotAllowed\", null, Utilities :: COMMON_LIBRARIES));\r\n\t\t $this->display_footer();\r\n\t\t exit();\r\n\t\t }\r\n\r\n\t\t $checkurl = Session :: retrieve('checkChamiloURL');\r\n\t\t Session :: clear();\r\n Session :: register('_uid', $id);\r\n Session :: register('_as_admin', $this->get_user_id());\r\n Session :: register('checkChamiloURL', $checkurl);\r\n header('Location: index.php');\r\n\r\n }\r\n else\r\n {\r\n $this->display_error_page(htmlentities(Translation :: get('NoObjectSelected', array('OBJECT'=> Translation :: get('User')), Utilities :: COMMON_LIBRARIES)));\r\n }\r\n }", "public function recover_user($id)\n\t{\n\t\t$dbres = $this->db->query(\"update user SET delete_status='0' where id = $id \");\n\t\tredirect(site_url() . 'sys/get_employees?msg_rec=success');\n\t}", "public function userActiveDeactive() {\n if (func_num_args() > 0):\n $uid = func_get_arg(0);\n try {\n $data = array('status' => new Zend_DB_Expr('IF(status=1, 0, 1)'));\n $result = $this->update($data, 'user_id = \"' . $uid . '\"');\n } catch (Exception $e) {\n throw new Exception($e);\n }\n if ($result):\n return $result;\n else:\n return 0;\n endif;\n else:\n throw new Exception('Argument Not Passed');\n endif;\n }", "public function loginUserConditionDoesNotMatchIfNotUserIsLoggedId() {}", "private function deactivate_user($id) {\n\t\t//Update user table\n\t\t$query = \"UPDATE users SET deactivated='1' WHERE id='$id'\";\n\t\t$update_database = mysqli_query($this->con, $query);\n\t\t//Insert into User History for Documentation\n\t\t$employee_id = $this->check_employee_id($id);\n\t\t$query = \"INSERT INTO user_history (employee_id, access_prior, access_after, updated_by, note) VALUES ('$employee_id','0', '0', 'System', 'Account Deactivated due to 180 days of No Access.')\";\n\t\t$insert_database = mysqli_query($this->con, $query);\n\t}", "public function updateUserInfo($allowNewUser = true, $level = null)\n\t{\n \n\t\t$state = $this->getStateVariables();\n\t\t$user = JFactory::getUser();\n \n if($user->guest) {\n \n $user->id = 0;\n }\n \n \n \n \n\t\t$user = $this->getState('user', $user);\n \n \n \n\n\t\tif(($user->id == 0) && !$allowNewUser) {\n\t\t\t// New user creation is not allowed. Sorry.\n\t\t\treturn false;\n\t\t}\n\n\t\tif($user->id == 0) {\n\t\t\t// Check for an existing, blocked, unactivated user with the same\n\t\t\t// username or email address.\n\t\t\t$user1 = FOFModel::getTmpInstance('Jusers','AkeebasubsModel')\n\t\t\t\t->username($state->username)\n\t\t\t\t->block(1)\n\t\t\t\t->getFirstItem();\n \n\t\t\t$user2 = FOFModel::getTmpInstance('Jusers','AkeebasubsModel')\n\t\t\t\t->email($state->email)\n\t\t\t\t->block(1)\n\t\t\t\t->getFirstItem();\n\t\t\t$id1 = $user1->id;\n\t\t\t$id2 = $user2->id;\n \n \n\t\t\t// Do we have a match?\n\t\t\tif($id1 || $id2) {\n\t\t\t\tif($id1 == $id2) {\n\t\t\t\t\t// Username and email match with the blocked user; reuse that\n\t\t\t\t\t// user, please.\n\t\t\t\t\t$user = JFactory::getUser($user1->id);\n\t\t\t\t} elseif($id1 && $id2) {\n\t\t\t\t\t// We have both the same username and same email, but in two\n\t\t\t\t\t// different users. In order to avoid confusion we will remove\n\t\t\t\t\t// user 2 and change user 1's email into the email address provided\n\n\t\t\t\t\t// Remove the last subscription for $user2 (it will be an unpaid one)\n\t\t\t\t\t$submodel = FOFModel::getTmpInstance('Subscriptions','AkeebasubsModel');\n\t\t\t\t\t$substodelete = $submodel\n\t\t\t\t\t\t->user_id($id2)\n\t\t\t\t\t\t->getList();\n\t\t\t\t\tif(!empty($substodelete)) foreach($substodelete as $subtodelete) {\n\t\t\t\t\t\t$subtable = $submodel->getTable();\n\t\t\t\t\t\t$subtable->delete($subtodelete->akeebasubs_subscription_id);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove $user2 and set $user to $user1 so that it gets updated\n\t\t\t\t\t$user2->delete($id2);\n\t\t\t\t\t$user = JFactory::getUser($user1->id);\n\t\t\t\t\t$user->email = $state->email;\n\t\t\t\t\t$user->save(true);\n\t\t\t\t} elseif(!$id1 && $id2) {\n\t\t\t\t\t// We have a user with the same email, but the wrong username.\n\t\t\t\t\t// Use this user (the username is updated later on)\n\t\t\t\t\t$user = JFactory::getUser($user2->id);\n\t\t\t\t} elseif($id1 && !$id2) {\n\t\t\t\t\t// We have a user with the same username, but the wrong email.\n\t\t\t\t\t// Use this user (the email is updated later on)\n\t\t\t\t\t$user = JFactory::getUser($user1->id);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif(is_null($user->id) || ($user->id == 0)) {\n\t\t\t// CREATE A NEW USER\n\t\t\t$params = array(\n\t\t\t\t'name'\t\t\t=> $state->name,\n\t\t\t\t'username'\t\t=> $state->username,\n\t\t\t\t'email'\t\t\t=> $state->email,\n\t\t\t\t'password'\t\t=> $state->password,\n\t\t\t\t'password2'\t\t=> $state->password2\n\t\t\t);\n\n\t\t\t$user = JFactory::getUser(0);\n\n\t\t\tJLoader::import('joomla.application.component.helper');\n\t\t\t$usersConfig = JComponentHelper::getParams( 'com_users' );\n\t\t\t$newUsertype = $usersConfig->get( 'new_usertype' );\n\n\t\t\tif(version_compare(JVERSION, '1.6.0', 'ge')) {\n\t\t\t\t// get the New User Group from com_users' settings\n\t\t\t\tif(empty($newUsertype)) $newUsertype = 2;\n\t\t\t\t$params['groups'] = array($newUsertype);\n\t\t\t} else {\n\t\t\t\tif (!$newUsertype) {\n\t\t\t\t\t$newUsertype = 'Registered';\n\t\t\t\t}\n\t\t\t\t$acl = JFactory::getACL();\n\t\t\t\t$params['gid'] = $acl->get_group_id( '', $newUsertype, 'ARO' );\n\t\t\t}\n\n\t\t\t$params['sendEmail'] = 0;\n\n\t\t\t// Set the user's default language to whatever the site's current language is\n\t\t\tif(version_compare(JVERSION, '3.0', 'ge')) {\n\t\t\t\t$params['params'] = array(\n\t\t\t\t\t'language'\t=> JFactory::getConfig()->get('language')\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\t$params['params'] = array(\n\t\t\t\t\t'language'\t=> JFactory::getConfig()->getValue('config.language')\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// We always block the user, so that only a successful payment or\n\t\t\t// clicking on the email link activates his account. This is to\n\t\t\t// prevent spam registrations when the subscription form is abused.\n\t\t\tJLoader::import('joomla.user.helper');\n\t\t\t$params['block'] = 1;\n\t\t\t$params['activation'] = JFactory::getApplication()->getHash( JUserHelper::genRandomPassword() );\n\n\t\t\t$userIsSaved = false;\n\t\t\t$user->bind($params);\n\t\t\t$userIsSaved = $user->save();\n\t\t} else {\n\t\t\t// UPDATE EXISTING USER\n\n\t\t\t// Remove unpaid subscriptions on the same level for this user\n\t\t\t$unpaidSubs = FOFModel::getTmpInstance('Subscriptions','AkeebasubsModel')\n\t\t\t\t->user_id($user->id)\n\t\t\t\t->paystate('N','X')\n\t\t\t\t->getItemList();\n\t\t\tif(!empty($unpaidSubs)) foreach($unpaidSubs as $unpaidSub) {\n\t\t\t\t$table = FOFModel::getTmpInstance('Subscriptions','AkeebasubsModel')->getTable();\n\t\t\t\t$table->delete($unpaidSub->akeebasubs_subscription_id);\n\t\t\t}\n\n\t\t\t// Update existing user's details\n\t\t\t$userRecord = FOFModel::getTmpInstance('Jusers','AkeebasubsModel')\n\t\t\t\t->setId($user->id)\n\t\t\t\t->getItem();\n\n\t\t\t$updates = array(\n\t\t\t\t'name'\t\t\t=> $state->name,\n\t\t\t\t'email'\t\t\t=> $state->email\n\t\t\t);\n\t\t\tif(!empty($state->password) && ($state->password = $state->password2)) {\n\t\t\t\tJLoader::import('joomla.user.helper');\n\t\t\t\t$salt = JUserHelper::genRandomPassword(32);\n\t\t\t\t$pass = JUserHelper::getCryptedPassword($state->password, $salt);\n\t\t\t\t$updates['password'] = $pass.':'.$salt;\n\t\t\t}\n\t\t\tif(!empty($state->username)) {\n\t\t\t\t$updates['username'] = $state->username;\n\t\t\t}\n\t\t\t$userIsSaved = $userRecord->save($updates);\n\t\t}\n\n\t\t// Send activation email for free subscriptions if confirmfree is enabled\n\t\tif($user->block && ($level->price < 0.01)) {\n\t\t\tif(!class_exists('AkeebasubsHelperCparams')) {\n\t\t\t\trequire_once JPATH_ADMINISTRATOR.'/components/com_akeebasubs/helpers/cparams.php';\n\t\t\t}\n\t\t\t$confirmfree = AkeebasubsHelperCparams::getParam('confirmfree', 0);\n\t\t\tif($confirmfree) {\n\t\t\t\t// Send the activation email\n\t\t\t\tif(!isset($params)) $params = array();\n\t\t\t\t$this->sendActivationEmail($user, $params);\n\t\t\t}\n\t\t}\n\n\t\tif(!$userIsSaved) {\n\t\t\tJError::raiseWarning('', JText::_( $user->getError())); // ...raise a Warning\n\t\t\treturn false;\n\t\t} else {\n\t\t\t$this->setState('user', $user);\n\t\t}\n\n\t\treturn $userIsSaved;\n\t}", "public function modify_user($user);", "public function payForInvitedUsers(){\n \n $userService = parent::getService('user','user');\n \n $refererUsers = $userService->getUsersWithRefererNotPaid();\n foreach($refererUsers as $user):\n // if created at least 30 days ago\n if(strtotime($user['created_at'])>strtotime('-30 days')){\n continue;\n }\n // if logged within last 5 days ago\n if(!(strtotime($user['last_active'])>strtotime('-7 days'))){\n $user->referer_not_active = 1;\n $user->save();\n continue;\n }\n \n $values = array();\n $values['description'] = 'Referencing FastRally to user '.$user['username'];\n $values['income'] = 1;\n \n \n if($user['gold_member_expire']!=null){\n $amount = 100;\n }\n else{\n $amount = 10;\n }\n \n \n $userService->addPremium($user['referer'],$amount,$values);\n $user->referer_paid = 1;\n $user->save();\n endforeach;\n echo \"done\";exit;\n }", "function func_bp_core_activated_user($user_id, $key, $user){\n $args = array( 'field' => 'Are You A Coach', 'user_id' => $user_id); \n $_xprofile_coach_yes_no = bp_get_profile_field_data($args); \n if( $_xprofile_coach_yes_no == 'Yes'){ \n\t//change user role to coach \n\t$wp_user = get_user_by('ID', $user_id); \n\t$wp_user->remove_role('subscriber'); \n\t$wp_user->add_role('coach');\n }\n}", "public function doVerification() {\n $this->validate ( $this->request, $this->getRules () );\n $user = $this->_user->where ( StringLiterals::EMAIL, $this->decodeParam ( $this->request->user ) )->where ( 'otp', $this->request->otp )->first ();\n if (count ( $user ) > 0) {\n Auth::loginUsingId ( $user->id );\n return true;\n } else {\n return false;\n }\n }", "public function toggle_enabled_user($conn, $user) \n { \n Ossim_db::check_connection($conn);\n \n $params = array($user);\n $query = \"SELECT enabled FROM users WHERE login = ?\";\n \n $rs = $conn->Execute($query, $params);\n \n if (!$rs) \n { \n return FALSE;\n } \n \n $enabled = ($rs->fields['enabled'] <= 0) ? 1 : 0;\n \n if($enabled == 1) \n {\n $clogin = $conn->GetOne(\"SELECT login FROM users WHERE login = '\".$user.\"' AND expires > '\".gmdate('Y-m-d H:i:s').\"'\");\n \n if ($clogin == '') \n {\n if ($conn->Execute(\"UPDATE users SET expires = '2200-01-01 00:00:00' WHERE login = '\".$user.\"'\") === FALSE) \n { \n return FALSE;\n }\n }\n }\n\n $query = \"UPDATE users SET enabled = $enabled WHERE login = ?\";\n $rs = $conn->Execute($query, $params);\n \n if (!$rs) \n { \n return FALSE;\n }\n \n return TRUE; \n }", "public function _checkAndGetUserActive()\n {\n return $this->find('id_user,name,lastname,email,salt,password', [\n 'username' => $this->username,\n 'sw_active' => 1\n ]);\n }", "public function edit_user()\n {\n //make sure user logged in or pending\n if (Session::has('user') || Session::has('pending_user'))\n {\n //check to make sure phone number in correct format\n $number = Input::get('phone_number');\n\n //took pattern from http://www.w3resource.com/javascript/form/phone-no-validation.php\n $pattern = \"/^\\(?([0-9]{3})\\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/\";\n\n //if phone entered correctly\n if (preg_match ($pattern, $number))\n {\n\n // Input doesn't return zero for unchecked boxes, so change these to zero\n $hours_notification = (Input::get('hours_notification') ? 1 : 0);\n $deals_notification = (Input::get('deals_notification') ? 1 : 0);\n\n //strip any punctuation from phone number, if exists\n $phone = str_replace(array(\"-\",\".\",\"(\",\")\",\" \"), \"\", Input::get('phone_number'));\n\n //if user already logged in\n if (Session::has('user'))\n {\n $user_session = Session::get('user');\n $user = User::find($user_session->id);\n $user->preferred_name = Input::get('preferred_name');\n $user->phone_number = $phone;\n $user->hours_notification = $hours_notification;\n $user->deals_notification = $deals_notification;\n $user->save();\n\n //put updated user on to session\n\n Session::put('user', $user);\n\n }\n //else create new user\n else\n {\n //create user based on session data and input\n $pending = Session::get('pending_user');\n\n $user = new User();\n $user->cs50_id = $pending[\"cs50_id\"];\n $user->name = $pending[\"fullname\"];\n $user->preferred_name = Input::get('preferred_name');\n $user->email = $pending[\"email\"];\n $user->phone_number = $phone;\n $user->hours_notification = $hours_notification;\n $user->deals_notification = $deals_notification;\n $user->save();\n\n //remove pending user from session\n Session::forget('pending_user');\n\n //log user in\n Session::put('user', $user);\n Auth::loginUsingId($user->id);\n\n //send user text message about signing up\n\n $grille_name = Grille::where('id', $this->grille_id)->pluck('name');\n $message = \"Thanks for signing up for \" . $grille_name . \"'s online ordering!\n If you received this message by accident, reply 'STOP'\";\n\n Sms::send_sms($phone, $message);\n }\n\n //redirect to most recent page\n $url = Session::get('redirect');\n Session::forget('redirect');\n return Redirect::to($url);\n }\n //else alert user to enter correct phone number\n else\n {\n $failure = 'Please enter a 10-digit phone number';\n\n //if user already has account\n if (Session::has('user'))\n {\n $user = Session::get('user');\n $user->new = 0;\n $user->grille_number = Grille::where('id', $this->grille_id)->pluck('phone_number');\n $this->layout->content = View::make('users.edit', ['user' => $user, 'failure' => $failure]);\n }\n\n //if user is logging in for first time\n else\n {\n $user = Session::get('pending_user');\n $this->layout->content = View::make('users.edit', ['user' => $user, 'failure' => $failure]);\n }\n\n }\n }\n\n //if not user or pending user, redirect\n else\n {\n try {\n return Redirect::back();\n }\n catch (Exception $e) {\n return Redirect::to('/');\n }\n }\n\n }", "public function updateUser($data) {\n\t\t\n\t}", "function changeUserDetail($userEmail, $firstname, $lastname, $phone){\n\n\t\tglobal $conn;\n\n\t\t$query = \"UPDATE User \n\t\tSET firstname='$firstname', lastname='$lastname', phone='$phone' \n\t\tWHERE email='\" . $userEmail . \"'\";\n\n\t\t$result = $conn->query($query);\n\n\t\tif($result != TRUE){\n\t\t\techo \"Error updating \" . $userEmail . \" details\";\n\t\t}\n\n\t}", "private function attemptLogin($user){\n\n }", "function after_user_activate( $user_id, $user_data, $signup_meta ) {\n $group_id = !empty($_GET['group_id']) ? $_GET['group_id'] : $_POST['group_id'];\n \n if( absint( $group_id ) == $group_id ) {\n ld_update_group_access( $user_id, $group_id );\n }\n}", "function suspendUsers($getSelectedUser, $addedOn, $username)\n{\n require('../core/db2.php');\n\n $sql = \"UPDATE users SET \n registration_status = 'Pending',\n approved_by = '$username',\n approved_on = '$addedOn'\n WHERE username = '$getSelectedUser'\";\n if ($con->query($sql) === true) {\n echo \"\";\n } else {\n // echo \"Error: \" . $sql . \"<br>\" . $con->error;\n echo \"Error\";\n }\n}", "public function return_to()\n {\n // configuration\n require_once(app_path().'/config/id.php');\n\n // remember which user, if any, logged in\n $current_user = CS50::getUser(RETURN_TO);\n\n //check if returning user\n $input = array('cs50_id' => $current_user[\"identity\"]);\n $rules = array('cs50_id' => 'exists:users,cs50_id');\n\n $validator = Validator::make($input, $rules);\n\n //if doesn't exist, take user to edit page\n if ($validator->fails())\n {\n //parse first name\n $full = $current_user[\"fullname\"];\n $split = explode(' ',trim($full));\n $first = $split[0];\n\n $user = array(\"cs50_id\"=> $current_user[\"identity\"],\n \"fullname\" => $current_user[\"fullname\"],\n \"preferred_name\" => $first,\n \"email\" => $current_user[\"email\"],\n \"new\" => 1,\n \"phone_formatted\" => \"(XXX) XXX-XXXX\");\n\n\n //put user in the session\n Session::put('pending_user', $user);\n\n $failure = Session::get('failure');\n $this->layout->content = View::make('users.edit', ['user' => $user, 'failure' => $failure]);\n }\n\n //else, redirect to intended page\n else\n {\n $user = User::where('cs50_id', $current_user['identity'])->get()[0];\n Session::put('user', $user);\n Auth::loginUsingId($user->id);\n\n $url = Session::get('redirect');\n Session::forget('redirect');\n return Redirect::to($url);\n }\n }", "public function run()\n {\n // Employer\n $employer_user = User::where('email', '=', '[email protected]')->first();\n\t\t\n if ($employer_user == null) {\n $employer_user = User::create([\n 'id' => 1,\n 'email' => '[email protected]',\n 'first_name' => 'Employer',\n 'last_name' => 'Test',\n 'password' => Hash::make('employer'),\n 'address' => 'Ffordd Yr Ysgol, Fairbourne LL38 2RJ, United Kingdom',\n 'phone' => '(01558) 718378',\n 'status' => User::USER_STATUS_ACTIVE\n ]);\n\n\t\t\t$employer_user->roles()->attach(Role::where('name', '=', 'employer')->firstOrFail());\n } else {\n $employer_user->roles()->detach();\n $employer_user->roles()->attach(Role::where('name', '=', 'employer')->firstOrFail());\n }\n\n // Candidate\n $candidate_user = User::where('email', '=', '[email protected]')->first();\n \n if ($candidate_user == null) {\n $candidate_user = User::create([\n 'id' => 2,\n 'email' => '[email protected]',\n 'first_name' => 'Candidate',\n 'last_name' => 'Test',\n 'password' => Hash::make('candidate'),\n 'address' => '12 Selby Cl, Radcliffe, Manchester M26 2PL, United Kingdom',\n 'phone' => '(01341) 667524',\n 'wanted_salary' => '2400 euro',\n 'experience' => '3 years',\n 'skills_description' => 'Chrome Firefox Add-on NodeJS TeX Package Python Interface GTK Lipsum Rails .NET Groovy Adobe Plugin',\n 'status' => User::USER_STATUS_ACTIVE\n ]);\n\n $candidate_user->roles()->attach(Role::where('name', '=', 'candidate')->firstOrFail());\n } else {\n $candidate_user->roles()->detach();\n $candidate_user->roles()->attach(Role::where('name', '=', 'candidate')->firstOrFail());\n }\n\n // Candidate 2\n $candidate2_user = User::where('email', '=', '[email protected]')->first();\n \n if ($candidate2_user == null) {\n $candidate2_user = User::create([\n 'id' => 3,\n 'email' => '[email protected]',\n 'first_name' => 'Candidate2',\n 'last_name' => 'Test2',\n 'password' => Hash::make('candidate2'),\n 'address' => '17 Dolar XLK, Kliff, Younex M23 8PL, United Kingdom',\n 'phone' => '(01131) 113322',\n 'wanted_salary' => '3300 euro',\n 'experience' => '5 years',\n 'skills_description' => 'php NodeJS TeX Package Python Interface GTK Lipsum Rails .NET Groovy Adobe Plugin',\n 'status' => User::USER_STATUS_ACTIVE\n ]);\n\n $candidate2_user->roles()->attach(Role::where('name', '=', 'candidate')->firstOrFail());\n } else {\n $candidate2_user->roles()->detach();\n $candidate2_user->roles()->attach(Role::where('name', '=', 'candidate')->firstOrFail());\n }\n }", "function submitVerifikasi($id_user){\n\t\t$this->Kesehatan_M->update('user',array('id_user'=>$id_user),array('verified'=>'sudah'));\n\t\tredirect(\"Admin/verifikasi\");\n\t}", "public function activate($userid){\r\n\t\t\t$statement = $this->con->prepare(\"UPDATE users SET status = 1 WHERE user_id = ?\");\r\n\t\t\t$statement->bind_param(\"i\", $userid);\r\n\t\t\t$statement->execute();\r\n\r\n\t\t\tif($statement) {\r\n\t\t\t\treturn true;\r\n\t\t\t} else {\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\r\n\t\t\t$statement->free_result();\r\n\t\t}", "public function update_new_user(){\n\t\t$this->data[\"activationCode\"] = $this->make_activation_code();\n\t\tif( $this->send_email($this->get_activation_msg($this->data[\"activationCode\"])) ){\n\t\t\t$mysql = New Mysql();\n\t\t\treturn( $mysql->update_user($this->data[\"name\"], $this->data[\"lastname\"], $this->data[\"email\"], $this->data[\"password\"], $this->data[\"joinDate\"], $this->data[\"lastAccess\"], $this->data[\"activationCode\"]) );\n\t\t}\t\n\t}", "function updateMemberExpiryDate($userId, $date) {\r\n $sql = $this->db->prepare(\"UPDATE USER SET expiry=:expiry_date WHERE UserID=:user_id\");\r\n if($sql->execute(array(\r\n 'user_id' => $userId,\r\n 'expiry_date' => $date\r\n )))\r\n return true;\r\n else {\r\n return false;\r\n }\r\n }", "function run(User $user);", "function enable_salesperson($user_id) {\n \n $conn = db_connect();\n\n // Prepared statement for selecting salesperson dropdown options\n $enable_salesperson_stmt = pg_prepare(\n $conn,\n \"enable_salesperson_stmt\",\n \"UPDATE users SET enabled = true, type = 'a' WHERE id = $user_id;\"\n );\n\n $result = pg_execute($conn, \"enable_salesperson_stmt\", array());\n}", "function roshine_user_complete($course, $user, $mod, $roshine) {\n}", "public function refreshUser(\\Symfony\\Component\\Security\\Core\\User\\UserInterface $user)\n {\n }", "public function updatePrimaryUser() {\n if ($this->request->is('post')) {\n $name = $this->request->data ['User'] ['name'];\n $email = $this->request->data ['User'] ['email'];\n $pass = $this->request->data ['User'] ['pass'];\n if (md5($pass) === $this->Session->read('CompanyLoggedIn.Company.password')) {\n $passNew1 = $this->request->data ['User'] ['passNew1'];\n $passNew2 = $this->request->data ['User'] ['passNew2'];\n if ($passNew1 === $passNew2) {\n $params = array(\n 'Company' => array(\n 'id' => $this->Session->read('CompanyLoggedIn.Company.id'),\n 'responsible_name' => $name,\n 'email' => $email,\n 'password' => $passNew1\n )\n );\n $updateSenha = $this->AccentialApi->urlRequestToSaveData('companies', $params);\n $this->redirect(\"/login/logout\");\n } else {\n $this->Session->setFlash(__('Confirmação da senha diferente da nova senha.'));\n }\n } else {\n if (empty($pass)) {\n $params = array(\n 'Company' => array(\n 'id' => $this->Session->read('CompanyLoggedIn.Company.id'),\n 'responsible_name' => $name,\n 'email' => $email\n )\n );\n $update = $this->AccentialApi->urlRequestToSaveData('companies', $params);\n if (is_null($update)) {\n $company = $this->Session->read('CompanyLoggedIn');\n $company['Company']['email'] = $email;\n $company['Company']['responsible_name'] = $name;\n $this->Session->write('CompanyLoggedIn', $company);\n }\n } else {\n $this->Session->setFlash(__('Senha antiga incorreta.'));\n }\n }\n }\n $this->redirect(\"index\");\n }", "function refresh_user_details($id)\n {\n }", "function activate ()\n\t{\n\t\tswitch ($this->getAction ())\n\t\t{\n\t\t\tcase 'modifyUser':\n\t\t\t\tif ($this->getUserName () == 'test')\n\t\t\t\t{\n\t\t\t\t\tdie ('not allowed for test user');\n\t\t\t\t}\n\t\t\t\t$checkPasswd = true;\n\t\t\t\t$user = $this->itemFactory->requestToUser ($checkPasswd);\n\t\t\t\t$this->operations->modifyUser ($this->getUserName(), $user);\n\t\t\t\tHeader (\"Location: index.php\");\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tHeader (\"Location: index.php\");\n\t\t\t\tbreak;\n\t\t}\n\t}", "protected function select() {\n\t\t// Validate.\n\t\tif (!$this->validateForm()) {\n\t\t\tredirect(ABSURL . 'error');\n\t\t}\n\t\tnonce_generate();\n\n\t\t// Get user.\n\t\t$user = $this->Users->get((int) $_POST['user_id']);\n\n\t\t// Send to error page when user doesn't exist.\n\t\tif (empty($user)) {\n\t\t\t$_SESSION['title'] = 'Error';\n\t\t\t$_SESSION['data'] = array(\n\t\t\t\t'error' => 'The selected user was invalid.',\n\t\t\t\t'link' => 'management/users'\n\t\t\t);\n\t\t\tredirect(ABSURL . 'error');\n\t\t}\n\n\t\t// Forward to the user edit page.\n\t\tredirect(ABSURL . 'management/users/edit/' . $user['username']);\n\t}", "function loginUser() {\n $email = htmlspecialchars(trim($_POST['email']), ENT_QUOTES);\n $password = htmlspecialchars(trim($_POST['password']), ENT_QUOTES);\n \n connectDatabase();\n \n $result = queryDatabase(\"SELECT pk\n FROM user\n WHERE email = '$email' AND\n password = '$password' AND\n active = 1\");\n\n if (mysql_num_rows($result) == 1) {\n $row = mysql_fetch_object($result);\n $date = date('Y-m-d');\n \n queryDatabase(\"UPDATE user SET last_login = '$date' WHERE pk = $row->pk\");\n $_SESSION['pk'] = crypt($row->pk, SALT);\n\n header('Location: ' . HOME . 'member.php?feedback=9');\n } else {\n $result = queryDatabase(\"SELECT pk\n FROM user\n WHERE email = '$email' AND\n password = '$password' AND\n active = 0\");\n\n if (mysql_num_rows($result) >= 1)\n header('Location: ' . HOME . 'login.php?feedback=2');\n else\n header('Location: ' . HOME . 'login.php?feedback=1');\n }\n}", "public function run()\n {\n $user = User::find(2); //expert\n $user->expert()->create([\n 'mobile' => '01199493929',\n 'is_active' => true,\n 'status' => 'approved',\n 'slug' => str_slug($user->name, '-'),\n 'profile_picture_url' => 'images/expert.jpg',\n 'cost_per_minute' => 10,\n 'bio' => 'This is a short bio',\n 'current_occupation' => 'Engineer',\n ]);\n\n }", "public function createRewardForConcurrentDaysLogged(User $user): void\n {\n }", "function validate($userId){ \n try{\n $validateUserQuery = $this->db->query(\"UPDATE user set verificationCode='DONE' where user.id='\".$userId.\"'\");\n }catch(Exception $e){\n throw new Exception('Error: ' . $e->getMessage());\n }\n }", "public function replaceAgent()\n {\n $agents = User::where('firstName', 'Direct')->delete();\n $user_details = new User();\n $user_details->role = \"AG\";\n $role = Role::where('abbreviation', 'AG')->first();\n $user_details->firstName = ucwords(strtolower('Direct'));\n $user_details->lastName = ucwords(strtolower(''));\n $user_details->email = '';\n $user_details->password = bcrypt(123456);\n $user_details->empID = 'B-0001';\n\n $user_details->department = ucwords(strtolower(''));\n $user_details->position = ucwords(strtolower(''));\n $user_details->nameOfSupervisor = ucwords(strtolower(''));\n $user_details->name = 'Direct';\n $user_details->role_name = 'Agent';\n $user_details->isActive = (int) 1;\n $user_details->save();\n dd($user_details);\n }", "public function activate_account(){\n $db = \\Config\\Database::connect();\n $m = $db->table('ff_users');\n\n $uri = service('uri');\n $id = $uri->getsegment('2');\n\n $q = ask_db('user_id','ff_users',['random_key'=>\"'$id'\"]);\n\n if(!empty($q)){\n $data = ['is_active' =>'1'];\n\n $m->where('random_key', $id);\n $m->update($data);\n\n $_SESSION['success'] = 'Account is successfully activated';\n } else {\n $_SESSION['error'] = 'There was an error in activating your account, kindly respond to the activation email';\n }\n\n\n\n return redirect('login');\n\n\n }" ]
[ "0.63059473", "0.59854007", "0.5863776", "0.5852792", "0.5789712", "0.5787631", "0.57225025", "0.571633", "0.5681588", "0.5636676", "0.56219286", "0.5585584", "0.5560497", "0.554215", "0.5539382", "0.5517713", "0.55004513", "0.54800683", "0.5479567", "0.5476031", "0.543548", "0.54354453", "0.5416411", "0.5414825", "0.54096407", "0.5385673", "0.536742", "0.5367182", "0.5365919", "0.53608304", "0.535559", "0.5355503", "0.5354771", "0.5354183", "0.5348711", "0.534181", "0.5339826", "0.5333574", "0.5330793", "0.5328551", "0.53253525", "0.53214353", "0.5315058", "0.5313865", "0.5313496", "0.5299437", "0.5296658", "0.5296147", "0.5293399", "0.52877796", "0.52871287", "0.5282207", "0.5277295", "0.5276978", "0.52647185", "0.52642214", "0.52611154", "0.52554584", "0.52520144", "0.52477133", "0.5244926", "0.52365714", "0.52318954", "0.5229682", "0.5228234", "0.5223606", "0.52232766", "0.52225864", "0.5220014", "0.52196956", "0.52165127", "0.521439", "0.5213966", "0.52137715", "0.5209632", "0.52040076", "0.5196502", "0.518949", "0.51859504", "0.51825106", "0.51817846", "0.5178277", "0.51771605", "0.51762486", "0.51733446", "0.51724553", "0.5172357", "0.5172287", "0.51710564", "0.5169572", "0.5169169", "0.5164471", "0.5158526", "0.51581836", "0.51581746", "0.51573443", "0.5153512", "0.51508754", "0.5150694", "0.51484895", "0.514568" ]
0.0
-1
check given user enail if it is unique email id
function checkUniqueUser($reg_user_email='') { $check_unique = " SELECT * FROM cart_user WHERE user_email='".$reg_user_email."' "; $res_unique = mysql_query($check_unique); //echo '--<br>--'.mysql_num_rows($res_unique); die; if($res_unique && mysql_num_rows($res_unique)>0) { //$row=mysql_fetch_array($res_unique,MYSQL_ASSOC); //echo $user_id=$row['user_id']; return false; // user is not unique } return true; // user is unique }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function email_unique_check($email)\r\n\t{\r\n\t\t$isUnique = true;\r\n\r\n\t\t//Skapar anslutning till databasen.\r\n\t\t$db=new Database();\r\n\r\n\t\t//Hämtar de rader som har samma email.\r\n\t\t$result = $db->getUser($email);\r\n\r\n\t\t//Om det blev resultat.\r\n\t\tif($result)\r\n\t\t{\r\n\t\t\t//Finns det en rad betyder detta att ett konto med samma email redan existerar i databasen, och inget nytt konto ska skapas.\r\n\t\t\tif($row = mysqli_fetch_row($result))\r\n\t\t\t{\r\n\t\t\t\t//Email är ej unikt.\r\n\t\t\t\t$isUnique = false;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t//Avslutar anslutning till databasen.\r\n\t\t$db->close();\r\n\r\n\t\treturn $isUnique;\r\n\t}", "public function _unique_email() {\r\n // UNLESS it's the email for the current user\r\n\r\n $id = $this->uri->segment(4);\r\n $this->db->where('email', $this->input->post('email'));\r\n !$id || $this->db->where('id !=', $id);\r\n $account = $this->account_model->get();\r\n\r\n if (count($account)) {\r\n $this->form_validation->set_message('_unique_email', '%s này đã tồn tại');\r\n return FALSE;\r\n }\r\n return TRUE;\r\n }", "public function _unique_email ($str)\n\t{\n\t\t// UNLESS it's the email for the current user\n\t\t\n\t\t$id = $this->uri->segment(4);\n\t\t$this->db->where('email', $this->input->post('email'));\n\t\t!$id || $this->db->where('id !=', $id);\n\t\t$user = $this->user_m->get();\n\t\t\n\t\tif (count($user)) {\n\t\t\t$this->form_validation->set_message('_unique_email', '%s should be unique');\n\t\t\treturn FALSE;\n\t\t}\n\t\t\n\t\treturn TRUE;\n\t}", "public function actionEmailunique()\n\t{\n\t\t$email = $_GET['email'];\n\t\t$isexits = '0';\n\t\t$check=UsersDetails::model()->find(\"user_details_email='$email'\");\n\t\tif(isset($check))\t\t\t\t\n\t\t\t$isexits = '1'; //This email already used.\n\t\techo $isexits;\n\t\tYii::app()->end();\n\t}", "public function uniqueEmail() {\n if (CmsUser::model()->exists(\"id != \" . userId() . \" AND email='{$this->register_email}'\")) {\n $this->addError('register_email', 'Email already exist');\n }\n }", "function isUniqueEmail($email,$mysqli){\n\t$sql = \"SELECT * FROM all_users WHERE Email_address='$email'\";\n\t$result = $mysqli->query($sql);\n\tif ($result->num_rows>0){\n\t\treturn false;\n\t}\n\telse return true;\n}", "public static function isEmailId($email){\n return (filter_var($email,FILTER_VALIDATE_EMAIL)?true:false);\n }", "private function emailInUse( $email, $id )\n\t{\n\t\t$stmt = $this->connection->prepare('SELECT id FROM ' . Configure::get('database/prefix') . 'accounts WHERE email_hash = :email LIMIT 1');\n\t\t$stmt->bindValue(':email', $email, PDO::PARAM_STR);\n\t\t$stmt->execute();\n\t\t$data = $stmt->fetch(PDO::FETCH_ASSOC);\n\t\t$stmt->closeCursor();\n\n\t\tif( !empty($data) && $data['id'] != $id )\n\t\t{\n\t\t\treturn true;\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t}", "function isUniqueEmail($email) {\n\t\tclearstatcache();\n\t\tif(filesize('../../login_data.csv')) {\n\t\t\t// file is not empty\n\t\t\t$targetfile = fopen(\"../../login_data.csv\", 'r');\n\t\t\twhile (($datarow = fgetcsv($targetfile)) !== false) {\n if ($email == $datarow[3]) return false;\n }\n\t\t}\n\t\treturn true;\n\t}", "public function validateEmail($userId,$email){\n $con=$GLOBALS['con'];\n $sql=\"SELECT 1 FROM user WHERE user_email='$email' AND user_id!='$userId'\";\n $results = $con->query($sql);\n if($results->num_rows>0)\n {\n return false;\n }\n else\n {\n return true;\n }\n }", "public function CheckEmail($email, $userId);", "function validate_email($email,$email_used_user_id=null){\r\n\t\tif($email==\"\")return false;\r\n\t\t$this->db->select('*');\r\n\t\t$this->db->where(array('email'=>$email));\r\n\t\tif(isset($email_used_user_id) && $email_used_user_id!='' ){ \r\n\t\t\t$array = array('id !=' =>$email_used_user_id);\r\n\t\t\t$this->db->where($array); \r\n\t\t}\t\r\n\t\t$recordSet = $this->db->get(TBL_USERS);\t\r\n\t\t$data=$recordSet->result() ;\r\n\t\tif(count($data)>0){\r\n\t\t\treturn true;\r\n\t\t}else{\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}", "function checkUserByEmail($email){\n\t\t$rec\t= $this->query(\"SELECT `id` from `users` where `email` = '$email' AND `user_type` = '1'\");\t\t\n\t\tif($rec && mysql_num_rows($rec)>0){\t\t\t\n\t\t\t//if user with the email got found\n\t\t\treturn true;\n\t\t}else{\n\t\t\t//if user with the email got not found\n\t\t\treturn false;\n\t\t}\n\t}", "public function email_check($email)\n {\n session_check();\n $user_id = $this->uri->segment(3);\n $user_id = empty($user_id) ? $this->session->userdata('user_id') : $user_id;\n if($this->uri->segment(2) == 'add' || $this->uri->segment(2) == 'Add')\n $user_id = 0;\n if($this->users_model->isemailexist($email, $user_id))\n {\n $this->form_validation->set_message('email_check', $this->lang->line('validation_email_exist'));\n return FALSE;\n }\n return TRUE; \n }", "protected function userIDEmail ($email)\n {\n \n $user = Model_users::find('all', array\n (\n 'where' => array\n (\n array('email'=>$email),\n )\n ));\n if(!empty($user))\n {\n $id=0;\n foreach ($user as $key => $value)\n {\n $id = $user[$key]->id;\n }\n return $id; \n } \n }", "public function validUniqueMail() {\n $em = $this->getDoctrine()->getManager();\n $Person = $em->getRepository('UNOEvaluacionesBundle:Person')->findOneBy(array('email' => $this->_datPerson[email]));\n if ($Person) {\n #si existe el mail, por lo que hay q pedirle q ingrece otro\n return false;\n }else{\n return true;\n }\n\n }", "function email_existe($email){\n\t$sql = \"SELECT id FROM usuarios WHERE email = '$email'\";\n\n\t$resultado = query($sql);\n\n\tif(contar_filas($resultado) == 1){\n\n\t\treturn true;\n\t} else{\n\t\treturn false;\n\t}\n\n}", "public function update_email_check($email,$userId)\n {\n $sql1 = \"SELECT userId FROM users WHERE userId = $userId AND email='\".$email.\"'\";\n $record1 = $this->db->query($sql1);\n if ($record1->num_rows()==1) {\n return false;\n } else {\n return true;\n }\n }", "public static function checkUniqueEmail($email){\n if(UsersQuery::create()->findOneByEmail($email)){\n return false;\n }\n else{\n return true;\n }\n }", "function unique_email($value, $id = 0)\n\t{\n\t\tif ($this->user_model->is_email_unique($value, $id))\n\t\t\treturn TRUE;\n\t\telse\n\t\t{\n\t\t\t$this->form_validation->set_message('unique_email', lang('already_taken'));\n\t\t\treturn FALSE;\n\t\t}\n\t}", "function email_exists($email,$id='')\n {\n $this->db->where('email', $email);\n if(!empty($id)){\n $this->db->where('id !=', $id);\n }\n $query = $this->db->get('users');\n if( $query->num_rows() > 0 ){ return True; } else { return False; }\n }", "public static function checkUniqueEmail($email, $id = NULL) {\n $query = \\Drupal::database()->select('client', 'e')\n ->fields('e', ['id']);\n if ($id) {\n $query->condition('id', $id, '!=');\n }\n $query->condition('email', $email, '=');\n $result = $query->execute();\n if (empty($result->fetchObject())) {\n return TRUE;\n }\n else {\n return FALSE;\n }\n }", "function checkUniqueEmail($email)\n {\n // will be null for insert operations\n $sql = \"SELECT * FROM $this->table WHERE email=:email LIMIT 1\";\n $stmt = $this->conn->prepare($sql);\n $stmt->execute([':email' => $email]);\n return $stmt->rowCount() >= 1;\n }", "public function is_email_unique($email, $user_id = NULL)\n\t{\n\t\tif(!is_null($user_id))\n\t\t{\n\t\t\t$this->db->where(array('id !=' => $user_id));\n\t\t}\n\t\t$this->db->where(array('email' => $email));\n\t\t$this->db->from('user');\n\n\t\treturn !($this->db->count_all_results() > 0);\n\t}", "public function isAtLeastOneUserEmailAddress($userId, $_);", "private function is_duplicate () {\n $email = $this->payload['email'];\n $facebook_id = '0';\n if (!empty($this->payload['facebook_id'])) {\n $facebook_id = $this->payload['facebook_id'];\n }\n $sql = \"SELECT id FROM users WHERE email='$email' OR facebook_id='$facebook_id'\";\n $sql = $this->conn->query($sql);\n\n return $sql->num_rows > 0;\n }", "public function checkUserExist($email)\n {\n $sql = \"SELECT `id` FROM `user` WHERE email = '$email'\";\n $query = $this->db->prepare($sql);\n $query->execute();\n $result = $query->fetchAll();\n $count = sizeof($result);\n if ($count > 0)\n return true;\n else return false;\n }", "public function EmailCheck($email=\"\"){\n\t\t$check=$this->db->prepare(\"SELECT id FROM users WHERE email=:email\");\n\t\t$check->execute(array(\"email\"=>$email));\n\t\t$rowchk=$check->fetch(PDO::FETCH_ASSOC);\n\t\tif(!empty($rowchk))\n\t\t\treturn false;\n\t\telse\n\t\t\treturn true;\n\t}", "function has_unique_email($connection, $email)\n{\n try {\n $sql = \"SELECT email FROM users WHERE email=?\";\n $statement = runQuery($connection, $sql, array($email));\n $row = $statement->fetch(PDO::FETCH_ASSOC);\n if($row) {\n return false;\n } else {\n return true;\n }\n } catch (PDOException $e) {\n die( $e->getMessage() );\n }\n\n}", "public function uniqueEmail($email, $exceptId = null)\r\n\t{\r\n\t\t$exists = DB::table('users')->where('email', $email);\r\n\r\n\t\tif ($exceptId)\r\n\t\t{\r\n\t\t\t$exists->where('id', '!=', $exceptId);\r\n\t\t}\r\n\r\n\t\treturn ! $exists->exists();\r\n\t}", "function isUserExisted($email) {\n $result = mysql_query(\"SELECT email from users WHERE email = '$email'\",$first);\n $no_of_rows = mysql_num_rows($result);\n if ($no_of_rows > 0) {\n // user existed \n return true;\n } else {\n // user not existed\n return false;\n }\n }", "public function email_check($str){\n $con['returnType'] = 'count';\n $con['conditions'] = array('email'=>$str);\n $checkEmail = $this->user->getRows($con);\n if($checkEmail > 0){\n $this->form_validation->set_message('email_check', 'The given email already exists.');\n return FALSE;\n } else {\n return TRUE;\n }\n }", "function check_email($email, $update_user_id){\n\t\t$this->db->select('*');\n\t\t$this->db->where('email', $email);\n\t\t$this->db->where_not_in('user_id', $update_user_id);\n\t\t$q = $this->db->get('users');\n\t\tif ($q->num_rows()>0) {\n\t\t\treturn true;\n\t\t}else{\n\t\t\treturn false;\n\t\t}\n\t}", "public function IsEmailAlreadyExist()\r\n\t{\r\n\t\t$txt_user_email\t\t= $this->input->post('txt_user_email');\r\n\t\t$Employee_id = $this->input->post('Employee_id');\r\n\t\t\r\n\t\t$WhereCondition = \"\";\r\n\t\tif($Employee_id != '' && $Employee_id != 0)\r\n\t\t{\r\n\t\t\t$WhereCondition = \" AND tu.user_id != $Employee_id \";\r\n\t\t}\r\n\t \t$query = $this->db->query(\" \t\r\n \t\t\t\t\t\t\t\t\tSELECT user_id\r\n \t\t\t\t\t\t\t\t\tFROM `tbl_user` tu\r\n\t\t\t\t\t\t\t\t\tWHERE tu.user_email = '$txt_user_email'\r\n\t\t\t\t\t\t\t\t\t$WhereCondition\r\n\t\t\t\t\t\t\t\t\");\r\n\t\t$result = $query->result_array();\t\t\t\r\n\t\treturn $result;\r\n\t}", "function unique_user($username, $email){\n\t\t$conn \t= connectDB();\n\t\t$sth \t= $conn \t-> prepare('SELECT count(*)\n\t\t\t\t\t\t\t\t\t\tFROM `clients`\n\t\t\t\t\t\t\t\t\t\tWHERE `email`\t= ?');\n\t\t$sth \t-> execute(array($email));\n\n\t\tif($sth -> fetchColumn() >= 1){\n\t\t\treturn false;\n\t\t} else {\n\t\t\t$sth \t= $conn \t-> prepare('SELECT count(*)\n\t\t\t\t\t\t\t\t\t\t\tFROM `clients`\n\t\t\t\t\t\t\t\t\t\t\tWHERE `username` = ?');\n\t\t\t$sth \t-> execute(array($username));\n\t\t\treturn \t(!$sth -> fetchColumn() >= 1);\n\t\t}\n\t}", "private function verifyUser($email) {\n $userFound = $this->user->where('email', $email)->first();\n if ($userFound) {\n return $userFound['custID'];\n } else {\n return -1;\n }\n }", "public function verificarEmail($email){\n\n\t\t$id = $this->db->query(\"select id from users where email ='\".$email.\"'\");\n\t\tif($id->fetch()){\n\t\t\treturn true;\n\t\t}else{\n\t\t\treturn false;\n\t\t}\n\t}", "function userEmailTaken($email){\r\n\t $email = mysql_real_escape_string($email);\r\n if(!get_magic_quotes_gpc()){\r\n $email = addslashes($email);\r\n }\r\n $q = \"SELECT email FROM users WHERE email = '$email'\";\r\n $result = mysql_query($q, $this->connection);\r\n return (mysql_numrows($result) > 0);\r\n }", "public function actionUniqueEmailCheck() {\n //validate webservice\n $requiredParams = ['email'];\n\n CommonApiHelper::validateRequestParameters($requiredParams);\n\n $response = [];\n\n //Get request parameters.\n $post = Yii::$app->request->bodyParams;\n $post = array_map('trim', $post);\n $email = $post['email'];\n\n //Email uniqueness check\n $userEmailCheck = Users::find()->where(['email' => $email])->asArray()->one();\n if (empty($userEmailCheck)) {\n return CommonApiHelper::generate_success_response(\"Email Id is available\", []);\n } else {\n return CommonApiHelper::generate_error_response('3', 'Email Id has been already registered. Please try with different email Id.');\n }\n }", "function validate_email_unique($email, $dbc) {\n\t$q = \"SELECT * from users WHERE email = '$email'\";\n\t$r = mysqli_query($dbc, $q);\n\tif (mysqli_num_rows($r) == 1) {\n\t\treturn FALSE;\n\t} else return TRUE;\n}", "function admin_check_email_exists($email)\n\t{\n\n\t\tglobal $Oau_auth;\n\t\t$email = sanitize($email);\n\n\t\t$query = \"SELECT `admin_Idn` FROM `administrator` WHERE `email` = '$email'\";\n\t\t$run_query = mysqli_query($Oau_auth, $query);\n\n\t\tif(mysqli_num_rows($run_query) > 0)\n\t\t{\n\t\t\treturn true;\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn false;\n\t\t}\n\n\t}", "function email_exists($email = '', $userid = '')\n\t{\n\t\t$this->db->select('user_email');\n\t\tif($userid != '')\n\t\t{\n\t\t$this->db->where('user_id != ', $userid);\n\t\t}\n\t\t$this->db->where('user_email', $email);\n\t\t$this->db->from('ci_users');\n\t\t$query = $this->db->get();\n\t\tif($query->num_rows() > 0) \n\t\treturn true;\n\t\telse\n\t\treturn false;\n\t}", "function email_exists($email)\n {\n $sql = \"\n SELECT id\n FROM {$this->_db}\n WHERE email = \" . $this->db->escape($email) . \"\n LIMIT 1\n \";\n\n $query = $this->db->query($sql);\n\n if ($query->num_rows())\n {\n return TRUE;\n }\n\n return FALSE;\n }", "function check_existing_email($email){\n $sql = \"SELECT * from mbf_user WHERE email='$email'\";\n $query = $query = $this->db->query($sql);\n if ($query->num_rows() > 0){\n return true;\n }else{\n return false;\n }\n }", "static function email2id($email) {\n // converts a user email to the id of the user\n // both id and email are indivitual to every user\n \n global $con;\n\n $sql = \"SELECT `id` FROM `user` WHERE `email` LIKE '\".$email.\"';\";\n $query = mysqli_query($con, $sql);\n while ($row = mysqli_fetch_assoc($query)) {\n return intval($row['id']);\n }\n return NULL;\n }", "public function validate_uniqueEmail($value,$input,$args)\r\n\t{\r\n\t\t$user = $this->user->where('email',$value);//part of query builder within elequent\r\n\r\n\t\t/*if ($user->count()) {\r\n\t\t\treturn false;\r\n\t\t}\r\n\t\r\n\t\treturn true;*/\r\n\r\n\t\t##checking if whe user edit profile the current email let it be submitted\r\n\t\tif($this->auth && $this->auth->email === $value) {//authenticated and email matches\r\n\t\t\treturn true;\r\n\t\t}\r\n\r\n\t\treturn ! (bool) $user->count();//cast to bool\r\n\t}", "public function check_unique($username,$email){\n $usernameQuery = $this->db->get_where('user_ac',array('user_email'=>$username));\n $emailQuery = $this->db->get_where('user_ac',array('user_email'=>$email));\n \n $usernameCount=$usernameQuery->num_rows();\n $emailCount=$emailQuery->num_rows();\n \n if($emailCount>0 && $usernameCount>0)\n {\n return \"Both username and email exist\";\n }\n elseif($usernameCount>0)\n {\n return \"Username already exists\";\n }\n elseif ($emailCount>0) {\n return \"Email already exists\";\n }\n else {\n return true; \n }\n }", "function email_check($email)\r\n\t{\r\n\t\tif ( $user = $this->generic_model->get_where_single_row('users', array('email' => $email))) \r\n\t\t{\r\n\t\t\t$this->form_validation->set_message('email_check', 'This %s is already registered.');\r\n\t\t\treturn false;\r\n\t\t}\r\n\t\telse { return true; }\r\n\t}", "function is_valid_email( $user_email, $user_id = 0 )\n\t{\t\t\n\t\tif ( strtolower( $this->user->get_info( $user_id )->user_email ) == strtolower( $user_email )) {\n\n\t\t\treturn true;\n\t\t} else if ( $this->user->exists( array( 'user_email' => $_REQUEST['user_email'] ))) {\n\n\t\t\t$this->form_validation->set_message('is_valid_email', 'Email Address is already existed in the system');\n\t\t\treturn false;\n\t\t} else {\n\n\t\t\treturn true;\n\t\t}\n\t}", "function KTEmail($email){\n\t\t\t\t$sql=\"SELECT * FROM user WHERE Email='$email'\";\n\t\t\t\t$re=mysql_query($sql) or die(mysql_error());\n\t\t\t\t$n=mysql_num_rows($re);\n\t\t\t\tif($n>=1)\n\t\t\t\t\treturn true;\n\t\t\t\telse\n\t\t\t\t\treturn false;\n\t\t\t}", "public static function getUserVerified($email)\n {\n $query=\"select user_id from bimp_user where email='\".$email.\"'\";\n $email= Yii::app()->db->createCommand($query)->queryAll();\n $count=count($email);\n if($count==1){\n $result['userId']=$email[0]['user_id'];\n return $result;\n }else{\n return false;\n }\n \n }", "public function validateEmailConfirmedUnique()\n\t{ \n\t\tif ( $this->email )\n\t\t{\n\t\t\t$exists = User::findOne([\n\t\t\t\t'email' => $this->email,\n\t\t\t]);\n\n\t\t\tif ( $exists )\n\t\t\t{\n\t\t\t\t$this->addError('email', 'This E-mail has already been taken.');\n\t\t\t}\n\t\t}\n\t}", "function is_registered($email) {\n\t\tglobal $pdo;\n\n\t\t//delete old registration attempts\n\t\t$pdo->query(\"DELETE FROM user WHERE verified = 0 AND TIME_TO_SEC(TIMEDIFF(CURRENT_TIMESTAMP, code_generation_time)) > 600\");\n\n\t\t//empty or array check\n\t\tif(empty($email) || is_array($email)) {\n\t\t\treturn null;\n\t\t}\n\n\t\t//check if user exists\n\t\t$sql = \"SELECT id FROM user WHERE REPLACE(email, \\\".\\\", \\\"\\\") = REPLACE(:email, \\\".\\\", \\\"\\\")\";\n\t\t$sth = $pdo->prepare($sql);\n\t\t$sth->bindValue(\":email\", mail_simplify($email), PDO::PARAM_STR);\n\t\t$sth->execute();\n\n\t\tif($sth->rowCount() == 0) {\n\t\t\treturn false;\n\t\t} else {\n\t\t\treturn true;\n\t\t}\n\t}", "function getUniqueEmail($email_id)\n\t\t{\n\t\t\t//getting all email id from database\n\t\t\t$allEmail = $this->manageContent->getValue('user_credentials','email_id');\n\t\t\t//initializing a parameter\n\t\t\t$emailCounter = 0;\n\t\t\tforeach($allEmail as $allEmails)\n\t\t\t{\n\t\t\t\tif($allEmails['email_id'] == $email_id)\n\t\t\t\t{\n\t\t\t\t\t$emailCounter = 1;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\techo $emailCounter;\n\t\t}", "private function checkEmail(){\n\n $request = $this->_connexion->prepare(\"SELECT COUNT(*) AS num FROM Users WHERE user_email=?\");\n $request->execute(array($this->_userEmail));\n $numberOfRows = $request->fetch();\n\n if($numberOfRows['num'] == 0)\n return false;\n else\n return true;\n\n }", "function existsByEmail( $email, $oid=null);", "function checkEmail($email){\n\n\t\t\t$query = \"SELECT Email FROM tbl_userinfo WHERE Email=$email LIMIT 1\";\n\t\t\t\n\t\t\t$result = $this->conn->query($query); \n\n\t\t\tif (var_dump($result) > 0){\n\t\t\t\treturn true;\n\n\t\t\t}else{\n\t\t\t\treturn false;\n\n\t\t\t}\n\n\t\t}", "public function isEmailExist($email){ \n $query = mysqli_query($this->database, \"SELECT * FROM users WHERE Gmail = '$email'\"); \n $row = mysqli_num_rows($query); \n if($row > 0){ \n return true; \n } else { \n return false; \n } \n }", "function _email_callback($email)\n {\n $id = $this->uri->segment(4);\n $data = $this->user_model->email_validation($id, $email);\n \n if ($data->num_rows() > 0) {\n $this->form_validation->set_message('_email_callback', '%s already taken.');\n return FALSE;\n } else {\n return TRUE;\n }\n }", "public function isUserEmilExisted($email) {\n $result = mysql_query(\"SELECT * from users WHERE email = '$email'\");\n $no_of_rows = mysql_num_rows($result);\n if ($no_of_rows > 0) {\n // user email existed \n return true;\n } else {\n // user email not existed\n return false;\n }\n }", "function isEmailPresent($email = NULL){\t\t\t\n\t\t$query = \" SELECT id\";\n\t\t$query .= \" FROM \" . $this->config->item('ems_organisers','dbtables');\n\t\t$query .= \" WHERE email = ? \";\t\t\n\t\t$dataBindArr = array($email);\n\t\t$res = $this->db->query($query, $dataBindArr);\n\t\t$resArr = $res->result();\t\t\n\t\treturn count($resArr);\n\t}", "public function email_check($str){ \n $con = array( \n 'returnType' => 'count', \n 'conditions' => array( \n 'email' => $str \n ) \n ); \n $checkEmail = $this->User->getRows($con); \n if($checkEmail > 0){ \n $this->form_validation->set_message('email_check', 'The given email already exists.'); \n return FALSE; \n }else{ \n return TRUE; \n } \n }", "public function checkEmailExisting($email)\r\n\t{\r\n\t\t\r\n\t\t$query=mysql_query(\"SELECT 1 FROM tbl_users WHERE email='$email' and oauth_provider='DReview'\") or die(mysql_error());\r\n\t\t$emailCount = mysql_fetch_row($query);\r\n\t\r\n if ($emailCount >= 1)\r\n \treturn true;\r\n\t\telse\r\n\t\t\treturn false;\r\n\r\n\t}", "function isUserExist($email)\n\t{\n\t\t$stmt = $this->con->prepare(\"SELECT id FROM users WHERE email = ?\");\n\t\t$stmt->bind_param(\"s\", $email);\n\t\t$stmt->execute();\n\t\t$stmt->store_result();\n\t\treturn $stmt->num_rows > 0;\n\t}", "public function is_dispo_email($email)\n\t{\n\t\t$sql=\"SELECT ut_id FROM utilisateur WHERE ut_mail=?\";\n\t\t$tuple = $this->executerRequete($sql,array($email));\n\t\t$numRows = $tuple->rowCount();\n\t\tif($numRows>0)\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t}", "public function email_exists() {\n\t\t\n\t\t$email = $this->input->post('users_email');\n\t\t$edit_id = $this->input->post ( 'edit_id' );\n\t\t$where = array (\n\t\t\t'users_email' => trim ( $email )\n\t\t);\n\n\t\tif ($edit_id != \"\") {\n\n\t\t\t$where = array_merge ( $where, array (\n\t\t\t\t\t\"users_id !=\" => $edit_id \n\t\t\t) );\n\t\n\t\t} \n\n\t\t$result = $this->Mydb->get_record( 'users_id', $this->table, $where );\n\t\t\n\t\tif ( !empty ( $result ) ) {\n\t\t\t$this->form_validation->set_message ( 'email_exists', get_label ( 'user_email_exist' ) );\n\t\t\treturn false;\n\t\t} else {\n\t\t\treturn true;\n\t\t}\n\t}", "function verificar_email_usuario($e){\n\t\t\t\t\tinclude('../../conexion.php');/* mediante la consulta busca si concuerda algun usuario */\n\t\t\t\t\t$sql = \"SELECT email from usuarios WHERE status=1 AND BINARY email ='\".$e.\"'\";\n\t\t\t\t\t$rec = mysqli_query($con,$sql)or die(\"valio sombrilla'\".$sql.\"'\"); \n\t\t\t\t\t$count = 0;/* si la consulta es un exito aumenta un contador y como resultado retorna un valor */\n\t\t\t\t\twhile($row = mysqli_fetch_array($rec)){ $count++;}\t\n\t\t\t\t\tif($count == 1){return 1;}\n\t\t\t\t\telse{return 0; }\n\t\t\t}", "function email_exists($email)\n {\n // 1. Connect to the database.\n $link = connect();\n\n // 2. Protect variables to avoid any SQL injection\n $email = mysqli_real_escape_string($link, $email);\n\n // 3. Generate a query and return the result.\n $result = mysqli_query($link, \"\n SELECT id\n FROM tbl_users\n WHERE email = '{$email}'\n \");\n\n // 4. Disconnect from the database.\n disconnect($link);\n\n // 5. There should only be one row, or FALSE if nothing.\n return mysqli_num_rows($result) >= 1;\n }", "public static function email_exists($email) {\n $connection = DatabaseConnection::connection();\n $sql = \"SELECT user_id FROM users WHERE email=:email\";\n $statement = $connection->prepare($sql);\n $statement->execute(['email' => $email]);\n $count = count($statement->fetchAll());\n if($count == 1)\n return TRUE;\n else\n return FALSE;\n }", "function email_exists($email) {\n $email = sanitize($email);\n $query = mysql_query(\"SELECT COUNT(`user_id`) FROM `users` WHERE `email` = '$email'\");\n return (mysql_result($query, 0) == 1) ? true : false;\n}", "function checkUsername_Email(){\n\t\t\t$value = $_POST[\"value\"];\n\t\t\t$field = $_POST[\"field\"];\n\t\t\t//echo \"$value\".' '.$field;\n\t\t\t$query = $this->db->query(\"SELECT $field FROM users WHERE $field='$value' LIMIT 1\");\n\t\t\t$valid = $query->num_rows();\n\t\t\tif($valid == 0){\n\t\t\t\tif($field == 'email'){\n\t\t\t\t\techo \"Eunique\";\n\t\t\t\t}else{\n\t\t\t\t\techo \"U_unique\";\n\t\t\t\t}\n\t\t\t}else{\n\t\t\t\tif($field == 'email'){\n\t\t\t\t\techo \"This \".$field.\" is already registered with another user.\";\n\t\t\t\t}else{\n\t\t\t\t\techo \"This \".$field.\" is not available, please choose something different\";\n\t\t\t\t}\n\t\t\t}\n\t\t}", "private function isUserExists($email) {\n $query = mysql_query(\"SELECT UserId FROM user WHERE Email = '$email'\");\n $no_of_rows = mysql_num_rows($query);\n return $no_of_rows > 0;\n }", "public function checkUserExist($uemail) {\n\t\t$this->db->select('*');\n\t\t$this->db->from('users');\n\t\t$this->db->where('email',$uemail);\n\t\t$this->db->limit(1);\n\t\t$query = $this->db->get();\n\t\t\n\t\tif ($query->num_rows() == 1) {\n\t\t\treturn true;\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n\t}", "function email_exist($email) {\n\n $sql = \"SELECT id FROM users WHERE email = '$email'\";\n\n $result = query($sql);\n \n if(row_count($result) == 1) {\n return true;\n } else {\n return false;\n }\n}", "public function exist_email()\r\n {\r\n $email = $this->input->post('email');\r\n \r\n $this->load->model('frontend/user_model');\r\n \r\n $record = $this->user_model->select('COUNT(id) as total')->find_by(array('email' => $email));\r\n \r\n if ($record->total == 0)\r\n echo false;\r\n else\r\n echo true; \r\n }", "public function checkEmail($email){\r\n $requete = \"select * from users where (Email='\" . $email . \"') \";\r\n //error_log(\"check email requete = (\" . $requete . \")\\n\");\r\n if ($this->getRequete($requete)){\r\n //$this->display();\r\n if ($this->Email == $email){\r\n return true;\r\n }\r\n }\r\n return false;\r\n }", "public function isEmailExist($email){\n\n $stmt = $this->con->prepare(\"SELECT uid FROM users WHERE email = ?\");\n $stmt->bind_param(\"s\",$email);\n $stmt->execute();\n $stmt->store_result();\n return $stmt->num_rows > 0;\n\n }", "public function getUserIdByEmail($email){\n try{\n $result = User::model()->checkIfUserExist($email,'Email');\n } catch (Exception $ex) {\n Yii::log(\"SkiptaUserService:getUserIdByEmail::\".$ex->getMessage().\"--\".$ex->getTraceAsString(), 'error', 'application');\n }\n return $result;\n }", "function emailExist($link, $useremail) {\n\t\t// use escape function to avoid sql injection attacks\n\t\t$email = mysqli_real_escape_string($link, $_POST[$useremail]);\n\t\t$query = \"SELECT `email` FROM users WHERE email='\".$email.\"'\";\n\n\t\t$result = mysqli_query($link, $query);\n\t\treturn mysqli_num_rows($result);\n\t}", "public static function email_exists($email) {\r\n\t\tif ($email) {\r\n\t\t\t$mysqli = Database::connection();\r\n\t\t\t$email = Database::sanitize($email);\r\n\t\t\t$sql = \"SELECT user_id FROM users WHERE email = '$email' AND type != 0\";\r\n\t\t\t$result = $mysqli->query($sql)\r\n\t\t\tor die ($mysqli->error);\r\n\t\t\treturn ($result->num_rows == 1);\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}", "public function check_email_existence() {\n\t\t$email = $_GET['email'];\n\t\t$checkExistEmail = $this->User->find('count', array('conditions'=>array('User.email' => $email)));\n\t\techo $checkExistEmail;\n\t\texit();\n\t}", "function useremail_check($str) {\r\n $res = $this->auth_model->is_email_exists($str);\r\n if ($res <= 0) {\r\n $this->form_validation->set_message('useremail_check', lang_key('email_not_matched'));\r\n return FALSE;\r\n } else {\r\n return TRUE;\r\n }\r\n }", "function checkMAIL($account, $email)\n {\n while ($users = $account->fetch()) {\n if ($users['email'] == $email) {\n return true;\n }\n }\n return false;\n }", "private function isUserExists($email) {\n $stmt = $this->conn->prepare(\"SELECT id FROM app_users WHERE email = ?\");\n $stmt->bind_param(\"s\", $email);\n $stmt->execute();\n $stmt->store_result();\n $num_rows = $stmt->num_rows;\n $stmt->close();\n return $num_rows > 0;\n }", "function email_exist($email)\n {\n $this->db->select(EMAIL_ID);\n $this->db->from(TBL_USERS);\n $this->db->where(EMAIL_ID, $email);\n $query = $this->db->get();\n if ($query->num_rows() == 1) {\n return $query->row();\n } else {\n return false;\n }\n }", "function validate_username($username,$email_used_user_id=null){\r\n\t\tif($username==\"\")return false;\r\n\t\t$this->db->select('*');\r\n\t\t$this->db->where(array('username'=>$username));\r\n\t\tif(isset($email_used_user_id) && $email_used_user_id!='' ){ \r\n\t\t\t$array = array('id !=' =>$email_used_user_id);\r\n\t\t\t$this->db->where($array); \r\n\t\t}\t\t\r\n\t\t$recordSet = $this->db->get(TBL_USERS);\r\n\t\t$data=$recordSet->result() ;\r\n\t\tif(count($data)>0){\r\n\t\t\treturn true;\r\n\t\t}else{\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}", "private function isUserExists($email) {\n \n $result = $this->con->query(\"SELECT iduser from user WHERE email = '\".$email.\"';\");\n $num_rows=$result->num_rows;\n \n \n return $num_rows;\n }", "function check_email_exists($email)\n\t{\n\n\t\tglobal $Oau_auth;\n\t\t$email = sanitize($email);\n\n\t\t$query = \"SELECT `student_Idn` FROM `student` WHERE `email` = '$email'\";\n\t\t$run_query = mysqli_query($Oau_auth, $query);\n\n\t\tif(mysqli_num_rows($run_query) > 0)\n\t\t{\n\t\t\treturn true;\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn false;\n\t\t}\n\n\t}", "function email_exists($email){\n $sql = \"SELECT id FROM users WHERE email='$email'\";\n $result = query($sql);\n\n if(row_count($result)==1){\n return true;\n }else{\n return false;\n }\n}", "public function _check_email_exists($email = ''){\n\t\t\n\t}", "function email_exists($email)\n {\n global $connection;\n $query = \"select user_email from users where user_email = '{$email}'\";\n $result = mysqli_query($connection, $query);\n confirmQuery($result);\n if(mysqli_num_rows($result) > 0)\n {\n return true;\n }\n else\n {\n return false;\n }\n }", "function fb_email_exist($email)\n {\n $this->db->select('userID,emailID');\n $this->db->from(TBL_USERS);\n $this->db->where(EMAIL_ID, $email);\n $query = $this->db->get();\n if ($query->num_rows() == 1) {\n $result = $query->result();\n return $result[0];\n } else {\n return false;\n }\n }", "public function checkIfEmailExists($email);", "function verificarMail($id, $email){\n $conn=connexioBD();\n $emailRepe=true;\n $sql=\"SELECT email FROM usuaris WHERE id='$id'\";\n if (!$resultado =$conn->query($sql)){\n die(\"Error al comprobar datos\".$conn->error);\n }\n if($resultado->num_rows>=0){\n while($usuari=$resultado->fetch_assoc()){\n if($usuari[\"email\"]==$email){\n $emailRepe=false;\n } \n }\n }\n return $emailRepe;\n $resultado->free();\n $conn->close();\n}", "public function emailExists($email){\n $query = $this->conn->query(\"SELECT id FROM user WHERE email = '$email'\");\n $result = $query->fetchAll(PDO::FETCH_ASSOC);\n if($result){\n return true;\n }\n }", "public function isUserExisted($email) {\n $stm = $this->db->prepare(\"SELECT email FROM users WHERE email=?\");\n $stm->execute(array($email));\n $user=$stm->fetch(PDO::FETCH_OBJ);\n if($user!=null){\n return true;\n }else{\n false;\n }\n }", "function get_user_id_from_email($email)\n\t{\n\t\t//$this->firephp->log(\"email=\".$email);\n\t\t\n\t\t$this->db->select($this->flexi_auth->db_column('user_acc', 'id'));\t\n\t\t$this->db->where($this->flexi_auth->db_column('user_acc', 'email'),$email);\t\n\t\t$qres=$this->db->get('user_accounts');\n\t\tif ($qres->num_rows() > 0) {\n\t\t\t$row=$qres->row_array();\n\t\t\t//$this->firephp->log($row['uacc_id'].\"for email=\".$email);\n\t\t\treturn $row['uacc_id'];\n\t\t} else {\n\t\t\t$this->firephp->log(\"Could not determine user id from user email\");\n\t\t\treturn NULL;\n\t\t}\n\t}", "function get_user_id_from_string($email_or_login)\n {\n }", "function getUserIdByEmail($email) {\n\t$email = escape($email);\n\t$result = mysql_query(\"SELECT id FROM users WHERE email = '$email'\");\n\t\n\tif($row = mysql_fetch_array($result)) {\n\t\treturn $row[0];\n\t} else {\n\t\treturn false;\n\t}\n}", "public function checkMailUserExist()\n {\n $checkMailPatientExist = $this->db->prepare(\n 'SELECT \n COUNT(id) AS isIdPatientExist\n FROM `dom20_users`\n WHERE `mail` = :mail\n '\n );\n $checkMailPatientExist->bindvalue(':mail', $this->mail, PDO::PARAM_STR);\n $checkMailPatientExist->execute();\n $data = $checkMailPatientExist->fetch(PDO::FETCH_OBJ);\n return $data->isIdPatientExist;\n }" ]
[ "0.7696519", "0.75566983", "0.7325167", "0.7320113", "0.7315783", "0.72816914", "0.7247426", "0.7199922", "0.71831363", "0.7178915", "0.7175778", "0.7172039", "0.71505684", "0.7107536", "0.7047996", "0.70317966", "0.70260555", "0.7010627", "0.6981926", "0.69769526", "0.6975617", "0.69593817", "0.69084007", "0.6905608", "0.6903561", "0.6903138", "0.68974316", "0.68973833", "0.6888932", "0.68693745", "0.68657976", "0.684932", "0.6839054", "0.68317777", "0.6830386", "0.6830345", "0.682199", "0.6818787", "0.6816802", "0.68088424", "0.6796546", "0.67947906", "0.67907727", "0.6788858", "0.6781822", "0.67778516", "0.677733", "0.67662203", "0.6763064", "0.6757198", "0.67562175", "0.67537284", "0.6753592", "0.675145", "0.6751281", "0.6742505", "0.6737251", "0.67333966", "0.67188984", "0.6717036", "0.6713527", "0.6711177", "0.67104876", "0.67011034", "0.67001563", "0.67001325", "0.6699984", "0.6699677", "0.66965264", "0.6694512", "0.66776", "0.66749966", "0.6673036", "0.6670344", "0.6666618", "0.6661321", "0.6660477", "0.6660163", "0.6657715", "0.6657582", "0.6655624", "0.6653917", "0.6650995", "0.66458374", "0.6638327", "0.6624768", "0.66198206", "0.66162324", "0.66156703", "0.66126364", "0.6607623", "0.66059864", "0.66057557", "0.66013974", "0.659975", "0.65992665", "0.65942633", "0.6593344", "0.65890044", "0.65848094" ]
0.71944064
8
register user if unique email id
function registerUser($arrRegUser='') { //echo "<pre>1111"; print_r($arrRegUser); // die; $msg=''; $reg_password = $arrRegUser['reg_password']; $conf_reg_password = isset($arrRegUser['conf_reg_password'])?$arrRegUser['conf_reg_password']:''; $reg_user_email = isset($arrRegUser['reg_user_email'])?$arrRegUser['reg_user_email']:''; $reg_telephone=$arrRegUser['reg_telephone']; $reg_dob=$arrRegUser['reg_dob']; $reg_address=$arrRegUser['reg_address']; $reg_first_name=$arrRegUser['reg_first_name']; $reg_last_name=$arrRegUser['reg_last_name']; if($this->checkUniqueUser($reg_user_email)) { $sql_set_user = " Insert into cart_user(user_email,user_paswd,user_status,user_online,user_first_name,user_last_name,user_telephone,user_postal_address,user_dob,reg_date) values('".$arrRegUser['reg_user_email']."', '".$arrRegUser['reg_password']."', '1','1','$reg_first_name','$reg_last_name','$reg_telephone','$reg_address','$reg_dob',now())"; $res_set = mysql_query($sql_set_user); $insert_id = mysql_insert_id(); $_SESSION['userid']=$insert_id; if($insert_id!='') { $mail_content="<table><tr><td>Thank you for registering in our site..Yours Login Details are as follows:</td></tr> <tr><td>Email Id:".$reg_user_email."</td></tr> <tr><td>Password:".$reg_password."</td></tr> </table>"; $headers .= "MIME-Version: 1.0\n"; $headers .= "Content-Type: text/html; charset=ISO-8859-1\n"; $headers .= "Content-Transfer-Encoding: 8bit;\n"; $headers .= "From: [email protected] <[email protected]>\n"; $result=mail($reg_user_email,'Your Login Detail from sabjionwheels.com',$mail_content,$headers); $msg="regd"; } else $msg="regerr"; // return $msg; } else { $msg="notunique"; } return $msg; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function uniqueEmail() {\n if (CmsUser::model()->exists(\"id != \" . userId() . \" AND email='{$this->register_email}'\")) {\n $this->addError('register_email', 'Email already exist');\n }\n }", "public function register($data){\r\n\r\n if(($this->check_email($data['email'])) && ($this->check_username($data['username']))){\r\n $this->db->insert('users', $data);\r\n return $idOfInsertedData = $this->db->insert_id();\r\n }else{\r\n return false;\r\n }\r\n\r\n }", "public function registerVerifyUser($email,$id){\n $not_v_user = NotVerifyUser::find($id);\n if($not_v_user != \"\"){\n $user = User::create([\n 'password' => $not_v_user->password,\n 'name' => $not_v_user->name,\n 'email' => $email,\n ]);\n\n $not_v_user->delete();\n Auth::login($user);\n \n return redirect(\"/\");\n }\n else{\n return \"errors\";\n }\n }", "public function registerVerifyUser($email,$id){\n $not_v_user = NotVerifyUser::find($id);\n if($not_v_user != \"\"){\n $user = User::create([\n 'password' => $not_v_user->password,\n 'name' => $not_v_user->name,\n 'email' => $email,\n ]);\n\n $not_v_user->delete();\n Auth::login($user);\n \n return redirect(\"/\");\n }\n else{\n return \"errors\";\n }\n }", "public static function register($data){\n\t\t// Validate email\n\t\tif(!filter_var($data['email'], FILTER_VALIDATE_EMAIL))\n\t\t\treturn 'Email not valid';\n\n\t\t$emailDomain = explode('@', $data['email'])[1];\n\n\t\tgetmxrr($emailDomain, $mx);\n\t\tif(empty($mx))\n\t\t\treturn 'Email not valid';\n\n\t\t// Validate username\n\t\tif(strlen(preg_replace('/[^a-zA-Z0-9]/', '', $data['username'])) < strlen($data['username']))\n\t\t\treturn 'Username not valid';\n\n\t\t// Check for existance\n\t\t$temp = self::$database->get(self::$table, ['user_id', 'username'], [\n\t\t\t'OR'=>[\n\t\t\t\t'username'=>$data['username'],\n\t\t\t\t'email[,]'=>$data['email']\n\t\t\t]\n\t\t]);\n\n\t\tif($temp !== false){\n\t\t\tif($temp['username'] === $data['username'])\n\t\t\t\treturn 'Username already used';\n\t\t\treturn 'Email already used';\n\t\t}\n\n\t\t$data['email'] = \",$data[email],\";\n\t\t$data['username'] = strtolower($data['username']);\n\n\t\t// Hash password\n\t\t$data['password'] = password_hash($data['password'], PASSWORD_BCRYPT, ['cost'=>10]);\n\t\tif(!$data['password']) throw new Exception('Failed to hash password');\n\n\t\t$userID = self::$database->insert(self::$table, $data, true);\n\t\treturn $userID+0;\n\t}", "private static function register() {\n if ( !self::validatePost() ) {\n return;\n }\n\n if ( !self::validEmail($_POST['email']) ) {\n self::setError('E-Mail Adresse ist nicht g&uuml;ltig!<br>');\n return;\n }\n \n $_POST['email'] = strtolower($_POST['email']);\n \n $password = Helper::hash($_POST['password'].$_POST['email']);\n \n $verified = md5($_POST['email'].$password.microtime(true));\n \n $result = Database::createUser($_POST['email'],$password,$verified);\n \n if ( $result === false || !is_numeric($result) ) {\n return;\n }\n \n $_SESSION['user']['id'] = $result;\n $_SESSION['user']['email'] = $_POST['email'];\n $_SESSION['user']['verified'] = $verified;\n $_SESSION['loggedin'] = true;\n self::$loggedin = true;\n \n self::registerMail($verified);\n }", "function checkRegistered(){\n $registered_user=User::find('all',array('conditions' => array('email=? and active=1',$this->email)));\n $registered_user_id='';\n if(!empty($registered_user)){\n foreach($registered_user as $user){\n $registered_user_id=$user->id;\n }\n $this->user_id=$registered_user_id;\n }\n return null;\n }", "function is_registered($email) {\n\t\tglobal $pdo;\n\n\t\t//delete old registration attempts\n\t\t$pdo->query(\"DELETE FROM user WHERE verified = 0 AND TIME_TO_SEC(TIMEDIFF(CURRENT_TIMESTAMP, code_generation_time)) > 600\");\n\n\t\t//empty or array check\n\t\tif(empty($email) || is_array($email)) {\n\t\t\treturn null;\n\t\t}\n\n\t\t//check if user exists\n\t\t$sql = \"SELECT id FROM user WHERE REPLACE(email, \\\".\\\", \\\"\\\") = REPLACE(:email, \\\".\\\", \\\"\\\")\";\n\t\t$sth = $pdo->prepare($sql);\n\t\t$sth->bindValue(\":email\", mail_simplify($email), PDO::PARAM_STR);\n\t\t$sth->execute();\n\n\t\tif($sth->rowCount() == 0) {\n\t\t\treturn false;\n\t\t} else {\n\t\t\treturn true;\n\t\t}\n\t}", "public function _unique_email() {\r\n // UNLESS it's the email for the current user\r\n\r\n $id = $this->uri->segment(4);\r\n $this->db->where('email', $this->input->post('email'));\r\n !$id || $this->db->where('id !=', $id);\r\n $account = $this->account_model->get();\r\n\r\n if (count($account)) {\r\n $this->form_validation->set_message('_unique_email', '%s này đã tồn tại');\r\n return FALSE;\r\n }\r\n return TRUE;\r\n }", "public function testRegisterRepeatedEmail() {\n\t\t$data = $this->getUserData(\n\t\t\t'othrus',\n\t\t\t$this->first_name,\n\t\t\t$this->surname,\n\t\t\t$this->email\n\t\t);\n\t\t\n\t\t$response = $this->call('POST','v1/users', $data);\n\t\t$resp_data = $response->getData();\n\t\t\n\t\t$this->assertResponseStatus(400);\n\t\t$this->assertTrue($resp_data->error);\n\t}", "public function testRegisterWithRepeatedEmail()\n {\n self::$body['email'] = User::first()->email;\n\n $generic = new GenericValidationTests($this);\n $generic->testNotUniqueAttribute('register', 'POST', self::$headers, self::$body, 'email');\n }", "public function registerUser($firstName, $lastName,$password,$email,$phone,$personalinfo)\n {\n \n $sql2= \"SELECT userid from basicUser where email= '\".$email.\"' \";\n $alreadyUser = mysql_fetch_array(mysql_query($sql2));\n var_dump($alreadyUser);\n die();\n $alreadyUser = $alreadyUser[0];\n \n if ($alreadyUser == null){\n \n $sql = \"INSERT INTO basicUser VALUES '\". mysql_real_escape_string($firstName).\"'\n , '\".mysql_real_escape_string($lastName).\"'\n , '\".mysql_real_escape_string($password).\"'\n , '\".mysql_real_escape_string($email).\"'\n , '\". mysql_real_escape_string($phone).\"'\n , '\". mysql_real_escape_string($personalinfo).\"'\";\n \n mysql_query($sql); \n return \"Sucess User registered\";\n }\n else{\n //give an error saying an account is already associated with this email \n return \"failure: There is an account associated with this email\";\n }\n }", "function register()\n{\n if (isset($_POST['submitregister'])) {\n global $connection;\n\n $Nome = $_POST['Nome'];\n $Cognome = $_POST['Cognome'];\n $Email = $_POST['Email'];\n $Telefono = $_POST['Telefono'];\n $Password = $_POST['Password'];\n $Cita = $_POST['Cita'];\n\n $query_count = \"SELECT COUNT(*) AS TotalUsers from users WHERE user_username='$Email'\";\n $result_count = mysqli_query($connection, $query_count);\n $row_count = mysqli_fetch_assoc($result_count);\n if ($row_count['TotalUsers'] < 1) {\n $queryinstert = \"INSERT INTO users(user_name,user_surname,user_username,user_email,user_city,user_livel,user_phone,user_password) VALUES ('$Nome','$Cognome','$Email','$Email','$Cita','1','$Telefono','$Password')\";\n $result_insert = mysqli_query($connection, $queryinstert);\n if ($result_insert) {\n return header('Location: index.php');\n }\n } else {\n echo '<script>alert(\"Attenzione! Con questo email esiste gia un accaunt creato.\")</script>';\n }\n }\n}", "protected function RegisterIfNew(){\n // Si el sitio es de acceso gratuito, no debe registrarse al usuario.\n // Luego debe autorizarse el acceso en el metodo Authorize\n $url = $this->getUrl();\n if ($url instanceof Url && $this->isWebsiteFree($url->host)){\n return;\n }\n\t\t\n\t\t// Crear la cuenta de usuarios nuevos\n // if (!DBHelper::is_user_registered($this->user)){\n // if (!(int)$this->data->mobile || \n // (int)($this->data->client_app_version) < AU_NEW_USER_MIN_VERSION_CODE){\n // // Force update\n // $this->url = Url::Parse(\"http://\". HTTP_HOST .\"/__www/new_user_update_required.php\");\n // }else{\n // DBHelper::createNewAccount($this->user, DIAS_PRUEBA);\n // }\n // }\n \n // No crear cuenta. En su lugar mostrar una pagina notificando\n // E:\\XAMPP\\htdocs\\__www\\no_registration_allowed.html\n \n if (!DBHelper::is_user_registered($this->user)){\n DBHelper::storeMailAddress($this->user);\n $this->url = Url::Parse(\"http://auroraml.com/__www/no_registration_allowed.html\");\n }\n }", "function register($email) {\n\t$email = escape(htmlspecialchars($email));\n\t\n\t//validate email address\n\tif(!validEmail($email)) {\n\t\treturn -2;\n\t}\n\t\n\t//make sure email not registered\n\t//todo: look for duplicating cases, like additional periods?\n\t$result = mysql_query(\"SELECT COUNT(*) FROM users WHERE email = '$email'\");\n\t$row = mysql_fetch_array($result);\n\t\n\tif($row[0] > 0) {\n\t\treturn -1;\n\t}\n\t\n\t//make random password and hash it\n\t$password = uid(12);\n\t$salt = secure_random_bytes(32);\n\t$saltHex = bin2hex($salt);\n\t$passwordHex = chash($password, $saltHex);\n\t\n\t//input to database\n\tmysql_query(\"INSERT INTO users (email, password, salt) VALUES ('$email', '$passwordHex', '$saltHex')\");\n\t\n\t//send email to user\n\tremind_mail(\"Remind account registration\", \"Here are the login details for your new Remind account:<br /><br />E-mail: $email<br />Password: $password<br /><br />If you did not request an account, please ignore this message (no further action is needed). Otherwise, please login and then immediately change your password. Thanks,<br />- Remind\", $email);\n\t\n\treturn true;\n}", "public function Register() {\n //\n if ($this->IsUsernameOrEmailTaken_()) return false;\n\n $queryStr = \"INSERT INTO Admins (email,passwd,fName,lName,username,phoneNumber) VALUES ('{$this->email}','{$this->GetPasswordHash()}','{$this->fName}','{$this->lName}','{$this->GetUsername()}','{$this->phoneNumber}');\";\n if ($this->db->sql->query($queryStr)) {\n $this->QueryForID_();\n return true;\n }\n return false;\n }", "public function regNewUser( $data ){\n\n\t\t$success = parent::regNewUser( $data );\n\t\n\t\tif( is_array( $success ) ){\n\t\t \treturn $this->createAnswer( 1,\"Username or email already exist\",403 );\n\t\t}elseif ( $success ){\n\t\t\treturn $this->createAnswer( 0,\"Congratulation you got permission\" );\n\t\t}else{\n\t\t return $this->createAnswer( 1,\"invalid query\",402 );\n\t\t}\n\t}", "public function registerUser($email)\n {\n // Create a db instance\n $db = new Database();\n // Create a user DB connection to get data from User_Event_Details table\n $userDB = $db->getUserDBConnection();\n // Query database for eid and get all details\n $query = \"INSERT INTO User_Event_Details (Email, EID) VALUES (:email, :eid);\";\n // Prepare query statement\n $stmt = $userDB->prepare($query);\n // Bind values\n $stmt->bindParam(\":email\", $email);\n $stmt->bindParam(\":eid\", $this->eid);\n // Execute query\n if ($stmt->execute()) {\n // Registration successful\n return true;\n }\n return false;\n }", "public function registerUser() {\n\t\t\t\t//check for email id existence\n\t\t\t\t$userExistence = $this->checkUserExistence();\n\t\t\t\tif(!$userExistence) {\n\t\t\t\t\t$this->response['status'] = 0;\n\t\t\t\t\t$this->response['message'] = 'Email id already exists. Please try different email id!';\n\t\t\t\t\treturn false;\t\t\t\t\t\n\t\t\t\t}\n\n\t\t\t\t$sql = \"insert into register(name, email, password, orig_password, address, mobile, landline, logo, photo, licence_aggrement,token, create_time) \";\n\t\t\t\t$sql .= \" values('$this->name', '$this->email', '$this->crypPwd', '$this->password', '$this->addr', '$this->mobile', '$this->landline', '$this->logoPath', '$this->photoPath', $this->licence, '$this->token', NOW())\";\n\t\t\t\t\n\t\t\t\t//store it in db now\n\t\t\t\t$result = returnQueryResult($sql);\n\t\t\t\tif($result == false) {\n\t\t\t\t\t$this->response['status'] = 0;\n\t\t\t\t\t$this->response['message'] = 'Sorry! Something went wrong. Try Again';\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t//create user directory\n\t\t\t\t$dir = \"../registered_users/$this->email\";\n\t\t\t\tmkdir($dir, 0777, true);\n\t\t\t\tchmod($dir, 0777);\n\n\t\t\t\t//now move files to user directory\n\t\t\t\tmove_uploaded_file($this->logo['tmp_name'], $this->logoPath); //logo\n\t\t\t\tmove_uploaded_file($this->yourPhoto['tmp_name'], $this->photoPath); //your photo\n\n\t\t\t\t//now send confirmation mail to user\n\t\t\t\t$this->sendConfirmationMail();\n\t\t\t}", "function userRegistration($email, $password, $confirmPassword) {\n\t\tif ($email == null && empty($email)) {\n return false;\n exit();\n\t}\n\n\tif ($password == null && empty($password)) {\n return false;\n exit();\n\t}\n\n\tif ($confirmPassword == null && empty($confirmPassword)) {\n return false;\n exit();\n\t}\n\n\tif ($email != null && $password != null && $confirmPassword != null) {\n\t\t\t// Checking if email is valid or not\n\t\t\tif ($password == $confirmPassword) {\n\t\t\t\t/**\n\t\t\t\t * dependency isUserRegistered()\n\t\t\t\t * Hash password here an run insert query\n\t\t\t\t * insert is working properly\n \t\t* TODO: Run insert query here\n\t\t\t\t */\n\t\t\t\t$registerData = $this->connection->prepare(\"INSERT INTO `win` VALUES ('$email','$password')\");\n\t\t\t\t$registerData->execute();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\telse {\n \t\treturn false;\n \t\t//Password and confirm password must match\n\t\t\t\texit();\n\t\t\t}\n\t\t}\n\t}", "public function user_cannot_registered_if_write_allready_exist_email()\n {\n factory(User::class)->create(['email' => '[email protected]']);\n\n $this->visit('/register')\n ->seePageIs('/register')\n ->type($this->user->name, 'name')\n ->type('[email protected]', 'email')\n ->type($this->user->password, 'password')\n ->type($this->user->password, 'password_confirmation')\n ->press('Register')\n ->see('The email has already been taken.')\n ->seePageIs('/register');\n\n $this->call('post', '/register');\n $this->assertResponseStatus(302);\n\n $this->dontSeeInDatabase('users', ['name' => $this->user->name]);\n }", "function lfl_register($username, $password, $mail, $type = \"user\")\n{\n $link = lfl_connect();\n if($link)\n {\n $sql = \"SELECT userId FROM \" . TABLE_USER . \" WHERE username='\" . mysqli_real_escape_string($link, $username) . \"' OR mail='\" . mysqli_real_escape_string($link, $mail) . \"'\";\n $result = mysqli_query($link, $sql);\n if(mysqli_fetch_assoc($result))\n {\n echo \"<p>Username and/or email is already in use!</p>\";\n return false;\n }\n $sql = \"INSERT INTO \" . TABLE_USER . \" VALUES(NULL, \"\n . \"'\" . mysqli_real_escape_string($link, $username) . \"', \"\n . \"'\" . mysqli_real_escape_string($link, password_hash($password, PASSWORD_DEFAULT)) . \"', \"\n . \"'\" . mysqli_real_escape_string($link, $mail) . \"', \"\n . \"'\" . mysqli_real_escape_string($link, $type) . \"')\";\n $result = mysqli_query($link, $sql);\n if($result)\n {\n return mysqli_insert_id($link);\n }\n }\n return false;\n}", "function checkUniqueUser($reg_user_email='')\n {\n $check_unique = \" SELECT * FROM cart_user WHERE user_email='\".$reg_user_email.\"' \"; \n $res_unique = mysql_query($check_unique);\n //echo '--<br>--'.mysql_num_rows($res_unique); die;\n if($res_unique && mysql_num_rows($res_unique)>0)\n {\n //$row=mysql_fetch_array($res_unique,MYSQL_ASSOC); \n //echo $user_id=$row['user_id'];\n return false; // user is not unique\n }\n return true; // user is unique\n }", "public function register() {\n\t\t$user_email = $this->input->post(\"email\");\n\t\t$user_password = md5($this->input->post('password'));\n\t\t$user_reg_ip = ip2long($this->input->ip_address());\n\t\t\n\t\t$re = $this->user_lib->save_reg_userInfo($user_email,$user_password,$user_reg_ip);\n\t\t\n\t\tif($re===false){\n\t\t\t//set mc error\n\t\t}\n\t\t/*if(!$this->email_lib->send_active_email($user_email)){\n\t\t\t//send mail error\n\t\t}*/\n\t\t$uid = $this->user_lib->active_process($user_email);\n\t\tif($uid===false){\n\t\t\treturn false;\t\t//for active error\n\t\t}\n\t//\t$this->_set_login_cookie($uid);\n\t\tredirect('/regsuccess'); \n\t}", "public function register($data) {\n $this->db->query(\"SELECT email FROM users WHERE email = :email\");\n $this->db->bind(':email', $data['email']);\n $result = $this->db->single();\n \n if ($result) {\n redirect('register.php', 'That email is already in use try <a href=\"login.php\">logging in</a>', 'error');\n }else {\n \n // insert the user into the database\n $this->db->query('INSERT INTO users \n (name, email, avatar, username, password, membership)\n VALUES (:name, :email, :avatar, :username, :password, :membership)');\n // bind the prepared statements\n $this->db->bind(':name', $data['name']);\n $this->db->bind(':email', $data['email']);\n $this->db->bind(':avatar', $data['avatar']);\n $this->db->bind(':username', $data['username']);\n $this->db->bind(':password', password_hash($data['password'], PASSWORD_DEFAULT));\n $this->db->bind(':membership', $data['membership']);\n \n // make it work\n if($this->db->execute()) {\n return true;\n }else {\n return false;\n }\n }\n\n // they should now be registered..\n }", "private function validateEmailUser(){\n $this->deleteDuplicateCode($this->_datPerson[personId]);\n $this->_code = rand(10000, 99999);\n $em = $this->getDoctrine()->getManager();\n $UserValidationEmail = new Uservalidationemail();\n $UserValidationEmail->setEmail($this->_datPerson[email]);\n $UserValidationEmail->setCode($this->_code);\n $UserValidationEmail->setDateregister(new \\DateTime());\n $UserValidationEmail->setData(json_encode($this->_datPerson));\n $UserValidationEmail->setPersonid($this->_datPerson[personId]);\n\n $em->persist($UserValidationEmail);\n $em->flush();\n }", "public function validateEmailConfirmedUnique()\n\t{ \n\t\tif ( $this->email )\n\t\t{\n\t\t\t$exists = User::findOne([\n\t\t\t\t'email' => $this->email,\n\t\t\t]);\n\n\t\t\tif ( $exists )\n\t\t\t{\n\t\t\t\t$this->addError('email', 'This E-mail has already been taken.');\n\t\t\t}\n\t\t}\n\t}", "function register_resend_email($email) {\n\t\tglobal $pdo;\n\n\t\t//delete old registration attempts\n\t\t$pdo->query(\"DELETE FROM user WHERE verified = 0 AND TIME_TO_SEC(TIMEDIFF(CURRENT_TIMESTAMP, code_generation_time)) > 600\");\n\n\t\t//empty or array check\n\t\tif(empty($email) || is_array($email)) {\n\t\t\treturn 1;\n\t\t}\n\n\t\t//check if email exists and is not verified\n\t\t$sql = \"SELECT name, verification_code FROM user WHERE REPLACE(email, \\\".\\\", \\\"\\\") = REPLACE(:email, \\\".\\\", \\\"\\\") AND verified = 0\";\n\t\t$sth = $pdo->prepare($sql);\n\t\t$sth->bindValue(\":email\", mail_simplify($email), PDO::PARAM_STR);\n\t\t$sth->execute();\n\n\t\tif($sth->rowCount() == 0) {\n\t\t\t//check if email exists but is already verified\n\t\t\t$sql = \"SELECT id FROM user WHERE REPLACE(email, \\\".\\\", \\\"\\\") = REPLACE(:email, \\\".\\\", \\\"\\\") AND verified = 1\";\n\t\t\t$sth2 = $pdo->prepare($sql);\n\t\t\t$sth2->bindValue(\":email\", mail_simplify($email), PDO::PARAM_STR);\n\t\t\t$sth2->execute();\n\n\t\t\tif($sth2->rowCount() == 0) {\n\t\t\t\treturn 2;\n\t\t\t} else {\n\t\t\t\treturn 3;\n\t\t\t}\n\t\t}\n\n\t\t//get data required for email\n\t\t$name_verification_code = $sth->fetch();\n\t\t$name = $name_verification_code[\"name\"];\n\t\t$verification_code = $name_verification_code[\"verification_code\"];\n\n\t\t$reg_link = \"https://swapitg.com/firstlogin/$verification_code\";\n\t\t$subject = \"Registration\";\n\t\t$mailfile = fopen(__DIR__ . \"/register_mail_template.html\", \"r\") or die(\"Unable to open file!\");\n\t\t$message = strtr(fread($mailfile, filesize(__DIR__ . \"/register_mail_template.html\")), array('$reg_link' => $reg_link, '$name' => htmlspecialchars($name)));\n\t\tfclose($mailfile);\n\t\t$sender_email = \"[email protected]\";\n\t\t$sender_name = \"SwapitG no-reply\";\n\n\t\t//send email\n\t\tif(mail($email, $subject, wordwrap($message, 70, \"\\r\\n\"), \"From: $sender_name<$sender_email>\\r\\nContent-type: text/html; charset=utf-8\", \" -f \" . $sender_email)) {\n\t\t\treturn 0;\n\t\t} else {\n\t\t\treturn 4;\n\t\t}\n\t}", "function testEmailAsUsername() {\n\t\t$this->user->username = '';\n\t\t$this->user->email = 'testuser';\n\t\t$pkey = Cgn_User::registerUser($this->user);\n\t\t$this->assertEqual(FALSE, $pkey);\n\t}", "function register($name, $email, $password, $password2) {\n\t\tglobal $pdo;\n\n\t\t//delete old registration attempts\n\t\t$pdo->query(\"DELETE FROM user WHERE verified = 0 AND TIME_TO_SEC(TIMEDIFF(CURRENT_TIMESTAMP, code_generation_time)) > 600\");\n\n\t\t//empty or array check\n\t\tif(empty($name) || is_array($name) || empty($email) || is_array($email) || empty($password) || is_array($password) || empty($password2) || is_array($password2)) {\n\t\t\treturn 1;\n\t\t}\n\n\t\t//check if passwords match\n\t\tif($password !== $password2) {\n\t\t\treturn 2;\n\t\t}\n\n\t\t//check if the password, user name and email meets our requirements\n\t\tif(!password_security_check($password) || !valid_name_check($name) || strlen($email) > 256) {\n\t\t\treturn 3;\n\t\t}\n\n\t\t//check if email is already used\n\t\t$sql = \"SELECT email FROM user WHERE REPLACE(email, \\\".\\\", \\\"\\\") = REPLACE(:email, \\\".\\\", \\\"\\\")\";\n $sth = $pdo->prepare($sql);\n\t\t$sth->bindValue(\":email\", mail_simplify($email), PDO::PARAM_STR);\n $sth->execute();\n\n\t\tif($sth->rowCount() != 0) {\n\t\t\treturn 4;\n\t\t}\n\n\t\t//generate verification code\n\t\t$verification_code = hash(\"sha256\", microtime() . (string)rand() . $email);\n\t\t//hash password\n\t\t$password_hash = password_hash($password, PASSWORD_BCRYPT);\n\n\t\t//get data required for email\n\t\t$reg_link = \"https://swapitg.com/firstlogin/$verification_code\";\n\t\t$subject = \"Registration\";\n\t\t$mailfile = fopen(__DIR__ . \"/register_mail_template.html\", \"r\") or die(\"Unable to open file!\");\n\t\t$message = strtr(fread($mailfile, filesize(__DIR__ . \"/register_mail_template.html\")), array('$reg_link' => $reg_link, '$name' => htmlspecialchars($name)));\n\t\tfclose($mailfile);\n\t\t$sender_email = \"[email protected]\";\n\t\t$sender_name = \"SwapitG no-reply\";\n\n\t\t//send email\n\t\tif(mail($email, $subject, wordwrap($message, 70, \"\\r\\n\"), \"From: $sender_name<$sender_email>\\r\\nContent-type: text/html; charset=utf-8\", \" -f \" . $sender_email)) {\n\t\t\t//if mail send sucessfully create new user wich is not verified yet\n\t\t\t$sql = \"INSERT INTO user (email, name, password, verification_code) VALUES (:email, :name, :password_hash, :verification_code)\";\n\t $sth = $pdo->prepare($sql);\n\t\t\t$sth->bindValue(\":email\", mail_simplify($email), PDO::PARAM_STR);\n\t\t\t$sth->bindValue(\":name\", htmlspecialchars($name), PDO::PARAM_STR);\n\t\t\t$sth->bindParam(\":password_hash\", $password_hash, PDO::PARAM_STR);\n\t\t\t$sth->bindParam(\":verification_code\", $verification_code, PDO::PARAM_STR);\n\t $sth->execute();\n\n\t\t\t//set email and password in the session for easier verification if the user verifies the email in the same session\n\t\t\tstart_session();\n\t\t\t$_SESSION[\"reg_email\"] = $email;\n\t\t\t//xor password for security reasons\n\t\t\t$_SESSION[\"reg_password\"] = $password ^ substr(str_pad($verification_code, strlen($password), $verification_code), 0, strlen($password));\n\t\t\treturn 0;\n\t\t} else {\n\t\t\treturn 5;\n\t\t}\n\t}", "function register() {\n\t$a = array(\n\t 'status' => 'system-error'\n\t);\n\n\t// raw inputs\n\t$taint_uname = isset($_POST['uname']) ? $_POST['uname'] : 0;\n\t$taint_email = isset($_POST['email']) ? $_POST['email'] : 0;\n\t$taint_pword = isset($_POST['pword']) ? $_POST['pword'] : 0;\n\n\t// validate inputs\n\t$uname = validateUname($taint_uname);\n\t$email = validateEmail($taint_email);\n\t$pword = validatePword($taint_pword);\n\n\tif (!$email || !$uname || !$pword) {\n\t\tLog::write(LOG_WARNING, \"attempt with invalid parameter set\");\n\t\treturn $a;\n\t}\n\n\t$conn = getConnection();\n\tif (!$conn) {\n\t\treturn $a;\n\t}\n\n\t// validate username is unique\n\t$name = 'test-unique-username';\n\t$sql = \"select id from accounts.user where username = $1\";\n\t$params = array($uname);\n\t$result = execSql($conn, $name, $sql, $params, false);\n\tif (!$result) {\n\t\treturn $a;\n\t}\n\n\t$numrows = pg_num_rows($result);\n\tif ($numrows > 0) {\n\t\tLog::write(LOG_NOTICE, \"$name: username already on file\");\n\t\t$a['status'] = 'username-in-use';\n\t\treturn $a;\n\t}\n\n\t// validate email is unique\n\t$name = 'test-unique-email';\n\t$sql = \"select id from accounts.user where email = $1\";\n\t$params = array($email);\n\t$result = execSql($conn, $name, $sql, $params, false);\n\tif (!$result) {\n\t\treturn $a;\n\t}\n\n\t$numrows = pg_num_rows($result);\n\tif ($numrows > 0) {\n\t\tLog::write(LOG_NOTICE, \"$name: email already on file\");\n\t\t$a['status'] = 'email-in-use';\n\t\treturn $a;\n\t}\n\n\t// get the next user id\n\t$name = 'get-next-user-id';\n\t$sql = \"select nextval('accounts.user_id_seq')\";\n\t$params = array();\n\t$result = execSql($conn, $name, $sql, $params, true);\n\tif (!$result) {\n\t\treturn $a;\n\t}\n\n\t$row = pg_fetch_array($result, 0, PGSQL_ASSOC);\n\t$id = $row['nextval'];\n\n\t// hash the password\n\t$hashPassword = hashPassword($pword);\n\n\t$auth = DB::$auth_registered;\n\t$access = DB::$auth_novice;\n\n\t// get TIC\n\t$publicTic = generateTic();\n\t$hashTic = hashTic($publicTic);\n\n\t// write a session token\n\t$si = writeToken($conn, $id);\n\tif (!$si){\n\t\treturn $a;\n\t}\n\n\t// write the user record\n\t$name = 'insert-user';\n\t$sql = \"insert into accounts.user (id, username, email, hashpassword, auth, hashtic, tmhashtic) values ($1, $2, $3, $4, $5, $6, now())\";\n\t$params = array($id, $uname, $email, $hashPassword, $auth, $hashTic);\n\t$result = execSql($conn, $name, $sql, $params, true);\n\tif (!$result) {\n\t\treturn $a;\n\t}\n\n\t// send TIC to user by email\n\t$boo = sendAuthenticationEmail($email, 'verify', $publicTic);\n\tif (!$boo) {\n\t\t$a['status'] = 'send-email-failed';\n\t\treturn $a;\n\t}\n\n\t// success\n\t$a['status'] = 'ok';\n\t$a['si'] = $si;\n\t$a['auth'] = $auth;\n\t$a['access'] = $access;\n\t$a['uname'] = $uname;\n\t//$a['email'] = obscureEmail($email);\n\treturn $a;\n}", "public function email_must_be_unique_on_update()\n {\n User::factory()->create([\n 'email' => '[email protected]',\n ]);\n\n $this\n ->from(\"nova/resources/users/{$this->user->id}/edit\")\n ->put(\n \"nova-api/users/{$this->user->id}\",\n [\n 'email' => '[email protected]',\n ]\n )\n ->assertRedirect(\"nova/resources/users/{$this->user->id}/edit\")\n ->assertSessionHasErrors('email');\n }", "public function post_register() {\n try {\n $i = Input::post();\n $validation = \\Fuel\\Core\\Validation::forge();\n $validation->add('email', 'Email')\n ->add_rule('required')\n ->add_rule('valid_email');\n $validation->add('username', 'Username')\n ->add_rule('required')\n ->add_rule('min_length', 6)\n ->add_rule('max_length', 18);\n $validation->add('password', 'Password')\n ->add_rule('required')\n ->add_rule('min_length', 6)\n ->add_rule('max_length', 18);\n\n if ($validation->run()) {\n $email = $i['email'];\n if (\\Utils::isDisposableEmail($email)) throw new \\Craftpip\\Exception(\"$email is a disposable Email, please use a genuine Email-id to signup.\");\n\n $auth = new \\Craftpip\\OAuth\\Auth();\n\n $user = $auth->getByUsernameEmail($i['email']);\n if ($user) throw new \\Craftpip\\Exception('This Email-ID is already registered.');\n\n $user_id = $auth->create_user($i['username'], $i['password'], $i['email'], 1, array());\n $auth->setId($user_id);\n $auth->setAttr('verified', false);\n $auth->setAttr('project_limit', 2);\n\n\n $mail = new \\Craftpip\\Mail($user_id);\n $mail->template_signup();\n if (!$mail->send()) {\n $auth->removeUser($user_id);\n }\n }\n else {\n throw new \\Craftpip\\Exception('Something is not right. Please try again');\n }\n $response = array(\n 'status' => true\n );\n } catch (Exception $e) {\n $e = new \\Craftpip\\Exception($e->getMessage(), $e->getCode());\n $response = array(\n 'status' => false,\n 'reason' => $e->getMessage()\n );\n }\n\n echo json_encode($response);\n }", "public function createRegisteredUser($email)\n {\n $user = new User([\n 'first_name' => 'Janez',\n 'last_name' => 'Novak',\n 'birth_date' => Carbon::create(1994, 1, 1),\n 'gender' => Code::MALE()->id,\n 'email' => $email,\n 'password' => bcrypt('password'),\n 'phone_number' => '+386 40 123 123 123',\n 'post' => 1,\n 'address' => 'Address',\n 'zz_card_number' => 'Totally valid',\n ]);\n $user->confirmEmail();\n $user->save();\n }", "private function saveUser(){\n\n if( ! $this->checkEmail() ){\n $password = password_hash($this->_userPassword, PASSWORD_DEFAULT);\n $request = $this->_connexion->prepare(\"INSERT INTO Users (user_name, user_email, user_password) VALUES (?, ?, ?)\");\n $request->execute(array($this->_userName, $this->_userEmail, $password));\n\n return $response = json_encode([\n 'status' => 'ok',\n 'message' => 'successfuly add'\n ]);\n }\n else{\n return $response = json_encode([\n 'status' => 'failed',\n 'message' => 'this email allready exist'\n ]);\n }\n\n }", "public function p_signup() {\n\n $q= 'Select email \n From users \n WHERE email=\"'.$_POST['email'].'\"';\n # see if the email exists\n $emailexists= DB::instance(DB_NAME)->select_field($q);\n \n # email exists, throw an error\n if($emailexists){ \n \n Router::redirect(\"/users/signup/error\"); \n \n }\n \n #requires all fields to be entered if java script is disabled, otherwise thow a different error\n \n elseif (!$_POST['email'] OR !$_POST['last_name'] OR !$_POST['first_name'] OR !$_POST['password']) {\n Router::redirect(\"/users/signup/error2\"); \n }\n # all is well , proceed with signup\n else{\n \n $_POST['created']= Time::now();\n $_POST['password']= sha1(PASSWORD_SALT.$_POST['password']); \n $_POST['token']= sha1(TOKEN_SALT.$_POST['email'].Utils::generate_random_string()); \n\n # add user to the database and redirect to users login page \n $user_id=DB::instance(DB_NAME)->insert_row('users',$_POST);\n # Create users first Notebook\n $notebook['name']= $_POST['first_name'].' Notebook';\n $notebook['user_id']= $user_id;\n $notebook['created']= Time::now(); \n $notebook['modified']= Time::now(); \n DB::instance(DB_NAME)->insert_row('notebooks',$notebook); \n\n Router::redirect('/users/login');\n }\n \n }", "public function testUniqueEmailOnRegistration(){\n User::factory(1)->create();\n\n $credentials = [\n \"email\" => \"[email protected]\",\n \"password\" => \"111111\",\n \"password_confirmation\" => \"111111\",\n \"account_type\" => \"Savings\",\n \"account_name\" => \"John Doe\",\n \"phone_number\" => \"08133093344\",\n ];\n\n $response = $this->post(route(\"register.submit\"),$credentials);\n\n $response->assertSessionHasErrors(\"email\");\n\n }", "function email_unique_check($email)\r\n\t{\r\n\t\t$isUnique = true;\r\n\r\n\t\t//Skapar anslutning till databasen.\r\n\t\t$db=new Database();\r\n\r\n\t\t//Hämtar de rader som har samma email.\r\n\t\t$result = $db->getUser($email);\r\n\r\n\t\t//Om det blev resultat.\r\n\t\tif($result)\r\n\t\t{\r\n\t\t\t//Finns det en rad betyder detta att ett konto med samma email redan existerar i databasen, och inget nytt konto ska skapas.\r\n\t\t\tif($row = mysqli_fetch_row($result))\r\n\t\t\t{\r\n\t\t\t\t//Email är ej unikt.\r\n\t\t\t\t$isUnique = false;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t//Avslutar anslutning till databasen.\r\n\t\t$db->close();\r\n\r\n\t\treturn $isUnique;\r\n\t}", "function register($email){\n\t\t$conn = new ConnectDB();\n\t\t$sql = \"INSERT INTO users (email) VALUES ('$email')\";\n\t\t\n\t\tif (mysqli_query($conn->connectDB(),$sql)) {\n\t\t\techo \"register success\";\n\n\t\t}else{\n\t\t\techo \"register fail\";\n\t\t}\n\t}", "public function registeruser($email,$dateofbirth,$phonenumber,$password){\n\t\tif($this->checkuseremail($email)){\n\t\t\t$this->email_code=md5($dateofbirth);\n\t\t\t$object=array(\n\t\t\t\t'Email' => $email,\n\t\t\t\t'DateofBirth' => $dateofbirth,\n\t\t\t\t'Password' => md5($password),\n\t\t\t\t'Phonenumber' => $phonenumber,\n\t\t\t\t'RegisterDate' => date(\"Y-m-d\"),\n\t\t\t\t'UniqueKey' => $this->email_code\n\t\t\t);\n\t\t\t$this->SendVerificationEmail($email,$this->email_code);\n\t\t\t$this->db->insert('tbl_userdetails', $object);\n\t\t\treturn true;\n\t\t\techo \"OK\";\n\t\t}\n\t\telse{\n\t\t\treturn false;\n\t\t\techo \"emailexist\";\n\t\t}\n\t}", "public function register_user()\n {\n \n return true;\n \n }", "function unique_email($value, $id = 0)\n\t{\n\t\tif ($this->user_model->is_email_unique($value, $id))\n\t\t\treturn TRUE;\n\t\telse\n\t\t{\n\t\t\t$this->form_validation->set_message('unique_email', lang('already_taken'));\n\t\t\treturn FALSE;\n\t\t}\n\t}", "function getOrCreateUserByEmail(EmailValue $email);", "function register_user($username, $password, $email)\n\t{\n\t\t$strings = $this->hash_generator($password);\n\n\t\t$hash = $strings['hash'];\n\t\t$salt = $strings['salt'];\n\n\t\t$sql = \"INSERT INTO users (username, password, salt, email) VALUES ('$username', '$hash', '$salt', '$email')\";\n\n\t\t$dbdata = $this->conn->prepare($sql);\n\t\t$dbdata->execute();\n\n\t\treturn $this->conn->lastInsertId('id_user');\n\t}", "function register() {\n\n // Validate user input\n $this->s_fname = testInput($this->s_fname);\n $this->s_lname = testInput($this->s_lname);\n $this->s_bdate = testInput($this->s_bdate);\n $this->s_sex = testInput($this->s_sex);\n $this->s_email = testInput($this->s_email);\n $this->s_password = testInput($this->s_password);\n\n // Check that student is not registered already\n $result = $this->conn->query(\"SELECT * FROM $this->tableName WHERE s_email LIKE '$this->s_email'\");\n \n if ($result->rowCount() === 0) {\n\n // Insert query \n $query = \"INSERT INTO $this->tableName (s_fname, s_lname, s_bdate, s_sex, s_email, s_password)\n VALUES(:firstName, :lastName, :birthday, :sex, :email, :hashedPassword)\";\n\n // Prepare insert statement\n $insert = $this->conn->prepare($query);\n\n $insert->bindParam(\":firstName\", $this->s_fname);\n $insert->bindParam(\":lastName\", $this->s_lname);\n $insert->bindParam(\":birthday\", $this->s_bdate);\n $insert->bindParam(\":sex\", $this->s_sex);\n $insert->bindParam(\":email\", $this->s_email);\n // Hash password before storing it\n $this->s_password = password_hash($this->s_password, PASSWORD_DEFAULT);\n $insert->bindParam(\":hashedPassword\", $this->s_password);\n\n // Send new user to DB\n try {\n $insert->execute();\n return true;\n }\n catch(PDOException $e) {\n echo $e;\n return false;\n }\n }\n else {\n return false;\n }\n }", "function create_account($firstname, $lastname, $email, $password) {\n\t$query = \"SELECT * FROM \" . $GLOBALS['db_name'] . \".users WHERE email = '$email' LIMIT 1\";\n\t$result = $GLOBALS['db_connection'] -> query($query);\n\t\n\tif ($result -> num_rows > 0) {\n\t\treturn \"E-Mail address already registered\";\n\t}\n\t\n\t// create account\n\t$unique_id = uniqid();\n\t$query = \"INSERT INTO \" . $GLOBALS['db_name'] . \".users (firstname, lastname, email, password, user_id) VALUES ('$firstname', '$lastname', '$email', '$password', '$unique_id')\";\n\t\t\n\tif ($GLOBALS['db_connection'] -> query($query) === TRUE) {\n\t\treturn TRUE;\n\t} else {\n\t\tdisplay_sql_error();\n\t}\n}", "function checkUsername_Email(){\n\t\t\t$value = $_POST[\"value\"];\n\t\t\t$field = $_POST[\"field\"];\n\t\t\t//echo \"$value\".' '.$field;\n\t\t\t$query = $this->db->query(\"SELECT $field FROM users WHERE $field='$value' LIMIT 1\");\n\t\t\t$valid = $query->num_rows();\n\t\t\tif($valid == 0){\n\t\t\t\tif($field == 'email'){\n\t\t\t\t\techo \"Eunique\";\n\t\t\t\t}else{\n\t\t\t\t\techo \"U_unique\";\n\t\t\t\t}\n\t\t\t}else{\n\t\t\t\tif($field == 'email'){\n\t\t\t\t\techo \"This \".$field.\" is already registered with another user.\";\n\t\t\t\t}else{\n\t\t\t\t\techo \"This \".$field.\" is not available, please choose something different\";\n\t\t\t\t}\n\t\t\t}\n\t\t}", "public function chkEmailDuplicate() {\n $this->load->model('register_model');\n $user_email = $this->input->post('user_email');\n $user_email_back = $this->input->post('user_email_back');\n if ($user_email == $user_email_back) {\n echo 'true';\n } else {\n $table_to_pass = 'mst_users';\n $fields_to_pass = array('user_id', 'user_email');\n $condition_to_pass = array(\"user_email\" => $user_email);\n $arr_login_data = $this->register_model->getUserInformation($table_to_pass, $fields_to_pass, $condition_to_pass, $order_by_to_pass = '', $limit_to_pass = '', $debug_to_pass = 0);\n if (count($arr_login_data)) {\n echo 'false';\n } else {\n echo 'true';\n }\n }\n }", "public function registr($email, $password, $confirmPassword){ \n if(empty($email)){ \n $this->message = [\"error\", \"Missing email\"];\n }\n elseif(!filter_var($email, FILTER_VALIDATE_EMAIL)){\n $this->message = [\"error\", \"Email is not valid\"];\n }\n elseif(empty($password)){ \n $this->message = [\"error\", \"Missing password\"];\n }\n elseif(empty($confirmPassword)){\n $this->message = [\"error\", \"Missing confirm password\"];\n }\n elseif ($password != $confirmPassword) { \n $this->message = [\"error\", \"Passwords do not match\"];\n } else { \n $result = dibi::query('SELECT COUNT(*)\n FROM [user]\n WHERE [email] = %s', $email, 'LIMIT 1');\n $userExist = $result->fetchSingle();\n if ($userExist){ \n $this->message = [\"error\", \"User already exists\"];\n } \n else { \n //password_hash, PASSWORD_BCRYPT = BLOWFISH\n $options = [\n 'salt' => mcrypt_create_iv(22, MCRYPT_DEV_URANDOM),\n 'cost' => 12\n ];\n $password_result = password_hash($password, PASSWORD_BCRYPT, $options);\n \n $arr = [\n 'email' => $email,\n 'password' => $password_result \n ];\n dibi::query('INSERT INTO [user]', $arr); \n $this->__setSession($email);\n mkdir(\"files/\".$email, 0700);\n parent::redirection(\"app.php?page=showrecord\");\n } \n }\n }", "public function registerUser($args) {\n $this->db->insert('user', [\n 'email' => $args['email'],\n 'password' => md5($args['password']),\n 'role' => $args['role'],\n 'created_at' => date('Y-m-d H:i:s', time()),\n 'account_status' => $args['account_status']\n ]);\n\t\treturn $this->db->insert_id();\n }", "function insert_unregister_user($id,$cellphone)\n {\n $query=$this->db->query(\"INSERT INTO xl_account(id,cellphone,register_user) VALUES ('{$id}','{$cellphone}',0)\");\n \n if ($this->db->affected_rows()>0) \n {\n return TRUE;\n }\n \n return FALSE;\n\n }", "function ggouv_register_user($username, $password, $name, $email,\n$allow_multiple_emails = false, $friend_guid = 0, $invitecode = '') {\n\n\t// Load the configuration\n\tglobal $CONFIG;\n\n\t// no need to trim password.\n\t$username = trim($username);\n\t$name = trim(strip_tags($name));\n\t$email = trim($email);\n\t$name = trim($name);\n\n\t// A little sanity checking\n\tif (empty($username)\n\t|| empty($password)\n\t// || empty($name) We authorize anonymous !\n\t|| empty($email)) {\n\t\treturn false;\n\t}\n\n\t// Make sure a user with conflicting details hasn't registered and been disabled\n\t$access_status = access_get_show_hidden_status();\n\taccess_show_hidden_entities(true);\n\n\tif (!validate_email_address($email)) {\n\t\tthrow new RegistrationException(elgg_echo('registration:emailnotvalid'));\n\t}\n\n\tif (!validate_password($password)) {\n\t\tthrow new RegistrationException(elgg_echo('registration:passwordnotvalid'));\n\t}\n\n\tif (!validate_username($username) || preg_match('/^\\d/', $username) === 1) { // ggouv. Don't want username start by number\n\t\tthrow new RegistrationException(elgg_echo('registration:usernamenotvalid'));\n\t}\n\n\tif ($user = get_user_by_username($username)) {\n\t\tthrow new RegistrationException(elgg_echo('registration:userexists'));\n\t}\n\n\tif ((!$allow_multiple_emails) && (get_user_by_email($email))) {\n\t\tthrow new RegistrationException(elgg_echo('registration:dupeemail'));\n\t}\n\n\taccess_show_hidden_entities($access_status);\n\n\t// Create user\n\t$user = new ElggUser();\n\t$user->username = $username;\n\t$user->email = $email;\n\t$user->name = $username; // original $name. But we don't want to use name by \n\t$user->realname = $name; // added for ggouv\n\t$user->access_id = ACCESS_PUBLIC;\n\t$user->salt = generate_random_cleartext_password(); // Note salt generated before password!\n\t$user->password = generate_user_password($user, $password);\n\t$user->owner_guid = 0; // Users aren't owned by anyone, even if they are admin created.\n\t$user->container_guid = 0; // Users aren't contained by anyone, even if they are admin created.\n\t$user->save();\n\n\t// If $friend_guid has been set, make mutual friends\n\tif ($friend_guid) {\n\t\tif ($friend_user = get_user($friend_guid)) {\n\t\t\tif ($invitecode == generate_invite_code($friend_user->username)) {\n\t\t\t\t$user->addFriend($friend_guid);\n\t\t\t\t$friend_user->addFriend($user->guid);\n\n\t\t\t\t// @todo Should this be in addFriend?\n\t\t\t\tadd_to_river('friends/river/create', 'friend', $user->getGUID(), $friend_guid);\n\t\t\t\tadd_to_river('friends/river/create', 'friend', $friend_guid, $user->getGUID());\n\t\t\t}\n\t\t}\n\t}\n\n\t// Turn on email notifications by default\n\tset_user_notification_setting($user->getGUID(), 'email', true);\n\n\treturn $user->getGUID();\n}", "public function iN_CheckEmailExistForRegister($email) {\n\t\t$email = mysqli_real_escape_string($this->db, $email);\n\t\t$checkEmail = mysqli_query($this->db, \"SELECT i_user_email FROM i_users WHERE i_user_email = '$email'\") or die(mysqli_error($this->db));\n\t\tif (mysqli_num_rows($checkEmail) == 1) {\n\t\t\treturn true;\n\t\t} else {return false;}\n\t}", "public function registerUser($data);", "function registerEmailInviata($emailId) {\n //echo $emailId;\n if ($this->connectToMySql()) {\n $query = sprintf(\"UPDATE scuola.email_store\n SET email_inviata = 1 WHERE id_email = %s \", $emailId);\n\n\n // Perform Query\n $result = mysql_query($query);\n if (!$result) {\n //die('<span class=\"error\">'.mysql_error().'</span>');\n setcookie(\"message\", mysql_error());\n }\n //setcookie(\"message\",$query );\n $this->closeConnection();\n return $result;\n }\n return FALSE;\n }", "function adduser($firstname,$lastname,$email,$password, $contact=1,$profile=1) \n{\n\tglobal $spebs_db;\n\t$pquery = \"INSERT INTO user (firstname,lastname,email,password,profile,creation_time,active,contact) VALUES(?,?,?,SHA1(?), ?, ?,0,?)\";\n\t$newuid = get_prepared_insert_id($pquery, array($firstname,$lastname,$email,$password,$profile,date('Y-m-d H:i:s'),$contact), 'ssssisi');\n\t\n\tif(is_numeric($newuid) && $newuid>0)\n\t{\n\t\tsend_registration_confirmation($newuid, $firstname.' '.$lastname, $email, $password);\n\t\tadd_log('REGISTRATION',$newuid);\n\t\treturn $newuid;\n\t}\n\telse\n\t\treturn false;\n}", "function _check_email_exist_create($email) {\n\n\t\t$this->load->model('user');\n\n\t\t$result = $this->user->check_email_exist($email);\n\n\t\t\n\n\t\tif ($result == TRUE) {\n\n\t\t\t$this->form_validation->set_message('_check_email_exist_create', 'The email \"'.$email.'\" already exists!');\n\n\t\t\treturn FALSE;\n\n\t\t} else {\n\n\t\t\treturn TRUE;\n\n\t\t}\n\n\t}", "function _check_email_exist_create($email) {\n\n\t\t$this->load->model('user');\n\n\t\t$result = $this->user->check_email_exist($email);\n\n\t\t\n\n\t\tif ($result == TRUE) {\n\n\t\t\t$this->form_validation->set_message('_check_email_exist_create', 'The email \"'.$email.'\" already exists!');\n\n\t\t\treturn FALSE;\n\n\t\t} else {\n\n\t\t\treturn TRUE;\n\n\t\t}\n\n\t}", "function _email_callback($email)\n {\n $id = $this->uri->segment(4);\n $data = $this->user_model->email_validation($id, $email);\n \n if ($data->num_rows() > 0) {\n $this->form_validation->set_message('_email_callback', '%s already taken.');\n return FALSE;\n } else {\n return TRUE;\n }\n }", "static function add_user($id, $email) {\n global $con;\n $added_user_id = self::email2id($email);\n\n if (is_null($added_user_id))\n return -1;\n\n if ($added_user_id == $id)\n return -2;\n\n $time = time();\n // check if the user is already added\n if (!self::user_already_has_a_relationship_with($id, $added_user_id)) {\n $sql = \"INSERT INTO `relationship` (`user1`, `user2`, `time`, `type`) VALUES (\".$id.\", \".$added_user_id.\", \".$time.\", 1);\";\n $query = mysqli_query($con, $sql);\n return 1;\n } else {\n $sql = \"UPDATE `relationship` SET `type` = 1, `time`= \".$time.\" WHERE `user1` = \".$id.\" AND `user2` = \".$added_user_id.\";\";\n $query = mysqli_query($con, $sql);\n return 2;\n }\n return 0;\n }", "function register_member($username, $password, $email) {\r $dat = $this->get_member($username);\r $row = $this->db->fetch_array($dat);\r \r if ($row[\"id\"]) {\r ## user already exists, return..\r return -10;\r } else {\r ## not found, good to add..\r $code = $this->rand_str(20);\r $pass = md5($password);\r $sql = \"INSERT INTO \".$GLOBALS[\"c_ext\"].\".members \r (email, username, password, full_name, status, accesslevel, auth_key) \r VALUES (\r '\" . addslashes($email) . \"',\r '\" . addslashes($username) . \"',\r '\" . addslashes($pass) . \"',\r '',\r 0,\r 0,\r '\" . $code . \"')\";\r $this->debug .= $sql . \"<br>\";\r $r = $this->db->query($sql);\r if (!$r) {\r handleError($GLOBALS[\"SCRIPT_NAME\"], $this->db->errors);\r } else {\r $_id = $this->db->insert_id();\r }\r\r ### send an email... \r $subject = \"Armory Lite - Account Activation\";\r $headers = \"From: no-reply@\".$GLOBALS[\"g_ext\"].\".com\";\r $body = \"\r\r Hi \" . ucfirst($username) . \" - welcome to Armorylite!\r \r To activate your account, please visit the following link:\r \r http://armorylite.com/activate.php?c=\" . $code . \"\r \r Thanks for using Armory Lite! \r \r \";\r if (mail($email, $subject, $body, $headers)) {\r return 1;\r } else {\r return -11; \r }\r }\r }", "function registByField(array $data = []): bool\n {\n if (!$this->verifyEmail(trim($data['email']))) return false;\n\n if (isset($data['password'])) {\n if ($data['password'] === '') {\n $this->error['password'] = 'Password can not be empty';\n return false;\n } elseif (mb_strlen($data['password']) < 7) {\n $this->error['password'] = 'You have entered a short password. At least 7 characters';\n return false;\n }\n $data['password'] = password_hash($data['password'], PASSWORD_DEFAULT);\n }\n\n $insert = [];\n foreach ($data as $k => $v) {\n if (!in_array($k, $this->allowFields)) continue;\n $insert[] = \"`\" . \\es($k) . \"` = '\" . \\es(trim($v)) . \"'\";\n }\n\n q(\"\n INSERT INTO `fw_users` SET\n \" . implode(',', $insert) . \"\n \");\n $this->id = \\Core\\DB::_()->insert_id;\n $this->hash = md5($this->id . microtime(true) . rand(1, 1000000) . trim(isset($data['password']) ?? time()));\n\n q(\"\n UPDATE `fw_users` SET\n \" . ($this->verifyEmail ? '' : '`status` = \\'active\\',') . \"\n `hash` = '\" . es($this->hash) . \"'\n WHERE `id` = \" . $this->id . \"\n \");\n return true;\n }", "public function userRegistration($username,$password,$email){\n\t\t\ttry{\n\t\t\t\t$db = getDB();\n\t\t\t\t$st = $db->prepare(\"SELECT uid FROM users WHERE username=:username OR email=:email\"); \n\t\t\t\t$st->bindParam(\"username\", $username,PDO::PARAM_STR);\n\t\t\t\t$st->bindParam(\"email\", $email, PDO::PARAM_STR);\n\t\t\t\t$st->execute();\n\t\t\t\t$count=$st->rowCount();\n\t\t\t\tif($count < 1){\n\t\t\t\t\t$stmt = $db->prepare(\"INSERT INTO users(username,password,email) VALUES (:username,:hash_password,:email)\");\n\t\t\t\t\t$stmt->bindParam(\"username\", $username,PDO::PARAM_STR) ;\n\t\t\t\t\t$hash_password = $this->hashPassword($password);\n\t\t\t\t\t$stmt->bindParam(\"hash_password\", $hash_password,PDO::PARAM_STR) ;\n\t\t\t\t\t$stmt->bindParam(\"email\", $email,PDO::PARAM_STR) ;\n\t\t\t\t\t$stmt->execute();\n\t\t\t\t\t$uid=$db->lastInsertId(); // Last inserted row id\n\t\t\t\t\t$db = null;\n\t\t\t\t\t$_SESSION['uid']=$uid;\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\telse{\n\t\t\t\t\t$db = null;\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t} \n\t\t\tcatch(PDOException $e) {\n\t\t\t\techo '{\"error\":{\"text\":'. $e->getMessage() .'}}'; \n\t\t\t}\n\t\t}", "function register ($name, $type, $email, $password)\n{\n require \"config.php\";\n //set properties\n $this->setName($name);\n $this->setEmail($email);\n $this->setUserType($type);\n $this->setPassword($password);\n\n //check if the inserted email already exists in the database\n $emailCheck = $this->getEmail();\n $permit = $conn->prepare(\"SELECT * FROM users WHERE email = :email\");\n $permit->bindParam(\":email\", $emailCheck);\n $permit->execute();\n $obj = $permit->fetchObject();\n\n //check if email exists, display error message, otherwise if it does not exist, insert the user's details into our database\n if ($obj) {\n //echo \"Oops. It looks like you already have an account with us\";\n $returnData = [\n 'success' => 0,\n 'message' => 'Oops. It looks like that email is already in use. Do you already have an account?',\n 'submessage' => 'That email is already in use.'\n ];\n return $returnData;\n }\n else {\n //prepare statements to insert users to the db.\n $reg = $conn->prepare(\"INSERT INTO users (username, type, email, password)\n VALUES (:name, :type, :email, :password)\");\n\n $reg->bindParam(\":name\", $name);\n $reg->bindParam(\":type\", $type);\n $reg->bindParam(\":email\", $emailCheck);\n $reg->bindParam(\":password\", $password);\n\n return $reg->execute();\n }\n}", "public function registerUser(){\r\n\t\t$name = $_POST['register_name'];\r\n\t\t$email = $_POST['register_email'];\r\n\t\t$password = $_POST['register_password'];\r\n\r\n\t\t$sql = \"INSERT INTO users values (null,?,?,?)\";\r\n\t\t$query = $this->db->prepare($sql);\r\n\t\t$query->execute([$name,$email,$password]);\r\n\t\t//ako je registracija uspela pojavice se div u formu sa ispisom notifikacije!!!\r\n\t\tif ($query) {\r\n\t\t\t$this->register_result=true;\r\n\t\t}\r\n\t}", "function unique_user($username, $email){\n\t\t$conn \t= connectDB();\n\t\t$sth \t= $conn \t-> prepare('SELECT count(*)\n\t\t\t\t\t\t\t\t\t\tFROM `clients`\n\t\t\t\t\t\t\t\t\t\tWHERE `email`\t= ?');\n\t\t$sth \t-> execute(array($email));\n\n\t\tif($sth -> fetchColumn() >= 1){\n\t\t\treturn false;\n\t\t} else {\n\t\t\t$sth \t= $conn \t-> prepare('SELECT count(*)\n\t\t\t\t\t\t\t\t\t\t\tFROM `clients`\n\t\t\t\t\t\t\t\t\t\t\tWHERE `username` = ?');\n\t\t\t$sth \t-> execute(array($username));\n\t\t\treturn \t(!$sth -> fetchColumn() >= 1);\n\t\t}\n\t}", "public function register($username, $password, $verifypassword, $email) {\n if (!Cookie::get('auth_cookie')) {\n // Input Verification :\n if (strlen($username) == 0) {\n $auth_error[] = $this->lang['register_username_empty'];\n } elseif (strlen($username) > MAX_USERNAME_LENGTH) {\n $auth_error[] = $this->lang['register_username_long'];\n } elseif (strlen($username) < MIN_USERNAME_LENGTH) {\n $auth_error[] = $this->lang['register_username_short'];\n }\n if (strlen($password) == 0) {\n $auth_error[] = $this->lang['register_password_empty'];\n } elseif (strlen($password) > MAX_PASSWORD_LENGTH) {\n $auth_error[] = $this->lang['register_password_long'];\n } elseif (strlen($password) < MIN_PASSWORD_LENGTH) {\n $auth_error[] = $this->lang['register_password_short'];\n } elseif ($password !== $verifypassword) {\n $auth_error[] = $this->lang['register_password_nomatch'];\n } elseif (strstr($password, $username)) {\n $auth_error[] = $this->lang['register_password_username'];\n }\n if (strlen($email) == 0) {\n $auth_error[] = $this->lang['register_email_empty'];\n } elseif (strlen($email) > MAX_EMAIL_LENGTH) {\n $auth_error[] = $this->lang['register_email_long'];\n } elseif (strlen($email) < MIN_EMAIL_LENGTH) {\n $auth_error[] = $this->lang['register_email_short'];\n } elseif (!filter_var($email, FILTER_VALIDATE_EMAIL)) {\n $auth_error[] = $this->lang['register_email_invalid'];\n }\n if (count($auth_error) == 0) {\n // Input is valid\n $query = $this->db->select(\"SELECT * FROM \".PREFIX.\"users WHERE username=:username\", array(':username' => $username));\n $count = count($query);\n if ($count != 0) {\n // Username already exists\n $this->logActivity(\"UNKNOWN\", \"AUTH_REGISTER_FAIL\", \"Username ({$username}) already exists\");\n $auth_error[] = $this->lang['register_username_exist'];\n return false;\n } else {\n // Username is not taken\n $query = $this->db->select('SELECT * FROM '.PREFIX.'users WHERE email=:email', array(':email' => $email));\n $count = count($query);\n if ($count != 0) {\n // Email address is already used\n $this->logActivity(\"UNKNOWN\", \"AUTH_REGISTER_FAIL\", \"Email ({$email}) already exists\");\n $auth_error[] = $this->lang['register_email_exist'];\n return false;\n } else {\n\t\t\t\t\t\t// Check to see if user has to activate their account or not\n\t\t\t\t\t\tif(NEW_USER_ACTIVATION == \"true\"){\n\t\t\t\t\t\t\t// Site is set for new members to activate their account by email\n\t\t\t\t\t\t\t// Email address isn't already used\n\t\t\t\t\t\t\t$password = $this->hashPass($password);\n\t\t\t\t\t\t\t$activekey = $this->randomKey(RANDOM_KEY_LENGTH);\n\t\t\t\t\t\t\t$this->db->insert(PREFIX.'users', array('username' => $username, 'password' => $password, 'email' => $email, 'activekey' => $activekey));\n\t\t\t\t\t\t\t// Add User to Default Group\n\t\t\t\t\t\t\t$new_user_id = $this->db->lastInsertId('userID');\n\t\t\t\t\t\t\t$this->db->insert(PREFIX.'users_groups', array('userID' => $new_user_id, 'groupID' => '1'));\n // Create User's Extended Profile\n $this->db->insert(PREFIX.'users_extprofile', array('userID' => $new_user_id));\n\t\t\t\t\t\t\t//EMAIL MESSAGE USING PHPMAILER\n\t\t\t\t\t\t\t$mail = new \\Helpers\\PhpMailer\\Mail();\n\t\t\t\t\t\t\t$mail->setFrom(EMAIL_FROM);\n\t\t\t\t\t\t\t$mail->addAddress($email);\n\t\t\t\t\t\t\t$subject = \" \" . SITE_NAME . \" - Account Activation Link\";\n\t\t\t\t\t\t\t$mail->subject($subject);\n\t\t\t\t\t\t\t$body = \"Hello {$username}<br/><br/>\";\n\t\t\t\t\t\t\t$body .= \"You recently registered a new account on \" . SITE_NAME . \"<br/>\";\n\t\t\t\t\t\t\t$body .= \"To activate your account please click the following link<br/><br/>\";\n\t\t\t\t\t\t\t$body .= \"<b><a href=\\\"\" . DIR . ACTIVATION_ROUTE . \"?username={$username}&key={$activekey}\\\">Activate my account</a></b>\";\n\t\t\t\t\t\t\t$body .= \"<br><br> You May Copy and Paste this URL in your Browser Address Bar: <br>\";\n\t\t\t\t\t\t\t$body .= \" \" . DIR . ACTIVATION_ROUTE . \"?username={$username}&key={$activekey}\";\n\t\t\t\t\t\t\t$mail->body($body);\n\t\t\t\t\t\t\t$mail->send();\n\t\t\t\t\t\t\t$this->logActivity($username, \"AUTH_REGISTER_SUCCESS\", \"Account created and activation email sent\");\n\t\t\t\t\t\t\t$this->success[] = $this->lang['register_success'];\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(NEW_USER_ACTIVATION == \"false\"){\n\t\t\t\t\t\t\t// Site is set to let new members register without email activation\n\t\t\t\t\t\t\t$password = $this->hashPass($password);\n\t\t\t\t\t\t\t$activekey = $this->randomKey(RANDOM_KEY_LENGTH);\n\t\t\t\t\t\t\t$this->db->insert(PREFIX.'users', array('username' => $username, 'password' => $password, 'email' => $email, 'isactive' => '1'));\n // Add User to Default Group\n\t\t\t\t\t\t\t$new_user_id = $this->db->lastInsertId('userID');\n\t\t\t\t\t\t\t$this->db->insert(PREFIX.'users_groups', array('userID' => $new_user_id, 'groupID' => '1'));\n // Create User's Extended Profile\n $this->db->insert(PREFIX.'users_extprofile', array('userID' => $new_user_id));\n\t\t\t\t\t\t\t$this->logActivity($username, \"AUTH_REGISTER_SUCCESS\", \"Account created and activation email sent\");\n\t\t\t\t\t\t\t$this->success[] = $this->lang['register_success'];\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n }\n }\n } else {\n //some error\n return false;\n }\n } else {\n // User is logged in\n $auth_error[] = $this->lang['register_email_loggedin'];\n return false;\n }\n }", "public function Register($fname,$lname,$email){\n\n\t\t$seskey = $this->returnRandomString(30);\n\t\t$hashkey = $this->returnRandomString(50);\n\n\t\t$insertUser = $this->db->query(\"Insert into `system_user` (`managersession`,`manager_fname`,`manager_lname`,`manager_email`,`user_hash`,`manager_status`) values ('$seskey','$fname','$lname','$email','$hashkey','0') \");\n\n\t\tif($insertUser == true){\n\t\t\treturn true;\n\n\t\t}else{\n\t\t\treturn false;\n\t\t}\n\t}", "function autoregister_create_new_user($itemId)\n {\n $item = Item::newInstance()->findByPrimaryKey($itemId['pk_i_id']);\n // if not exist user\n if( $item['fk_i_user_id'] == NULL ) {\n // create new user + send email\n $name = $item['s_contact_name'];\n $email = $item['s_contact_email'];\n // prepare data for register user\n $aux_password = osc_genRandomPassword();\n // clear params ....\n $input = array();\n $input['s_name'] = Params::getParam('s_name') ;\n Params::setParam('s_name', $name ); // from inserted item\n $input['s_email'] = Params::getParam('s_email') ;\n Params::setParam('s_email', $email ); // from inserted item\n $input['s_password'] = Params::getParam('s_password') ;\n Params::setParam('s_password', $aux_password ); // generated\n $input['s_password2'] = Params::getParam('s_password2') ;\n Params::setParam('s_password2', $aux_password ); // generated\n $input['s_website'] = Params::getParam('s_website') ;\n Params::setParam('s_website', '');\n $input['s_phone_land'] = Params::getParam('s_phone_land') ;\n Params::setParam('s_phone_land', '');\n $input['s_phone_mobile'] = Params::getParam('s_phone_mobile') ;\n Params::setParam('s_phone_mobile', '');\n $input['countryId'] = Params::getParam('countryId');\n Params::setParam('countryId', '');\n $input['regionId'] = Params::getParam('regionId');\n Params::setParam('regionId', '');\n $input['cityId'] = Params::getParam('cityId');\n Params::setParam('cityId', '');\n $input['cityArea'] = Params::getParam('cityArea') ;\n Params::setParam('cityArea', '');\n $input['address'] = Params::getParam('address') ;\n Params::setParam('address', '');\n $input['b_company'] = (Params::getParam('b_company') != '' && Params::getParam('b_company') != 0) ? 1 : 0 ;\n Params::setParam('b_company', '0');\n\n require_once LIB_PATH . 'osclass/UserActions.php' ;\n $userActions = new UserActions(false) ;\n $success = $userActions->add() ;\n\n switch($success) {\n case 1: osc_add_flash_ok_message( _m('The user has been created. An activation email has been sent')) ;\n $success = true;\n break;\n case 2: osc_add_flash_ok_message( _m('Your account has been created successfully')) ;\n $success = true;\n break;\n case 3: osc_add_flash_warning_message( _m('The specified e-mail is already in use')) ;\n $success = false;\n break;\n case 4: osc_add_flash_error_message( _m('The reCAPTCHA was not entered correctly')) ;\n $success = false;\n break;\n case 5: osc_add_flash_warning_message( _m('The email is not valid')) ;\n $success = false;\n break;\n case 6: osc_add_flash_warning_message( _m('The password cannot be empty')) ;\n $success = false;\n break;\n case 7: osc_add_flash_warning_message( _m(\"Passwords don't match\")) ;\n $success = false;\n break;\n }\n\n if($success) {\n Log::newInstance()->insertLog('plugin_autoregister', 'autoregister', '', $email.' '.$_SERVER['REMOTE_ADDR'], 'autoregister', osc_logged_admin_id()) ;\n // update user of item\n $user = User::newInstance()->findByEmail($email);\n Item::newInstance()->update(array('fk_i_user_id' => $user['pk_i_id'] ), array('pk_i_id' => $itemId ) );\n $item = Item::newInstance()->findByPrimaryKey($itemId);\n\n autoregister_sendMail($email, $user, $aux_password);\n\n // not activated\n if( $item['b_active'] != 1 ) {\n osc_run_hook('hook_email_item_validation', $item);\n }\n }\n\n // set params again\n Params::setParam('s_name', $input['s_name']);\n Params::setParam('s_email', $input['s_email']);\n Params::getParam('s_password', $input['s_password']) ;\n Params::getParam('s_password2', $input['s_password2']) ;\n Params::setParam('s_website', $input['s_website']);\n Params::setParam('s_phone_land', $input['s_phone_land']);\n Params::setParam('s_phone_mobile', $input['s_phone_mobile']);\n Params::setParam('countryId', $input['countryId']);\n Params::setParam('regionId', $input['regionId']);\n Params::setParam('cityId', $input['cityId']);\n Params::setParam('cityArea', $input['cityArea'] );\n Params::setParam('address', $input['address']);\n Params::setParam('b_company', $input['b_company']);\n // end\n }\n }", "public function actionUniqueEmailCheck() {\n //validate webservice\n $requiredParams = ['email'];\n\n CommonApiHelper::validateRequestParameters($requiredParams);\n\n $response = [];\n\n //Get request parameters.\n $post = Yii::$app->request->bodyParams;\n $post = array_map('trim', $post);\n $email = $post['email'];\n\n //Email uniqueness check\n $userEmailCheck = Users::find()->where(['email' => $email])->asArray()->one();\n if (empty($userEmailCheck)) {\n return CommonApiHelper::generate_success_response(\"Email Id is available\", []);\n } else {\n return CommonApiHelper::generate_error_response('3', 'Email Id has been already registered. Please try with different email Id.');\n }\n }", "function registrar_usuario($nombre, $apellido, $usuario, $email, $clave){\n\n\t$nombre = escapar($nombre);\n\t$apellido = escapar($apellido);\n\t$usuario = escapar($usuario);\n\t$email = escapar($email);\n\t$clave = escapar($clave);\n\n if(email_existe($email)){\n\n \treturn false;\n }else if (usuario_existe($usuario)){\n\n return false;\n } else{\n\n \t$clave = md5($clave);\n\n \t$validacion = MD5($usuario . microtime()); //en este caso para concatenar en vez de un \".\" tb se puede usar \"+\"\n\n $sql = \"INSERT INTO usuarios(nombre, apellido, usuario, email, clave, validacion, activar) \n VALUES('$nombre','$apellido', '$usuario', '$email', '$clave','$validacion', 0)\";\n \n $resultado = query($sql);\n \n\n $sujeto = \"Activar cuenta\";\n\n $msj = \"Por favor haz click en el link para activar tu cuenta\n http://localhost/login/activate.php?email=$email&codigo=$validacion\n \";\n\n $headers= \"From: [email protected]\";\n\n enviar_email($email,$sujeto, $msj, $headers);\n\n return true;\n\n } \n\n\n}", "public function register(){\n\t\t$password= $this->input->post('sign_password');\t\t\t\t\t\t\t\t\t\t\n\t\t$emailID=$this->input->post('sign_email');\n\n\t\t//validation check\n\t\tif($emailID=='' || $password=='')\n\t\t{\n\t\t\tredirect('login');\n\t\t\tdie();\n\t\t}\n\n\t\t$enc_password= base64_encode($password);\t//encrypt password\n\n\t\t//check email-Id is already registered \n\t\t$this->load->model('logged_user');\n\t\t$checkEmail=$this->logged_user->checkEmail_exist($emailID);\n\t\t\n\n\t\tif($checkEmail){\t\n\n\t\t\t//Connection establishment, processing of data and response from REST API\n\t\t\t$data=array(\n\t\t\t\t'email' =>$emailID,\n\t\t\t\t'password' => $enc_password\n\t\t\t);\n\t\t\t$path=base_url();\n\t\t\t$url = $path.'api/register.php';\n\t\t\t$ch = curl_init($url);\n\t\t\tcurl_setopt($ch, CURLOPT_POST, true);\n\t\t\tcurl_setopt($ch, CURLOPT_POSTFIELDS, $data);\n\t\t\tcurl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n\t\t\t$response_json = curl_exec($ch);\n\t\t\tcurl_close($ch);\n\t\t\t$response=json_decode($response_json, true);\n\t\t//API processing end\n\n\n\t\t//if status returned is 0 then registering failed, if 1 then redirect to signup page\n\t\t\tif($response['status']==0){\n\t\t\t\t$data['account_registered']=$response['status_message'];\n\n\t\t\t\t$this->load->view('includes/header.php');\n\t\t\t\t$this->load->view('pages/member_signup.php',$data);\n\t\t\t\t$this->load->view('includes/footer.php');\t\t\t\n\n\t\t\t}\n\t\t\telse{\n\t\t\t\t$session_data= array(\n\t\t\t\t\t'email_id' => $response['email_id'],\n\t\t\t\t\t'is_logged' => $response['is_logged'],\n\t\t\t\t\t'unique_id'=>'',\n\t\t\t\t\t'user_name'=>''\n\t\t\t\t);\n\n\t\t\t\t//after registering login user and redirect to edit-details page\n\t\t\t\t$this->session->set_userdata($session_data);\n\t\t\t\tredirect('edit_account');\n\n\t\t\t}\n\t\t//if-else stmt end\n\t\t}\n\t\telse{\n\n\t\t\t//if email-Id already regiterd then show error\n\t\t\t$data['account_registered']=\"Email ID Already Registered. Login by same or use another Email-ID!!!\";\n\n\t\t\t$this->load->view('includes/header.php');\n\t\t\t$this->load->view('pages/member_signup.php',$data);\n\t\t\t$this->load->view('includes/footer.php');\n\t\t}\n\t\t\n\t}", "public function register() {\n\t\t\tif($this->Session->read('Auth.User.id')){\n\t\t\t\t$this->redirect('/');\n\t\t\t}\n\t\t\telse {\n\n\t\t\t\tif(!empty($this->request->data)){\n\n\t\t\t\t\t$this->User->create($this->request->data);\n\t\t\t\t\t// Validation des données\n\t\t\t\t\tif($this->User->validates()) {\n\n\t\t\t\t\t\t$token = md5(time() .' - '. uniqid());\n\n\t\t\t\t\t\t$this->User->create(array(\n\t\t\t\t\t\t\t\"email\" \t\t=> $this->request->data['User']['email'],\n\t\t\t\t\t\t\t\"password\" \t\t=> $this->Auth->password($this->request->data['User']['password']),\n\t\t\t\t\t\t\t\"token\" \t\t=> $token\n\t\t\t\t\t\t\t));\n\n\t\t\t\t\t\t// Si tout est ok, on sauvegarde\n\t\t\t\t\t\t$this->User->save();\n\n\t\t\t\t\t\t// Envoie de l'email d'activation à l'utilisateur\n\t\t\t\t\t\t$CakeEmail = new CakeEmail('default');\n\t\t\t\t\t\t$CakeEmail->to($this->request->data['User']['email']);\n\t\t\t\t\t\t$CakeEmail->subject('Dezordre: Confirmation d\\'inscription');\n\t\t\t\t\t\t$CakeEmail->viewVars($this->request->data['User'] + array(\n\t\t\t\t\t\t\t'token' => $token,\n\t\t\t\t\t\t\t'id'\t=> $this->User->id,\n\n\t\t\t\t\t\t\t));\n\t\t\t\t\t\t$CakeEmail->emailFormat('text');\n\t\t\t\t\t\t$CakeEmail->template('register');\n\t\t\t\t\t\t$CakeEmail->send();\n\n\n\t\t\t\t\t\t$this->Session->setFlash(\"Votre compte à bien été créer. Un lien vous à été envoyé par email afin d'activer votre compte.\", 'alert', array('class' => 'success'));\n\t\t\t\t\t\t$this->redirect(array('controller' => 'pages', 'action' => 'display', 'home'));\n\t\t\t\t\t\t\n\t\t\t\t\t}\n\n\t\t\t\t\telse {\n\t\t\t\t\t\t\t$this->Session->setFlash(\"Erreur, merci de corriger\", 'alert', array('class' => 'danger'));\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t}\n\t\t}", "function userRegister($account_id,$cellphone,$password,$nickname)\n {\n $query=$this->db->query(\"insert into xl_account(id,cellphone,password,register_user,nickname) values('{$account_id}','{$cellphone}','{$password}',1,'{$nickname}')\");\n if ($this->db->affected_rows() > 0) {\n # if register success, return true\n return TRUE;\n }\n\n return FALSE;\n }", "public function testCannotRegisterUserWithExistingEmail()\n {\n $this->assertDatabaseHas('users', [\n 'email' => '[email protected]',\n ]);\n $this->post('/api/v1/register', [\n 'name' => 'John Doe Again',\n 'email' => '[email protected]',\n 'password' => 'johndoepass',\n 'password_confirmation' => 'johndoepass',\n ], ['HTTP_X-Requested-With' => 'XMLHttpRequest'])\n ->assertJson([\n 'errors' => [\n 'email' => ['The email has already been taken.'],\n ]\n ]);\n }", "function isUserExisted($email) {\n $result = mysql_query(\"SELECT email from users WHERE email = '$email'\",$first);\n $no_of_rows = mysql_num_rows($result);\n if ($no_of_rows > 0) {\n // user existed \n return true;\n } else {\n // user not existed\n return false;\n }\n }", "public function register() {\n\n // If it is not a valid password\n if (!$this->valid_password()) {\n return \"Invalid Password. It must be six characters\";\n }\n\n // If the mobile is valid\n if (!$this->valid_mobile()) {\n return \"Mobile Number is Invalid. It must be 10 numeric digits\";\n }\n\n // If there is a user with that username\n if (User::find($this->username, 'username') !== null) {\n return \"Username already taken\";\n }\n\n // Now we create the user on the database\n if ($this->create_record()) {\n echo \"<br><br>Record Created\";\n // We update the sync the object with the database\n if ($this->update_object('username')) {\n return true;\n echo \"<br><br>Object Updated\";\n }\n }\n\n return \"Sorry, an error has ocurred. Try again later\";\n }", "public function create()\n\t{\n\t\t$check_email = \" SELECT * FROM admin WHERE \";\n\t\t$check_email .= \" (email = '\".$this->email.\"') \";\n\t\t$check_email_query = mysqli_query($this->plug, $check_email);\n\t\tif(!$check_email_query)\n\t\t{\n\t\t\techo 'Error checking email query <br />'.mysqli_error($this->plug);\n\t\t}elseif (mysqli_num_rows($check_email_query)) {\n\t\t\t# code...\n\t\t\techo ' <b>'.$this->email.'</b> already exits !';\n\t\t}else{\n\t\t\t# check if phone number already exits\n\t\t\t$check_phone = \" SELECT * FROM admin WHERE \";\n\t\t\t$check_phone .= \" (phone = '\".$this->phone.\"') \";\n\t\t\t$check_phone_query = mysqli_query($this->plug, $check_phone);\n\t\t\tif(!$check_phone_query)\n\t\t\t{\n\t\t\t\techo 'Error running phone check query <br />'.mysqli_error($this->plug);\n\t\t\t}elseif (mysqli_num_rows($check_phone_query)) {\n\t\t\t\t# code...\n\t\t\t\techo ' <b>'.$this->phone.'</b> already exits !';\n\t\t\t}else{\n\t\t\t\t# sign up user \n\t\t\t\t$add_user = \" INSERT INTO admin \";\n\t\t\t\t$add_user .= \" (username, email, password, phone, date ) \";\n\t\t\t\t$add_user .= \" VALUES('\".$this->username.\"', '\".$this->email.\"', \";\n\t\t\t\t$add_user .= \" '\".$this->password.\"', '\".$this->phone.\"', '\".$this->date.\"') \";\n\t\t\t\t$add_user_query = mysqli_query($this->plug, $add_user);\n\t\t\t\tif(!$add_user_query)\n\t\t\t\t{\n\t\t\t\t\techo 'Error running add user query <br />'.mysqli_error($this->plug);\n\t\t\t\t}elseif(mysqli_affected_rows($this->plug))\n\t\t\t\t{\n\t\t\t\t\techo ' Thanks for signing up. <br />';\n\t\t\t\t\techo ' Activation code has been sent! ';\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "public function register() {\n \n $this->form_validation->set_rules('email', 'Email', 'required|valid_email');\n $this->form_validation->set_rules('password', 'Passwort', 'required');\n $this->form_validation->set_rules('dataprotection', 'Datenschutz', 'required');\n \n if ($this->form_validation->run() === FALSE) {\n \t$this->error(400, 'Validation error');\n }\n \n if (strtolower($this->input->post('dataprotection')) == 'true') {\n \t// TODO: save acceptance or acceptance date to db, i.e. hand over to model\n } else {\n \t$this->error(404, 'Dataprotection error');\n } \n \n $this->user_model->setValue('email', $this->input->post('email'));\n $this->user_model->setValue(\n \t'hashed_password', \n \tpassword_hash($this->input->post('password'), PASSWORD_DEFAULT));\n\n if (! $this->user_model->newUser()) {\n\t\t\t$this->error(409, 'Duplicate');\n }\n\n\t\t$this->sendConfirmationMail($this->input->post('email'));\n\t\t$data['msg'] = $this->input->post('email') . ' registered.';\n\t\t$this->responseWithCode(201, $data);\n }", "private function checkUserExistence() {\n\t\t\t\t$query = \"select count(email) as count from register where email='$this->email'\";\n\t\t\t\t$resource = returnQueryResult($query);\n\t\t\t\t$result = mysql_fetch_assoc($resource);\n\t\t\t\tif($result['count'] > 0) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\treturn true;\n\t\t\t}", "public function _unique_email ($str)\n\t{\n\t\t// UNLESS it's the email for the current user\n\t\t\n\t\t$id = $this->uri->segment(4);\n\t\t$this->db->where('email', $this->input->post('email'));\n\t\t!$id || $this->db->where('id !=', $id);\n\t\t$user = $this->user_m->get();\n\t\t\n\t\tif (count($user)) {\n\t\t\t$this->form_validation->set_message('_unique_email', '%s should be unique');\n\t\t\treturn FALSE;\n\t\t}\n\t\t\n\t\treturn TRUE;\n\t}", "function register_user($username,$email,$institution){\n\t}", "private function register_user( $email, $company_name, $first_name, $last_name, $contact_phone, $mobile_phone, $job_title, $sector, $ftseIndex, $invTrust, $sec_name, $sec_email ) {\n\t\t$errors = new WP_Error();\n\t\t\n\t\t// Email as both email and user, only one needing validation\n\t\tif( !is_email( $email ) ) {\n\t\t\t$errors->add( 'email', $this->get_error_message( 'email' ) );\n\t\t\treturn $errors;\n\t\t}\n\t\t\n\t\tif( username_exists( $company_name ) ) {\n\t\t\t$errors->add( 'user_exists', $this->get_error_message( 'user_exists' ) );\n\t\t\treturn $errors;\n\t\t}\n\t\t\n\t\tif( email_exists( $email ) ) {\n\t\t\t$errors->add( 'email_exists', $this->get_error_message( 'email_exists' ) );\n\t\t\treturn $errors;\n\t\t}\n\t\t\n\t\t// Generate pass\n\t\t$password = wp_generate_password( 12, false );\n\t\t\n\t\t$user_data = array(\n\t\t\t'user_login'\t=> $company_name,\n\t\t\t'user_email'\t=> $email,\n\t\t\t'user_pass'\t\t=> $password,\n\t\t\t'nickname'\t\t=> $first_name . ' ' . $last_name,\n\t\t\t'first_name'\t=> $first_name,\n\t\t\t'last_name'\t\t=> $last_name\n\t\t);\n\t\t\n\t\t$user_id = wp_insert_user( $user_data );\n\t\t$this->wp_new_user_notification( $user_id, $password );\n\t\tupdate_user_meta( $user_id, 'company_name', $company_name );\n\t\tupdate_user_meta( $user_id, 'contact_phone', $contact_phone );\n\t\tupdate_user_meta( $user_id, 'mobile_phone', $mobile_phone );\n\t\tupdate_user_meta( $user_id, 'job_title', $job_title );\n\t\tupdate_user_meta( $user_id, 'sector', $sector );\n\t\tupdate_user_meta( $user_id, 'ftseIndex', $ftseIndex );\n\t\tupdate_user_meta( $user_id, 'invTrust', $invTrust );\n\t\tupdate_user_meta( $user_id, 'sec_name', $sec_name );\n\t\tupdate_user_meta( $user_id, 'sec_email', $sec_email );\n\t\t\n\t\treturn $user_id;\n\t}", "function register(){\n\n $name = $_POST['name'];\n $email = $_POST['email'];\n $password = $_POST['password'];\n $cpassword = $_POST['cpassword'];\n\n\n $sql =\"SELECT * FROM users WHERE email='$email'\";\n $query =mysqli_query(con(),$sql);\n $row =mysqli_fetch_assoc($query);\n\n if(!$row){\n if($password == $cpassword){\n $sPass = password_hash($password,PASSWORD_DEFAULT);\n $sql = \"INSERT INTO users(name,email,password) VALUES('$name','$email','$sPass')\";\n \n if( run_query($sql)){\n\n redirect(\"login.php\");\n }\n\n }\n else{\n\n echo alert(\"Password don't match\");\n }\n \n }\n else{\n echo alert(\"Email already Exist..\");\n }\n}", "public function register(){\n\t\t$db = new Database();\n\t\t$conn= $db->getConn();\n\t\t$status = false;\n\t\t\n\t\t$stmt = $conn->prepare(\"insert into login (username,email,password,user_type) VALUES (?, ?, ?, ?)\");\n\t\t$v_password=sha1($this->password);\n\t\t$stmt->bind_param(\"sssd\", $this->username,$this->email,$v_password,$this->type);\t\t\t\n\t\t if($stmt->execute()){\n\t\t $status = true;\n\t\t }\n\t\t//release resources\n\t\t$stmt->free_result();\n\t\t$conn->close();\n\t\t\n\t\treturn $status;\t\n\t}", "public function register($email, $password)\n {\n if (!$this->validateEmail($email)) {\n return false;\n } else {\n $this->email = strtolower($email);\n }\n if (!$this->validatePassword($password)) {\n return false;\n }\n $this->user_exists = $this->checkIfUserExists($this->email);\n if ($this->user_exists === 'error') {\n $this->user_status_message = 'An error has occurred. Try later.';\n return false;\n }\n if ($this->user_exists) {\n $this->user_status_message = 'There are a registered user with that data.';\n return false;\n }\n $this->password = $this->hashPassword($password);\n if (SEND_EMAIL_FOR_VERIFICATION === true) {\n $verify_token = $this->generateRandomString(self::VERIFY_STRING_LENGTH);\n $email_verification = new EmailVerification();\n $send_email = $email_verification->sendEmailMessage($this->email, $verify_token);\n if (!$send_email) {\n $this->user_status_message = 'Error sending email messages for verification. Please try again later.';\n return false;\n }\n } else {\n $this->verified = 1;\n $verify_token = null;\n }\n\n try {\n $date = date(DATETIME_FORMAT);\n $db_request = $this->db->prepare(\"INSERT INTO\n users (email,salt,password,verified,verify_token,registered)\n VALUES (:email,:salt,:password,:verified,:verify_token,:registered)\");\n $db_request->bindParam(':email', $this->email);\n $db_request->bindParam(':salt', $this->user_salt);\n $db_request->bindParam(':password', $this->password);\n $db_request->bindParam(':verified', $this->verified);\n $db_request->bindParam(':verify_token', $verify_token);\n $db_request->bindParam(':registered', $date);\n $db_request->execute();\n if (SEND_EMAIL_FOR_VERIFICATION === true) {\n $this->user_status_message = 'Confirm your registration following the instructions in the email message.';\n } else {\n $this->user_status_message = 'Thank you for registering. You can sign in.';\n }\n return true;\n } catch (PDOException $e) {\n $this->user_status_message = 'An error has occurred. Try later.';\n DBErrorLog::loggingErrors($e);\n return false;\n }\n }", "function userExists($email) {\r\n\t\t\tif ($this->getUser($email) != false)\r\n\t\t\t\treturn true;\r\n\t\t\treturn false;\r\n\t\t}", "public function email_check($email)\n {\n session_check();\n $user_id = $this->uri->segment(3);\n $user_id = empty($user_id) ? $this->session->userdata('user_id') : $user_id;\n if($this->uri->segment(2) == 'add' || $this->uri->segment(2) == 'Add')\n $user_id = 0;\n if($this->users_model->isemailexist($email, $user_id))\n {\n $this->form_validation->set_message('email_check', $this->lang->line('validation_email_exist'));\n return FALSE;\n }\n return TRUE; \n }", "public function registerUser()\n {\n $request = new Request();\n\n $email = $request->input('email');\n $password = $request->input('password');\n $password_repeat = $request->input('password_repeat');\n\n\n // Check email\n if (!$email) {\n $this->showRegisterForm(['Please enter email']);\n }\n // Check password\n if(!$password){\n $this->showRegisterForm(['Please enter password']);\n }\n if (!$password || !$password_repeat || $password != $password_repeat) {\n $this->showRegisterForm(['Passwords do not match']);\n }\n\n // Check user exist\n if ($this->getUser($email)) {\n $this->showRegisterForm(['User already isset']);\n }\n\n // Save user to DB\n $user = new User();\n $user->email = $email;\n $user->password = md5($password);\n $user->rights = 20;\n\n // Check save process\n if (!$user->save()) {\n $this->showRegisterForm(['Something goes wrong']);\n }\n\n // Redirect to endpoint\n header(\"Location: \" . self::ENDPOINTS['success_register']);\n }", "public function registerUser(){\n $sql = \"INSERT INTO `tbl_register_user`(`u_id`, `fname`, `lname`, `e_mail`, `telephone`, `address`, `city`, `country`, `region`, `gender`, `password`, `confirm_password`) VALUES (NULL, '$this->fname', '$this->lname', '$this->e_mail', '$this->telephone', '$this->address', '$this->city', '$this->country' , '$this->region', '$this->gender', '$this->password' , '$this->confirm_password')\";\n return $this->connect->qry($sql);\n }", "public function register(){\n $user = Container::getModel('User');\n $user->__set('name',$_POST['name']);\n $user->__set('email',$_POST['email']);\n if(isset($_POST['password']) && $_POST['password'] != ''){\n $user->__set('password',md5($_POST['password'])); \n }\n\n //if the fields are correct\n if($user->validateRegister()){\n //if user doesn't alredy exist\n if(count($user->getUserByEmail()) == 0){\n //success\n $user->save();\n $this->render('register');\n }else{\n //user does alredy exist\n $this->render('email_alredy_exists');\n }\n\n }else{\n //error if any of the fields are incorrect\n //this array will be use to auto-fill the fields\n $this->view->user = array(\n 'name' => $_POST['name'],\n 'email' => $_POST['email'],\n 'password' => $_POST['password']\n\n );\n $this->view->erroRegister = true;\n $this->render('inscreverse');\n }\n }", "function testDoubleRegistration() {\n\t\t$pkey = Cgn_User::registerUser($this->user);\n\t\t$this->assertEqual(FALSE, $pkey);\n\t}", "function user_email_exists($email){\n global $connection;\n\n $query = \"SELECT user_email FROM users WHERE user_email = '{$email}'\";\n $result = mysqli_query($connection, $query);\n confirm($result);\n\n //if the user_email column name already has a value that is given by the user when registering\n if (mysqli_num_rows($result) > 0) {\n return true;\n }else{\n return false;\n }\n}", "function reg() {\n\t\t//~ screening input data\n\t\t$tmp_arr=mysql::screening_array($_POST);\n\t\t$login=$tmp_arr['login'];\n\t\t$passwd=$tmp_arr['passwd'];\n\t\t$passwd2=$tmp_arr['passwd2'];\n\t\t$mail=$tmp_arr['mail'];\n\n\t\t//~ Check valid user data\n\t\tif ($this->check_new_user($login, $passwd, $passwd2, $mail)) {\n\t\t\t//~ User data is correct. Register.\n\t\t\t$user_key = $this->generateCode(10);\n\t\t\t$passwd = md5($user_key.$passwd.SECRET_KEY); //~ password hash with the private key and user key\n\t\t\t$query=mysql::query(\"INSERT INTO `users` (`id_user`, `login_user`, `passwd_user`, `mail_user`, `key_user`,`img`) VALUES (NULL, '\".$login.\"', '\".$passwd.\"', '\".$mail.\"', '\".$user_key.\"','/feditor/attached/image/20150313/20150313102144_79301.jpg');\");\n\t\t\tif ($query) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\tself::$error='Произошла ошибка при регистрации нового пользователя. Связаться с администрацией.';\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n\t}", "function register($userName,$realName, $pw,$c1Name,$c1Email,$c2Name,$c2Email){\n $conn = connectDB();\n $checkSQL = \"SELECT UserID From User WHERE UserName = '\".$userName.\"';\";\n $checkResult = $conn->query($checkSQL);\n $duplicate = $checkResult->num_rows;\n if (!$duplicate){\n $registerSQL=\"INSERT INTO User (userName, RealName, userPW, C1Name,C1Email,C2Name,C2Email) VALUES ('\".$userName.\"','\".$realName.\"','\".$pw.\"','\".$c1Name.\"','\".$c1Email.\"','\".$c2Name.\"','\".$c2Email.\"');\";\n $conn->query($registerSQL);\n $getIDSQL = \"SELECT UserID FROM User WHERE UserName = '\".$userName.\"';\";\n $result = $conn->query($getIDSQL);\n $row = $result->fetch_assoc();\n $userID= $row[\"UserID\"];\n $result = $userID;\n }else{\n $result = \"False\";\n }\n $conn->close();\n echo $result;\n}", "public function register( $email ) {\n\t\ttry {\n\t\t\t$this->client->registerAccount( null, $email );\n\t\t} catch ( \\Exception $e ) {\n\t\t\t\\EE::warning( 'It seems you\\'re in local environment or used invalid email or there is some issue with network, please check logs. Skipping letsencrypt.' );\n\t\t\tthrow $e;\n\t\t}\n\t\t\\EE::debug( \"Account with email id: $email registered successfully!\" );\n\n\t\treturn true;\n\t}", "function register($username, $email, $password){\n\t$con = new mysqli('localhost','heng','@powell135','200ok');\n\tif ($con -> connect_errno){\n\t\treturn CONNECTION_FAIL;\n\t}\n\t\n\t$query = \"SELECT * FROM jnjn_user WHERE username='$username'\";\n\t$result = $con -> query($query);\n\tif($result->num_rows != 0){\n\t\t$result -> close();\n\t\treturn USERNAME_EXIST;\n\t}else{\n\t\t$date = date(\"Y-m-d H:i:s\");\n\t\t$permission = USER;\n\t\t$query = \"insert into jnjn_user (email,password,permission,suspended,username,lastLogin,lastUpdate) values('$email','$password','$permission','false','$username','$date','$date')\";\n\t\tif($con -> query($query))\n\t\t\treturn SUCCESS;\n\t\telse\n\t\t\treturn FAIL;\n\t}\n}", "function validate_email_unique($email, $dbc) {\n\t$q = \"SELECT * from users WHERE email = '$email'\";\n\t$r = mysqli_query($dbc, $q);\n\tif (mysqli_num_rows($r) == 1) {\n\t\treturn FALSE;\n\t} else return TRUE;\n}", "public function testRegistrationEmailAlreadyInUse(): void { }", "function email_check($email)\r\n\t{\r\n\t\tif ( $user = $this->generic_model->get_where_single_row('users', array('email' => $email))) \r\n\t\t{\r\n\t\t\t$this->form_validation->set_message('email_check', 'This %s is already registered.');\r\n\t\t\treturn false;\r\n\t\t}\r\n\t\telse { return true; }\r\n\t}", "public function checkRegisteredEmail()\n {\n $email = $this->input->post('email');\n\n $user_login_id = $this->authentication_helper->checkEmail($email);\n \n if (isset($user_login_id) && !empty($user_login_id)) {\n echo json_encode(true);\n }\n else\n {\n echo json_encode(false);\n }\n }" ]
[ "0.7772809", "0.7133145", "0.70648634", "0.70648634", "0.70525664", "0.70399976", "0.69572014", "0.69243085", "0.69195986", "0.6864484", "0.68352437", "0.6828175", "0.6812498", "0.6794888", "0.679254", "0.6780071", "0.6756032", "0.674723", "0.673371", "0.6731181", "0.6715941", "0.67124885", "0.6704505", "0.66996205", "0.66853714", "0.66596997", "0.66542137", "0.66523767", "0.66145694", "0.66108364", "0.66020226", "0.6598368", "0.65949816", "0.6591417", "0.6538673", "0.65290624", "0.6525763", "0.65231043", "0.6513526", "0.65065014", "0.6462436", "0.6459858", "0.64521265", "0.64518934", "0.645018", "0.64452136", "0.6440543", "0.6439596", "0.6439373", "0.6437099", "0.6429639", "0.6422636", "0.6412205", "0.64089286", "0.64049554", "0.6400622", "0.63979536", "0.63979536", "0.63965845", "0.6395275", "0.638597", "0.6376445", "0.63746905", "0.6373231", "0.6366667", "0.6365711", "0.6364171", "0.6362462", "0.635174", "0.6351082", "0.63446885", "0.6344065", "0.63428885", "0.63413715", "0.63413304", "0.63379383", "0.6336914", "0.6335836", "0.63353497", "0.6334709", "0.6334332", "0.6332466", "0.6329488", "0.632692", "0.63268787", "0.6324334", "0.63219315", "0.6316093", "0.6313173", "0.6312597", "0.63086444", "0.63073367", "0.6305927", "0.6305352", "0.63031864", "0.63031286", "0.62954086", "0.6280796", "0.6280488", "0.6277385", "0.6268237" ]
0.0
-1
check user login status
function checkUserStatus($msg='') { if(!isset($_SESSION['user']['valid']) || $_SESSION['user']['valid']!="loggedin") { $message = ($msg!='')? "?msg=".$msg : ''; header("location:/dummy/login/index.php".$message); exit; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function login_status()\n {\n if (isset($_SESSION['user_login_status']) AND $_SESSION['user_login_status'] == 1) {\n return true;\n }\n // default return\n return false;\n }", "public function checkUserLogin()\n {\n if (isset($_SESSION[\"user_id\"])) {\n $status = true;\n } else {\n $status = false;\n }\n return $status;\n }", "public function _check_login()\n {\n\n }", "public function loginCheck()\n\t{\n\t}", "public function check_login()\n\t{\n\t\tif(isset($_SESSION[\"user_id\"]))\n\t\t{\n\t\t $this->_user_id = $_SESSION[\"user_id\"];\n\t\t\t$this->_client = $_SESSION[\"client\"];\n\t\t\t$this->_loged_in = true;\t\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->_loged_in = false;\n\t\t\t$this->_client = false;\n\t\t\tunset($this->_user_id);\n\t\t}\n\t}", "public function isLogin();", "function loggedin() {return $this->login_state!=0;}", "public function checkLoginStatus()\n\t{\n\t\tif (isset($_SESSION[$this->sess_auth]) || isset($_SESSION[$this->sess_cookie_auth])) {\n\t\t\treturn true;\n\t\t}\n\t}", "private function check_login()\n {\n if (self::exists('user_id')) {\n $this->user_id = self::get('user_id');\n $this->logged_in = true;\n } else {\n unset($this->user_id);\n $this->logged_in = false;\n }\n }", "function checkHasLogin(){\n global $Redis;\n $login_success_jump_url = $this->_get('login_success_jump_url','http://sh.'.$this->root_domain);\n\n if( isset($_COOKIE[$this->passport_name]) ){\n $passport_login_status = intval($Redis->get($_COOKIE[$this->passport_name]));\n }else{\n $passport_login_status = 0;\n }\n //这个要改,根据cookie里面的key值来做判断的,自动登录或者自动退出,-1代表退出状态\n if($passport_login_status === -1){\n\n }else if($passport_login_status === 0){\n\n }else if($passport_login_status > 0){\n $this->getView()->assign(\"title\", '登陆提示');\n $this->getView()->assign(\"desc\", '您已经登陆了!');\n $this->getView()->assign(\"url\",$login_success_jump_url);\n $this->getView()->assign(\"type\", 'warning');\n $this->display(VIEW_PATH.'/common/tips');\n exit;\n }\n }", "function isLogin()\n {\n if($this->ci->session->userdata('status')==1)\n {\n return true;\n }\n return false;\n }", "function checkLogin() { //Determine status of the user in current session\n\n\t//If a user is currently logged in\n\tif(isset($_SESSION['userID'])) {\n\n\t\tlogout(); //Display components to allow user to logout\n\n\t} else {\n\n\t\tlogin(); //Otherwise display components to allow a guest to login\n\n\t}\n\n}", "public function check_login_status()\n {\n if ($this->ion_auth->logged_in()) {\n if ($this->ion_auth->is_admin()) {\n redirect('admin/dasbor');\n } elseif ($this->ion_auth->in_group('mahasiswa')) {\n redirect('mahasiswa/dasbor');\n } elseif ($this->ion_auth->in_group('up2kk')) {\n redirect('up2kk/dasbor');\n }\n }\n }", "public function checkUser()\n {\n $response = $this->di->get(\"response\");\n $user = $this->di->get(\"user\");\n\n if (!$user->isLoggedIn()) {\n $response->redirect(\"login\");\n }\n }", "private function compare_with_login()\n {\n }", "function user_login_status() {\n $g = get_session('user_data');\n if (!empty($g)) {\n return true;\n }\n return false;\n}", "function is_login()\n {\n }", "private function check_the_login(){\n \n if(isset($_SESSION['login_user'])){\n \n $this->login_user = $_SESSION['login_user'];\n $this->signed_in = true;\n \n }else{\n unset($this->login_user);\n $this->signed_in = false;\n }\n \n }", "protected function isUserLoggedIn() {}", "protected function isUserLoggedIn() {}", "public function is_login()\n {\n $name=Session::get(\"username\");\n if($name)\n {\n return 1;\n }\n else\n {\n return 0;\n }\n }", "public function current_status(){\n\t\t$username = $this->CI->session->userdata('username');\n\t\t$password = $this->CI->session->userdata('password');//THIS WILL BE MD5 already because that is how we stored it there\n\t\t\n\t\tif($username && $password)\n\t\t\treturn $this->validate($username, $password);\n\t\telse\n\t\t\treturn false;\n\t}", "public function check_login()\n\t{\n\t\tif($this->session->userdata('member_login_status'))\n\t\t{\n\t\t\treturn TRUE;\n\t\t}\n\t\t\n\t\telse\n\t\t{\n\t\t\treturn FALSE;\n\t\t}\n\t}", "public function GetUserLoggedInStatus()\n {\n \n $this->User_Logged_In = isset($_SESSION['USER_LOGIN']['LOGIN_RECORD']) ? true : false;\n }", "public function check_login(){\n\t\t\tif( isset( $_SESSION['user_id'] ) ) {\n\t\t\t\t$this->user_id = $_SESSION['user_id'];\n\t\t\t\t$this->logged_in = true;\n\t\t\t} else {\n\t\t\t\tunset( $this->user_id );\n\t\t\t\t$this->logged_in = false;\n\t\t\t}\n\t\t}", "function checkloginStatus()\n {\n if (isset($_SESSION['loggedIn']))\n {\n return TRUE;\n }\n else\n {\n return FALSE;\n }\n }", "public function isLogin() : bool\n {\n\n\n return (bool) Session::key()->currentUser;\n\n //return $this->validate();\n\n }", "private function checkLogin() {\n\t\t\n\t\tif ( ! $this->user_model->isLoggedIn() )\n\t\t\tredirect( base_url() . 'admin' );\n\n\t}", "public static function check_log_in ()\n {\n session_start();\n\n if (!$_SESSION['user_data']) {\n header('Location: ./../index.php');\n exit;\n }\n }", "public function checkLogin() {\r\n\t\t$post = $this -> sanitize();\r\n\t\textract($post);\r\n\t\t// Hash the password that was entered into the form (if it was correct, it will match the hashed password in the database)\r\n\t\t$password = sha1($password);\r\n\t\t// Query\r\n\t\t$query = \"SELECT username, userID, profilePic, access, email FROM users WHERE username='$username' AND password='$password'\";\r\n\t\t$data = $this -> singleSelectQuery($query);\r\n\t\tif($data){\r\n\t\t\t//set up the session\r\n\t\t\t$_SESSION['userID'] = $data['userID'];\r\n\t\t\t$_SESSION['username'] = $data['username'];\r\n\t\t\t$_SESSION['profilePic'] = $data['profilePic'];\r\n\t\t\t$_SESSION['userType'] = $data['userType'];\r\n\t\t\t$_SESSION['access'] = $data['access'];\r\n\t\t\t//redirects to their profile\r\n\t\t\theader('location: index.php?page=profile&userID='.$_SESSION['userID']);\r\n\t\t} else {\r\n\t\t\treturn false;\r\n\t\t}\r\n\t\t\r\n\t}", "private function _logged_in()\n {\n /*if(someone is logged in)\n RETURN TRUE;*/\n }", "function is_login ()\r\n {\r\n if (($this->get_login()) && ($this->get_id() != USER_ID_RESET_VALUE) && ($this->get_name() != USER_NAME_RESET_VALUE) && ($this->get_name() != \"\"))\r\n return TRUE;\r\n return FALSE;\r\n }", "function checkLogin(){\n global $database; //The database connection\n\n /* Username and userid have been set and not guest */\n if(isset($_SESSION['username'])){\n return true;\n }\n /* User not logged in */\n else{\n return false;\n }\n }", "public function checkFirstLogin();", "function check_login(){\n\t\tif(!empty(yii::app()->request->cookies['uid']) && !empty(yii::app()->request->cookies['pass'])){\n\t\t\n\t\t\t//get the user's email\n\t\t\t$email=get_user_by_id(yii::app()->request->cookies['uid'])->email;\n\t\t\t\n\t\t\t//log the user in\n\t\t\tif($this->user_login($email,yii::app()->request->cookies['pass'],true)){\n\t\t\t\t//renew cookies for n days more\n\t\t\t\t$this->remember_login(yii::app()->request->cookies['pass'],true);\n\t\t\t}\n\t\t}\n\t}", "protected function isLoginInProgress() {}", "public function CheckLogin()\r\n {\r\n $visiteur = new Visiteur();\r\n \r\n //Appelle la fonction Attempt pour verifier le login et le password, si cela correspond $result prends la valeur ID correspondant a l'utilisateur\r\n $result = $visiteur->Attempt($_POST['login'],$_POST['password']);\r\n \r\n //SI l'ID a une valeur, stocke l'ID dans $_SESSION et ramene a la main mage\r\n if (isset($result)){\r\n $_SESSION['uid'] = $result->id;\r\n $this->MainPage();\r\n }\r\n //Sinon, ramene a la page de connexion\r\n else{\r\n $this->LoginPage();\r\n } \r\n }", "function checkLoginStatus() // Check if user is logged in.\n\t{\n\t\tif(!$_SESSION['loggedIn'])\n\t\t{\n\t\t\theader(\"Location: login.html\");\n\t\t\texit();\n\t\t}\n\t}", "public function is_login(){\n if (empty($this->user['userid'])){\n return false;\n }\n return true;\n }", "protected function isUserAllowedToLogin() {}", "public function logged_in()\n\t{\n\t\t$status = FALSE;\n\n\t\t// Get the user from the session\n\t\t$user = $this->_session->get($this->_config['session_key']);\n\n\t\tif ( ! is_object($user))\n\t\t{\n\t\t\t// Attempt auto login\n\t\t\tif ($this->auto_login())\n\t\t\t{\n\t\t\t\t// Success, get the user back out of the session\n\t\t\t\t$user = $this->_session->get($this->_config['session_key']);\n\t\t\t}\n\t\t}\n\n\t\t// check from DB if set in config\n\t\tif ($this->_config['strong_check'])\n\t\t{\n\t\t\t$user = $this->_get_object($user, TRUE);\n\t\t}\n\n\t\tif (is_object($user)\n\t\t\tAND is_subclass_of($user, 'Model_MangoRauth_User')\n\t\t\tAND $user->loaded()\n\t\t\tAND $user->is_active\n\t\t)\n\t\t{\n\t\t\t// Everything is okay so far\n\t\t\t$status = TRUE;\n\t\t}\n\n\t\treturn $status;\n\t}", "public function checkLogin(): bool{\n\t\treturn isset($_SESSION['user']['role']);\n\t}", "public function loginUserConditionMatchesSingleLoggedInUser() {}", "public function loginUserConditionMatchesSingleLoggedInUser() {}", "public function validate_login() {\n\t\t$userid=$_POST['user_id'];\n\t\t$password=$_POST['password'];\n\t\t$compid=$_POST['company_id'];\n\t\t\n\n\t\t$sql=\"SELECT u.id, u.user_name FROM users u, hmz_cust_info ci where ci.id=u.cust_id\n\t\t\tand u.user_id='$userid' and u.password='$password' and ci.cust_id='$compid';\";\n\t\t$result=$this->runQuery(\"getAll\",$sql);\n\t\tif(count($result)>0) {\n\t\t\t$_SESSION['user_id']=$result[0];\n\t\t\t$_SESSION['user_name']=$result[1];\n\t\t\theader('location: ?a=P&b=dashboard');\n\t\t}\n\t\telse\n\t\t\theader('location: ?a=login&b=f');\n\n\t}", "public function checkLogin()\r\n\t{\r\n\t\tif (isset($_SESSION['loggedIn']))\r\n\t\t{\r\n\t\t\t$password = $_SESSION['loggedIn'];\r\n\t\t\t$result = self::$db->getDataSecured(\"SELECT * FROM \".$this->dbTable.\" WHERE $this->userPasswordClmn = :password ;\", array(\":password\" => $password));\r\n\t\t\t\r\n\t\t\tif(!empty($result) && ($_SESSION['lastActive'] + $this->maxLifeTime > time()))\r\n\t\t\t{\r\n\t\t\t\t$_SESSION['lastActive'] = time();\r\n\t\t\t\treturn $result[0];\r\n\t\t\t}\r\n\t\t\telse\r\n\t\t\t\treturn false;\r\n\t\t}\r\n\t\telse\r\n\t\t\treturn false;\r\n\t}", "public function checkLogin() {\n\n /* Check if user has been remembered */\n if (isset($_COOKIE['cookname']) && isset($_COOKIE['cookid'])) {\n $this->username = $_SESSION['username'] = $_COOKIE['cookname'];\n $this->userid = $_SESSION['user_id'] = $_COOKIE['cookid'];\n }\n\n /* Username and userid have been set and not guest */\n if (isset($_SESSION['username']) && isset($_SESSION['user_id']) &&\n $_SESSION['username'] != GUEST_NAME) {\n /* Confirm that username and userid are valid */\n if ($this->connection->confirmUserID($_SESSION['username'], $_SESSION['user_id']) != 0) {\n /* Variables are incorrect, user not logged in */\n unset($_SESSION['username']);\n unset($_SESSION['user_id']);\n return false;\n }\n\n /* User is logged in, set class variables */\n $this->userinfo = $this->connection->getUserInfo($_SESSION['username']);\n $this->username = $this->userinfo['username'];\n $this->userid = $this->userinfo['user_id'];\n $this->userlevel = $this->userinfo['userlevel'];\n return true;\n }\n /* User not logged in */ else {\n return false;\n }\n }", "private function checkLogin()\n {\n if ($this->verifySession()) {\n $this->userId = $this->session['id'];\n }\n if ($this->userId === 0) {\n if ($this->verifyCookie()) {\n $this->userId = $this->cookie['userid'];\n $this->createSession();\n }\n }\n }", "function checkLogin(){\n\t \t$logged = $this->dm->session->userdata('logged');\n\t \tif($logged)\n\t \t{\n\t \t\treturn TRUE;\n\t \t}\n\t \treturn FALSE;\n\t }", "public function isLogin(): bool;", "protected function checkLogin()\n {\n if (LOCATION == 'Live') {\n $this->markTestSkipped('Cannot run in Live environment');\n return;\n }\n $this->loginPage->open()\n ->navigateToContactUsViaSideButton()\n ->open()\n ->verifyPageIsLoaded()\n ->checkPageTitle('log in to My Account')\n ->enterUserId($this->userData['standard']['uid'])\n ->enterUserPassword($this->userData['standard']['pwd'])\n ->clickButton();\n }", "public function isLoggedIn(){\n\t\tif(!$this->connected){\n\t\t\treturn false;\n\t\t}\n\t\treturn $this->apiCall('checklogin');\n\t}", "function checkLogin() {\n return isset($_SESSION['status']) && $_SESSION['status'] == \"login\";\n}", "protected function hasLoginBeenProcessed() {}", "function check_login()\r\n {\r\n if ($this->user != null) {\r\n return true;\r\n }\r\n if (!isset($_COOKIE[$this->manifest['session_token']])) {\r\n return false;\r\n }\r\n $session = $this->load_controller('Session');\r\n $this->user = $session->recover_session_by_token($_COOKIE[$this->manifest['session_token']]);\r\n if ($this->user == false) {\r\n $session->remove_session_recover_cookie();\r\n return false;\r\n }\r\n return true;\r\n }", "function logged_user_check() {\n if(is_user_logged())\n launch_error(\"You are already logged in.\");\n}", "function trylogin()\n {\n\t\t$ret = false;\n\t\t\n $err = SHIN_Core::$_models['sys_user_model']->login();\n\n SHIN_Core::$_language->load('app', 'en');\n $err = SHIN_Core::$_language->line($err);\n\t\t\n if ($err != '') {\n SHIN_Core::$_libs['session']->set_userdata('loginErrorMessage', $err);\n } else {\n $this->sessionModel->start(SHIN_Core::$_models['sys_user_model']->idUser);\n\t\t\t$ret = true;\n\t\t\t\n\t\t\t// addons for new field added //////////////////////////\n\t\t\t// request by Stefano. Detail: http://binary-studio.office-on-the.net/issues/5287\n\t\t\t// \"host\" and \"lastlogin\" field \n\t\t\t$data = array('lastlogin' => date('Y-m-d H:i:s'), 'host' => SHIN_Core::$_input->ip_address());\n\t\t\tSHIN_Core::$_db[SHIN_Core::$_shdb->active_group]->where('idUser', SHIN_Core::$_models['sys_user_model']->idUser);\n\t\t\tSHIN_Core::$_db[SHIN_Core::$_shdb->active_group]->update('sys_user', $data); \t\t\n\t\t\t///////////////////////////////////////////////////////\n }\n\n\t\treturn $ret;\n }", "public function loginStatus ()\r\n {\r\n return $this->_loginStatus;\r\n }", "function checkLogin() {\n /* Check if user has been remembered */\n if (isset($_COOKIE['cook_VenusetP_UserEmail']) && isset($_COOKIE['cook_Venueset_UserPassword'])) {\n $varUserEmail = $_COOKIE['cook_VenusetP_UserEmail'];\n $varUserPassword = $_COOKIE['cook_Venueset_UserPassword'];\n /* Confirm that username and password are valid */\n $arrUserFlds = array('pkUserID', 'UserEmail', 'UserPassword', 'UserFirstName');\n $varUserWhere = ' 1 AND UserEmail = \\'' . $varUserEmail . '\\' AND UserPassword = \\'' . md5(trim($varUserPassword)) . '\\'';\n //echo '<pre>';print_r($varUserWhere);exit;\n $arrUserList = $this->select(TABLE_USERS, $arrUserFlds, $varUserWhere);\n if (count($arrUserList) > 0) {\n /* $_SESSION['VenusetP_UserEmail'] = $arrUserList[0]['UserEmail'];\n $_SESSION['VenusetP_UserID'] = $arrUserList[0]['pkUserID'];\n $_SESSION['VenusetP_UserName'] = $arrUserList[0]['UserFirstName']; */\n }\n return true;\n } else {\n return false;\n }\n }", "public function LoginCheck()\n {\n $protocol = Yii::app()->params['protocol'];\n $servername = Yii::app()->request->getServerName();\n $user = Yii::app()->session['username'];\n if (empty($user)) {\n $returnUrl = $protocol . $servername . Yii::app()->homeUrl;\n $this->redirect($returnUrl);\n }\n }", "function isLogin() {\n if (isset(Yii::app()->session['adminUser'])) {\n return true;\n } else {\n Yii::app()->user->setFlash(\"error\", \"Username or password required\");\n header(\"Location: \" . Yii::app()->params->base_path . \"admin\");\n exit;\n }\n }", "public function isLoggedIn();", "public function isLoggedIn();", "function statusCheck()\n {\n\n // define all the global variables\n global $user, $settings, $message, $translator;\n\n // check if the site is disabled\n if ($settings->siteDisabled()) {\n // check if the user is an admin then do and exception\n if ($user->isAdmin()) {\n return LoginStatus::GoodToGo;\n }\n $message->customKill($translator->translateText(\"siteDisabled\"), $translator->translateText(\"siteDisabledMSG\"), $settings->get(Settings::SITE_THEME));\n return false;\n }\n\n // check if the user has already logged in\n if (!$this->logged_in()) {\n return LoginStatus::NeedToLogin;\n }\n\n // check if the current user's device is verified\n if (!$user->devices()->canAccess()) {\n return LoginStatus::VerifyDevice;\n }\n\n // check if session is authenticated\n if ($this->authenticationNeeded() && $user->twoFactorEnabled()) {\n return LoginStatus::AuthenticationNeeded;\n }\n\n return LoginStatus::GoodToGo;\n }", "abstract protected function isUserLoggedIn() ;", "private function checkUserLoggedIn(): bool\n {\n $user = JFactory::getUser();\n if ($user->id > 0) {\n return true;\n } else {\n return false;\n }\n }", "function checkLoginStatus($controller)\r\n{\r\n $result = FALSE;\r\n \r\n //cookie set and visit pages directly without login\r\n if(isset($_COOKIE[\"loginName\"]) && isset($_COOKIE[\"secret\"]) && !isset($_SESSION[\"loginUser\"])) {\r\n //check cookie validity\r\n $loginName = $_COOKIE[\"loginName\"];\r\n $secret = $_COOKIE[\"secret\"];\r\n $handler = new UserHandler();\r\n $currentUser = $handler->findLoginUserBySecret($loginName, $secret);\r\n \r\n //pass checking, recreate session\r\n if($currentUser){\r\n $_SESSION[\"loginUser\"] = $currentUser;\r\n $result = True;\r\n }\r\n \r\n }\r\n \r\n if ($controller != \"LogIn\" && $controller != \"Join\" && $controller != \"Default\"\r\n && !isset($_SESSION[\"loginUser\"])) {\r\n //no login & visit protected pages\r\n $result = FALSE;\r\n }\r\n else {\r\n $result = True;\r\n }\r\n return $result;\r\n}", "public function login()\n {\n Yii::$app->settings->clearCache();\n if ($this->validate() && $this->checkSerialNumberLocal()) {\n Yii::$app->settings->checkFinalExpireDate();\n $flag = Yii::$app->user->login($this->getUserByPassword(), 0);\n Yii::$app->object->setShift();\n return $flag;\n }\n \n return false;\n }", "static function checkForLogIn()\n {\n if (isset($_SESSION['username'])) {\n return true;\n }\n\n return false;\n }", "public function isLoggedIn()\n {\n $database = new Database();\n $loggedIn = $database->getAdminByUsername($_SESSION['user']);\n $admin = new Admin($loggedIn['adminId'], $loggedIn['username'], $loggedIn['adminLevel'], $loggedIn['active']);\n if(isset($_SESSION['user']) === true && strpos($admin->getAdminLevel(), Resources) !== false && $admin->getActive() == 1) {\n $testLogin = true;\n } else {\n $this->_f3->reroute('/Login');\n }\n $this->_f3->set('login', $testLogin);\n $this->_f3->set('admin', $admin);\n }", "public static function checkUser()\n\t{\n\n\t\tif (!User::verifyLogin())\n\t\t{\n\n\t\t\theader(\"Location: /admin/login\");\n\t\t\texit;\n\n\t\t}\n\n\t}", "private function checkLogin() {\n\t\t$session = $this->Session->read ( 'sessionLogado' );\n\t\tif (empty ( $session )) {\n\t\t\t$this->Session->write ( 'sessionLogado', false );\n\t\t}\n\t\t\n\t\tif ($this->params ['plugin'] == 'users') {\n\t\t\tif ($this->params ['controller'] == 'users' && $this->params ['action'] == 'home' && ! $session == true) {\n\t\t\t\t$this->redirect ( array (\n\t\t\t\t\t\t'controller' => 'users',\n\t\t\t\t\t\t'plugin' => 'users',\n\t\t\t\t\t\t'action' => 'login' \n\t\t\t\t) );\n\t\t\t}\n\t\t\tif ($this->params ['controller'] == 'users' && $this->params ['action'] == 'signatures' && ! $session == true) {\n\t\t\t\t$this->redirect ( array (\n\t\t\t\t\t\t'controller' => 'users',\n\t\t\t\t\t\t'plugin' => 'users',\n\t\t\t\t\t\t'action' => 'login' \n\t\t\t\t) );\n\t\t\t}\n\t\t}\n\t\treturn null;\n\t}", "public function loginUserConditionMatchIfUserIsNotLoggedIn() {}", "public function checkLoggedIn()\n\t\t{\n\t\t\t\n\t\t\ttry {\n\t\t\t \n\t\t\t\t$query = $this->_db->prepare( \"SELECT username FROM login WHERE username=:username\" );\n \n \n\t\t\t\t$query->bindParam( \":username\", $_SESSION[ 'username' ], PDO::PARAM_STR );\n\n\t\t\t\t$query->execute();\n\t\t\t\n\t\t\t} catch ( PDOException $e ) {\n\n\t\t\t\techo $e->getMessage();\n\n\t\t\t}\n\n\t\t\t$row = $query->fetch();\n\t\t\t\n \n\t\t\t$loggedInUser = $row[ 'username' ];\n \n //if the user is not logged in\n\t\t\tif( !isset( $loggedInUser ) )\n\t\t\t{\n //head to the log in page\n\t\t\t\theader( 'Location: login.php' );\n\n\t\t\t}\n\t\t\t\n\t\t}", "private function checkLogin() {\n if (!$this->checkConfig()) return;\n $config = $this->getConfig();\n\n if (isset($_SESSION['signin/twitter/status']) && $_SESSION['signin/twitter/status']=='verified') {\n\n $screenname = $_SESSION['signin/twitter/request_vars']['screen_name'];\n $twitterid = $_SESSION['signin/twitter/request_vars']['user_id'];\n $oauth_token = $_SESSION['signin/twitter/request_vars']['oauth_token'];\n $oauth_token_secret = $_SESSION['signin/twitter/request_vars']['oauth_token_secret'];\n\n $connection = new TwitterOAuth($config['consumer_key'], $config['consumer_secret'], $oauth_token, $oauth_token_secret);\n\n // check if we already have this Twitter user in our database\n $user = UserQuery::create()->findOneByOAuthSignIn('twitter::' . $twitterid);\n if (!$user) {\n // if not we create a new one\n $user = new User();\n $user->setCreatedAt(time());\n $user->setOAuthSignIn('twitter::' . $twitterid);\n // we use the email field to store the twitterid\n $user->setEmail('');\n $user->setRole(UserPeer::ROLE_EDITOR); // activate user rigth away\n $user->setName($screenname);\n $user->setSmProfile('https://twitter.com/'.$screenname);\n $user->save();\n }\n DatawrapperSession::login($user);\n }\n }", "protected function isLogin()\n {\n $skey = \\Web\\Config\\Auth::$prefix . $this->sessionId;\n if (\\Web\\Config\\Auth::$username != $this->gdata($skey)) {\n return false;\n }else{\n $this->gexpire($skey, \\Web\\Config\\Auth::$expire);\n return true;\n }\n }", "private function checkLogin() {\n if (isset($_SESSION['login'])) {\n if ($_SESSION['login'] == true) {\n return true;\n } else {\n return false;\n }\n } else {\n return false;\n }\n }", "public function isLoggedIn()\n {\n $database = new Database();\n $loggedIn = $database->getAdminByUsername($_SESSION['user']);\n $admin = new Admin($loggedIn['adminId'], $loggedIn['username'], $loggedIn['adminLevel'], $loggedIn['active']);\n if(isset($_SESSION['user']) === true && strpos($admin->getAdminLevel(), Partner) !== false && $admin->getActive() == 1) {\n $testLogin = true;\n } else {\n $this->_f3->reroute('/Login');\n }\n $this->_f3->set('login', $testLogin);\n $this->_f3->set('admin', $admin);\n }", "public function userIsLoggedIn() {\n return auth()->check() ;\n }", "function verificar_login()\n {\n if (!isset($_SESSION['usuario'])) {\n $this->sign_out();\n }\n }", "public static function checkLoginCookie() {\n\t\tif (!LoginHandler::userIsLoggedIn()) {\n\t\t\tif (CookieHandler::isSetCookie(\"user_name\") && CookieHandler::isSetCookie(\"password\")) {\n\t\t\t\t$cookieUserName = CookieHandler::getCookie(\"user_name\");\n\t\t\t\t$cookiePassword = CookieHandler::getCookie(\"password\");\t\t\t\n\t\t\t\tif (LoginHandler::checkLogin($cookieUserName, $cookiePassword) == \"ok\") {\n\t\t\t\t\tLoginHandler::loginUser($cookieUserName, $cookiePassword);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "private function checkUser()\n {\n $session = $this->di->get(\"session\");\n\n if (!$session->get(\"activeUser\") && !$session->get(\"username\")) {\n return $this->di->response->redirect(\"user/login\");\n }\n }", "public function check() {\n $check = $this->mysqli->query(\"SELECT * FROM user_info WHERE email='$this->email' && password ='$this->password' LIMIT 1\") or die($this->mysqli->error);\n $count = $check->num_rows;\n\n if ($count) {\n while($rows = $check->fetch_array(MYSQLI_ASSOC)){\n $this->loginID = $rows['loginID'];\n $_SESSION['loginID'] = $this->loginID;\n }\n $_SESSION['email'] = $this->email;\n $this->result .= \"Successfully Logged In\";\n } else {\n $this->result .= \"Sign In error!! Please try again\";\n }\n }", "public function check_login(): void\n {\n if ($this->email_activation && $this->user && !$this->user['email_verified']) {\n $_SESSION['request'] = $_SERVER['REQUEST_URI'];\n redirect('/register');\n }\n\n if (!$this->user) {\n $_SESSION['request'] = $_SERVER['REQUEST_URI'];\n redirect('/login');\n }\n }", "function login() {\n $params = $this->objService->get_request_params();\n $isSuccess = $this->objQuery->count('user','email= ? AND password = ?', array($params->email,$params->password));\n echo $isSuccess;\n }", "private function checkFirstLogin() {\n\n $count = DB::table('users')->count();\n\n if ($count == 0) {\n\n $password = Hash::make('cciadminpassword');\n\n // insert in users table\n $id = DB::table('users')->insertGetId([\n 'username' => 'admin',\n 'name' => 'Administrator',\n 'password' => $password,\n 'created_at' => \\Carbon\\Carbon::now()\n ]);\n\n // insert in roles table\n DB::table('user_roles')->insert([\n 'user_id' => $id,\n 'role' => 'administrator',\n 'created_at' => \\Carbon\\Carbon::now()\n ]);\n\n // insert project status codes\n DB::table('project_status')->insert([\n [ 'status' => 'New' ],\n [ 'status' => 'Quoted' ],\n [ 'status' => 'Sold' ],\n [ 'status' => 'Engineered' ],\n [ 'status' => 'Lost']\n ]);\n\n return;\n }\n\n else { return; }\n }", "public function addLoginState(){\r\n\t\t$userId = $this->session->userdata('userId');\r\n\t\t$res = $this->curd_m->get_search(\"SELECT login_validate FROM users WHERE id=\".$userId,'object');\r\n\t\tif($res!==NULL && sizeof($res)==1){\r\n\t\t\tif( (time()-$res[0]->login_validate) > $this->config->item('sess_time_to_update')){\r\n\t\t\t\treturn $this->curd_m->get_update(\"users\",array('id'=>$userId,'login_validate'=>time()));\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn FALSE;\r\n\t}", "public static function isLoggedIn(){\n if(!self::exists('is_logged_in')&& self::get('is_logged_in')!==true){\n \n header('location:' . URL . 'user/login.php');\n exit;\n }\n }", "public function check_login(): void\n {\n if ($this->email_activation and $this->user and !$this->user['email_verified']) {\n $_SESSION['request'] = $_SERVER['REQUEST_URI'];\n redirect('/register');\n }\n\n if (!$this->user) {\n $_SESSION['request'] = $_SERVER['REQUEST_URI'];\n redirect($this->login);\n }\n }", "function checkLogin () {\r\n //check is session has user\r\n if (isset($_SESSION['user'])) {\r\n //check if the credentials match\r\n if (verifyUser($_SESSION['user']['name'], $_SESSION['user']['hash'])) {\r\n return true;\r\n }\r\n }\r\n //returns false by default\r\n return false;\r\n}", "public function logInUserChangesToLoggedInStatus() {\n\t\t$user = new Tx_Oelib_Model_FrontEndUser();\n\t\t$this->subject->logInUser($user);\n\n\t\t$this->assertTrue(\n\t\t\t$this->subject->isLoggedIn()\n\t\t);\n\t}", "public function checkLogin() {\n if (!$this->isLoggedIn()) {\n Router::getInstance()->redirect('login');\n }\n return $this->getCurrentUser();\n }", "protected function check_logged_in(){\n\n\t\t$this->load->model('patoauth/patoauth_model', 'patoauth');\n\n\t/*\n\t\tTRY TO AUTOLOGIN */\n\n\t\tif(! $this->patoauth->is_logged_in())\n\t\t\t$this->patoauth->autologin();\n\n\t/*\n\t\tIF STILLS NO LOGGED IN GET OUT OF HERE */\n\n\t\tif(! $this->patoauth->is_logged_in())\n\t\t\tredirect(site_url('auth/login'));\n\t}", "public function checkLogin(){\n $dbQuery = new DBQuery(\"\", \"\", \"\");\n $this->email = $dbQuery->clearSQLInjection($this->email);\n $this->senha = $dbQuery->clearSQLInjection($this->senha);\n \n // Verificar quantas linhas um Select por Email e Senha realiza \n $resultSet = $this->usuarioDAO->select(\" email='\".$this->email.\"' and senha='\".$this->senha.\"' \");\n $qtdLines = mysqli_num_rows($resultSet);\n \n // Pegar o idUsuario da 1ª linha retornada do banco\n $lines = mysqli_fetch_assoc($resultSet);\n $idUsuario = $lines[\"idUsuario\"];\n \n\n \n // retorna aonde a função foi chamada TRUE ou FALSE para se tem mais de 0 linhas\n if ( $qtdLines > 0 ){\n // Gravar o IdUsuario e o Email em uma Sessão\n session_start();\n $_SESSION[\"idUsuario\"] = $idUsuario;\n $_SESSION[\"email\"] = $this->email;\n return(true);\n }else{\n // Gravar o IdUsuario e o Email em uma Sessão\n session_start();\n unset($_SESSION[\"idUsuario\"]);\n unset($_SESSION[\"email\"]);\n return(false);\n }\n }", "public function check_user()\n {\n global $_user;\n $loginFailed = false;\n //change the way we recover the cookie depending on how it is formed\n $sso = $this->decode_cookie($_GET['sso_cookie']);\n\n //error_log('check_user');\n //error_log('sso decode cookie: '.print_r($sso,1));\n\n //lookup the user in the main database\n $user_table = Database::get_main_table(TABLE_MAIN_USER);\n $sql = \"SELECT user_id, username, password, auth_source, active, expiration_date, status\n FROM $user_table\n WHERE username = '\".trim(Database::escape_string($sso['username'])).\"'\";\n $result = Database::query($sql);\n if (Database::num_rows($result) > 0) {\n //error_log('user exists');\n $uData = Database::fetch_array($result);\n //Check the user's password\n if ($uData['auth_source'] == PLATFORM_AUTH_SOURCE) {\n //This user's authentification is managed by Chamilo itself\n // check the user's password\n // password hash comes already parsed in sha1, md5 or none\n\n /*\n error_log($sso['secret']);\n error_log($uData['password']);\n error_log($sso['username']);\n error_log($uData['username']);\n */\n global $_configuration;\n // Two possible authentication methods here: legacy using password\n // and new using a temporary, session-fixed, tempkey\n if (($sso['username'] == $uData['username']\n && $sso['secret'] === sha1(\n $uData['username'].\n Session::read('tempkey').\n $_configuration['security_key']\n )\n )\n or (\n ($sso['secret'] === sha1($uData['password']))\n && ($sso['username'] == $uData['username'])\n )\n ) {\n //error_log('user n password are ok');\n //Check if the account is active (not locked)\n if ($uData['active']=='1') {\n // check if the expiration date has not been reached\n if (empty($uData['expiration_date'])\n or $uData['expiration_date'] > date('Y-m-d H:i:s')\n or $uData['expiration_date']=='0000-00-00 00:00:00') {\n\n //If Multiple URL is enabled\n if (api_get_multiple_access_url()) {\n //Check the access_url configuration setting if\n // the user is registered in the access_url_rel_user table\n //Getting the current access_url_id of the platform\n $current_access_url_id = api_get_current_access_url_id();\n // my user is subscribed in these\n //sites: $my_url_list\n $my_url_list = api_get_access_url_from_user($uData['user_id']);\n } else {\n $current_access_url_id = 1;\n $my_url_list = array(1);\n }\n\n $my_user_is_admin = UserManager::is_admin($uData['user_id']);\n\n if ($my_user_is_admin === false) {\n if (is_array($my_url_list) && count($my_url_list) > 0) {\n if (in_array($current_access_url_id, $my_url_list)) {\n // the user has permission to enter at this site\n $_user['user_id'] = $uData['user_id'];\n $_user = api_get_user_info($_user['user_id']);\n $_user['uidReset'] = true;\n Session::write('_user', $_user);\n Event::event_login($_user['user_id']);\n // Redirect to homepage\n $sso_target = '';\n if (!empty($sso['ruri'])) {\n //The referrer URI is *only* used if\n // the user credentials are OK, which\n // should be protection enough\n // against evil URL spoofing...\n $sso_target = api_get_path(WEB_PATH) . base64_decode($sso['ruri']);\n } else {\n $sso_target = isset($sso['target']) ? $sso['target'] : api_get_path(WEB_PATH) . 'index.php';\n }\n header('Location: '. $sso_target);\n exit;\n } else {\n // user does not have permission for this site\n $loginFailed = true;\n Session::erase('_uid');\n header('Location: '.api_get_path(WEB_PATH).'index.php?loginFailed=1&error=access_url_inactive');\n exit;\n }\n } else {\n // there is no URL in the multiple\n // urls list for this user\n $loginFailed = true;\n Session::erase('_uid');\n header('Location: '.api_get_path(WEB_PATH).'index.php?loginFailed=1&error=access_url_inactive');\n exit;\n }\n } else {\n //Only admins of the \"main\" (first) Chamilo\n // portal can login wherever they want\n if (in_array(1, $my_url_list)) {\n //Check if this admin is admin on the\n // principal portal\n $_user['user_id'] = $uData['user_id'];\n $_user = api_get_user_info($_user['user_id']);\n $is_platformAdmin = $uData['status'] == COURSEMANAGER;\n Session::write('is_platformAdmin', $is_platformAdmin);\n Session::write('_user', $_user);\n Event::event_login($_user['user_id']);\n } else {\n //Secondary URL admin wants to login\n // so we check as a normal user\n if (in_array($current_access_url_id, $my_url_list)) {\n $_user['user_id'] = $uData['user_id'];\n $_user = api_get_user_info($_user['user_id']);\n Session::write('_user', $_user);\n Event::event_login($_user['user_id']);\n } else {\n $loginFailed = true;\n Session::erase('_uid');\n header(\n 'Location: '.api_get_path(WEB_PATH)\n .'index.php?loginFailed=1&error=access_url_inactive'\n );\n exit;\n }\n }\n }\n } else {\n // user account expired\n $loginFailed = true;\n Session::erase('_uid');\n header(\n 'Location: '.api_get_path(WEB_PATH)\n .'index.php?loginFailed=1&error=account_expired'\n );\n exit;\n }\n } else {\n //User not active\n $loginFailed = true;\n Session::erase('_uid');\n header('Location: '.api_get_path(WEB_PATH).'index.php?loginFailed=1&error=account_inactive');\n exit;\n }\n } else {\n //SHA1 of password is wrong\n $loginFailed = true;\n Session::erase('_uid');\n header('Location: '.api_get_path(WEB_PATH).'index.php?loginFailed=1&error=wrong_password');\n exit;\n }\n } else {\n //Auth_source is wrong\n $loginFailed = true;\n Session::erase('_uid');\n header(\n 'Location: '.api_get_path(WEB_PATH)\n .'index.php?loginFailed=1&error=wrong_authentication_source'\n );\n exit;\n }\n } else {\n //No user by that login\n $loginFailed = true;\n Session::erase('_uid');\n header('Location: '.api_get_path(WEB_PATH).'index.php?loginFailed=1&error=user_not_found');\n exit;\n }\n return $loginFailed;\n }", "public static function verifyLogin():bool\n\t{\n\n\t\tif (\n\t\t\t!isset($_SESSION[User::SESSION])\n\t\t\t||\n\t\t\t!$_SESSION[User::SESSION]\n\t\t\t||\n\t\t\t!(int)$_SESSION[User::SESSION]['iduser'] > 0\n\t\t)\n\t\t{\n\t\t\n\t\t\treturn false;\n\t\t\n\t\t} else {\n\n\t\t\treturn true;\n\n\t\t} \n\n\t}", "private function check_login(){\n if (isset($_SESSION['email'])){\n $this->email=$_SESSION['email'];\n\t\t\t$this->role=$_SESSION['role'];\n\t\t\t$this->id=$_SESSION['id'];\n $this->signed_in=true;\n }\n else{\n unset($this->email);\n $this->signed_in=false;\n }\n }", "public function loginExists() {\n return (bool) $this->local_account;\n }", "public static function perform_login_check() {\n\t\tif (self::is_logged_in()) {\n\t\t\t# User is logged in - leave them be\n\t\t\treturn (true);\n\t\t} else {\n\t\t\t# User isn't logged in - send them to the login form\n\t\t\t$host = $_SERVER['HTTP_HOST'];\n\t\t\t$uri = rtrim(dirname($_SERVER['PHP_SELF']), '/\\\\');\n\t\t\t$extra = 'login.php';\n\t\t\theader(\"Location: http://$host$uri/$extra\");\n\n\t\t\texit;\n\t\t}\n\t}", "private function checkAuth()\n {\n $this->isAuthenticated = false;\n $isLoggedIn = is_user_logged_in();\n\n if ($isLoggedIn) {\n $this->username = wp_get_current_user()->user_login;\n $id = wp_get_current_user()->ID;\n $meta = get_user_meta($id, 'wp_capabilities', false);\n foreach ($meta[0] as $key => $value) {\n $k = strtoupper($key);\n if (($k == $this->PluginRole) or\n ($k == $this->AdminRole)) {\n $this->isAuthenticated = true;\n }\n }\n }\n }", "public function check_login(){\n\n\t\tsession_id() == '' ? session_start(): NULL;\n\n\t\tif($this->LOGGED_IN){//IF THE LOGIN OBJECT VAR IS SET\n\t\t\treturn true;\n\t\t\t}\n\t\telse{\n\n\t\t\tif(isset($_SESSION['userLgInfo']['USER_ID'])){//IF SESSION IS SET\n\t\t\t\t$this->LOGGED_IN = true;\n\t\t\t\t$this->USER_ID = $_SESSION['userLgInfo']['USER_ID'];\n\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\telse if(isset($_COOKIE['user'])){\n\t\t\t\t$key = Janitor::decrypt_data($_COOKIE['user'], Config::$ENCRYPT_KEY);\n\t\t\t\t$sql = \"SELECT u.`USER_EMAIL`, u.`USER_ID`, u.`USER_FIRST_NAME`, u.`USER_LAST_NAME`, u.`USER_KEY`, u.`USER_PERM` FROM `user_tbl` AS u WHERE u.`USER_KEY`= ?\"; $bind = array($key); $db = new SqlCore;\n\t\t\t\t$userArr = $db->query_array($sql, $bind);\n\n\t\t\t\tif($userArr==NULL){ return false; }\n\n\t\t\t\t//SET LOGIN VARS\n\t\t\t\t$_SESSION['userLgInfo'] = array('USER_EMAIL' => $userArr[0]['USER_EMAIL'], 'USER_ID' => Janitor::encrypt_data($userArr[0]['USER_ID'], Config::$ENCRYPT_KEY), 'USER_FULL_NAME' => $userArr[0]['USER_FIRST_NAME'].' '.$userArr[0]['USER_LAST_NAME'], 'USER_FIRST_NAME' => $userArr[0]['USER_FIRST_NAME'], 'USER_LAST_NAME' => $userArr[0]['USER_LAST_NAME'], 'USER_PERM' => Janitor::encrypt_data($userArr[0]['USER_PERM'], Config::$ENCRYPT_KEY));\n\t\t\t\t$this->LOGGED_IN = true;\n\t\t\t\t$this->USER_ID = $userArr[0]['USER_ID'];\n\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\telse{\n\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t}" ]
[ "0.79356825", "0.79288584", "0.78792083", "0.78505605", "0.77569336", "0.77103734", "0.7686583", "0.76713", "0.76537573", "0.76333827", "0.7577771", "0.7573455", "0.75633484", "0.7557706", "0.755698", "0.75535494", "0.7550131", "0.7549721", "0.75170904", "0.75170904", "0.74994236", "0.74894774", "0.74713415", "0.7470631", "0.7468431", "0.7457813", "0.7448067", "0.7445169", "0.7439746", "0.7435058", "0.74209285", "0.74144864", "0.7388855", "0.73798656", "0.73784417", "0.7373604", "0.73594797", "0.7354728", "0.73313797", "0.73139465", "0.73134387", "0.7302291", "0.72757834", "0.7274921", "0.72657484", "0.7258001", "0.7254438", "0.7241502", "0.7232605", "0.7232587", "0.722151", "0.7215333", "0.7210962", "0.7207407", "0.72063047", "0.7202739", "0.72023374", "0.7202142", "0.7201014", "0.7200978", "0.7188305", "0.71824944", "0.71824944", "0.7178569", "0.71765256", "0.716207", "0.71437013", "0.71387196", "0.7137542", "0.7131161", "0.7127407", "0.71208453", "0.7119989", "0.7109787", "0.70979464", "0.70973575", "0.70904976", "0.70807475", "0.70799", "0.7079403", "0.7076938", "0.7074427", "0.70536613", "0.7045586", "0.7043486", "0.70428294", "0.7040435", "0.7039529", "0.70363766", "0.70354474", "0.7025508", "0.7021554", "0.7011004", "0.70105815", "0.7006946", "0.6995176", "0.69843143", "0.69780475", "0.6977706", "0.6974987", "0.6963519" ]
0.0
-1
Given a raw regex in a string (and, optionally, a patternmodifiers string), return a string suitable for use as a preg pattern. The regex is wrapped in delimiters, with the modifiers (if any) appended.
public static function regexToPattern(string $regex, string $modifiers = '') : string { /* To convert a regex to a pattern, we must wrap the pattern in delimiters (we'll use a pair of forward slashes) and append the modifiers. We must also be sure to escape any unescaped occurrences of the delimiter within the regex, and to escape a regex-ending escape (which, if left alone, would end up escaping the delimiter we append). We can't just blindly escape embedded delimiters, because it would break a regex containing an already-escaped delimiter. For example, if the regex is '\/', a blind escape results in '\\/' which would not work when eventually wrapped with delimiters: '/\\//'. Rather, we'll break down the regex into sections: escaped characters, unescaped forward slashes (which we'll need to escape), and everything else. As a special case, we also look out for, and escape, a regex-ending escape. */ if (! preg_match('~\\\\(?:/|$)~s', $regex)) /* '/' followed by '\' or EOS */ { /* There are no already-escaped forward slashes, and no escape at the end, so it's safe to blindly escape forward slashes. */ $cooked = str_replace('/', '\/', $regex); } else { /* This is the pattern we'll use to parse $regex. The two parts whose matches we'll need to escape are within capturing parens. */ $pattern = '~ (?> [^\\\\/]+ | \\\\. )* \K | ( / | \\\\$ ) ~sx'; /* Our callback function is called upon each successful match of $pattern in $regex. If $matches[0] is not empty, we return an escaped version of it. Otherwise, we simply return what was matched unmodified. */ /* Actually apply $pattern to $regex, yielding $cooked */ $cooked = preg_replace_callback($pattern, function (array $m) : string { return strlen($m[0]) ? '\\' . $m[0] : ''; }, $regex); } /* $cooked is now safe to wrap -- do so, append the modifiers, and return */ return '/' . $cooked . '/' . $modifiers; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function ereg_to_pcre($pattern, $modifiers = '')\n {\n static $digit = '\\d';\n static $upper = 'A-Z';\n static $lower = 'a-z';\n static $punct = '!\"#$%&\\'()*+,\\-.\\\\/:;<=>?@[\\\\\\\\\\\\]^_`{|}~';\n static $space = '\\s';\n static $blank = '\\t ';\n static $cntrl = '\\x00-\\x1f\\x7f';\n\n $pattern = preg_replace_callback('/\\\\\\\\(.)/', function($match) {\n return strchr('.^[$()|*+?{\\\\', $match[1]) !== false ? $match[0] : $match[1];\n }, $pattern);\n\n return '/' . strtr(addcslashes($pattern, '/'), [\n '[:alnum:]' => $upper . $lower . $digit,\n '[:digit:]' => $digit,\n '[:punct:]' => $punct,\n\n '[:alpha:]' => $upper . $lower,\n '[:graph:]' => $punct . $upper . $lower . $digit,\n '[:space:]' => $space,\n\n '[:blank:]' => $blank,\n '[:lower:]' => $lower,\n '[:upper:]' => $upper,\n\n '[:cntrl:]' => $cntrl,\n '[:print:]' => $punct . $upper . $lower . $digit . ' ',\n '[:xdigit:]' => $digit . 'A-Fa-f',\n\n '[[:<:]]' => '',\n '[[:>:]]' => '',\n ]) . '/' . $modifiers;\n }", "private function _process_regex($regex, $rflags)\n\t{\n\t\t$flags = implode('', (array)$rflags);\n\t\t//$regex = addcslashes($regex, '#');\n\t\t$regex = str_replace(array('#','\\\\\\\\#'), array('\\\\#','\\\\\\\\\\\\#'), $regex);\n\t\treturn \"#$regex#$flags\";\n\t}", "function escapeForRegex($pattern)\n{\n\t$escaped='';\n\t$escapechars = array(\"/\",\"?\",'\"', \"(\", \")\", \"'\",\"*\",\".\",\"[\",\"]\");\n\tfor ($counter = 0; $counter<strlen($pattern);$counter++)\n\t{\n\t\t$curchar = substr($pattern, $counter, 1);\n\t\tif (in_array($curchar,$escapechars))\n\t\t$escaped .= \"\\\\\";\n\t\t$escaped.=$curchar;\n\t}\n\treturn $escaped;\n}", "function getRegex() {\n\t\treturn \"/\".$this->prefixes . $this->source . $this->suffixes. \"/\" . $this->modifiers;\n\t}", "protected function escapeForRegex($regex) {\n // $regex = str_replace('.', '\\\\.', $regex);\n $regex = str_replace('?', '\\\\\\\\?', $regex);\n $regex = str_replace('[', '\\\\\\\\[', $regex);\n $regex = str_replace(']', '\\\\\\\\]', $regex);\n $regex = str_replace('*', '([\\\\\\\\w\\\\\\\\-])*', $regex);\n\n return $regex;\n }", "public static function escapeRegEx($str, $delimiter = '/')\n {\n return StringUtils::isEmpty($str)\n ? $str\n : \\preg_quote($str, $delimiter);\n }", "private function wrapRegex($regex){\n\t\treturn '^' . $regex . '$';\n\t}", "protected function patternToRegex($pattern) {\n\t\tif(!strlen($pattern)) {\n\t\t\t// nothing to do\n\t\t\t$regex = '';\n\t\t} else if(in_array($pattern[0], $this->regexDelims) && strrpos($pattern, $pattern[0])) {\n\t\t\t// already a regular expression\n\t\t\t$regex = $pattern;\n\t\t} else if(strpos($pattern, '*') !== false) {\n\t\t\t// wildcard, convert to regex\n\t\t\t$a = explode('*', $pattern);\n\t\t\tforeach($a as $k => $v) {\n\t\t\t\t$a[$k] = preg_quote($v);\n\t\t\t}\n\t\t\t$regex = '/^' . implode('.+', $a) . '$/';\n\t\t\t$regex = str_replace(\n\t\t\t\tarray('\\\\(', '\\\\)', '\\\\[', '\\\\]'), \n\t\t\t\tarray('(', ')', '[', ']'), \n\t\t\t\t$regex\n\t\t\t);\n\t\t} else {\n\t\t\t$regex = '';\n\t\t}\n\t\treturn $regex;\n\t}", "public function lineDelimitedPatternsToRegex($patterns)\n {\n $regex = ''; // Initialize list of regex patterns.\n $patterns = (string) $patterns;\n\n if (($patterns = preg_split('/['.\"\\r\\n\".']+/', $patterns, -1, PREG_SPLIT_NO_EMPTY))) {\n $regex = '/(?:'.implode('|', array_map([$this, 'wdRegexToActualRegexFrag'], $patterns)).')/i';\n }\n return $regex;\n }", "public static function getRegularExpression();", "public function regex(string $regex = '', string $flags = 'i', bool $enable_start_wildcard = TRUE, bool $enable_end_wildcard = TRUE): Regex\n\t{\n\t\t$regex = quotemeta($regex);\n\t\t\n\t\tif ($enable_start_wildcard === TRUE)\n\t\t{\n\t\t\t$regex = '^' . $regex;\n\t\t}\n\t\t\n\t\tif ($enable_end_wildcard === TRUE)\n\t\t{\n\t\t\t$regex .= '$';\n\t\t}\n\n\t\treturn Regex($regex, (string) $flags);\n\t}", "function preg($pattern){\n return new Parser(['_call_preg', [$pattern]]);\n}", "public function get_regex ($part) {\n\t\treturn '/' . \n\t\t\tpreg_quote($this->open(), '/') .\n\t\t\t\tpreg_quote($part, '/') .\n\t\t\t\t'(' .\n\t\t\t\t\tpreg_quote($this->fallback(), '/') .\n\t\t\t\t\t'(.*?)' .\n\t\t\t\t')?' .\n\t\t\tpreg_quote($this->close(), '/') .\n\t\t'/';\n\t}", "public static function escapeRegex( $regex )\n {\n return str_replace( self::$_REGEX_UNESCAPED, self::$_REGEX_ESCAPED, str_replace( self::$_REGEX_ESCAPED, self::$_REGEX_UNESCAPED, $regex ) );\n }", "abstract protected function regexp(): string;", "function convert_regex($regex, &$pos)\n{\n\t$state = \"init\";\t\t// pocatecni stav automatu\n\t$newex = \"\";\t\t\t// sem se uklada prevedeny regularni vyraz\n\t$empty = true;\t\n\t$last_escaped = 0;\t\t// urcuje zda posledni znak byl escape sekvence\n\t\n\t\n\twhile ($state !== \"fin\")\n\t{\n\t\tif ($last_escaped > 0)\n\t\t\t$last_escaped--;\n\t\t/*echo \"newex: $newex\\n\";*/\n\t\t$aux = mb_substr($regex, $pos);\n\t\tswitch ($state)\n\t\t{\n\t\t\tcase \"init\":\t// prvni znak musi byt '('\n\t\t\t\tif ($pos < mb_strlen($regex) && mb_substr($regex, $pos, 1) === \"(\")\n\t\t\t\t{\n\t\t\t\t\t$newex = $newex . \"(\";\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t\treturn null;\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase \"read\":\t// zakladni stav pro cteni\n\t\t\t\tif ($pos >= mb_strlen($regex))\n\t\t\t\t{\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif (is_escape(mb_substr($regex, $pos, 1)))\t// nasledujici znak je potreba dat do escape sekvence\n\t\t\t\t{\t\t\t\t\t\n\t\t\t\t\t$newex = $newex . \"\\\\\" . mb_substr($regex, $pos, 1);\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$pos++;\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \".\")\t// konkatenace, pred timto znakem se nesmi vyskytovat symboly se specialnim vyznamem\n\t\t\t\t{\n\t\t\t\t\t$aux = mb_substr($regex, $pos - 1, 1);\n\t\t\t\t\tif (($aux !== \".\" && $aux !== \"|\" && $aux !== \"!\" && $aux !== \"(\") || $last_escaped === 1)\n\t\t\t\t\t{\n\t\t\t\t\t\t$pos++;\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\treturn null;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"|\")\t// \"nebo\", pred timto znakem se nesmi vyskytovat symboly se specialnim vyznamem\n\t\t\t\t{\n\t\t\t\t\t$aux = mb_substr($regex, $pos - 1, 1);\n\t\t\t\t\tif (($aux !== \".\" && $aux !== \"|\" && $aux !== \"!\" && $aux !== \"(\") || $last_escaped === 1)\n\t\t\t\t\t{\n\t\t\t\t\t\t$newex = $newex . \"|\";\n\t\t\t\t\t\t$pos++;\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\treturn null;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"+\" || mb_substr($regex, $pos, 1) === \"*\")\t// iterace a pozitivni iterace, pred timto znakem se nesmi vyskytovat symboly se specialnim vyznamem\n\t\t\t\t{\n\t\t\t\t\t$aux = mb_substr($regex, $pos - 1, 1);\n\t\t\t\t\tif (($aux !== \".\" && $aux !== \"|\" && $aux !== \"!\" && $aux !== \"(\" && $aux !== \"+\" && $aux !== \"*\") || $last_escaped === 1)\n\t\t\t\t\t{\n\t\t\t\t\t\t$newex = $newex . mb_substr($regex, $pos, 1);\n\t\t\t\t\t\t$pos++;\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\treturn null;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"%\")\t// nasleduje escape sekvence\n\t\t\t\t{\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"escaped\";\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"!\")\t// nasleduje negace\n\t\t\t\t{\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"negate\";\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"(\")\t// nasleduje vyraz uzavreny v zavorkach, rekurzivne volej convert_regex()\n\t\t\t\t{\n\t\t\t\t\tif (($aux = convert_regex($regex, $pos)) === null)\n\t\t\t\t\t\treturn null;\n\t\t\t\t\t$newex = $newex . $aux;\n\t\t\t\t\t$empty = false;\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \")\")\t// konec vyrazu uravreneho v zavorkach, nesmi mu predchazet symboly se specialnim vyznamem\n\t\t\t\t{\n\t\t\t\t\t$aux = mb_substr($regex, $pos - 1, 1);\n\t\t\t\t\tif ((($aux !== \".\" && $aux !== \"|\" && $aux !== \"!\") || $last_escaped === 1) && !$empty)\n\t\t\t\t\t{\n\t\t\t\t\t\t$newex = $newex . \")\";\n\t\t\t\t\t\t$pos++;\n\t\t\t\t\t\t$state = \"fin\";\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\treturn null;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse // ostatni symboly\n\t\t\t\t{\n\t\t\t\t\t$newex = $newex . mb_substr($regex, $pos, 1);\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\tbreak;\t\t\t\t\n\t\t\t\t\n\t\t\tcase \"escaped\":\t// escape sekvence a jejich konverze na odpovidijici vyrazy pro preg_match\n\t\t\t\tif ($pos >= mb_strlen($regex))\n\t\t\t\t{\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif (is_escape_2(mb_substr($regex, $pos, 1)))\n\t\t\t\t{\n\t\t\t\t\t$newex = $newex . \"\\\\\" . mb_substr($regex, $pos, 1);\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t\t$last_escaped = 2;\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"!\" || mb_substr($regex, $pos, 1) === \"%\")\n\t\t\t\t{\n\t\t\t\t\t$newex = $newex . mb_substr($regex, $pos, 1);\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t\t$last_escaped = 2;\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"t\")\n\t\t\t\t{\n\t\t\t\t\t$newex = $newex . \"\\\\t\";\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"n\")\n\t\t\t\t{\n\t\t\t\t\t$newex = $newex . \"\\\\n\";\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"s\")\n\t\t\t\t{\n\t\t\t\t\t$newex = $newex . \"\\s\";\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"a\")\n\t\t\t\t{\n\t\t\t\t\t$newex = $newex . \"[\\s|\\S]\";\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"d\")\n\t\t\t\t{\n\t\t\t\t\t$newex = $newex . \"\\d\";\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"l\")\n\t\t\t\t{\n\t\t\t\t\t$newex = $newex . \"[a-z]\";\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"L\")\n\t\t\t\t{\n\t\t\t\t\t$newex = $newex . \"[A-Z]\";\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"w\")\n\t\t\t\t{\n\t\t\t\t\t$newex = $newex . \"[a-zA-Z]\";\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"W\")\n\t\t\t\t{\n\t\t\t\t\t$newex = $newex . \"[a-zA-Z0-9]\";\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\tcase \"negate\":\t// nasleduje negovany vyraz\n\t\t\t\tif (mb_substr($regex, $pos, 1) === \"!\")\t\t\t// negace negace je ignorovana\n\t\t\t\t{\n\t\t\t\t\t$pos++;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\telse if (mb_substr($regex, $pos, 1) === \"(\")\t// nasleduje vyraz v zavorce, rekurzivni volani convert_regex()\n\t\t\t\t{\n\t\t\t\t\tif (($aux = convert_regex($regex, $pos)) === null)\n\t\t\t\t\t\treturn null;\n\t\t\t\t\t$newex = $newex . \"(?:(?!\" . $aux . \")[\\s|\\S])\";\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\telse\t\t\t\t\t\t\t\t\t\t\t// nasleduje jediny znak()\n\t\t\t\t{\n\t\t\t\t\tif (($aux = read_one($regex, $pos)) === null)\n\t\t\t\t\t\treturn null;\n\t\t\t\t\t$newex = $newex . \"(?:(?!\" . $aux . \")[\\s|\\S])\";\n\t\t\t\t\t$empty = false;\n\t\t\t\t\t$state = \"read\";\n\t\t\t\t}\n\t\t\t\tbreak;\t\t\t\t\n\t\t}\n\t}\n\treturn $newex;\n}", "static function glob2regex($pattern, $deliminator = null) {\n\t\t$escaped_pattern = preg_quote($pattern, '/');\n\n\t\t// we don't need to worry about a deliminator\n\t\tif($deliminator === null) return '/^' . $escaped_pattern . '$/';\n\n\t\t// build the regex string\n\t\t$escaped_deliminator = preg_quote($deliminator, '/');\n\t\treturn '/^' . implode(\n\t\t\t$escaped_deliminator,\n\t\t\tarray_map(function($s) use($deliminator, $escaped_deliminator) {\n\n\t\t\t\t// single section wildcard\n\t\t\t\tif($s == '\\*') return '[^'.$deliminator.']+';\n\n\t\t\t\t// multi-section wildcard\n\t\t\t\tif($s == '\\*\\*') return '.*';\n\n\t\t\t\treturn $s;\n\t\t\t},\n\t\t\texplode($escaped_deliminator, $escaped_pattern)\n\t\t)) . '$/';\n\t}", "public static function parserRegExp(): string\n {\n return '[0-9]{4}-[0-9]{2}-[0-9]{2}';\n }", "public function wdRegexToActualRegexFrag($string)\n {\n return preg_replace(\n [\n '/\\\\\\\\\\^/u',\n '/\\\\\\\\\\*\\\\\\\\\\*/u',\n '/\\\\\\\\\\*/u',\n '/\\\\\\\\\\$/u',\n ],\n [\n '^', // Beginning of line.\n '.*?', // Zero or more chars.\n '[^\\/]*?', // Zero or more chars != /.\n '$', // End of line.\n ],\n preg_quote((string) $string, '/')\n );\n }", "public static function createRegex($pattern, $addEnd = true)\n {\n $regex = '/^';\n $regex .= preg_replace(\n array(\n static::PARAM,\n static::BAR,\n static::DOT,\n static::WILDCARD1,\n static::WILDCARD2\n ),\n array('([^/]+)', '\\/', '\\.', '.*', '.*'),\n $pattern\n );\n\n $regex = str_replace('\\\\/.*', '(\\\\/.*)?', $regex);\n $regex .= $addEnd ? '$/' : '/';\n\n return $regex;\n }", "public function getRegexp();", "private function toRegExp($pattern)\n {\n $regExp = '/^' . preg_quote($pattern, '/') . '$/';\n // Replace escaped \"*\" by a pattern, that matches zero to\n // unlimited arbitrary characters.\n $regExp = str_replace('\\*', '.*', $regExp);\n return $regExp;\n }", "public function compileRegex()\n {\n $route = $this->route->getUri();\n\n if (strpos($route, '?')) {\n $route = preg_replace('@\\/{([\\w]+)\\?}@', '(?:/{$1})?', $route);\n }\n\n $route = preg_replace('/{([a-z0-9_-]+)}/i', '(?P<$1>[^/]+)', $route);\n\n if(substr($route, -1) === '/') {\n $route .= '?';\n }\n\n return \"%^{$route}$%s\";\n }", "function encode_preg($str)\n{\n $str = str_replace('\\\\','\\\\\\\\',$str);\n $str = str_replace('/','\\\\/',$str);\n $str = str_replace('(','\\\\(',$str);\n $str = str_replace(')','\\\\)',$str);\n $str = str_replace('^','\\\\^',$str);\n $str = str_replace('$','\\\\$',$str);\n $str = str_replace('*','\\\\*',$str);\n $str = str_replace('+','\\\\+',$str);\n $str = str_replace('?','\\\\?',$str);\n $str = str_replace('[','\\\\[',$str);\n $str = str_replace(']','\\\\]',$str);\n return $str;\n\n}", "private static function groupsToNonCapturings(string $regex): string\n {\n for ($i = 0; $i < strlen($regex); ++$i) {\n if ('\\\\' === $regex[$i]) {\n ++$i;\n continue;\n }\n \n if ('(' !== $regex[$i] || ! isset($regex[$i + 2])) {\n continue;\n }\n \n if ('*' === $regex[++$i] || '?' === $regex[$i]) {\n ++$i;\n continue;\n }\n \n $regex = substr_replace($regex, '?:', $i, 0);\n ++$i;\n }\n \n return $regex;\n }", "public function getRegex(): string\n {\n return $this->regex;\n }", "public function getRegex(): string\n {\n return $this->regex;\n }", "function glob_to_regex($glob) {\n\n $glob = str_replace('.', '\\.', $glob);\n $glob = str_replace('+', '\\+', $glob);\n $glob = str_replace('*', '.+', $glob);\n $glob = str_replace('?', '.', $glob);\n\n return $glob ? \"^$glob$\" : $glob;\n }", "function apustheme_get_shortcode_regex( $tagregexp = '' ) {\n\t\t// Also, see shortcode_unautop() and shortcode.js.\n\t\treturn\n\t\t\t'\\\\[' // Opening bracket\n\t\t\t. '(\\\\[?)' // 1: Optional second opening bracket for escaping shortcodes: [[tag]]\n\t\t\t. \"($tagregexp)\" // 2: Shortcode name\n\t\t\t. '(?![\\\\w-])' // Not followed by word character or hyphen\n\t\t\t. '(' // 3: Unroll the loop: Inside the opening shortcode tag\n\t\t\t. '[^\\\\]\\\\/]*' // Not a closing bracket or forward slash\n\t\t\t. '(?:'\n\t\t\t. '\\\\/(?!\\\\])' // A forward slash not followed by a closing bracket\n\t\t\t. '[^\\\\]\\\\/]*' // Not a closing bracket or forward slash\n\t\t\t. ')*?'\n\t\t\t. ')'\n\t\t\t. '(?:'\n\t\t\t. '(\\\\/)' // 4: Self closing tag ...\n\t\t\t. '\\\\]' // ... and closing bracket\n\t\t\t. '|'\n\t\t\t. '\\\\]' // Closing bracket\n\t\t\t. '(?:'\n\t\t\t. '(' // 5: Unroll the loop: Optionally, anything between the opening and closing shortcode tags\n\t\t\t. '[^\\\\[]*+' // Not an opening bracket\n\t\t\t. '(?:'\n\t\t\t. '\\\\[(?!\\\\/\\\\2\\\\])' // An opening bracket not followed by the closing shortcode tag\n\t\t\t. '[^\\\\[]*+' // Not an opening bracket\n\t\t\t. ')*+'\n\t\t\t. ')'\n\t\t\t. '\\\\[\\\\/\\\\2\\\\]' // Closing shortcode tag\n\t\t\t. ')?'\n\t\t\t. ')'\n\t\t\t. '(\\\\]?)'; // 6: Optional second closing brocket for escaping shortcodes: [[tag]]\n\t}", "public function prepareRegex(string $path): string\n {\n $path = str_replace(\"/\", \"\\/\", $path);\n\n $path = preg_replace_callback(\"/\\\\\\\\\\/\\{([a-z]+)\\:([a-z|]+)\\}/\", function ($m) {\n $types = explode(\"|\", $m[2]);\n $regexStart = \"\\/\";\n $regexGroup = \"?P<{$m[1]}>\";\n $regexContent = \"\";\n $regexEnd = \"+\";\n\n foreach ($types as $type) {\n switch ($type) {\n case \"string\":\n $regexContent .= \"a-zA-Z\";\n break;\n case \"int\":\n $regexContent .= \"0-9\";\n break;\n case \"chars\":\n $regexContent .= \"-_.\";\n break;\n case \"misc\":\n $regexContent .= \"a-zA-Z0-9-_.\";\n break;\n case \"null\":\n $regexStart = \"[\\/]?\";\n $regexEnd = \"*\";\n break;\n }\n }\n\n return \"{$regexStart}({$regexGroup}[{$regexContent}]{$regexEnd})\";\n }, $path);\n\n return \"/^{$path}$/\";\n }", "public function getPatterns()\n {\n if (!isset($this->_params['html'])) {\n $linebreak = '\\n|<br(?:\\s*/)?>';\n $whitespace = '\\s|&nbsp;';\n } elseif ($this->_params['html']) {\n $linebreak = '<br(?:\\s*/)?>';\n $whitespace = '&nbsp;';\n } else {\n $linebreak = '\\n';\n $whitespace = '\\s';\n }\n $startOfLine = '((?:^|' . $linebreak . ')(?:' . $whitespace . ')*)';\n $endOfLine = '(?=(?:' . $whitespace . ')*(?:$|\\.|' . $linebreak . '))';\n $startOfWord = '(^|' . $whitespace . '|' . $linebreak . ')';\n $endOfWord = '(?=$|\\.|' . $whitespace . '|' . $linebreak . ')';\n\n return array('regexp' => array(\n // Bold.\n '#' . $startOfLine . '(\\*(?:[^*](?!$|' . $linebreak . '))+\\*)' . $endOfLine .\n '|' . $startOfWord . '(\\*[^*\\s]+\\*)' . $endOfWord . '#i'\n => '$1$3<strong>$2$4</strong>',\n\n // Underline.\n '#' . $startOfLine . '(_(?:[^*](?!$|' . $linebreak . '))+_)' . $endOfLine .\n '|' . $startOfWord . '(_[^_\\s]+_)' . $endOfWord . '#i'\n => '$1$3<u>$2$4</u>',\n\n // Italic.\n '#' . $startOfLine . '(/(?:[^*](?!$|' . $linebreak . '))+/)' . $endOfLine .\n '|' . $startOfWord . '(/[^/\\s]+/)' . $endOfWord . '#i'\n => '$1$3<em>$2$4</em>',\n ));\n }", "abstract protected function buildRegex(): Matcher;", "protected function pattern_to_regex($matches) {\n\t\tif ($matches[1] == '*') {\n\t\t\treturn '/?(.*)';\n\t\t} else if ($matches[1] != ':') {\n\t\t\treturn '/?('.$matches[2].')';\n\t\t}\n\t\treturn '/([^\\/]+)';\n\t}", "public function regularize($pattern) {\n $pattern = preg_quote($pattern, '/');\n $pattern = preg_replace('/\\\\\\{(.*)\\\\\\}/U', '(.*)', $pattern); //numeric\n $pattern = '/' . $pattern . '$/U';\n return $pattern;\n }", "function phpbb_preg_quote($str, $delimiter)\n{\n\t$text = preg_quote($str);\n\t$text = str_replace($delimiter, '\\\\' . $delimiter, $text);\n\t\n\treturn $text;\n}", "function phpbb_preg_quote($str, $delimiter)\n{\n\t$text = preg_quote($str);\n\t$text = str_replace($delimiter, '\\\\' . $delimiter, $text);\n\t\n\treturn $text;\n}", "public function __construct($regex = null, $modifiers = null) {\n $this->errors = array();\n if ($regex === null) {\n return;\n }\n\n //Are passed modifiers supported?\n if (is_string($modifiers)) {\n $supportedmodifiers = $this->get_supported_modifiers();\n for ($i=0; $i < strlen($modifiers); $i++) {\n if (strpos($supportedmodifiers,$modifiers[$i]) === false) {\n $this->errors[] = new preg_error_unsupported_modifier($this->name(), $modifiers[$i]);\n }\n }\n }\n\n $this->regex = $regex;\n $this->modifiers = $modifiers;\n //do parsing\n if ($this->is_parsing_needed()) {\n $this->build_tree($regex);\n } else {\n $this->ast_root = null;\n //In case with no parsing we should stick to accepting whole regex, not nodes\n $this->accept_regex();\n }\n }", "public function get_catchall_regex ($capturing=true) {\n\t\t$rx = '.*';\n\t\tif (!empty($capturing)) $rx = \"({$rx})\";\n\n\t\treturn '/' .\n\t\t\tpreg_quote($this->open(), '/') .\n\t\t\t$rx .\n\t\t\tpreg_quote($this->close(), '/') .\n\t\t'/';\n\t}", "public function regex(): RegexInterface;", "function get_preg_expression($mode)\n{\n\tswitch ($mode)\n\t{\n\t\tcase 'email':\n\t\t\treturn '(?:[a-z0-9\\'\\.\\-_\\+\\|]++|&amp;)+@[a-z0-9\\-]+\\.(?:[a-z0-9\\-]+\\.)*[a-z]+';\n\t\tbreak;\n\n\t\tcase 'bbcode_htm':\n\t\t\treturn array(\n\t\t\t\t'#<!\\-\\- e \\-\\-><a href=\"mailto:(.*?)\">.*?</a><!\\-\\- e \\-\\->#',\n\t\t\t\t'#<!\\-\\- l \\-\\-><a (?:class=\"[\\w-]+\" )?href=\"(.*?)(?:(&amp;|\\?)sid=[0-9a-f]{32})?\">.*?</a><!\\-\\- l \\-\\->#',\n\t\t\t\t'#<!\\-\\- ([mw]) \\-\\-><a (?:class=\"[\\w-]+\" )?href=\"(.*?)\">.*?</a><!\\-\\- \\1 \\-\\->#',\n\t\t\t\t'#<!\\-\\- s(.*?) \\-\\-><img src=\"\\{SMILIES_PATH\\}\\/.*? \\/><!\\-\\- s\\1 \\-\\->#',\n\t\t\t\t'#<!\\-\\- .*? \\-\\->#s',\n\t\t\t\t'#<.*?>#s',\n\t\t\t);\n\t\tbreak;\n\n\t\t// Whoa these look impressive!\n\t\t// The code to generate the following two regular expressions which match valid IPv4/IPv6 addresses\n\t\t// can be found in the develop directory\n\t\tcase 'ipv4':\n\t\t\treturn '#^(?:(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])\\.){3}(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])$#';\n\t\tbreak;\n\n\t\tcase 'ipv6':\n\t\t\treturn '#^(?:(?:(?:[\\dA-F]{1,4}:){6}(?:[\\dA-F]{1,4}:[\\dA-F]{1,4}|(?:(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])\\.){3}(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])))|(?:::(?:[\\dA-F]{1,4}:){5}(?:[\\dA-F]{1,4}:[\\dA-F]{1,4}|(?:(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])\\.){3}(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])))|(?:(?:[\\dA-F]{1,4}:):(?:[\\dA-F]{1,4}:){4}(?:[\\dA-F]{1,4}:[\\dA-F]{1,4}|(?:(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])\\.){3}(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])))|(?:(?:[\\dA-F]{1,4}:){1,2}:(?:[\\dA-F]{1,4}:){3}(?:[\\dA-F]{1,4}:[\\dA-F]{1,4}|(?:(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])\\.){3}(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])))|(?:(?:[\\dA-F]{1,4}:){1,3}:(?:[\\dA-F]{1,4}:){2}(?:[\\dA-F]{1,4}:[\\dA-F]{1,4}|(?:(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])\\.){3}(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])))|(?:(?:[\\dA-F]{1,4}:){1,4}:(?:[\\dA-F]{1,4}:)(?:[\\dA-F]{1,4}:[\\dA-F]{1,4}|(?:(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])\\.){3}(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])))|(?:(?:[\\dA-F]{1,4}:){1,5}:(?:[\\dA-F]{1,4}:[\\dA-F]{1,4}|(?:(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])\\.){3}(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])))|(?:(?:[\\dA-F]{1,4}:){1,6}:[\\dA-F]{1,4})|(?:(?:[\\dA-F]{1,4}:){1,7}:))$#i';\n\t\tbreak;\n\n\t\tcase 'url':\n\t\tcase 'url_inline':\n\t\t\t$inline = ($mode == 'url') ? ')' : '';\n\t\t\t$scheme = ($mode == 'url') ? '[a-z\\d+\\-.]' : '[a-z\\d+]'; // avoid automatic parsing of \"word\" in \"last word.http://...\"\n\t\t\t// generated with regex generation file in the develop folder\n\t\t\treturn \"[a-z]$scheme*:/{2}(?:(?:[a-z0-9\\-._~!$&'($inline*+,;=:@|]+|%[\\dA-F]{2})+|[0-9.]+|\\[[a-z0-9.]+:[a-z0-9.]+:[a-z0-9.:]+\\])(?::\\d*)?(?:/(?:[a-z0-9\\-._~!$&'($inline*+,;=:@|]+|%[\\dA-F]{2})*)*(?:\\?(?:[a-z0-9\\-._~!$&'($inline*+,;=:@/?|]+|%[\\dA-F]{2})*)?(?:\\#(?:[a-z0-9\\-._~!$&'($inline*+,;=:@/?|]+|%[\\dA-F]{2})*)?\";\n\t\tbreak;\n\n\t\tcase 'www_url':\n\t\tcase 'www_url_inline':\n\t\t\t$inline = ($mode == 'www_url') ? ')' : '';\n\t\t\treturn \"www\\.(?:[a-z0-9\\-._~!$&'($inline*+,;=:@|]+|%[\\dA-F]{2})+(?::\\d*)?(?:/(?:[a-z0-9\\-._~!$&'($inline*+,;=:@|]+|%[\\dA-F]{2})*)*(?:\\?(?:[a-z0-9\\-._~!$&'($inline*+,;=:@/?|]+|%[\\dA-F]{2})*)?(?:\\#(?:[a-z0-9\\-._~!$&'($inline*+,;=:@/?|]+|%[\\dA-F]{2})*)?\";\n\t\tbreak;\n\n\t\tcase 'relative_url':\n\t\tcase 'relative_url_inline':\n\t\t\t$inline = ($mode == 'relative_url') ? ')' : '';\n\t\t\treturn \"(?:[a-z0-9\\-._~!$&'($inline*+,;=:@|]+|%[\\dA-F]{2})*(?:/(?:[a-z0-9\\-._~!$&'($inline*+,;=:@|]+|%[\\dA-F]{2})*)*(?:\\?(?:[a-z0-9\\-._~!$&'($inline*+,;=:@/?|]+|%[\\dA-F]{2})*)?(?:\\#(?:[a-z0-9\\-._~!$&'($inline*+,;=:@/?|]+|%[\\dA-F]{2})*)?\";\n\t\tbreak;\n\t}\n\n\treturn '';\n}", "public function regexEscape($input, $regex = null, $replacement = '')\n {\n if (!isset($regex)) {\n return $input;\n }\n\n return preg_replace($regex, $replacement, $input);\n }", "public function getRegex()\n {\n return $this->regex;\n }", "public function getRegex()\n\t{\n\t\treturn $this->regex;\n\t}", "private function escape(string $string): string\n\t{\n\t\t$replacements = [\n\t\t\t'~\\n~' => '|n',\n\t\t\t'~\\r~' => '|r',\n\t\t\t'~([\\'\\|\\[\\]])~' => '|$1',\n\t\t];\n\t\treturn (string) preg_replace(array_keys($replacements), array_values($replacements), $string);\n\t}", "private static function getOperatorsMatchingRE(): string {\n return '/^\\s(' . implode('|', array_map('preg_quote', self::OPERATORS)) . ')\\s/';\n }", "static function escapeRegexReplacement($string)\n\t{\n\t\t$string = str_replace('\\\\', '\\\\\\\\', $string);\n\t\t$string = str_replace('$', '\\\\$', $string);\n\t\treturn $string;\n\t}", "private function stripRegexMetaChars($string) {\n\t\treturn str_replace(array('\\\\', '!', '^', '$', '(', ')', '[', ']', '{', '}', '|', '?', '+', '*', '.', '/', '&#039;', '#'),\n\t\t\t\t\t\tarray('\\\\\\\\', '\\!', '\\^', '\\$', '\\(', '\\)', '\\[', '\\]', '\\{', '\\}', '\\|', '\\?', '\\+', '\\*', '\\.', '\\/', '\\\\\\'', '\\#\"'),\n\t\t\t\t\t\t$string);\n\t}", "public function regex(): string{\n return $this->_regex;\n }", "private function regexPattern($data)\n {\n $instruction = match ($data['instruction']) {\n 'show' => '=',\n 'not_show' => '!'\n };\n\n $data['pattern'] = str_replace('/', '\\/', $data['pattern']);\n\n $regStr = match ($data['rule']) {\n 'contains' => '(?'.$instruction.'.*'.$data['pattern'].'.*)',\n 'specific_page' => match($instruction) {\n '!' => '^(?!'.$data['pattern'].')',\n '=' => '(?='.$data['pattern'].')'\n },\n 'starting_with' => '^(?'.$instruction.$data['pattern'].')',\n 'ending_with' => '(?'.$instruction.$data['pattern'].'$)'\n };\n\n return $regStr;\n }", "protected function _compileRegex(array $regexArray = array()) {\n\t\tusort($regexArray, function($a, $b) { return strlen($b) - strlen($a); });\n\t\treturn '/' . implode('|', $regexArray) . '/i';\n\t}", "private static function get_shortcode_regex( $tagnames = null ) {\n $tagregexp = join( '|', array_map('preg_quote', $tagnames) );\n \n // WARNING! Do not change this regex without changing do_shortcode_tag() and strip_shortcode_tag()\n // Also, see shortcode_unautop() and shortcode.js.\n return\n '\\\\[' // Opening bracket\n . '(\\\\[?)' // 1: Optional second opening bracket for escaping shortcodes: [[tag]]\n . \"($tagregexp)\" // 2: Shortcode name\n . '(?![\\\\w-])' // Not followed by word character or hyphen\n . '(' // 3: Unroll the loop: Inside the opening shortcode tag\n . '[^\\\\]\\\\/]*' // Not a closing bracket or forward slash\n . '(?:'\n . '\\\\/(?!\\\\])' // A forward slash not followed by a closing bracket\n . '[^\\\\]\\\\/]*' // Not a closing bracket or forward slash\n . ')*?'\n . ')'\n . '(?:'\n . '(\\\\/)' // 4: Self closing tag ...\n . '\\\\]' // ... and closing bracket\n . '|'\n . '\\\\]' // Closing bracket\n . '(?:'\n . '(' // 5: Unroll the loop: Optionally, anything between the opening and closing shortcode tags\n . '[^\\\\[]*+' // Not an opening bracket\n . '(?:'\n . '\\\\[(?!\\\\/\\\\2\\\\])' // An opening bracket not followed by the closing shortcode tag\n . '[^\\\\[]*+' // Not an opening bracket\n . ')*+'\n . ')'\n . '\\\\[\\\\/\\\\2\\\\]' // Closing shortcode tag\n . ')?'\n . ')'\n . '(\\\\]?)'; // 6: Optional second closing brocket for escaping shortcodes: [[tag]]\n }", "protected function getTemplateRegexPattern()\n {\n $parts = explode('@', $this->template);\n if (count($parts) === 2) {\n $parts[0] = str_replace('*', self::$nameRegex, $parts[0]);\n $topTLDIndex = strrpos($parts[1], '.');\n\n\n if ($topTLDIndex !== FALSE) {\n $secondTLD = substr($parts[1], 0, $topTLDIndex);\n $secondTLD = str_replace('*', self::$domainSecondTLDRegex, $secondTLD);\n\n $topTLD = substr($parts[1], $topTLDIndex);\n $topTLD = str_replace('*', self::$domainTLDRegex, $topTLD);\n $template = $parts[0] . '@' . $secondTLD . $topTLD;\n } else {\n $template = $parts[0] . '@' . $parts[1];\n }\n } else {\n $template = '';\n }\n\n //$template = str_replace(['.', '+', '-'], ['\\.', '\\+', '\\-'], $template);\n\n return sprintf('/^%s$/', $template);\n }", "public function getPattern(): string\n {\n return '/^\\S*'.implode('', $this->getRegexOptions()).'\\S*$/';\n }", "public static function escapePhp($str, $enclosure = '\"', $additional = ''): string\n\t{\n\t\t$w = '[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*';\n\t\t//Lookaround negative lookbehind (?<!ASD)\n\t\tif ($enclosure === \"'\")\n\t\t{\n\t\t\t$str = \\preg_replace(\"/((?<![\\\\\\\\])['{$additional}]{1})/\", \"\\\\\\\\$1\", $str);\n\t\t\t// \\${end of str} -> \\\\\n\t\t\t$str = \\preg_replace(\"/((?<![\\\\\\\\])\\\\\\\\)$/\", \"\\\\\\\\$1\", $str);\n\t\t}\n\t\telseif ($enclosure === '\"')\n\t\t{\n\t\t\t// \" -> \\\"\n\t\t\t$str = \\preg_replace(\"/((?<![\\\\\\\\])[\\\"{$additional}]{1})/\", \"\\\\\\\\$1\", $str);\n\t\t\t// $x -> \\$x\n\t\t\t$str = \\preg_replace(\"/((?<![\\\\\\\\])[\\$]{1}$w)/\", \"\\\\\\\\$1\", $str);\n\t\t\t// ${ -> \\${\n\t\t\t$str = \\preg_replace(\"/((?<![\\\\\\\\])[\\$]{1}\\s*\\{)/\", \"\\\\\\\\$1\", $str);\n\t\t\t// \\${end of str} -> \\\\\n\t\t\t$str = \\preg_replace(\"/((?<![\\\\\\\\])\\\\\\\\)$/\", \"\\\\\\\\$1\", $str);\n\t\t}\n\t\telseif ($enclosure === '<<<')\n\t\t{\n\t\t\t// $x -> \\$x\n\t\t\t$str = \\preg_replace(\"/((?<![\\\\\\\\])[\\$]{1}$w)/\", \"\\\\\\\\$1\", $str);\n\t\t\t// ${ -> \\${\n\t\t\t$str = \\preg_replace(\"/((?<![\\\\\\\\])[\\$]{1}\\s*\\{)/\", \"\\\\\\\\$1\", $str);\n\t\t}\n\n\t\treturn $str;\n\t}", "function buildRegexFromParsed(array $parts)\n {\n $regex = '';\n\n // [0 => ['_literal_' => 'localhost'], 1=>['_optional' => ..] ..]\n foreach ($parts as $parsed) {\n $definition_name = key($parsed);\n $definition_value = $parsed[$definition_name];\n // $parsed can also have extra parsed data options\n // _parameter_ String(3) => tld \\\n // tld String(4) => .com\n switch ($definition_name) {\n case '_token_':\n case '_literal_':\n $regex .= preg_quote($definition_value);\n break;\n\n case '_parameter_':\n $groupName = '?P<' . $definition_value . '>';\n\n if (isset($parsed[$definition_value])) {\n // Delimiter: localhost:port{{\\d+}}\n $regex .= '(' . $groupName . $parsed[$definition_value] . ')';\n } else{\n $regex .= '(' . $groupName . '[^.]+)';\n }\n\n break;\n\n case '_optional_':\n $regex .= '(?:' . buildRegexFromParsed($definition_value) . ')?';\n break;\n }\n }\n\n return $regex;\n }", "public static function translateRegex( $regex )\n {\n if ( substr( $regex, 0, 1 ) == '#' )\n return $regex;\n else\n return '#^' . str_replace( self::$_REGEX_WILDCARDS, self::$_REGEX_WCREPLACE, str_replace( self::$_REGEX_WSAVE, self::$_REGEX_WILDCARDS, str_replace( self::$_REGEX_ESCAPED, self::$_REGEX_UNESCAPED, str_replace( self::$_REGEX_UNESCAPED, self::$_REGEX_ESCAPED, str_replace( self::$_REGEX_WILDCARDS, self::$_REGEX_WSAVE, $regex ) ) ) ) ) . '$#';\n }", "private function moduleNameToRegex()\n {\n // find all backslashes (\\) that are NOT followed by another \\ and replace them with \\\\ (two of them)\n return preg_replace('#\\\\\\\\(?!\\\\\\\\)#', '\\\\\\\\\\\\\\\\', $this->module);\n }", "public function getRegex() {\n\t\t$spec = self::$specs[$this->id];\n\t\treturn array_value($spec, \"regex\", \"\");\n\t}", "public static function peregi_replace ($pattern, $replace, $string)\r\n\t{\r\n\t\t// $pattern = str_replace ('[[:space:]]', '\\s', $pattern);\r\n\t\t$preg = '/' . addcslashes ($pattern, '/') . '/i';\r\n\t\t$preplace = preg_replace ('/\\x5c(\\d)/', '\\$$1', $replace);\t// \\x5c is a backslash and \\d is number, i.e. \\2 gets converted to $2\r\n\t\treturn preg_replace ($preg, $preplace, $string);\r\n\t}", "public function getRegularExpression()\n {\n return '/(\\b([Gg][Ii][Rr] 0[Aa]{2})|((([A-Za-z][0-9]{1,2})|(([A-Za-z][A-Ha-hJ-Yj-y][0-9]{1,2})|(([A-Za-z][0-9][A-Za-z])|([A-Za-z][A-Ha-hJ-Yj-y][0-9][A-Za-z]?))))\\s?[0-9][A-Za-z]{2})\\b)/um';\n }", "private function fixRegex(string $str): string {\n $output = '';\n\n $escaped = FALSE;\n for ($i = 0, $max = mb_strlen($str); $i < $max; $i++) {\n $char = $str[$i];\n if ($char === '/' && !$escaped && $i > 0) {\n $output .= '\\\\';\n }\n $escaped = $char === '\\\\';\n $output .= $char;\n }\n\n return $output;\n }", "public function getCustomRegex(): ?string\n {\n return $this->customRegex ?? null;\n }", "function _get_wptexturize_split_regex($shortcode_regex = '')\n {\n }", "public function getPattern();", "public function getPattern();", "public static function convertGlobToRegEx(string $globPattern): string\n {\n // Remove beginning and ending * globs because they're useless\n $globPattern = trim($globPattern, '*');\n $escaping = false;\n $inCurrent = 0;\n $chars = str_split($globPattern);\n $regexPattern = '';\n\n foreach ($chars as $currentChar) {\n switch ($currentChar) {\n case '*':\n $regexPattern .= ($escaping ? '\\\\*' : '.*');\n $escaping = false;\n break;\n\n case '?':\n $regexPattern .= ($escaping ? '\\\\?' : '.');\n $escaping = false;\n break;\n\n case '.':\n case '(':\n case ')':\n case '+':\n case '|':\n case '^':\n case '$':\n case '@':\n case '%':\n $regexPattern .= '\\\\' . $currentChar;\n $escaping = false;\n break;\n\n case '\\\\':\n if ($escaping) {\n $regexPattern .= '\\\\\\\\';\n $escaping = false;\n } else {\n $escaping = true;\n }\n break;\n\n case '{':\n if ($escaping) {\n $regexPattern .= '\\\\{';\n } else {\n $regexPattern = '(';\n $inCurrent++;\n }\n $escaping = false;\n break;\n\n case '}':\n if ($inCurrent > 0 && !$escaping) {\n $regexPattern .= ')';\n $inCurrent--;\n } elseif ($escaping) {\n $regexPattern = '\\\\}';\n } else {\n $regexPattern = '}';\n }\n $escaping = false;\n break;\n\n case ',':\n if ($inCurrent > 0 && !$escaping) {\n $regexPattern .= '|';\n } elseif ($escaping) {\n $regexPattern .= '\\\\,';\n } else {\n $regexPattern = ',';\n }\n break;\n default:\n $escaping = false;\n $regexPattern .= $currentChar;\n }\n }\n\n return $regexPattern;\n }", "public function splitByRegex($delimiterPattern, $limit = null, $flags = null) {\n if ($limit === null) {\n $limit = -1;\n }\n\n if ($flags === null) {\n $flags = 0;\n }\n\n return self::fromArray(preg_split($delimiterPattern, $this->rawString, $limit, $flags));\n }", "function parse_php_string_simple($str)\n\n{\n\n return '<span class=\"php_string\">'.preg_replace('#\\\\\\\\([\\\\\\\\\\'])#', '<span class=\"php_string_escape\">$0</span>', htmlspecialchars(str_replace('\\\\\"', '\"', $str))).'</span>';\n\n}", "private function escape ($string, $regex='@', $reconnect_attempt = FALSE) {\n\t\tif ($reconnect_attempt) {\n\t\t\t// If the connection is lost, try to reconnect.\n\t\t\tif ( !isset( $this->dbcon ) || ! $this->dbcon ) {\n\t\t\t\t$this->db_connect();\n\t\t\t}\n\t\t}\n\t\tif (is_string($string)) {\n\t\t\t$string = mysqli_real_escape_string($this->dbcon, $string);\n\t\t\t// $string = addcslashes($string, '%_');\n\t\t\t$string = \"'\" . str_replace('@', $string, $regex) . \"'\";\n\t\t}\n\t\treturn $string;\n\t}", "public function get_regexp(){\n\t\treturn $this->get_regexp();\n\t}", "protected static function getRegexPattern()\n {\n return sprintf(\"/^(%s@%s\\.%s)$/\", self::$nameRegex, self::$domainSecondTLDRegex, self::$domainTLDRegex);\n }", "public function get_clean_regex ($part) {\n\t\treturn '/' . preg_quote($this->get_clean_macro($part), '/') . '/';\n\t}", "public function getPattern(): string;", "public function getPattern(): string;", "function get_preg_expression($mode)\n{\n\tswitch ($mode)\n\t{\n\t\tcase 'url':\n\t\tcase 'url_inline':\n\t\t\t$inline = ($mode == 'url') ? ')' : '';\n\t\t\t$scheme = ($mode == 'url') ? '[a-z\\d+\\-.]' : '[a-z\\d+]'; // avoid automatic parsing of \"word\" in \"last word.http://...\"\n\t\t\t// generated with regex generation file in the develop folder\n\t\t\treturn \"[a-z]$scheme*:/{2}(?:(?:[a-z0-9\\-._~!$&'($inline*+,;=:@|]+|%[\\dA-F]{2})+|[0-9.]+|\\[[a-z0-9.]+:[a-z0-9.]+:[a-z0-9.:]+\\])(?::\\d*)?(?:/(?:[a-z0-9\\-._~!$&'($inline*+,;=:@|]+|%[\\dA-F]{2})*)*(?:\\?(?:[a-z0-9\\-._~!$&'($inline*+,;=:@/?|]+|%[\\dA-F]{2})*)?(?:\\#(?:[a-z0-9\\-._~!$&'($inline*+,;=:@/?|]+|%[\\dA-F]{2})*)?\";\n\t\tbreak;\n\n\t\tcase 'www_url':\n\t\tcase 'www_url_inline':\n\t\t\t$inline = ($mode == 'www_url') ? ')' : '';\n\t\t\treturn \"www\\.(?:[a-z0-9\\-._~!$&'($inline*+,;=:@|]+|%[\\dA-F]{2})+(?::\\d*)?(?:/(?:[a-z0-9\\-._~!$&'($inline*+,;=:@|]+|%[\\dA-F]{2})*)*(?:\\?(?:[a-z0-9\\-._~!$&'($inline*+,;=:@/?|]+|%[\\dA-F]{2})*)?(?:\\#(?:[a-z0-9\\-._~!$&'($inline*+,;=:@/?|]+|%[\\dA-F]{2})*)?\";\n\t\tbreak;\n\n\t\tcase 'relative_url':\n\t\tcase 'relative_url_inline':\n\t\t\t$inline = ($mode == 'relative_url') ? ')' : '';\n\t\t\treturn \"(?:[a-z0-9\\-._~!$&'($inline*+,;=:@|]+|%[\\dA-F]{2})*(?:/(?:[a-z0-9\\-._~!$&'($inline*+,;=:@|]+|%[\\dA-F]{2})*)*(?:\\?(?:[a-z0-9\\-._~!$&'($inline*+,;=:@/?|]+|%[\\dA-F]{2})*)?(?:\\#(?:[a-z0-9\\-._~!$&'($inline*+,;=:@/?|]+|%[\\dA-F]{2})*)?\";\n\t\tbreak;\n\t}\n\n\treturn '';\n}", "private static function REGEX(): string{\n\t\tif(self::$REGEX === \"\"){\n\t\t\tself::$REGEX = \"/(?:\" . preg_quote(\"{\") . \")((?:[A-Za-z0-9_\\-]{2,})(?:\\.[A-Za-z0-9_\\-]+)+)(?:\" . preg_quote(\"}\") . \")/\";\n\t\t}\n\n\t\treturn self::$REGEX;\n\t}", "public static function syntaxPattern(): string {\n\t\t$statementOpen = preg_quote(Delimiters::STATEMENT_OPEN);\n\t\t$statementClose = preg_quote(Delimiters::STATEMENT_CLOSE);\n\n\t\treturn $statementOpen . '\\s*' .\n\t\t\t\t'(?P<call>[\\w\\/\\-]+)\\s*(?P<callOptions>\\{.*?\\})?' .\n\t\t\t\t'\\s*' . $statementClose;\n\t}", "function parse_regex($s, $boundaryChars = '\\/#-') {\n\n $pattern = '/^([' . $boundaryChars . '])(.*)\\1([i]*)/i';\n\n if (preg_match($pattern, $s, $m)) {\n $result = array('pattern' => $m[2], 'flags' => strtolower($m[3]));\n return $result;\n }\n\n return false;\n }", "private static function reverse_preg_match_array($string, $regex_array, $also_match=array()){\n\t\t\n\t\t\t// Create an empty array to store the matches.\n\t\t\t$matches = array();\n\t\t\t\n\t\t\t// For each string in the regex array:\n\t\t\tforeach($regex_array as $regex){\n\t\t\t\t\n\t\t\t\t// Copy the regex to a new variable.\n\t\t\t\t$new_regex = $regex;\n\t\t\t\t\n\t\t\t\t// For each $also_match,\n\t\t\t\tforeach($also_match as $match)\n\t\t\t\t\t// modify the regex by substituting \"anything and everything\" for each $also_match.\n\t\t\t\t\t$new_regex = preg_replace($match, '.*?', $new_regex);\n\t\t\t\t\n\t\t\t\t// If the user's original request matches the modified regex,\n\t\t\t\tif(preg_match(\"#^$new_regex$#\", $string))\n\t\t\t\t\n\t\t\t\t\t// add the original regex (i.e. the route as entered by us into FrankJunior) to the array of matches.\n\t\t\t\t\t$matches[] = $regex;\n\t\t\t}\n\t\t\t\t\n\t\t\tif(count($matches) > 0)\n\t\t\t\treturn $matches;\n\t\t\telse\n\t\t\t\treturn false;\n\t\t}", "public static function regex_replace(\n string $str,\n string $pattern,\n string $replacement,\n string $options = '',\n string $delimiter = '/'\n ): string {\n if ($options === 'msr') {\n $options = 'ms';\n }\n\n // fallback\n if (!$delimiter) {\n $delimiter = '/';\n }\n\n return (string) \\preg_replace(\n $delimiter . $pattern . $delimiter . 'u' . $options,\n $replacement,\n $str\n );\n }", "private static function convertPattern($pattern) {\n\t\tif (preg_match('/^glob:(.+)$/', $pattern, $m)) {\n\t\t\t// TODO real glob support\n\t\t\treturn Files::regex($m[1]);\n\t\t} else if (preg_match('/^(?:re|regex):(.+)$/', $pattern, $m)) {\n\t\t\tif (preg_match('@^/.+/[imsxeADSUXJu]*$@', $m[1])) {\n\t\t\t\treturn $m[1];\n\t\t\t} else {\n\t\t\t\treturn '/' . addcslashes($m[1], '/') . '/i';\n\t\t\t}\n\t\t\treturn $m[1];\n\t\t} else {\n\t\t\treturn $pattern;\n\t\t}\n\t}", "protected function get_shortcode_regex($tagnames = null) { //+\n\t\tif (empty($tagnames)) {\n\t\t\t$tagnames = array_keys($this->arShortcodes);\n\t\t}\n\t\t$tagregexp = join('|', array_map('preg_quote', $tagnames));\n\t\n\t\t// WARNING! Do not change this regex without changing do_shortcode_tag() and strip_shortcode_tag()\n\t\t// Also, see shortcode_unautop() and shortcode.js.\n\t\treturn\n\t\t\t '\\\\[' // Opening bracket\n\t\t\t. '(\\\\[?)' // 1: Optional second opening bracket for escaping shortcodes: [[tag]]\n\t\t\t. \"($tagregexp)\" // 2: Shortcode name\n\t\t\t. '(?![\\\\w-])' // Not followed by word character or hyphen\n\t\t\t. '(' // 3: Unroll the loop: Inside the opening shortcode tag\n\t\t\t. '[^\\\\]\\\\/]*' // Not a closing bracket or forward slash\n\t\t\t. '(?:'\n\t\t\t. '\\\\/(?!\\\\])' // A forward slash not followed by a closing bracket\n\t\t\t. '[^\\\\]\\\\/]*' // Not a closing bracket or forward slash\n\t\t\t. ')*?'\n\t\t\t. ')'\n\t\t\t. '(?:'\n\t\t\t. '(\\\\/)' // 4: Self closing tag ...\n\t\t\t. '\\\\]' // ... and closing bracket\n\t\t\t. '|'\n\t\t\t. '\\\\]' // Closing bracket\n\t\t\t. '(?:'\n\t\t\t. '(' // 5: Unroll the loop: Optionally, anything between the opening and closing shortcode tags\n\t\t\t. '[^\\\\[]*+' // Not an opening bracket\n\t\t\t. '(?:'\n\t\t\t. '\\\\[(?!\\\\/\\\\2\\\\])' // An opening bracket not followed by the closing shortcode tag\n\t\t\t. '[^\\\\[]*+' // Not an opening bracket\n\t\t\t. ')*+'\n\t\t\t. ')'\n\t\t\t. '\\\\[\\\\/\\\\2\\\\]' // Closing shortcode tag\n\t\t\t. ')?'\n\t\t\t. ')'\n\t\t\t. '(\\\\]?)'; // 6: Optional second closing brocket for escaping shortcodes: [[tag]]\n\t}", "function map_to_regex($matches) {\n\t\tif ($this->hasAllCapture) return '';\n\n\t\t$this->map[] = $matches[2];\n\t\tif ($matches[1] == '*') {\n\t\t\t$this->hasAllCapture = true;\n\t\t\treturn '/?(.*)';\n\t\t} else if ($matches[1] != ':') {\n\t\t\treturn '/?('.$matches[2].')';\n\t\t}\n\t\t\n\t\tif (array_key_exists($matches[2],$this->defaults) && is_null($this->defaults[$matches[2]])) {\n\t\t\treturn '/?([^\\/]*)';\n\t\t} else {\n\t\t\treturn '/([^\\/]+)';\n\t\t}\n\t}", "public function __toString() {\n\t\treturn $this->getRegex();\n\t}", "public static function toRegularString($string) {\n if (!is_string($string))\n return null;\n return mysql_real_escape_string($string);\n }", "public function patternFromRegex($line)\n {\n // WTF need to escape the delimiter safely\n $pattern = '#'.preg_replace('/((?:\\\\\\\\\\\\\\\\)*)(\\\\\\\\?)#/', '\\1\\2\\2\\\\#', $line).'#';\n\n return array($pattern, false, true);\n }", "public static function toRegularString($string)\n {\n if (!is_string($string))\n return null;\n return mysql_real_escape_string($string);\n }", "function reverse_order_substr_preg_replace($pattern, $part_to_change_preg_order, $code, $replacement_to_eval) {\r\n\t\t//var_dump('/' . str_replace(\"'\", \"\\\\'\", $pattern) . '/is', str_replace(\"'\", \"\\\\'\", $pattern), $pattern);\r\n\t\tpreg_match_all('/' . $pattern . '/is', $code, $matches, PREG_OFFSET_CAPTURE);\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[$part_to_change_preg_order][$counter][0];\r\n\t\t\t$offset = $matches[0][$counter][1];\r\n\t\t\t//var_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\t//var_dump($part_to_change, $replacement);\r\n\t\t\t$code = substr($code, 0, $offset) . $replacement . substr($code, $offset + strlen($full_match));\r\n\t\t\t$counter--;\r\n\t\t}\r\n\t\treturn $code;\r\n\t}", "function to_mysql_regex($pattern) {\n $pattern = str_replace('\\\\(', '[(]', $pattern);\n $pattern = str_replace('\\\\)', '[)]', $pattern);\n return $pattern;\n }", "abstract function regex(): array;", "public function getStringPattern()\n {\n return $this->stringPattern;\n }", "public function regex() {\r\n // split uri\r\n $arr = preg_split('@/@', $this->uri, NULL, PREG_SPLIT_NO_EMPTY);\r\n\r\n $regex = null;\r\n foreach ($arr as $ar) {\r\n // Replace dynamic with regex\r\n $regex = $regex.'\\/'.preg_replace('/\\{(.*?)\\}/', '[0-9A-Za-z]++', $ar);\r\n }\r\n\r\n $this->regex = '/^'.$regex.'$/';\r\n }", "public function getDefaultRegExp();", "public function __toString()\n\t{\n\t\treturn $this->regex;\n\t}", "protected static function replaceWildcards($regex)\n\t{\n\t\tpreg_match_all(chr(1) . '\\(\\\\*([a-z][a-zA-Z0-9]*)\\)' . chr(1), $regex, $matches, PREG_SET_ORDER);\n\n\t\tforeach ($matches as $match)\n\t\t{\n\t\t\t$name = $match[1];\n\n\t\t\t$regex = str_replace(\"(*{$name})\", \"(?P<{$name}>.*)\", $regex);\n\t\t}\n\n\t\treturn $regex;\n\t}", "public function preg()\n {\n if(empty($this->preg))\n {\n $this->preg = new Preg();\n }\n\n return $this->preg;\n }", "public static function getRegex($Name = 'uri-spec');", "public function getPattern()\n\t{\n\t\t$string = $this->getViewState('Pattern','');\n\n\t\t$pattern = null;\n\n\t\t//try the subpattern of \"date time\" presets\n\t\t$subpatterns = explode(' ',$string,2);\n\t\t$datetime = array();\n\t\tif(count($subpatterns)==2)\n\t\t{\n\t\t\t$datetime[] = $this->getPreset($subpatterns[0]);\n\t\t\t$datetime[] = $this->getPreset($subpatterns[1]);\n\t\t}\n\n\t\t//we have a good subpattern\n\t\tif(count($datetime) == 2\n\t\t\t&& strlen($datetime[0]) == 1\n\t\t\t&& strlen($datetime[1]) == 1)\n\t\t{\n\t\t\t$pattern = $datetime;\n\t\t}\n\t\telse //no subpattern, try the presets\n\t\t\t$pattern = $this->getPreset($string);\n\n\t\t//no presets found, use the string as the pattern\n\t\t//and let the DateFormat handle it.\n\t\tif($pattern===null)\n\t\t\t$pattern = $string;\n\t\tif (!is_array($pattern) && strlen($pattern) == 0)\n\t\t\t$pattern = null;\n\t\treturn $pattern;\n\t}", "private function getRegularExpressionWithoutNamedGroups()\r\n {\r\n $retVal = $this->getRegularExpression();\r\n\r\n $retVal = preg_replace( '/\\?P<\\w+>/', '', $retVal );\r\n\r\n return $retVal;\r\n }", "public function getPattern()\n {\n return \"/{(extends|extend|include|includes)(\\s*)\\\"(\\w.*?)\\\"(?:,(\\s*)(.*?))?}/is\";\n }" ]
[ "0.6602519", "0.6337103", "0.5803064", "0.57774013", "0.5723809", "0.5645251", "0.56426895", "0.5634352", "0.56203336", "0.5583451", "0.55652314", "0.5496517", "0.5408959", "0.5368722", "0.53201616", "0.527659", "0.52755326", "0.5224181", "0.52211595", "0.51976997", "0.5182774", "0.5177444", "0.51567507", "0.514806", "0.51263916", "0.50963026", "0.50963026", "0.506958", "0.506703", "0.5064232", "0.503751", "0.5023584", "0.5002517", "0.50004435", "0.49756777", "0.49756777", "0.49721462", "0.49478298", "0.49464127", "0.49451306", "0.4913788", "0.49062568", "0.49057996", "0.48999777", "0.48872674", "0.48868477", "0.48738706", "0.48599875", "0.4856445", "0.48479435", "0.48447192", "0.48361644", "0.4820437", "0.48180467", "0.48115098", "0.48074183", "0.47773972", "0.4758711", "0.47079104", "0.46710703", "0.4664504", "0.46584997", "0.4650662", "0.46481827", "0.46481827", "0.46459925", "0.46335173", "0.46237567", "0.46179083", "0.45981383", "0.45967627", "0.4593756", "0.45918605", "0.45918605", "0.45911413", "0.45767346", "0.45652163", "0.45531964", "0.45520455", "0.4541879", "0.4541348", "0.45313418", "0.45101836", "0.44915518", "0.44897234", "0.44822246", "0.44681293", "0.44599262", "0.44592193", "0.44518372", "0.44517586", "0.44498372", "0.44313055", "0.44284216", "0.44248244", "0.44245476", "0.44210428", "0.43871376", "0.438615", "0.43797418" ]
0.7747807
0
SyntaxChecking an Unknown Pattern Argument Return an error message if the given pattern argument or its underlying regular expression are not syntactically valid. Otherwise (if they are valid), FALSE is returned.
public static function patternError(string $pattern) : bool { /* To tell if the pattern has errors, we simply try to use it. To detect and capture the error is not so simple, especially if we want to be sociable and not tramp on global state (e.g., the value of $php_errormsg). So, if 'track_errors' is on, we preserve the $php_errormsg value and restore it later. If 'track_errors' is not on, we turn it on (because we need it) but turn it off when we're done. */ if ($old_track = ini_get('track_errors')) $old_message = isset($php_errormsg) ? $php_errormsg : false; else ini_set('track_errors', 1); /* We're now sure that track_errors is on. */ unset($php_errormsg); @preg_match($pattern, ''); /*actually give the pattern a try! */ $return_value = isset($php_errormsg) ? $php_errormsg : false; /* We've now captured what we need; restore global state to what it was. */ if ($old_track) $php_errormsg = isset($old_message) ? $old_message : false; else ini_set('track_errors', 0); return $return_value; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "static function matchesRegularExpression($pattern)\n {\n try {\n return call_user_func_array('PHPUnit_Framework_Assert::matchesRegularExpression', func_get_args());\n } catch (\\Exception $e) {\n self::callSlack($e, debug_backtrace()[1]);\n }\n }", "protected function testPregPattern(string $pattern): string\n {\n if (false === @preg_match('~' . $pattern . '~', \"\")) {\n throw new Exception\\InvalidArgumentException(\n sprintf(\n 'Invalid regular expression pattern `%s` in options',\n $pattern\n )\n );\n }\n\n return $pattern;\n }", "function preg_test(string $pattern, string $subject): bool\n{\n $res =@ preg_match($pattern, $subject);\n\n // Act as original.\n if ($res === false) {\n $message = preg_error_message(func: 'preg_match');\n trigger_error(sprintf('%s(): %s', __function__, $message), E_USER_WARNING);\n }\n\n return (bool) $res;\n}", "public static function isValidRegEx( $pattern ) {\n\t\t// validate first for allowd delimiters '/%|' and flags\n\t\tif ( !preg_match( '/^([\\\\/\\\\|%]).*\\\\1[imsSuUx]*$/', $pattern ) ) {\n\t\t\treturn false;\n\t\t}\n\t\tAtEase::suppressWarnings(); // instead of using the evil @ operator!\n\t\t$isValid = preg_match( $pattern, ' ' ) !== false; // preg_match returns false on error\n\t\tAtEase::restoreWarnings();\n\t\treturn $isValid;\n\t}", "private function matchesPattern($pattern)\n {\n if (preg_match('/' . $pattern . '/u', $this->str)) {\n return true;\n } else {\n return false;\n }\n }", "public function isValid($pattern, $message) {\n if (!preg_match($pattern, $message)) {\n return FALSE;\n }\n return TRUE;\n }", "static public function is_pattern($pattern)\n\t{\n\t\treturn (strpos($pattern, '<') !== false) || (strpos($pattern, ':') !== false);\n\t}", "static public function is_pattern(string $pattern): bool\n\t{\n\t\treturn (strpos($pattern, '<') !== false) || (strpos($pattern, ':') !== false) || (strpos($pattern, '*') !== false);\n\t}", "public function match($pattern)\n {\n if (!is_string($pattern)) {\n throw new InvalidStringException('pattern', $pattern);\n } elseif (empty($pattern)) {\n throw new InvalidNotEmptyException('pattern');\n }\n\n if (!is_string($this->value)) {\n throw new InvalidStringException($this->name, $this->value);\n }\n\n // God please sorry for this @\n $checkResult = @preg_match($pattern, $this->value);\n\n if ((preg_last_error() !== PREG_NO_ERROR) || ($checkResult === false)) {\n throw new InvalidRegExpPatternException('pattern', $pattern);\n }\n\n if ($checkResult === 0) {\n throw new StringNotMatchRegExpException($this->name, $this->value, $pattern);\n }\n\n return $this;\n }", "public function matches(Pattern $pattern);", "function testInput($input_text, $pattern) {\n\tif (!preg_match($pattern, $input_text)) {\n\t\treturn null;\n\t} else {\n\t\treturn $input_text;\n\t}\n}", "static function assertRegExp($pattern, $string, $message = '')\n {\n try {\n return call_user_func_array('PHPUnit_Framework_Assert::assertRegExp', func_get_args());\n } catch (\\Exception $e) {\n self::callSlack($e, debug_backtrace()[1]);\n }\n }", "function regexValidation($input, $expected, $referenceName) {\r\n global $errorMessage;\r\n if(strlen($input) > 0 && !preg_match($expected, $input)) {\r\n $errorMessage .= \"*The $referenceName you entered does not appear to be valid.<br />\"; // $referenceName should be dynamically read.\r\n return false;\r\n }\r\n return true;\r\n }", "function check_for_errors(&$matcher) {\n if ($matcher->is_error_exists()) {\n $errors = $matcher->get_error_objects();\n foreach ($errors as $error) {\n if (is_a($error, 'preg_parsing_error')) { // error messages are displayed for parsing errors only\n echo 'Regex incorrect: '.$error->errormsg.'<br/>';\n $this->assertTrue(false);\n }\n }\n return true;\n }\n return false;\n }", "public function test_match_fromInvalidPatternWithoutVars()\n {\n $route = new Route('GET', '/home', 'test');\n $this->assertFalse(\n $route->match('GET', '/test'),\n 'match() must return true if URI pattern provided is the same as the one specified in constructor.'\n );\n }", "public static function validatePattern(TextBase $control, $pattern)\r\n\t{\r\n\t\tthrow new \\LogicException(':PATTERN validator is not applicable to TagInput.');\r\n\t}", "public function __invoke($subject, string $pattern) : bool {\n if (!in_array(gettype($subject), ['string', 'integer', 'double'])) {\n throw new InvalidArgumentException(sprintf(\n 'Regular expression matching can only be applied to strings, integers or doubles, got \"%s\".',\n gettype($subject)\n ));\n }\n\n $subject = (string) $subject;\n\n if (!preg_match($pattern, $subject)) {\n throw new InvalidArgumentException(sprintf(\n 'Subject \"%s\" did not match pattern \"%s\".',\n $subject,\n $pattern\n ));\n }\n\n return true;\n }", "public function patternMatch($pattern) {\r\n $result = new qti_variable('single', 'boolean', array('value' => false));\n \n if ($this->_isNull()) {\n $result->value = null;\n return result;\n }\n \n // TODO: What if the pattern contains a percent? Should be escaped\n $result->value = (preg_match('%' . $pattern . '%', $this->value) > 0);\n return $result;\r\n }", "function validateRegEx( $pattern, $subject )\n {\n $pattern = '/' . $pattern . '/';\n preg_match($pattern, $subject, $matches);\n return !empty($matches);\n }", "public function isMatch($pat) {\r\n $result = preg_match($pat, $this->contents /*, $matches*/);\r\n //var_dump($pat); // debug patterns\r\n //if ($pat == NULL) debug_print_backtrace();\r\n //var_dump($matches); // debug patterns\r\n //var_dump($result); // debug patterns\r\n //if ($matches == NULL) debug_print_backtrace();\r\n //if ($result === FALSE) debug_print_backtrace();\r\n return $result;\r\n }", "function hasValidFormat($u, $p){\n $pattern = \"/[<>]/\";\n if (preg_match($pattern, $u)){\n echo \"<p style='color:red;font-style:italic'>\".htmlentities($u).\" contains illegal characters. Try again.</p>\";\n return false;\n }\n else if (preg_match($pattern, $p)){\n echo \"<p style='color:red;font-style:italic'>Password contains illegal characters. Try again.</p>\";\n return false;\n }\n else {\n return true;\n }\n}", "public static function invalidPattern(string $pattern): self\n {\n return new self(\n \"Laravel Auto-Reg: The path-pattern \\\"$pattern\\\" is invalid. \"\n . \"Check the 'patterns' values in configs/\" . Settings::LARAVEL_CONFIG_NAME . \".php\"\n );\n }", "function validate($data)\n {\n if ($data == '') return TRUE;\n\n $pattern = isset($this->settings['vz_regulator_pattern']) ? '#' . str_replace('#', '\\#', $this->settings['vz_regulator_pattern']) . '#' : '';\n $hint = isset($this->settings['vz_regulator_hint']) ? $this->settings['vz_regulator_hint'] : '';\n\n if ($pattern == '' || preg_match($pattern, $data) > 0)\n {\n return TRUE;\n }\n else\n {\n return $hint;\n }\n }", "public function assertRegExp($pattern, $string, $message = null) {\n return $this->getScenario()->runStep(new \\Codeception\\Step\\Action('assertRegExp', func_get_args()));\n }", "public function assertRegExp($pattern, $string, $message = null) {\n return $this->getScenario()->runStep(new \\Codeception\\Step\\Action('assertRegExp', func_get_args()));\n }", "public function preg_match_PLAIN($pattern)\n\t{\n\t\treturn (bool)preg_match($pattern,$this->PLAIN);\n\t}", "public function validate(DomainAliasInterface $alias) {\n $pattern = $alias->getPattern();\n\n // 1) Check for at least one dot or the use of 'localhost'.\n // Note that localhost can specify a port.\n $localhost_check = explode(':', $pattern);\n if (substr_count($pattern, '.') == 0 && $localhost_check[0] != 'localhost') {\n return $this->t('At least one dot (.) is required, except when using <em>localhost</em>.');\n }\n\n // 2) Check that the alias only has one wildcard.\n $count = substr_count($pattern, '*') + substr_count($pattern, '?');\n if ($count > 1) {\n return $this->t('You may only have one wildcard character in each alias.');\n }\n // 3) Only one colon allowed, and it must be followed by an integer.\n $count = substr_count($pattern, ':');\n if ($count > 1) {\n return $this->t('You may only have one colon \":\" character in each alias.');\n }\n elseif ($count == 1) {\n $int = substr($pattern, strpos($pattern, ':') + 1);\n if (!is_numeric($int) && $int !== '*') {\n return $this->t('A colon may only be followed by an integer indicating the proper port or the wildcard character (*).');\n }\n }\n // 4) Check that the alias doesn't contain any invalid characters.\n // Check for valid characters, unless using non-ASCII domains.\n $non_ascii = $this->configFactory->get('domain.settings')->get('allow_non_ascii');\n if (!$non_ascii) {\n $check = preg_match('/^[a-z0-9\\.\\+\\-\\*\\?:]*$/', $pattern);\n if ($check == 0) {\n return $this->t('The pattern contains invalid characters.');\n }\n }\n // 5) The alias cannot begin or end with a period.\n if (substr($pattern, 0, 1) == '.') {\n return $this->t('The pattern cannot begin with a dot.');\n }\n if (substr($pattern, -1) == '.') {\n return $this->t('The pattern cannot end with a dot.');\n }\n\n // 6) Check that the alias is not a direct match for a registered domain.\n $check = preg_match('/[a-z0-9\\.\\+\\-:]*$/', $pattern);\n if ($check == 1 && $this->domainStorage->loadByHostname($pattern)) {\n return $this->t('The pattern matches an existing domain record.');\n }\n // 7) Check that the alias is unique across all records.\n if ($alias_check = $this->aliasStorage->loadByPattern($pattern)) {\n /** @var \\Drupal\\domain_alias\\DomainAliasInterface $alias_check */\n if ($alias_check->id() != $alias->id()) {\n return $this->t('The pattern already exists.');\n }\n }\n }", "public function throwSyntaxError(&$arguments)\n {\n $arguments = false;\n $error = substr($this->word, $this->c - 10, $this->c + 10);\n txtSQL::_error(E_USER_NOTICE, \"Syntax error near `$error`\");\n\n return true;\n }", "function validarNombre($variable, $pattern){\n if (preg_match($pattern, $variable)) {\n return \tTrue;\n }\n return false;\n }", "public function testPattern() {\r\n // Remove the following line when you implement this test.\r\n $p = '/(\\d+)\\s+(\\w+)/';\r\n $result = $this->reader->pattern($p);\r\n $this->assertEquals($result, $p);\r\n $p = $this->reader->pattern();\r\n $this->assertEquals($p, $result);\r\n \r\n $result = $this->reader->pattern(false); //disable pattern\r\n $this->assertFalse($result);\r\n }", "public function isValidRegex($pattern, $includesDelimiters = true)\n {\n if (!is_string($pattern)) {\n return false;\n }\n if ($pattern === '') {\n return $includesDelimiters ? false : true;\n }\n if (!$includesDelimiters) {\n $pattern = \"/{$pattern}/\";\n }\n set_error_handler(function () {}, -1);\n $result = @preg_match($pattern, 'X');\n restore_error_handler();\n\n return $result !== false;\n }", "static function assertNotRegExp($pattern, $string, $message = '')\n {\n try {\n return call_user_func_array('PHPUnit_Framework_Assert::assertNotRegExp', func_get_args());\n } catch (\\Exception $e) {\n self::callSlack($e, debug_backtrace()[1]);\n }\n }", "public function evaluateNullability(): bool\n {\n return 1 === preg_match($this->pattern, '', $matches);\n }", "function preg_match_names(string $pattern, string $subject, array|null &$match, int $flags = 0, int $offset = 0): int|false\n{\n $res =@ preg_match($pattern, $subject, $match, $flags, $offset);\n\n // Act as original.\n if ($res === false) {\n $message = preg_error_message(func: 'preg_match');\n trigger_error(sprintf('%s(): %s', __function__, $message), E_USER_WARNING);\n } else {\n // Select string (named) keys.\n $match = array_filter($match, 'is_string', 2);\n }\n\n return $res;\n}", "private static function isFileNamePatternMatch($name, $pattern, $options) {\n if (in_array($name, static::$excluded_file_names)) {\n return false;\n }\n\n $fnmatch_flags = 0;\n if ($options & GLOB_NOESCAPE) {\n $fnmatch_flags |= FNM_NOESCAPE;\n }\n\n return fnmatch($pattern, $name, $fnmatch_flags);\n }", "public function testInvalidRegexp()\n {\n $config = json_decode(sprintf($this->regexpConfigStub, '^Foo', '', 'false'), true);\n new Regexp($config);\n }", "public function regex($name, $pattern, $message = 'The creation date is invalid')\n {\n //Regex\n switch ($pattern)\n {\n case 'www':\n $value = '/^[0-9]{4}[-\\/](0[1-9]|1[12])[-\\/](0[1-9]|[12][0-9]|3[01])$/';\n break;\n \n case 'alias':\n $value = '/^[0-9a-zA-Z_-]++$/iD';\n break;\n\n \n default:\n $value = '/^[0-9]{4}[-\\/](0[1-9]|1[12])[-\\/](0[1-9]|[12][0-9]|3[01])$/';\n break;\n }\n\n \n $this->validation->add($name, new \\Phalcon\\Validation\\Validator\\Regex(array(\n 'pattern' => $value,\n 'message' => $message\n )));\n return $this;\n }", "public static function regexError(string $regex) : bool\n {\n return self::patternError(self::regexToPattern($regex));\n }", "protected function matches($pattern)\n {\n if (empty($pattern)) {\n return false;\n }\n $uri = $this->requestedUri->getUri();\n return preg_match($this->toRegExp($pattern), $uri) > 0;\n }", "function valid_input($myinput, $good_input) {\n if (preg_match(\"/$good_input/\", $myinput, $regs)) {\n return true;\n }\n else {\n return false;\n }\n}", "function valid_input($myinput, $good_input) {\n if (preg_match(\"/$good_input/\", $myinput, $regs)) {\n return true;\n }\n else {\n return false;\n }\n}", "public static function matchesPattern(string $str, string $pattern): bool\n {\n if (preg_match($pattern, $str)) {\n return true;\n }\n return false;\n }", "private function hasPatternString($aiml, $pattern)\n {\n $patterns = $aiml->getElementsByTagName('pattern');\n $nPatterns = $patterns->length;\n\n for ($i = 0; $i < $nPatterns; $i++) {\n $aimlPattern = $patterns->item($i);\n if ($this->string->stringcmp($aimlPattern->textContent, $pattern) == 0) {\n return $aimlPattern->parentNode;\n }\n }\n return false;\n }", "public function validate($entity)\n {\n if ($this->empty && $this->isEmpty($entity)) return $this->reason = true;\n if (!$this->pattern) throw new Core\\Exception($this, 'ERR_VALIDATOR_REGEXP_1');\n $this->reason = ['code' => 0, 'reason' => 'doesn\\'t match'];\n if ($this->inversion)\n {\n if (preg_match($this->pattern, $entity)) return false;\n }\n else\n {\n if (!preg_match($this->pattern, $entity)) return false;\n }\n return $this->reason = true;\n }", "public static function str_matches_pattern(string $str, string $pattern): bool\n {\n return (bool) \\preg_match('/' . $pattern . '/u', $str);\n }", "protected function fails($param, $value) {\r\n\t\treturn isset($this->options[$param]) && !preg_match('/' . $this->options[$param] . '/', $value);\r\n\t}", "function pregMatches(array $patterns, string $subject): bool\n{\n foreach ($patterns as $pattern) {\n if (preg_match($pattern, $subject) !== 1) {\n return false;\n }\n }\n return true;\n}", "static function is(string $s, string|array $patterns): bool {\n if (!$patterns) {\n return false;\n }\n foreach ((array) $patterns as $pattern) {\n if ($pattern === $s) {\n return true;\n }\n $pattern = preg_quote($pattern, '#');\n // Asterisks are translated into zero-or-more regular expression wildcards\n // to make it convenient to check if the strings starts with the given\n // pattern such as \"library/*\", making any string check convenient.\n $pattern = str_replace('\\*', '.*', $pattern);\n\n if (1 === preg_match('#^'.$pattern.'\\z#u', $s)) {\n return true;\n }\n }\n\n return false;\n }", "function str_is($pattern, $value)\n {\n return Str::is($pattern, $value);\n }", "public function beginsWithReturnsInvalidArgumentDataProvider() {}", "public function assertNotRegExp($pattern, $string, $message = null) {\n return $this->getScenario()->runStep(new \\Codeception\\Step\\Action('assertNotRegExp', func_get_args()));\n }", "public function assertNotRegExp($pattern, $string, $message = null) {\n return $this->getScenario()->runStep(new \\Codeception\\Step\\Action('assertNotRegExp', func_get_args()));\n }", "public function testSCAN_PATTERN_DECLARATION() {\n\t\t$pattern = \\TYPO3\\TypoScript\\Core\\Parser::SCAN_PATTERN_DECLARATION;\n\t\t$this->assertEquals(preg_match($pattern, 'include : source = \"resource\"'), 1, 'The SCAN_PATTERN_DECLARATION pattern did not match an include declaration.');\n\t\t$this->assertEquals(preg_match($pattern, 'include:source = \"resource\"'), 1, 'The SCAN_PATTERN_DECLARATION pattern did not match an include declaration without whitespaces.');\n\t\t$this->assertEquals(preg_match($pattern, 'namespace: cms = Test'), 1, 'The SCAN_PATTERN_DECLARATION pattern did not match an namespace declaration.');\n\t\t$this->assertEquals(preg_match($pattern, ' namespace: cms = Test'), 1, 'The SCAN_PATTERN_DECLARATION pattern did not match an namespace declaration whith leading whitespace.');\n\t\t$this->assertEquals(preg_match($pattern, 'ASDF namespace: cms = Test'), 0, 'The SCAN_PATTERN_DECLARATION pattern did match an namespace declaration whith leading text.');\n\t\t$this->assertEquals(preg_match($pattern, 'ASDF namespace: TYPO3.Neos = Foo'), 0, 'The SCAN_PATTERN_DECLARATION pattern did match an namespace declaration whith leading text.');\n\t\t$this->assertEquals(preg_match($pattern, '// This is a comment ...'), 0, 'The SCAN_PATTERN_DECLARATION pattern matched a comment.');\n\t}", "public function setPattern(\n string $pattern,\n string $exceptionMessage = self::DEFAULT_PATTERN_EXCEPTION_MESSAGE\n ): self\n {\n if ($this->pattern !== null) {\n throw new ParserConfigurationException(\n 'The pattern for AssertStringRegex has already been defined and cannot be overwritten'\n );\n }\n if (@preg_match($pattern, '') === false) {\n throw new ParserConfigurationException(\n 'An invalid regular expression was provided'\n );\n }\n $this->pattern = $pattern;\n $this->patternExceptionMessage = $exceptionMessage;\n\n return $this;\n }", "public static function doesNotMatchRegex($pattern)\n {\n return self::logicalNot(self::matchesRegex($pattern));\n }", "function check($params, $what) {\n\t\tif (!is_array($params)) {\n\t\t\treturn false;\n\t\t}\n\t\tforeach ($params as $param => $how) {\n\t\t\tif (!isset ($what[$param])) {\n\t\t\t\treturn $how;\n\t\t\t}\n\t\t\tif (function_exists($how)) {\n\t\t\t\tif (!$how ($what[$param])) {\n\t\t\t\t\treturn $how;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (isset ($this->rules[$how])) {\n\t\t\t\t\tif (!preg_match($this->rules[$how], $what[$param])) {\n\t\t\t\t\t\treturn $how;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t//regex per constant, gaaanz alt\n\t\t\t\t\tif (substr($how,0,1)=='/') {\n\t\t\t\t\t\tif (!preg_match($how, $what[$param])) {\n\t\t\t\t\t\t\treturn $this->getConstantName($how);\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t\tthrow new Exception('validateUtil: Dont know how to do '.$how);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}", "function is_validaliasname($name) {\n\tif (!preg_match(\"/(:word:)/\", $name))\n\treturn true;\n\telse\n\treturn false;\n}", "protected function check_label()\n {\n $regex = \"/^[a-zA-Z_\\-$&%*!?]{1}[a-zA-Z0-9_\\-$&%*!?]*$/\";\n\n $result = preg_match($regex, $this->token);\n\n if($result == 0 or $result == FALSE)\n {\n fwrite(STDERR, \"Error, expecting <label> function parameter! Line: \");\n fwrite(STDERR, $this->lineCount);\n fwrite(STDERR, \"\\n\");\n exit(23);\n } \n }", "function preg($pattern){\n return new Parser(['_call_preg', [$pattern]]);\n}", "public function matches($pattern)\n\t{\n\t\treturn (bool) preg_match('#^'.$pattern.'#', $this->string);\n\t}", "function testValidationWithoutARegexPattern() {\n $this->assertTrue($this->validator->validate('abc'));\n }", "public function is_registered($pattern_name)\n {\n }", "public static function assertDoesNotMatchRegularExpression(string $pattern, string $string, string $message = ''): void\n {\n static::assertThat(\n $string,\n new LogicalNot(\n new RegularExpression($pattern)\n ),\n $message\n );\n }", "public static function validatePattern($value)\n {\n $pattern = \"#^[a-z0-9\\.]+$#i\";\n\n return (bool) preg_match($pattern, $value);\n }", "function is_regexp($regexp){\n return (@preg_match($regexp, null) !== false);\n}", "function isValidName ($name)\r\n{\r\n global $cf_reservedpattern;\r\n\r\n $reservedpattern = $cf_reservedpattern ? $cf_reservedpattern : '[_a-z]{0,1}([\\d]+)';\r\n\r\n if (preg_match(\"%^\".$reservedpattern.\"$%i\", $name, $matches))\r\n return FALSE; // reserved - not permitted\r\n\r\n $pattern = '[a-z\\d][_a-z\\d]{2,23}';\r\n if (preg_match('%^'.$pattern.'$%i', $name))\r\n if (!preg_match(\"%^(api|com|biz|def|gov|net|org|wap|web|www|gamma|mobile|mygamma|buzzcity|netbeacon)[\\d]*$%i\", $name))\r\n return TRUE;\r\n\r\n return FALSE; // not permitted\r\n}", "static private function regExpFindMatch($patterns, $value) {\r\n foreach($patterns as $pattern) {\r\n assert('preg_match($pattern, $value)!==FALSE /* Invalid SimpleRDF pattern: '.str_replace('*/', '*[ESC]/', $pattern.', value: '.$value).' */');\r\n if (preg_match($pattern, $value)) {\r\n\treturn true;\r\n }\r\n }\r\n\r\n return false;\r\n }", "protected function validateCommand() : bool\n {\n $format = $this->argument('format');\n\n if (!$this->isValidFormat($format)) {\n $this->error(\"Error: Format not supported.\");\n $this->info(\"Supported formats: \" . join(', ', array_keys(static::getFormatsMap())));\n return false;\n }\n\n return true;\n }", "protected function compile()\n {\n // return if compilation has been done before already\n if ($this->compiled) {\n return true;\n }\n\n // parse pattern\n $pattern = $this->urlPattern;\n while (strlen($pattern)) {\n if (preg_match('#^:([a-zA-z0-6_]+)#', $pattern, $match)) {\n // variable\n $name = $match[1];\n $this->tokens[] = array('variable', $name);\n $this->variables[] = $name;\n\n $pattern = substr($pattern, strlen($match[0]));\n } else if (preg_match('#^(?:/|\\.|\\-)#', $pattern, $match)) {\n // separator\n $this->tokens[] = array('separator', $match[0]);\n\n $pattern = substr($pattern, strlen($match[0]));\n } else if (preg_match('#^(.+?)(?:(?:/|\\.|\\-)|$)#', $pattern, $match)) {\n // text\n $text = $match[1];\n $this->tokens[] = array('text', $text);\n\n $pattern = substr($pattern, strlen($match[1]));\n } else {\n throw new InvalidArgumentException('Invalid pattern \"' . $this->urlPattern . '\" near \"' . $pattern . '\"!');\n }\n }\n\n // create regex\n $regex = '#^';\n for ($i = 0, $max = count($this->tokens); $i < $max; $i++) {\n $token = $this->tokens[$i];\n if ($token[0] == 'variable') {\n if (!isset($this->requirements[$token[1]])) {\n $this->requirements[$token[1]] = '[^/\\.\\-]+';\n }\n $regex .= '(?P<'.$token[1].'>'.$this->requirements[$token[1]].')';\n } else if ($token[0] == 'text' || $token[0] == 'separator') {\n if ($token[1] == '*') {\n if ($this->tokens[$i - 1] && $this->tokens[$i - 1][0] == 'separator') {\n $sep_regex = $this->tokens[$i - 1][1];\n } else {\n $sep_regex = '/';\n }\n $regex .= '(?:' . $sep_regex . '(?P<_star>.*))?';\n } else {\n if ($token[0] == 'separator' && $this->tokens[$i + 1] && $this->tokens[$i + 1][1] == '*') {\n\n } else {\n $regex .= $token[1];\n }\n }\n }\n }\n $regex .= '$#';\n\n // store the result\n $this->regex = $regex;\n\n // activate compiled flag\n $this->compiled = true;\n return true;\n }", "public static function assertMatchesRegularExpression(string $pattern, string $string, $message = ''): void\n {\n if (method_exists(get_parent_class(parent::class), __FUNCTION__)) {\n call_user_func([parent::class, __FUNCTION__], $pattern, $string, $message);\n } else {\n static::assertRegExp($pattern, $string, $message);\n }\n }", "function str_is($pattern, $value)\n\t{\n\t\treturn Illuminate\\Support\\Str::is($pattern, $value);\n\t}", "public function validate( $result )\n {\n if ( $result === \"\" )\n {\n return $this->default !== null;\n }\n return preg_match( $this->pattern, $result ) > 0;\n }", "protected function checkPattern(array $pattern)\n {\n foreach ($pattern as $request => $compared) {\n\n if (!$inputs = $this->getDataRequest($request)) {\n return false;\n }\n if (is_int(key($compared))) {\n $compared = [$compared];\n }\n\n foreach ($compared as $key => $compare) {\n if (!isset($inputs[$key])) {\n return false;\n }\n if ($compare === true/* && isset($inputs[$key])*/) {\n continue;\n }\n\n if ($this->checkPatternInternal($compare, $inputs[$key]) === false) {\n return false;\n }\n }\n }\n return true;\n }", "function rest_validate_json_schema_pattern($pattern, $value)\n {\n }", "protected function check_type()\n {\n $regex = \"/^int$|^bool$|^string$/\";\n\n $result = preg_match($regex, $this->token);\n\n if($result == 0 or $result == FALSE)\n {\n fwrite(STDERR, \"Error, expecting <type> function parameter! Line: \");\n fwrite(STDERR, $this->lineCount);\n fwrite(STDERR, \"\\n\");\n exit(23);\n } \n }", "function textFormat ($value){\n \n if(!preg_match(VALID_TEXT_FORMAT,$value)){\n return false;\n }\n \n return true;\n}", "private function CheckData($value, $pattern = 0, $params = 0){\n if($value && $pattern){\n $this->name = $value;\n $this->pattern = $pattern;\n\n if ($params){\n $this->array_of_params = $params;\n //print_r($this->array_of_params);\n }\n\n //$result = $this->Check($this->pattern); //проверяю паттерн на соответствие правилам\n\n //print_r(\"Pattern:\".$result); //Результат проверки паттерна. All right\n\n /*if($result){\n $checkname = $this->CheckName($this->name, $this->pattern);//здесь я проверяю валидность введенного имени\n //var_dump($checkname);\n return $checkname;\n }*/\n return 0;\n }\n\n return 0;\n }", "function match(string $string, string $pattern): bool\n{\n $specialCharacters = ['\\\\', '^', '$', '|', '?', '+', '(', ')', '[', '{'];\n $replacementCharacter = ['\\\\\\\\', '\\^', '\\$', '\\|', '\\?', '\\+', '\\(', '\\)', '\\[','\\{'];\n\n for($i = 0; $i < count($specialCharacters); $i++) {\n $pattern = str_replace($specialCharacters[$i], $replacementCharacter[$i], $pattern);\n }\n\n return preg_match(\"/^\".$pattern .\"$/\", $string);\n}", "public static function assertMatchesRegularExpression(string $pattern, string $string, string $message = ''): void\n {\n static::assertThat($string, new RegularExpression($pattern), $message);\n }", "protected function isValidFormat(string $format = null) : bool\n {\n $format = $format ?? $this->argument('format');\n\n $formatsMap = static::getFormatsMap();\n\n if (!key_exists($format, $formatsMap)) {\n return false;\n }\n\n return true;\n }", "public function validate($value) {\n return preg_match($this->options[\"pattern\"], $value) ? $value : Filter::ERR_INVALID;\n }", "public function setPattern($pattern) {}", "public function __construct( $pattern, $extension = NULL )\n {\n// Charcoal_ParamTrait::validateString( 1, $pattern );\n// Charcoal_ParamTrait::validateString( 2, $extension, TRUE );\n\n $this->pattern = $pattern;\n $this->extension = $extension;\n }", "function isValid(&$inMessage = '');", "#[@test, @expect(class= 'lang.IllegalArgumentException', withMessage= '/message/')]\n public function catchExpectedWithPatternMessage() {\n throw new IllegalArgumentException('Another message');\n }", "function errorHandler($errno, $errstr = '', $errfile = '', $errline = '') {\r\n\tglobal $regex_error;\r\n\t$regex_error = \"Regular Expression Error: $errstr\";\r\n\treturn true; // dont exec internal error handler\r\n}", "function ValidaPatente($patente){\n\t//elimino los posibles guones\n\t$value = str_replace(\"-\",\"\",$patente);\n \t//caracteres admitidos\n \t$regex = '/^[a-z]{2}[\\.\\- ]?[0-9]{2}[\\.\\- ]?[0-9]{2}|[b-d,f-h,j-l,p,r-t,v-z]{2}[\\-\\. ]?[b-d,f-h,j-l,p,r-t,v-z]{2}[\\.\\- ]?[0-9]{2}$/i';\n\t//valida formato\n\tif (preg_match($regex, $patente)){\n\t return \"\";\n\t}else{\n\t return \"Patente incorrecta o con formato incorrecto\";\n\t}\n}", "function check_reg($rule, $str) {\n global $permalinks;\n preg_match($permalinks[$rule],$str, $match);\n if (isset($match[0])) {\n return $match[0];\n }\n return false;\n}", "private static function matchPattern(array $patterns, string $subject): bool\n {\n foreach ($patterns as $pattern)\n {\n if (preg_match($pattern, $subject)===1)\n {\n return true;\n }\n }\n\n return false;\n }", "protected function match($pattern, $url)\n {\n if (preg_match(\"~^{$pattern}$~\", $url, $matches)) {\n $result = [];\n foreach ($matches as $key => $value) {\n if (is_int($key)) {\n continue;\n }\n $result[$key] = Sanitize::rules($this->sanitizeRules)->sanitize($value);\n }\n $this->params = array_merge($this->params, $result);\n\n return true;\n }\n\n return false;\n }", "public static function regex($value, $pattern)\n {\n return (preg_match($pattern, $value)) ? true : false;\n }", "public function isValid($value) {\n return parent::isValid($value) || preg_match($this->_pattren, $value);\n }", "function nameFormat ($value){\n \n if(strlen($value) == 0){\n return true;\n }\n \n else if(!preg_match(VALID_NAME_FORMAT,$value)){\n return false;\n }\n \n return true;\n}", "public static function match($pattern, $str, $isCaseSensitive = true) {\n \n $patArr = StringHelper::toCharArray($pattern);\n $strArr = StringHelper::toCharArray($str);\n $patIdxStart = 0;\n $patIdxEnd = count($patArr)-1;\n $strIdxStart = 0;\n $strIdxEnd = count($strArr)-1;\n \n $containsStar = false;\n for ($i = 0, $size=count($patArr); $i < $size; $i++) {\n if ($patArr[$i] == '*') {\n $containsStar = true;\n break;\n }\n }\n\n if (!$containsStar) {\n // No '*'s, so we make a shortcut\n if ($patIdxEnd != $strIdxEnd) {\n return false; // Pattern and string do not have the same size\n }\n for ($i = 0; $i <= $patIdxEnd; $i++) {\n $ch = $patArr[$i];\n if ($ch != '?') {\n if ($isCaseSensitive && $ch !== $strArr[$i]) {\n return false;// Character mismatch\n }\n if (!$isCaseSensitive && strtoupper($ch) !==\n strtoupper($strArr[$i])) {\n return false; // Character mismatch\n }\n }\n }\n return true; // String matches against pattern\n }\n\n if ($patIdxEnd == 0) {\n return true; // Pattern contains only '*', which matches anything\n }\n\n // Process characters before first star\n while(($ch = $patArr[$patIdxStart]) != '*' && $strIdxStart <= $strIdxEnd) {\n if ($ch != '?') {\n if ($isCaseSensitive && $ch !== $strArr[$strIdxStart]) {\n return false;// Character mismatch\n }\n if (!$isCaseSensitive && strtoupper($ch) !==\n strtoupper($strArr[$strIdxStart])) {\n return false;// Character mismatch\n }\n }\n $patIdxStart++;\n $strIdxStart++;\n }\n \n if ($strIdxStart > $strIdxEnd) {\n // All characters in the string are used. Check if only '*'s are\n // left in the pattern. If so, we succeeded. Otherwise failure.\n for ($i = $patIdxStart; $i <= $patIdxEnd; $i++) {\n if ($patArr[$i] != '*') {\n return false;\n }\n }\n return true;\n }\n\n // Process characters after last star\n while(($ch = $patArr[$patIdxEnd]) != '*' && $strIdxStart <= $strIdxEnd) {\n if ($ch != '?') {\n if ($isCaseSensitive && $ch !== $strArr[$strIdxEnd]) {\n return false;// Character mismatch\n }\n if (!$isCaseSensitive && strtoupper($ch) !==\n strtoupper($strArr[$strIdxEnd])) {\n return false;// Character mismatch\n }\n }\n $patIdxEnd--;\n $strIdxEnd--;\n }\n if ($strIdxStart > $strIdxEnd) {\n // All characters in the string are used. Check if only '*'s are\n // left in the pattern. If so, we succeeded. Otherwise failure.\n for ($i = $patIdxStart; $i <= $patIdxEnd; $i++) {\n if ($patArr[$i] != '*') {\n return false;\n }\n }\n return true;\n }\n\n // process pattern between stars. padIdxStart and patIdxEnd point\n // always to a '*'.\n while ($patIdxStart !== $patIdxEnd && $strIdxStart <= $strIdxEnd) {\n $patIdxTmp = -1;\n for ($i = $patIdxStart+1; $i <= $patIdxEnd; $i++) {\n if ($patArr[$i] == '*') {\n $patIdxTmp = $i;\n break;\n }\n }\n if ($patIdxTmp === $patIdxStart + 1) {\n // Two stars next to each other, skip the first one.\n $patIdxStart++;\n continue;\n }\n // Find the pattern between padIdxStart & padIdxTmp in str between\n // strIdxStart & strIdxEnd\n $patLength = ($patIdxTmp - $patIdxStart - 1);\n $strLength = ($strIdxEnd - $strIdxStart + 1);\n $foundIdx = -1;\n \n //strLoop:\n for ($i = 0; $i <= $strLength - $patLength; $i++) {\n for ($j = 0; $j < $patLength; $j++) {\n $ch = $patArr[$patIdxStart+$j+1];\n if ($ch != '?') {\n if ($isCaseSensitive && $ch !== $strArr[$strIdxStart+$i+$j]) {\n continue 2; //continue to strLoop:\n }\n if (!$isCaseSensitive && strtoupper($ch) !==\n strtoupper($strArr[$strIdxStart+$i+$j])) {\n continue 2; //continue to strLoop:\n }\n }\n }\n // only reached if sub loop completed w/o invoking continue 2\n $foundIdx = $strIdxStart + $i;\n break;\n }\n\n if ($foundIdx == -1) {\n return false;\n }\n\n $patIdxStart = $patIdxTmp;\n $strIdxStart = $foundIdx + $patLength;\n }\n\n // All characters in the string are used. Check if only '*'s are left\n // in the pattern. If so, we succeeded. Otherwise failure.\n for ($i = $patIdxStart; $i <= $patIdxEnd; $i++) {\n if ($patArr[$i] != '*') {\n return false;\n }\n }\n return true;\n }", "static protected function _fnmatch($pattern, $str)\n\t{\n\t\t$arr = array(\n\t\t\t'\\*' => '.*', \n\t\t\t'\\?' => '.'\n\t\t\t);\n\t\treturn preg_match('#^' . strtr(preg_quote($pattern, '#'), $arr) . '$#i', $str);\n\t}", "function placeFormat ($value){\n \n if(strlen($value) == 0){\n return true;\n }\n \n else if(!preg_match(VALID_PLACE_FORMAT,$value)){\n return false;\n }\n \n return true;\n}", "public function testFailingOnUseOfRegexWhenNoRegexExpected() {\n\t\t$test = new IncorrectOutputShouldUseExpectOutputRegexTestCase( 'test' );\n\t\t$result = $test->run();\n\n\t\t$this->assertSame( 1, $result->failureCount() );\n\t\t$this->assertSame( 1, \\count( $result ) );\n\n\t\t$failures = $result->failures();\n\t\t$this->assertMatchesRegularExpression(\n\t\t\t\"`^Failed asserting that '[^']+' matches PCRE pattern \\\"#`\",\n\t\t\t$failures[0]->exceptionMessage()\n\t\t);\n\t}", "public function matchUrl($url) {\r\n // Wildcard or exact match\r\n if($this->pattern === '*' || $this->pattern === $url) {\r\n $this->setFixedNames();\r\n\r\n return TRUE;\r\n }\r\n\r\n $ids = array();\r\n $last_char = substr($this->pattern, -1);\r\n\r\n // Get splat\r\n if($last_char === '*') {\r\n $n = 0;\r\n $len = strlen($url);\r\n $count = substr_count($this->pattern, '/');\r\n\r\n for($i = 0; $i < $len; $i++) {\r\n if($url[$i] == '/') {\r\n $n++;\r\n }\r\n if($n == $count) {\r\n break;\r\n }\r\n }\r\n\r\n }\r\n\r\n // Build the regex for matching\r\n $regex = str_replace(array(\r\n ')',\r\n '/*'\r\n ), array(\r\n ')?',\r\n '(/?|/.*?)'\r\n ), $this->pattern);\r\n\r\n $regex = preg_replace_callback('#@([\\w]+)(:\\{[^/\\(\\)]*?\\})?#', function($matches) use (&$ids) {\r\n $ids[$matches[1]] = NULL;\r\n if(isset($matches[3])) {\r\n return '(?P<' . $matches[1] . '>' . $matches[3] . ')';\r\n }\r\n\r\n return '(?P<' . $matches[1] . '>[^/\\?]+)';\r\n }, $regex);\r\n\r\n // Fix trailing slash\r\n if($last_char === '/') {\r\n $regex .= '?';\r\n } // Allow trailing slash\r\n else {\r\n $regex .= '/?';\r\n }\r\n\r\n // Attempt to match route and named parameters\r\n if(preg_match('#^' . $regex . '(?:\\?.*)?$#' . (($this->case_sensitive) ? '' : 'i'), $url, $matches)) {\r\n foreach($ids as $k => $v) {\r\n if(array_key_exists($k, $matches)) {\r\n $this->params[$k] = urldecode($matches[$k]);\r\n }\r\n }\r\n\r\n return TRUE;\r\n }\r\n\r\n return FALSE;\r\n }", "function preg_match_all_names(string $pattern, string $subject, array|null &$match, int $flags = 0, int $offset = 0): int|false\n{\n $res =@ preg_match_all($pattern, $subject, $match, $flags, $offset);\n\n // Act as original.\n if ($res === false) {\n $message = preg_error_message(func: 'preg_match');\n trigger_error(sprintf('%s(): %s', __function__, $message), E_USER_WARNING);\n } else {\n // Select string (named) keys.\n $match = array_filter($match, 'is_string', 2);\n }\n\n return $res;\n}", "function grep(string $pattern, string $input, bool $named = false): string|array|null\n{\n $res =@ preg_match($pattern, $input, $match, PREG_UNMATCHED_AS_NULL);\n\n // Act as original.\n if ($res === false) {\n $message = preg_error_message(func: 'preg_match');\n trigger_error(sprintf('%s(): %s', __function__, $message), E_USER_WARNING);\n\n return null;\n }\n\n if (isset($match[1])) {\n $ret = $match[1];\n\n // For named capturing groups.\n if ($named && $ret) {\n $ret = array_filter($ret, 'is_string', 2);\n }\n\n return $ret;\n }\n\n return null;\n}" ]
[ "0.6521136", "0.6349733", "0.6339542", "0.6232159", "0.62218815", "0.6116058", "0.6031", "0.60169005", "0.58797723", "0.5850209", "0.5833874", "0.5807036", "0.5794807", "0.56443924", "0.5621445", "0.56179154", "0.56061167", "0.558527", "0.55737936", "0.55503786", "0.55464923", "0.5535095", "0.55054986", "0.54780304", "0.54780304", "0.54538184", "0.5444246", "0.54142064", "0.5412949", "0.53809553", "0.5364369", "0.5333357", "0.5329327", "0.5304548", "0.5296368", "0.5296096", "0.52891994", "0.52878046", "0.526373", "0.5243519", "0.5243519", "0.52222013", "0.5220933", "0.52196383", "0.5193786", "0.5183731", "0.51609975", "0.51544696", "0.5143131", "0.51419234", "0.51309645", "0.51309645", "0.5129076", "0.51285756", "0.51214933", "0.509979", "0.5089842", "0.50776285", "0.5075539", "0.5073643", "0.507352", "0.50699896", "0.5067885", "0.5062968", "0.50579154", "0.5056764", "0.50438577", "0.50417674", "0.5040874", "0.5025491", "0.5012901", "0.50099695", "0.50076824", "0.5001431", "0.49990648", "0.49983197", "0.49869093", "0.49712065", "0.49711275", "0.49705657", "0.496132", "0.49598703", "0.49582464", "0.49578977", "0.49576196", "0.49543688", "0.4943739", "0.4940782", "0.49312353", "0.49161962", "0.49144426", "0.49127436", "0.49126232", "0.4911037", "0.49097878", "0.49078864", "0.4902575", "0.4894322", "0.48889846", "0.4882221" ]
0.70914775
0
SyntaxChecking an Unknown Regex Return a descriptive error message if the given regular expression is invalid. If it's valid, false is returned.
public static function regexError(string $regex) : bool { return self::patternError(self::regexToPattern($regex)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function validateRegularExpression($regex)\r\n {\r\n $error_string = null;\r\n\r\n // Set an error handler temporarily\r\n set_error_handler(\r\n function ($errno, $errstr) use (&$error_string) {\r\n $error_string = $errstr;\r\n },\r\n E_NOTICE | E_WARNING\r\n );\r\n\r\n if (false === preg_match($regex, null) || !empty($error_string)) {\r\n // Remove our temporary error handler\r\n restore_error_handler();\r\n\r\n throw new RegularExpressionCompilationException(\r\n $error_string,\r\n preg_last_error()\r\n );\r\n }\r\n\r\n // Remove our temporary error handler\r\n restore_error_handler();\r\n\r\n return true;\r\n }", "function check_for_errors(&$matcher) {\n if ($matcher->is_error_exists()) {\n $errors = $matcher->get_error_objects();\n foreach ($errors as $error) {\n if (is_a($error, 'preg_parsing_error')) { // error messages are displayed for parsing errors only\n echo 'Regex incorrect: '.$error->errormsg.'<br/>';\n $this->assertTrue(false);\n }\n }\n return true;\n }\n return false;\n }", "protected function validateRegex($regex)\n {\n set_error_handler(function () {}, -1);\n try {\n // If this test returns false it means we have invalid regex\n return @preg_match($regex, null) !== false;\n } finally {\n restore_error_handler();\n }\n }", "public function testInvalidRegexp()\n {\n $config = json_decode(sprintf($this->regexpConfigStub, '^Foo', '', 'false'), true);\n new Regexp($config);\n }", "function regexValidation($input, $expected, $referenceName) {\r\n global $errorMessage;\r\n if(strlen($input) > 0 && !preg_match($expected, $input)) {\r\n $errorMessage .= \"*The $referenceName you entered does not appear to be valid.<br />\"; // $referenceName should be dynamically read.\r\n return false;\r\n }\r\n return true;\r\n }", "public static function patternError(string $pattern) : bool\n {\n /*\n To tell if the pattern has errors, we simply try to use it.\n To detect and capture the error is not so simple, especially if we want to be sociable and not\n tramp on global state (e.g., the value of $php_errormsg). So, if 'track_errors' is on, we preserve\n the $php_errormsg value and restore it later. If 'track_errors' is not on, we turn it on (because\n we need it) but turn it off when we're done.\n */\n if ($old_track = ini_get('track_errors')) $old_message = isset($php_errormsg) ? $php_errormsg : false;\n else ini_set('track_errors', 1);\n /* We're now sure that track_errors is on. */\n\n unset($php_errormsg);\n @preg_match($pattern, ''); /*actually give the pattern a try! */\n $return_value = isset($php_errormsg) ? $php_errormsg : false;\n\n /* We've now captured what we need; restore global state to what it was. */\n if ($old_track) $php_errormsg = isset($old_message) ? $old_message : false;\n else ini_set('track_errors', 0);\n return $return_value;\n }", "public function testFailingOnUseOfRegexWhenNoRegexExpected() {\n\t\t$test = new IncorrectOutputShouldUseExpectOutputRegexTestCase( 'test' );\n\t\t$result = $test->run();\n\n\t\t$this->assertSame( 1, $result->failureCount() );\n\t\t$this->assertSame( 1, \\count( $result ) );\n\n\t\t$failures = $result->failures();\n\t\t$this->assertMatchesRegularExpression(\n\t\t\t\"`^Failed asserting that '[^']+' matches PCRE pattern \\\"#`\",\n\t\t\t$failures[0]->exceptionMessage()\n\t\t);\n\t}", "public function is_regex( $regex ){\n\t\t\n\t\tif(@preg_match($regex, null) === false){\n\t\t\t\n\t\t\treturn false;\t\t\t\n\t\t}\n\t\treturn true;\n\t}", "function preg_test(string $pattern, string $subject): bool\n{\n $res =@ preg_match($pattern, $subject);\n\n // Act as original.\n if ($res === false) {\n $message = preg_error_message(func: 'preg_match');\n trigger_error(sprintf('%s(): %s', __function__, $message), E_USER_WARNING);\n }\n\n return (bool) $res;\n}", "function errorHandler($errno, $errstr = '', $errfile = '', $errline = '') {\r\n\tglobal $regex_error;\r\n\t$regex_error = \"Regular Expression Error: $errstr\";\r\n\treturn true; // dont exec internal error handler\r\n}", "public function RegexValidation($value,$regex){\r\n\t\t$validation = \"\";\r\n\t\tif($value==\"\"){\r\n\t\t\t$validation = 'null';\r\n\t\t}elseif($value!=\"\"){\r\n\t\t\tif(!preg_match($regex, $value)){\r\n\t\t\t\t$validation = 'invalid';\r\n\t\t\t}else{\r\n\t\t\t\t$validation = 'valid';\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn $validation;\r\n\t}", "function is_regexp($regexp){\n return (@preg_match($regexp, null) !== false);\n}", "function RegexMatch($regex, $input)\r\n{\r\n if (preg_match($regex, $input)) {\r\n return true;\r\n } else {\r\n return false;\r\n }\r\n}", "public function isRegex()\n {\n return filter_var($this->_value, FILTER_VALIDATE_REGEXP);\n }", "function mREGEX(){\n try {\n $_type = Erfurt_Sparql_Parser_Sparql11_Update_Tokenizer11::$REGEX;\n $_channel = Erfurt_Sparql_Parser_Sparql11_Update_Tokenizer11::$DEFAULT_TOKEN_CHANNEL;\n // Tokenizer11.g:276:3: ( 'regex' ) \n // Tokenizer11.g:277:3: 'regex' \n {\n $this->matchString(\"regex\"); \n\n\n }\n\n $this->state->type = $_type;\n $this->state->channel = $_channel;\n }\n catch(Exception $e){\n throw $e;\n }\n }", "protected function accept_regex() {\n return true;\n }", "function hobbyFormat ($value, $regex){\n \n if(strlen($value) == 0){\n return true;\n }\n \n else if(!preg_match($regex,$value)){\n return false;\n }\n \n return true;\n}", "abstract protected function regexp(): string;", "function testValidationWithoutARegexPattern() {\n $this->assertTrue($this->validator->validate('abc'));\n }", "static function matchesRegularExpression($pattern)\n {\n try {\n return call_user_func_array('PHPUnit_Framework_Assert::matchesRegularExpression', func_get_args());\n } catch (\\Exception $e) {\n self::callSlack($e, debug_backtrace()[1]);\n }\n }", "protected function validateRegex($value, $parameters){\n\t\treturn preg_match($parameters[0], $value);\n\t}", "function hasValidFormat($u, $p){\n $pattern = \"/[<>]/\";\n if (preg_match($pattern, $u)){\n echo \"<p style='color:red;font-style:italic'>\".htmlentities($u).\" contains illegal characters. Try again.</p>\";\n return false;\n }\n else if (preg_match($pattern, $p)){\n echo \"<p style='color:red;font-style:italic'>Password contains illegal characters. Try again.</p>\";\n return false;\n }\n else {\n return true;\n }\n}", "public function isValidRegex($pattern, $includesDelimiters = true)\n {\n if (!is_string($pattern)) {\n return false;\n }\n if ($pattern === '') {\n return $includesDelimiters ? false : true;\n }\n if (!$includesDelimiters) {\n $pattern = \"/{$pattern}/\";\n }\n set_error_handler(function () {}, -1);\n $result = @preg_match($pattern, 'X');\n restore_error_handler();\n\n return $result !== false;\n }", "public function testRegexes()\n {\n $grammar1 = $this->grammar->parse(\" S ::= /(ab)*/ \");\n $this->assertEquals(array(\"ababab\"), $grammar1->parse(\"ababab\"));\n $grammar = $this->grammar->parse(\" number ::= /a\\\\.b/ \");\n $this->assertEquals(array(\"a.b\"), $grammar->parse(\"a.b\"));\n\n $this->expectException(ParseFailureException::_CLASS);\n $grammar1->parse(\"aXb\");\n }", "function _is_valid($string, $min_length, $max_length, $regex)\r\n{\r\n $str = trim($string);\r\n if(empty($str))\r\n {\r\n return(false);\r\n }\r\n\r\n\r\n // Does the string entirely consist of characters of $type?\r\n if(!ereg(\"^$regex$\",$string))\r\n {\r\n return(false);\r\n }\r\n\r\n // Check for the optional length specifiers\r\n $strlen = strlen($string);\r\n\r\n if(($min_length != 0 && $strlen < $min_length) || ($max_length != 0 && $strlen > $max_length))\r\n {\r\n return(false);\r\n\r\n }\r\n\r\n // Passed all tests\r\n return(true);\r\n\r\n\r\n}", "public static function isValidRegEx( $pattern ) {\n\t\t// validate first for allowd delimiters '/%|' and flags\n\t\tif ( !preg_match( '/^([\\\\/\\\\|%]).*\\\\1[imsSuUx]*$/', $pattern ) ) {\n\t\t\treturn false;\n\t\t}\n\t\tAtEase::suppressWarnings(); // instead of using the evil @ operator!\n\t\t$isValid = preg_match( $pattern, ' ' ) !== false; // preg_match returns false on error\n\t\tAtEase::restoreWarnings();\n\t\treturn $isValid;\n\t}", "static function assertNotRegExp($pattern, $string, $message = '')\n {\n try {\n return call_user_func_array('PHPUnit_Framework_Assert::assertNotRegExp', func_get_args());\n } catch (\\Exception $e) {\n self::callSlack($e, debug_backtrace()[1]);\n }\n }", "function validateRegEx( $pattern, $subject )\n {\n $pattern = '/' . $pattern . '/';\n preg_match($pattern, $subject, $matches);\n return !empty($matches);\n }", "static function assertRegExp($pattern, $string, $message = '')\n {\n try {\n return call_user_func_array('PHPUnit_Framework_Assert::assertRegExp', func_get_args());\n } catch (\\Exception $e) {\n self::callSlack($e, debug_backtrace()[1]);\n }\n }", "function valid_input($myinput, $good_input) {\n if (preg_match(\"/$good_input/\", $myinput, $regs)) {\n return true;\n }\n else {\n return false;\n }\n}", "function valid_input($myinput, $good_input) {\n if (preg_match(\"/$good_input/\", $myinput, $regs)) {\n return true;\n }\n else {\n return false;\n }\n}", "public static function doesNotMatchRegex($pattern)\n {\n return self::logicalNot(self::matchesRegex($pattern));\n }", "private function getRegexForDesignExceptions()\n {\n $result = '';\n $tpl = \"%s (req.http.user-agent ~ \\\"%s\\\") {\\n\".\" hash_data(\\\"%s\\\");\\n\".\" }\";\n\n $expressions = $this->getDesignExceptions();\n\n if ($expressions) {\n $rules = array_values($expressions);\n foreach ($rules as $i => $rule) {\n if (preg_match('/^[\\W]{1}(.*)[\\W]{1}(\\w+)?$/', $rule['regexp'], $matches)) {\n if (!empty($matches[2])) {\n $pattern = sprintf(\"(?%s)%s\", $matches[2], $matches[1]);\n } else {\n $pattern = $matches[1];\n }\n $if = $i == 0 ? 'if' : ' elsif';\n $result .= sprintf($tpl, $if, $pattern, $rule['value']);\n }\n }\n }\n\n return $result;\n }", "public function isRegExp($string)\n {\n return !(@preg_match($string, null) === false);\n }", "public static function assertDoesNotMatchRegularExpression(string $pattern, string $string, string $message = ''): void\n {\n static::assertThat(\n $string,\n new LogicalNot(\n new RegularExpression($pattern)\n ),\n $message\n );\n }", "public function getDefaultRegExp();", "public function testNonMatchingRegexp()\n {\n $configDefaultField = json_decode(sprintf($this->regexpConfigStub, '/^Bar/', '', 'false'), true);\n $nonMatchingRegexpFilterWithDefaultField = new Regexp($configDefaultField);\n\n $configCustomField = json_decode(sprintf($this->regexpConfigStub, '/phpunit/', 'name', 'false'), true);\n $nonMatchingRegexpFilterWithCustomField = new Regexp($configCustomField);\n\n $this->assertFalse($nonMatchingRegexpFilterWithDefaultField->accept($this->logEvent));\n $this->assertFalse($nonMatchingRegexpFilterWithCustomField->accept($this->logEvent));\n }", "function validate()\n {\n if ( $this->options['required'] && $this->value == '' )\n {\n $this->validationError = $this->label . ' is required!';\n fWarn::getInstance()->add('Validation failed for ' . $this->name . ', field is required.');\n return false;\n }\n if ( isset($this->regex) )\n {\n $return = preg_match($this->regex, $this->value);\n if ( !$return )\n $this->fDebug->add('Could not validate \"' . $this->value . '\" against \"' . $this->regex . '\"', 1);\n return $return;\n }\n return true;\n }", "public function isRegex($string , $regex)\r\n\t{\r\n\t\treturn (bool) preg_match($regex , $string);\r\n\t}", "protected static function validateStringRegex(string $test, string $source, string $regex, string $argument = \"Argument\")\n {\n if (preg_match($regex, $test) === 0) {\n throw new InvalidArgumentException(\"$argument given to $source is invalid. It should match regex '$regex', but '$test' was given.\");\n }\n }", "public function isValid($pattern, $message) {\n if (!preg_match($pattern, $message)) {\n return FALSE;\n }\n return TRUE;\n }", "public static function regex_stringvalidation_expression($y_mode, $y_match='full') {\n\t//--\n\tswitch((string)strtolower((string)$y_match)) {\n\t\tcase 'full':\n\t\t\t$rxs = '^';\n\t\t\t$rxe = '$';\n\t\t\tbreak;\n\t\tcase 'partial':\n\t\t\t$rxs = '';\n\t\t\t$rxe = '';\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tSmart::raise_error(\n\t\t\t\t'INVALID match type in function '.__CLASS__.'::'.__FUNCTION__.'(): '.$y_match,\n\t\t\t\t'Validations Internal ERROR' // msg to display\n\t\t\t);\n\t\t\tdie(''); \t// just in case\n\t\t\treturn '+'; // just in case\n\t} //end switch\n\t//--\n\tswitch(strtolower((string)$y_mode)) { // WARNING: Never use class modifiers like [:print:] with /u modifier as it fails with some versions of PHP / Regex / PCRE\n\t\t//--\n\t\t//== #EXTERNAL USE\n\t\t//--\n\t\tcase 'number-integer': \t\t\t\t\t\t\t\t\t\t// strict validation\n\t\t\t$regex = '/'.$rxs.'(\\-)?[0-9]+?'.$rxe.'/'; \t\t\t\t// before was: '/([0-9\\-])+/' but was not good enough as a strict rule\n\t\t\tbreak;\n\t\tcase 'number-decimal': \t\t\t\t\t\t\t\t\t\t// strict validation ; must match also integer values ; {{{SYNC-DETECT-PURE-NUMERIC-INT-OR-DECIMAL-VALUES}}}\n\t\t\t$regex = '/'.$rxs.'(\\-)?[0-9]+(\\.[0-9]+)?'.$rxe.'/'; \t// before was: '/([0-9\\-\\.])+$/' but was not good enough as a strict rule\n\t\t\tbreak;\n\t\t//--\n\t\tcase 'number-list-integer': \t\t\t\t\t\t\t\t// flexible validation (since this is a list, it may contain any numbers and ;)\n\t\t\t$regex = '/'.$rxs.'([0-9\\-\\;])+'.$rxe.'/'; \t\t\t\t// example: 1;2;30\n\t\t\tbreak;\n\t\tcase 'number-list-decimal': \t\t\t\t\t\t\t\t// flexible validation (since this is a list, it may contain any numbers and ;) ; must match also integer list values\n\t\t\t$regex = '/'.$rxs.'([0-9\\-\\.\\;])+'.$rxe.'/'; \t\t\t// example: 1.0;2;30.44\n\t\t\tbreak;\n\t\t//--\n\t\tcase 'ipv4':\n\t\t\t$regex = '/'.$rxs.'([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])){3}'.$rxe.'/';\n\t\t\tbreak;\n\t\tcase 'ipv6':\n\t\t\t$regex = '/'.$rxs.'s*((([0-9A-Fa-f]{1,4}\\:){7}([0-9A-Fa-f]{1,4}|\\:))|(([0-9A-Fa-f]{1,4}\\:){6}(\\:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|\\:))|(([0-9A-Fa-f]{1,4}\\:){5}(((\\:[0-9A-Fa-f]{1,4}){1,2})|\\:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|\\:))|(([0-9A-Fa-f]{1,4}\\:){4}(((\\:[0-9A-Fa-f]{1,4}){1,3})|((\\:[0-9A-Fa-f]{1,4})?\\:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|\\:))|(([0-9A-Fa-f]{1,4}\\:){3}(((\\:[0-9A-Fa-f]{1,4}){1,4})|((\\:[0-9A-Fa-f]{1,4}){0,2}\\:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|\\:))|(([0-9A-Fa-f]{1,4}\\:){2}(((\\:[0-9A-Fa-f]{1,4}){1,5})|((\\:[0-9A-Fa-f]{1,4}){0,3}\\:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|\\:))|(([0-9A-Fa-f]{1,4}\\:){1}(((\\:[0-9A-Fa-f]{1,4}){1,6})|((\\:[0-9A-Fa-f]{1,4}){0,4}\\:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|\\:))|(\\:(((\\:[0-9A-Fa-f]{1,4}){1,7})|((\\:[0-9A-Fa-f]{1,4}){0,5}\\:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|\\:)))(%.+)?s*'.$rxe.'/';\n\t\t\tbreak;\n\t\tcase 'macaddr':\n\t\t\t$regex = '/'.$rxs.'([0-9a-fA-F][0-9a-fA-F]\\:){5}([0-9a-fA-F][0-9a-fA-F])|([0-9a-fA-F][0-9a-fA-F]\\-){5}([0-9a-fA-F][0-9a-fA-F])'.$rxe.'/';\n\t\t\tbreak;\n\t\t//--\n\t\tcase 'url':\n\t\t\t$regex = '/'.$rxs.'(http|https)(:\\/\\/)([^\\s<>\\(\\)\\|]*)'.$rxe.'/'; // url recognition in a text / html code :: fixed in html <>\n\t\t\tbreak;\n\t\tcase 'domain':\n\t\t\t$regex = '/'.$rxs.'([a-z0-9]([a-z0-9\\-]{0,61}[a-z0-9])?\\.)+[a-z]{2,24}'.$rxe.'/'; // internet (subdomain.)domain.name\n\t\t\tbreak;\n\t\tcase 'email':\n\t\t\t$regex = '/'.$rxs.'([_a-z0-9\\-\\.]){1,63}@'.'[a-z0-9\\-\\.]{3,63}'.$rxe.'/'; // internet email@(subdomain.)domain.name :: [_a-z0-9\\-\\.]*+@+[_a-z0-9\\-\\.]*\n\t\t\tbreak;\n\t\t//--\n\t\tcase 'fax':\n\t\t\t$regex = '/'.$rxs.'(~)([0-9\\-\\+\\.\\(\\)][^~]*)(~)'.$rxe.'/'; // fax number recognition in a text / html code (must stay between ~)\n\t\t\tbreak;\n\t\t//--\n\t\t//== #ERROR: INVALID\n\t\t//--\n\t\tdefault:\n\t\t\tSmart::raise_error(\n\t\t\t\t'INVALID mode in function '.__CLASS__.'::'.__FUNCTION__.'(): '.$y_mode,\n\t\t\t\t'Validations Internal ERROR' // msg to display\n\t\t\t);\n\t\t\tdie(''); \t// just in case\n\t\t\treturn '+'; // just in case\n\t\t//--\n\t\t//== #END\n\t\t//--\n\t} //end switch\n\t//--\n\treturn (string) $regex;\n\t//--\n}", "abstract public function supportsRegexFilters();", "function is_invalid($err)\n{\n // TODO: megírni. Csak akkor printelje ki a hiba-class-t ha tényleg hibás a mező\n if (!$err == null)\n echo $err . ' is-invalid';\n}", "function check_reg($rule, $str) {\n global $permalinks;\n preg_match($permalinks[$rule],$str, $match);\n if (isset($match[0])) {\n return $match[0];\n }\n return false;\n}", "public function regex($regex, $error) {\n if ($this->_exist) {\n array_push($this->_constraints, ['type' => self::REGEX, 'value' => $regex, 'message' => $error]);\n }\n\n return $this;\n }", "protected function testPregPattern(string $pattern): string\n {\n if (false === @preg_match('~' . $pattern . '~', \"\")) {\n throw new Exception\\InvalidArgumentException(\n sprintf(\n 'Invalid regular expression pattern `%s` in options',\n $pattern\n )\n );\n }\n\n return $pattern;\n }", "public function getRegularExpression()\n {\n return '/(\\b([Gg][Ii][Rr] 0[Aa]{2})|((([A-Za-z][0-9]{1,2})|(([A-Za-z][A-Ha-hJ-Yj-y][0-9]{1,2})|(([A-Za-z][0-9][A-Za-z])|([A-Za-z][A-Ha-hJ-Yj-y][0-9][A-Za-z]?))))\\s?[0-9][A-Za-z]{2})\\b)/um';\n }", "function validate($data)\n {\n if ($data == '') return TRUE;\n\n $pattern = isset($this->settings['vz_regulator_pattern']) ? '#' . str_replace('#', '\\#', $this->settings['vz_regulator_pattern']) . '#' : '';\n $hint = isset($this->settings['vz_regulator_hint']) ? $this->settings['vz_regulator_hint'] : '';\n\n if ($pattern == '' || preg_match($pattern, $data) > 0)\n {\n return TRUE;\n }\n else\n {\n return $hint;\n }\n }", "function getValidationRegex($validation)\n{\n if ($validation == 'any_text') {\n return '/.+/';\n }\n if ($validation == 'email') {\n return '/([A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\\.[A-Za-z]+)/';\n //return '/.+@.+\\.[A-Za-z]+/';\n }\n if ($validation == 'url') {\n return '/(((ht|f)tp(s?))\\:\\/\\/)?.+\\..+\\.[A-Za-z]+/';\n }\n \n return \"\";\n}", "public function globalStringConditionMatchesRegularExpression() {}", "public function globalStringConditionMatchesRegularExpression() {}", "public function validateRegexMatch($key, $options, $data) {\n if(strlen($options) && strpos($options,'regex_match')!==false){\n $regex = $this->extractOptionValue('regex_match:',$options);\n if(strlen($regex)) {\n if (is_string($data)) {\n if (!preg_match('/'.$regex.'/', trim($data))) {\n $this->errorFields[] = ['key'=>$key,'method'=>__FUNCTION__,'regex'=>$regex];\n return false;\n }\n } elseif(is_array($data)) foreach ($data as $item) {\n if (!preg_match('/'.$regex.'/', trim($item))) {\n $this->errorFields[] = ['key'=>$key,'method'=>__FUNCTION__,'regex'=>$regex];\n return false;\n }\n }\n }\n }\n return true;\n }", "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 }", "abstract protected function buildRegex(): Matcher;", "public function makeRegExValidator(string $regEx) : Closure\n {\n return function ($value) use ($regEx) {\n $match = preg_match($regEx, $value);\n if (!$match) {\n return [\n 'message' => \"{$value} do not match {$regEx}\",\n 'result' => false\n ];\n } else {\n return [\n 'result' => true\n ];\n }\n };\n }", "private function process_regex($value, $param = null)\n {\n return (bool) preg_match($param, $value);\n }", "public function assertNotRegExp($pattern, $string, $message = null) {\n return $this->getScenario()->runStep(new \\Codeception\\Step\\Action('assertNotRegExp', func_get_args()));\n }", "public function assertNotRegExp($pattern, $string, $message = null) {\n return $this->getScenario()->runStep(new \\Codeception\\Step\\Action('assertNotRegExp', func_get_args()));\n }", "function sexFormat ($value){\n \n if(strlen($value) == 0){\n return true;\n }\n \n else if(!preg_match(VALID_SEX_FORMAT,$value)){\n return false;\n }\n \n return true;\n}", "public function regex($name, $pattern, $message = 'The creation date is invalid')\n {\n //Regex\n switch ($pattern)\n {\n case 'www':\n $value = '/^[0-9]{4}[-\\/](0[1-9]|1[12])[-\\/](0[1-9]|[12][0-9]|3[01])$/';\n break;\n \n case 'alias':\n $value = '/^[0-9a-zA-Z_-]++$/iD';\n break;\n\n \n default:\n $value = '/^[0-9]{4}[-\\/](0[1-9]|1[12])[-\\/](0[1-9]|[12][0-9]|3[01])$/';\n break;\n }\n\n \n $this->validation->add($name, new \\Phalcon\\Validation\\Validator\\Regex(array(\n 'pattern' => $value,\n 'message' => $message\n )));\n return $this;\n }", "public function testAssertResponseRegExpVerbose(): void\n {\n $this->expectException(AssertionFailedError::class);\n $this->expectExceptionMessage('Possibly related to `Cake\\Routing\\Exception\\MissingRouteException`: \"A route matching `/notfound` could not be found.\"');\n $this->get('/notfound');\n $this->_response = $this->_response->withStringBody('body');\n $this->assertResponseRegExp('/patternNotFound/');\n }", "public function do_reg($stringa, $regex){\n\t\tif (preg_match($regex, $stringa)) {\n\t\t\treturn TRUE;\n\t\t}else{\n\t\t\treturn FALSE;\n\t\t}\n\t}", "protected static function isValidRegName($host)\n {\n $regex = '/^(?:[' . self::CHAR_UNRESERVED . self::CHAR_SUB_DELIMS . ':@\\/\\?]+|%[A-Fa-f0-9]{2})+$/';\n return (bool) preg_match($regex, $host);\n }", "public static function safe(string $string, string $regex = self::SAFE)\n {\n if (preg_match($regex, $string)) :\n return $string;\n else :\n return false;\n endif;\n }", "public function regexp($regexp)\n {\n\n }", "public function getRegexp();", "public static function getRegularExpression();", "function validarExpresion($variable, $expresion){\n\t\t$validar = array(\n\t\t\t\t \"options\" => array(\"regexp\"=>$expresion)\n\t\t\t);\n\t\tif(!filter_var($variable, FILTER_VALIDATE_REGEXP, $validar)){\n\t\t\treturn false;\n\t\t}\n\t\telse{\n\t\t\treturn true;\n\t\t}\n\t}", "public function matches($regex)\n {\n return !!preg_match($regex, $this->_value);\n }", "public static function parserRegExp(): string\n {\n return '[0-9]{4}-[0-9]{2}-[0-9]{2}';\n }", "function invalidGebruikersnaam($gebruikersnaam){\n $result = true;\n if (!preg_match(\"/^[a-zA-Z0-9]*$/\" ,$gebruikersnaam )){\n $result = true;\n }\n else{\n $result = false;\n }\n return $result;\n}", "function regexchecker($stringtocheck, $checkfor){\n\t$getsomething=FALSE;\n\tswitch($checkfor){\n\t case 'pagenumber':\n\t\t$getsomething=1;\n\t\t$regex=\"/^page0*([1-9][0-9]*)$/\";\n\t\tbreak;\n\t case 'username':\n\t\t\t$regex=\"/^[a-zA-Z0-9][a-zA-Z0-9_-]+[a-zA-Z0-9]$/\";\n\t\t\tbreak;\n\t\tcase 'id'://don't call this, just use is_numeric\n\t\t$regex=\"/^[1-9][0-9]*$/\";\n\t\tbreak;\n\t\tcase 'md5'://don't call this, just use is_numeric\n\t\t$regex=\"/^[a-f0-9]{32}$/i\";\n\t\tbreak;\n\t case 'internallink': //lcletter followed by lcletters, numbers, underscores and dashes\n\t\t$regex=\"/^[\\w-%]*$/\"; //doesn't check everything, just makes sure there are no extra odd characters % is for percent encoded chars\n\t\tbreak;\n\t\tcase 'taboo':\n\t\t\t$regex=\"/(fuck)|(viagra)|(cialis)(ass-*hole)|(cock-*sucker)|(god-*dam)|(shit[-\\s.!,?]+)|(cunt[-\\s.!,?]+)/i\";\n\t\t\treturn TRUE;\n\t\tbreak;\n\t\tcase 'url':\n\t\t\t//replace spaces at beginning or end\n\t\t\t$stringtocheck=preg_replace(\"/^\\s+|\\s+$/\", \"\", $stringtocheck);\n\t\t\t$stringtocheck=str_split($stringtocheck);\n\t\t\tforeach($stringtocheck as $key=>$value) $stringtocheck[$key]=(preg_match(\"/^[\\w\\.-~:\\/@\\?#%=,;]$/\", $value))? $value : rawurlencode($value);//originally had strings in non matching too\n\t\t\t$stringtocheck=implode($stringtocheck);\n\t\t\t$regex=\"/(?:(https?):\\/\\/)?(?:([^:@\\s]+)(?::([^:@\\s]+)?)?@)?((?:(?:[a-z\\d]+|(?:%[\\dA-F][\\dA-F])+)(?:(?:-*(?:[a-z\\d]+|(?:%[\\dA-F][\\dA-F])+))*)?)(?:\\.(?:(?:[a-z\\d]+|(?:%[\\dA-F][\\dA-F])+)(?:(?:-*(?:[a-z\\d]+|(?:%[\\dA-F][\\dA-F])+))*)?))+)(?::(\\d*))?(?:\\/((?:[\\w-\\._~:@!\\$\\^'\\(\\)\\*\\+,;=%]+\\/?)*)?)?(?:\\?([\\w-\\._~:@!\\$\\^'\\(\\)\\*\\+,;=%\\?\\/]*)?)?(?:#([\\w-\\._~:@!\\$\\^'\\(\\)\\*\\+,;=%\\?\\/]*)?)?/i\";\n\t\t\t$getsomething=\"all\";\n\t\t\tbreak;\n\t\tcase 'email':\n\t\t\t//replace spaces at beginning or end\n\t\t\t$stringtocheck=preg_replace(\"/^\\s+|\\s+$/\", \"\", $stringtocheck);\n\t\t\t$regex=\"/^(([^:@\\s]+)@((?:(?:[a-z\\d]+|(?:%[\\dA-F][\\dA-F])+)(?:(?:-*(?:[a-z\\d]+|(?:%[\\dA-F][\\dA-F])+))*)?)(?:\\.(?:(?:[a-z\\d]+|(?:%[\\dA-F][\\dA-F])+)(?:(?:-*(?:[a-z\\d]+|(?:%[\\dA-F][\\dA-F])+))*)?))+))$/i\"; //not perfect but should be good enough\n\t\t\t$getsomething=\"all\";\n\t\t\tbreak;\n\t\tcase 'urlpath':\n\t\t\t//test path ./../path././.info/goodby/../goodby/./../goodby/goodby/../../rmation\n\t\t\t//should return path./.info/rmation\n\t\t\t//replace runs of / with 1 / //there shouldn't be any if have valid url, but just double checking\n\t\t\t$stringtocheck=preg_replace(\"/\\/+/\", \"/\", $stringtocheck);\n\t\t\t//replace any runs of ../ and or ./ at beginning of path with\n\t\t\t$stringtocheck=preg_replace(\"/^(\\.?\\.\\/)+/\", \"\", $stringtocheck);\n\t\t\t//replace any /./ or runs of /././ with just /\n\t\t\t$stringtocheck=preg_replace(\"/\\/(\\.\\/)+/\", \"/\", $stringtocheck);\n\t\t\t//replace any pathinfo/../ with just \"\"\n\t\t\twhile(strrpos($stringtocheck, \"/../\")>0)$stringtocheck=preg_replace(\"/[^\\/]+\\/\\.\\.\\//\", \"\", $stringtocheck, 1);\n\t\t\t//replace runs of / with 1 / //there shouldn't be any, but just double checking\n\t\t\treturn preg_replace(\"/\\/+/\", \"/\", $stringtocheck);\n\t\tdefault :\n\t\treturn FALSE;//if we call this without a defined checkfor return false\n\t}\n\n\t//echo \"<p>We're in regexchecker checking $stringtocheck for $regex and get something is $getsomething.</p>\";\n\n\tif(preg_match($regex,$stringtocheck,$matches)==1){\n\t\t if($getsomething==\"all\")return $matches;\n\t\t elseif($getsomething)return $matches[$getsomething];\n\t else return TRUE;\n\t}\n\t//if we're here something went wrong so return FALSE\n\treturn FALSE;\n}", "public function testSimpleValidMatch()\n\t{\n\t\t$config = array('route' => '/foo/bar');\n\t\t$regex = new Regex($config);\n\n\t\t$this->assertTrue($regex->evaluate('/foo/bar'));\n\t}", "public function assertRegExp($pattern, $string, $message = null) {\n return $this->getScenario()->runStep(new \\Codeception\\Step\\Action('assertRegExp', func_get_args()));\n }", "public function assertRegExp($pattern, $string, $message = null) {\n return $this->getScenario()->runStep(new \\Codeception\\Step\\Action('assertRegExp', func_get_args()));\n }", "function validateInput() {\n $validationSuccessful = true;\n $errorMessage = \"\";\n\n\n //Validate title\n if (!preg_match(\"/^.{1,250}$/\", $_POST['title'])) {\n $validationSuccessful = false;\n $errorMessage .= \"Title is invalid.\". $_POST['title'];\n }\n\n //Validate date\n if (!preg_match(\"/^(\\d{4})-(\\d{2})-(\\d{2}) (\\d{2}):(\\d{2}):(\\d{2})$/\", $_POST['date'])) {\n $validationSuccessful = false;\n $errorMessage .= \"Date is invalid.\" . $_POST['date'];\n }\n\n //Validate location\n if (!preg_match(\"/^.{1,250}$/\", $_POST['location'])) {\n $validationSuccessful = false;\n $errorMessage .= \"Max_players is invalid.\" . $_POST['location'];\n }\n\n if($validationSuccessful == true) {\n return true;\n } else {\n echo $errorMessage;\n return false;\n }\n }", "function registerValidation($methodName, $regex, $errText = \"Invalid input.\"){\n\n\t\t$this->validationExpression[$methodName]['regex'] = $regex;\n\t\t$this->validationExpression[$methodName]['err'] = $errText;\n\n\t}", "function validateInstance() {\r\n\tif(empty($_POST['name'])) {\r\n\t\t$_SESSION['error'] = \"You need to specify a name for the instance\";\r\n\t\treturn false;\r\n\t}\r\n\t// Check that the name is correct\r\n\tif(eregi(\"[^a-zA-Z'\\ -0-9]\", $_POST['name'])) {\r\n\t\t$_SESSION['error'] = \"The name cannot contain special characters\";\r\n\t\treturn false;\r\n\t}\r\n\t// Check that the multiplier is ok\r\n\tif(!eregi(\"[0-9](\\.[0-9])?\", $_POST['multiplier'])) {\r\n\t\t$_SESSION['error'] = \"The multiplier is incorrect\";\r\n\t\treturn false;\r\n\t}\r\n\treturn true;\r\n}", "function verifyRegEx(){\n parent::doExpandAdvanceSection();\n $this->type(TEXT_EDITOR, \"\");\n $this->click(LINK_SEARCH);\n $this->type(TEXT_EDITOR, (TEXT_SAMPLE_REGEX));\n $this->type(INPUT_SEARCH, (TEXT_SEARCH_REGEX));\n $this->type(INPUT_REPLACE, (TEXT_REPLACE_REGEX));\n $this->click(CHK_REGEX);\n $this->click(BUTTON_REPLACEALL);\n $this->click(BUTTON_CANCEL);\n $this->click(BUTTON_PREVIEW);\n $this->waitForPageToLoad((WIKI_TEST_WAIT_TIME));\n try {\n $this->assertEquals((TEXT_REGEX_PREVIEW), $this->getText(TEXT_PREVIEW_TEXT1));\n } catch (PHPUnit_Framework_AssertionFailedError $e) {\n parent::doCreateScreenShot(__FUNCTION__);\n array_push($this->verificationErrors, $e->toString());\n }\n try {\n $this->assertEquals((TEXT_REGEX_PREVIEW), $this->getText(TEXT_PREVIEW_TEXT2));\n } catch (PHPUnit_Framework_AssertionFailedError $e) {\n parent::doCreateScreenShot(__FUNCTION__);\n array_push($this->verificationErrors, $e->toString());\n }\n try {\n $this->assertEquals((TEXT_REGEX_PREVIEW), $this->getText(TEXT_PREVIEW_TEXT3));\n } catch (PHPUnit_Framework_AssertionFailedError $e) {\n parent::doCreateScreenShot(__FUNCTION__);\n array_push($this->verificationErrors, $e->toString());\n }\n }", "public function validate($value) {\n return preg_match($this->options[\"pattern\"], $value) ? $value : Filter::ERR_INVALID;\n }", "public static function IsRegex($expr)\r\n {\r\n return Exceptional_String::StartsWith($expr, '/') && Exceptional_String::EndsWith($expr, '/');\r\n }", "public function check_hint() {\n $this->search($this->tree);\n return $this->regex_hint_result;\n }", "function check_username(){\n $usernameErr = '';\n if(empty($_POST[\"username\"])){\n $usernameErr = \"Please enter a username\";\n }\n else{\n $username = $_POST['username'];\n if(!preg_match(\"/^[a-zA-Z0-9_]+$/\", $username)) {\n $usernameErr = \"Alpha lower, upper and underscore only for username\";\n }\n else{//username is ok\n $usernameErr = \"ok\";\n }\n }\n return $usernameErr;\n\n}", "function ValidateEmail($email) {\r\n\t//$email = \"[email protected]\";\r\n\r\n\tif(eregi(\"^[_a-z0-9-]+(\\.[_a-z0-9-]+)*@[a-z0-9-]+(\\.[a-z0-9-]+)*(\\.[a-z]{2,3})$\", $email)) {\r\n\t //echo \"Valid email address.\";\r\n\t return TRUE;\r\n\t}\r\n\telse {\r\n\t //echo \"Invalid email address.\";\r\n\t return FALSE;\r\n\t}\r\n}", "public function evaluateNullability(): bool\n {\n return 1 === preg_match($this->pattern, '', $matches);\n }", "public function getRegexpValidate()\n\t{\n\t\treturn $this->regexp_validate;\n\t}", "public function __construct($regex = null, $modifiers = null) {\n $this->errors = array();\n if ($regex === null) {\n return;\n }\n\n //Are passed modifiers supported?\n if (is_string($modifiers)) {\n $supportedmodifiers = $this->get_supported_modifiers();\n for ($i=0; $i < strlen($modifiers); $i++) {\n if (strpos($supportedmodifiers,$modifiers[$i]) === false) {\n $this->errors[] = new preg_error_unsupported_modifier($this->name(), $modifiers[$i]);\n }\n }\n }\n\n $this->regex = $regex;\n $this->modifiers = $modifiers;\n //do parsing\n if ($this->is_parsing_needed()) {\n $this->build_tree($regex);\n } else {\n $this->ast_root = null;\n //In case with no parsing we should stick to accepting whole regex, not nodes\n $this->accept_regex();\n }\n }", "function validateTelNum($num)\r\n {\r\n preg_match_all($this->re, $num, $matches, PREG_SET_ORDER, 0);\r\n if (empty($matches)) {\r\n $this->invalid_number[] = $num;\r\n return \"invalid number\";\r\n } else {\r\n return $num;\r\n }\r\n }", "public function error(string $text);", "function preg_error_message(int &$code = null, string $func = null, bool $clear = false): string|null\n{\n // No specific functions.\n if ($func === null) {\n $message = ($code = preg_last_error()) ? preg_last_error_msg() : null;\n\n // Clear last error.\n if ($clear && $message) {\n preg_test('~~', '');\n }\n\n return $message;\n }\n\n $error = error_get_last();\n\n if ($code =@ $error['type']) {\n $message = $error['message'];\n if ($message && strpfx($message, $func ?: 'preg_')) {\n // Clear last error.\n $clear && error_clear_last();\n\n $message = strsub($message, strpos($message, '):') + 3);\n if ($message) {\n return $message;\n }\n }\n }\n\n return null;\n}", "function validasi_masukan_alfanumerik(&$pesan_error, $name) {\n $pattern = \"/^[a-zA-Z0-9]+$/\"; //pattern untuk alfanumerik yaitu huruf besar A-Z, huruf kecil a-z dan angka 0-9\n //jika false maka otomatis tidak sesuai pattern\n if (@$_POST[$name]!='' & !preg_match($pattern, @$_POST[$name])) $pesan_error[$name] = 'Hanya boleh memasukkan angka atau huruf';\n}", "public function isValid($value) {\n\n $validator = new Regex($this->options['pattern']);\n\n $valid = $validator->isValid($value);\n \n if(!$valid){\n $this->error($this->options['message']);\n }\n \n return $valid;\n }", "public function getRegex($name) {\n\t\tif (!array_key_exists($name, $this->regexs)) {\n\t\t\tthrow new NotExistingRegexException($name);\n\t\t}\n\t\treturn $this->regexs[$name];\n\t}", "public function isMatch($pat) {\r\n $result = preg_match($pat, $this->contents /*, $matches*/);\r\n //var_dump($pat); // debug patterns\r\n //if ($pat == NULL) debug_print_backtrace();\r\n //var_dump($matches); // debug patterns\r\n //var_dump($result); // debug patterns\r\n //if ($matches == NULL) debug_print_backtrace();\r\n //if ($result === FALSE) debug_print_backtrace();\r\n return $result;\r\n }", "public static function isMatchVaribleRegexPattern($value=null)\r\n {\r\n // determines if the variable that can be used\r\n // in the route file meets the regex rule.\r\n return (preg_match('@\\{(.*?)\\}@is',$value)) ? true : false;\r\n }", "public function test_match_fromInvalidPatternWithoutVars()\n {\n $route = new Route('GET', '/home', 'test');\n $this->assertFalse(\n $route->match('GET', '/test'),\n 'match() must return true if URI pattern provided is the same as the one specified in constructor.'\n );\n }", "function get_match($regex,$content)\n{\n preg_match($regex,$content,$matches);\n return (isset($matches[1]) ? $matches[1] : false);\n}", "function validasi_masukan_email(&$pesan_error, $name) {\n //email format [email protected]\n //pattern pertama sebelum @ adalah bebas antara huruf besar, jika sudah @ maka setidakya ada '.' dan huruf 1, berulang\n //contoh [email protected] -> benar\n //jika ada titik sebelum @ maka setidaknya ada 1 huruf lagi setelahnya contoh [email protected]\n $pattern = \"/^([A-z0-9]+|([A-z0-9]+([._])[A-z0-9]+)+)@([A-z0-9]+[._][A-z0-9]{1,})+$/\";\n if (@$_POST[$name]!='' & !preg_match($pattern, @$_POST[$name])) $pesan_error[$name] = 'E-mail tidak valid';\n}", "function CheckError($str)\n{\n\tif (strpos($str, 'myclubapi-error') !== false) \n\t{\n\t\treturn true;\n\t}\n\treturn false;\n}" ]
[ "0.68059486", "0.66097593", "0.64409137", "0.6416913", "0.6205612", "0.6175282", "0.61411595", "0.6057761", "0.6028516", "0.5878618", "0.5828867", "0.5813979", "0.5792848", "0.5771505", "0.5767668", "0.56467766", "0.5574851", "0.5572244", "0.5555849", "0.553989", "0.54485947", "0.5437697", "0.5418832", "0.53918755", "0.53882694", "0.53877395", "0.53483176", "0.5332559", "0.52780974", "0.5274993", "0.5274993", "0.52557683", "0.5251732", "0.5227743", "0.5207557", "0.5199201", "0.51903003", "0.51851976", "0.51744634", "0.5139961", "0.5134518", "0.5072469", "0.50667816", "0.50514734", "0.50510645", "0.50389683", "0.50361466", "0.50172037", "0.50060904", "0.49995026", "0.49975112", "0.49964753", "0.4992427", "0.49740472", "0.49709427", "0.49667183", "0.49558616", "0.49501988", "0.49501988", "0.4948478", "0.4932107", "0.49317676", "0.49284887", "0.49183998", "0.4916725", "0.49105033", "0.48898146", "0.48796287", "0.48761967", "0.487003", "0.48658323", "0.4863595", "0.48617828", "0.48602757", "0.4855956", "0.4855956", "0.48307604", "0.48285827", "0.48245946", "0.48190635", "0.48133507", "0.48095387", "0.47906545", "0.47896793", "0.4778674", "0.47767937", "0.47716108", "0.47643375", "0.47621602", "0.47540197", "0.47532448", "0.47519392", "0.47505033", "0.4745254", "0.47451755", "0.47306415", "0.47306243", "0.47295925", "0.4718459", "0.4716008" ]
0.71237725
0
get the logged in user (create one if no one is logged in)
public function testRefreshUserById_() { $user = $this->registerAndLoginTestingUser(); $data = [ 'user_id' => $user->id, ]; // send the HTTP request $response = $this->apiCall($this->endpoint, 'post', $data); // assert response status is correct $this->assertEquals($response->getStatusCode(), '200'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function getLoggedInUser()\n{\n\tif(isLoggedIn()) {\n\t\treturn auth()->user();\n\t}\n\treturn null;\n}", "public static function getCurrentUser(){\r\n\t\treturn self::isLoggedIn() == true ? User::getUserById($_SESSION[\"id\"]) : null;\r\n\t}", "static function getCurrentUser()\r\n {\r\n return self::getSingleUser('id', $_SESSION[\"user_id\"]);\r\n }", "public static function getCurrentUser()\n {\n if (isset($_SESSION['user'])) {\n return $_SESSION['user'];\n } else {\n return new User();\n }\n }", "public function get_user() {\n\t\treturn ($this->logged_in()) ? $this->session->get($this->config['session_key'], null) : null;\n\t}", "static function currentUser() {\n $cookie = new CookieSigner(Config::app()['BASE_KEY']);\n\n if (isset($_SESSION['userId']) && $userId = $_SESSION['userId']) {\n $user = new User();\n return $user->findOne($userId);\n } else if ($userId = $cookie->get('userId')) {\n $user = new User();\n $user->findOne($userId);\n\n if ($user && $user->isAuthenticated('remember', $cookie->get('rememberToken'))) {\n self::logIn($user);\n return $user;\n }\n }\n return null;\n }", "private function getLoggedInUser()\n {\n if (null !== $token = $this->securityContext->getToken()) {\n return $token->getUser();\n }\n\n return null;\n }", "public function getLoggedInUser()\n {\n $securityContext = $this->container->get('security.context');\n $consultant = $securityContext->getToken()->getUser();\n return $consultant;\n }", "public function getLoggedInUser() {\n return $this->_user->getLoggedInUser();\n }", "public function getLoggedInUser() {\n\t\treturn elgg_get_logged_in_user_entity();\n\t}", "public static function getUser()\n\t{\n\t\tif(isset($_SESSION['user_id'])){\n\t\t\t\n\t\t\treturn User::findByID($_SESSION['user_id']);\n\t\t\t\n\t\t}else{\n\t\t\n\t\t\treturn static::loginFromRememberCookie();\n\t\t\n\t\t}\n\t}", "public static function getLoggedInUser() {\n if (self::$loggedInUser == false) {\n //We need the Db class to escape the username, just in case.\n $db = Db::getInstance();\n\n // The email is used as the username to log into the service.\n $login = $db->escapeString($_SERVER['PHP_AUTH_USER']);\n $password = $db->escapeString($_SERVER['PHP_AUTH_PW']);\n \n $query = \"SELECT \".Config::AUTH_FIELD_UID.\", \".Config::AUTH_FIELD_LOGIN.\" \"\n .\"FROM \".Config::DB_DB.\".\".Config::AUTH_TABLE.\" WHERE \"\n .Config::AUTH_FIELD_LOGIN.\" = '$login' \"\n .\"AND `\".Config::AUTH_FIELD_PASSWORD.\"` = SHA1('$password')\";\n\n self::$loggedInUser = self::loadBySql($query);\n }\n\n return self::$loggedInUser;\n }", "public static function getLoggedIn (): ?User\n {\n /**\n * Ist ein*e User*in eingeloggt, ...\n */\n if (self::isLoggedIn()) {\n /**\n * ... so holen wir uns hier die zugehörige ID mit dem default null.\n */\n $userId = Session::get(self::LOGGED_IN_ID, null);\n\n /**\n * Wurde also eine ID ind er Session gefunden, laden wir den/die User*in aus der Datenbank und geben das\n * Ergebnis zurück.\n */\n if ($userId !== null) {\n return User::find($userId);\n }\n }\n /**\n * Andernfalls geben wir null zurück.\n */\n return null;\n }", "protected function getCurrentUser()\n {\n return User::query()->findOrFail(Auth::user()->id);\n }", "public function getCurrentUser();", "public function get_user()\n {\n\n $user = $this->_session->get($this->_config['session_key']);\n\n // Check for \"remembered\" login\n if (!$user) {\n $user = $this->auto_login();\n }\n // refresh user session regularly to mitigate session fixation attacks\n\n if( ! $this->refresh_session()){\n return FALSE;\n }\n\n return $user;\n }", "public static function getUser() {\n\t\t\tif(isset($_SESSION['user']))\n\t\t\t\t$user = $_SESSION['user'];\n\t\t\telse\n\t\t\t\t$user = new User();\n\t\t\treturn $user;\n\t\t}", "public static function getCurrentUser();", "public function user()\n\t{\n\t\tif (is_null($this->user) and $this->session->has(static::$key))\n\t\t{\n\t\t\t$this->user = call_user_func(Config::get('auth.by_id'), $this->session->get(static::$key));\n\t\t}\n\n\t\treturn $this->user;\n\t}", "public static function user()\n {\n if (!isset(static::$user)) {\n $uid = static::getCurrentUserId();\n if ($uid) static::$user = static::fetchUserById($uid);\n }\n \n return static::$user;\n }", "public function get_user()\n\t{\n\t\tif ($this->logged_in())\n\t\t{\n\t\t\treturn $this->_session->get($this->_config['session_key']);\n\t\t}\n\n\t\treturn FALSE;\n\t}", "public function findLoggedUser()\n {\n\t\t$auth = Zend_Auth::getInstance();\n\t\t$user = null;\n\n\t\tif($auth->hasIdentity()) {\n\t\t\t$user = $auth->getIdentity();\n\t\t}\n\n return $user;\n }", "public static function getAuthenticatedUser ()\n\t{\n\t\t$inst = self::getInstance();\n\t\t\n\t\tif ($inst->_authenticatedUser == null) \n\t\t{\n\t\t\t$user = $inst->_auth->getIdentity();\n\t\t\tif ($user)\n\t\t\t\t$inst->_authenticatedUser = Tg_User::getUserById($user['id']);\n\t\t\telse\n\t\t\t\t$inst->_authenticatedUser = false;\n\t\t}\n\t\t\t\n\t\treturn $inst->_authenticatedUser;\n\t}", "function current_user(){\n static $current_user;\n global $db;\n if(!$current_user){\n if(isset($_SESSION['user_id'])):\n $user_id = intval($_SESSION['user_id']);\n $current_user = find_by_id('users',$user_id);\n endif;\n }\n return $current_user;\n }", "public function getCurrentUser()\n\t{\n\t\treturn $this->users->getCurrentUser();\n\t}", "public static function getCurrentUser()\n {\n $auth = Zend_Auth::getInstance();\n $_data = $auth->getIdentity();\n return new User($_data);\n }", "protected function getLoggedUser()\n {\n if (isset($this->oUser) === true && $this->oUser->isLoaded() === true) {\n return $this->oUser;\n } elseif ($this->loadUserBySession() === true) {\n return $this->oUser;\n } else {\n return null;\n }\n }", "public static function user()\n {\n if(static::$_auth_user) {\n return static::$_auth_user;\n }\n\n #Check for authenticated session\n $auth_id = Session::get(static::$_auth_name);\n $instance = static::getConfig('instance');\n\n if($auth_id) {\n static::$_auth_user = new $instance($auth_id);\n return static::$_auth_user;\n }\n\n #Check for user auto log cookie\n $cookie_token = Cookie::get(static::$_auth_name);\n\n if($cookie_token) {\n $user_id = static::validateAuthCookieToken($cookie_token);\n\n if(!$user_id) {\n static::logout();\n return false;\n }\n\n static::$_auth_user = new $instance($user_id);\n #update cookie\n static::setUserCookieToken($user_id);\n return static::$_auth_user;\n }\n\n return false;\n }", "function user()\n\t{\n\t\t$ci =& get_instance();\n\t\t$user = $ci->auth_model->get_logged_user();\n\t\tif (empty($user)) {\n\t\t\t$ci->auth_model->logout();\n\t\t} else {\n\t\t\treturn $user;\n\t\t}\n\t}", "function user()\n\t{\n\t\t$ci =& get_instance();\n\t\t$user = $ci->auth_model->get_logged_user();\n\t\tif (empty($user)) {\n\t\t\t$ci->auth_model->logout();\n\t\t} else {\n\t\t\treturn $user;\n\t\t}\n\t}", "public function getCurrentUser() {\n if (!property_exists($this, 'currentUser')) {\n $this->currentUser = null;\n $uid = isset($_SESSION['uid']) ? $_SESSION['uid'] : false;\n if ($uid) {\n $this->currentUser = User::find($uid);\n }\n }\n return $this->currentUser;\n }", "protected function getCurrentUser()\n {\n /*\n if (!isset($this->db)) {\n $this->connectDB();\n }*/\n\n $this->load->model(\"Usuario\");\n return new Usuario($this->session->user_id);\n }", "public function getUser()\n {\n if ($this->_user === false) {\n $this->_user = Client::findByUsername($this->username);\n\n /** added login by email**/\n if($this->_user === false ){\n $this->_user = Client::findByEmail($this->username);\n }\n }\n\n return $this->_user;\n }", "public function user() {\n\t\tif (!Auth::check()) {\n\t\t\treturn null;\n\t\t}\n\n\t\treturn Auth::getUser();\n\t}", "protected function getUserOrImpersonateUser() {\n if ($this->get('security.authorization_checker')->isGranted('ROLE_CDG')) {\n $session = $this->get('session');\n $userId = $session->get('user_id');\n $userRepository = $this->getDoctrine()->getRepository('UserBundle:User');\n $user = $userRepository->find($userId);\n $session->set('user_siret', $user->getUsername());\n } else {\n $user = $this->getUser();\n }\n\n return $user;\n }", "public function get_user() {\r\n\t\treturn ($this->user);\r\n\t}", "public function me() {\n\t\t\tif (!isset($this->oUser)) $this->oUser = user($this->iUser); \n\t\t\treturn $this->oUser; \n\t\t}", "public function getCurrentUser()\n {\n $this->validateUser();\n\n if ($this->session->has(\"user\")) {\n return $this->session->get(\"user\");\n }\n }", "private static function getFromSession()\n {\n if (empty($_SESSION['current_user'])) {\n // No user in session, create one.\n $entityClassName = static::ENTITIES_CLASS_NAME;\n $user = new $entityClassName(array(\n 'source' => 'cookie',\n ));\n self::setCurrent($user);\n } else {\n Logger::get()->debug('Found user in session.');\n // Regenerate session ID every SESSION_DURATION minutes.\n if (time() > ($_SESSION['timestamp'] + + self::SESSION_DURATION)) {\n Logger::get()->debug('Regenerated session ID.');\n session_regenerate_id();\n }\n }\n\n return $_SESSION['current_user'];\n }", "public function defaultUser()\n {\n if ($this->defaultUser){\n\n return $this->defaultUser;\n }\n\n return $this->defaultUser = factory(\\App\\User::class)->create();\n }", "public function user()\n {\n if (!Zend_Auth::getInstance()->hasIdentity()) {\n return FALSE;\n }\n //If user is logged in\n return Zend_Auth::getInstance()->getIdentity();\n }", "public function getMyUser() {\n return new User($_SESSION['username']);\n }", "function find_logged_in_user() {\n\tglobal $loggedInUser;\t\n\tif (isset($_POST[\"logId\"])) {\n\t\t$loggedInUser=get_user((int)$_POST[\"logId\"]);\n\t} elseif (isset($_SESSION[\"logId\"])) {\n\t\t$loggedInUser=get_user((int)$_SESSION[\"logId\"]);\t\t\t\t\t\n\t} else {\n\t\t$loggedInUser=null;\t\n\t}\n}", "public static function currentUser()\n {\n self::startSession();\n return self::isLoggedIn() ? $_SESSION['user'] :\n new User(array('role' => 'unregistered'));\n }", "function user()\n {\n return isset($_SESSION['user']) ? \\Models\\User::find($_SESSION['user']) : null;\n }", "public function get_user($default = NULL)\n\t{\n\t\t$user = FALSE;\n\t\tif ($this->_use_session) {\n\t\t\t$user = parent::get_user($default);\n\t\t}\n\n\t\tif ( ! $user)\n\t\t{\n\t\t\t// check for \"remembered\" login\n\t\t\t$user = $this->auto_login();\n\t\t}\n\n\t\treturn $user;\n\t}", "function getAuthenticatedUser()\n {\n if (isset($_SESSION['MFW_authenticated_user'])) {\n return $_SESSION['MFW_authenticated_user'];\n }\n\n return null;\n }", "public static function get_current_user() {\r\n\t\ttry {\r\n\t\t\t$user_id = self::get_current_user_id();\r\n\t\t\tif (is_numeric($user_id)) {\r\n\t\t\t\t$mysqli = Database::connection();\r\n\t\t\t\t$sql = \"SELECT username, email FROM users WHERE user_id = '$user_id'\";\r\n\t\t\t\t$result = $mysqli->query($sql)\r\n\t\t\t\tor die ($mysqli->error);\r\n\t\t\t\tif ($result->num_rows == 1) {\r\n\t\t\t\t\tlist($username, $email) = mysqli_fetch_row($result);\r\n\t\t\t\t\t$user = new CurrentUser(array(\r\n\t\t\t\t\t\t'user_id' => $user_id,\r\n\t\t\t\t\t\t'username' => $username,\r\n\t\t\t\t\t\t'email' => $email)\r\n\t\t\t\t\t);\t\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthrow new UnexpectedValueException;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthrow new UnexpectedValueException;\r\n\t\t\t}\r\n\t\t}\r\n\t\tcatch (UnexpectedValueException $e) {\r\n\t\t\t$user = new AnonymousUser;\r\n\t\t}\r\n\t\tfinally {\r\n\t\t\treturn $user;\r\n\t\t}\r\n\t}", "static function getUser()\n {\n return isset($_SESSION['user']) ? UserQuery::create()->findOneById($_SESSION['user']) : false;\n }", "protected function _current_user()\n {\n $user_id = $this->session->userdata(\"user_id\");\n \n if($user_id)\n {\n $this->load->model('user_model');\n $this->current_user = $this->user_model->getOne('' , ['user.user_id' => $user_id]);\n }\n \n return $this->current_user;\n }", "public static function get_user_logged_in() {\n if (isset($_SESSION['user'])) {\n $user_id = $_SESSION['user'];\n // Pyydetään User-mallilta käyttäjä session mukaisella id:llä\n $user = User::find($user_id);\n\n return $user;\n }\n\n // Käyttäjä ei ole kirjautunut sisään\n return null;\n }", "function get_user()\n{\n if (!Session::has(\"user\")) {\n return null;\n }\n\n return Session::get(\"user\");\n}", "public static function user()\n {\n if (session()->has('id')) {\n return User::find(session('id'));\n }\n\n return null;\n }", "function getLoggedInUser($token)\n\t{\n\t\tglobal $db;\n\t\t$userId = $this->GetUserIdByToken($token);\n\t\tif(isset($userId))\n\t\t{\n\t\t\t$user = $db->smartQuery(array(\n\t\t\t\t\t'sql' => \"SELECT userid, email, isAdmin FROM `user` WHERE `userid`=:userId;\",\n\t\t\t\t\t'par' => array('userId' => $userId),\n\t\t\t\t\t'ret' => 'fetch-assoc'\n\t\t\t));\n\t\t\treturn $user;\n\t\t}\n\t\treturn (object)array(\"error\" => \"user not found\");\n\t}", "public function GetCurrentUser()\n {\n return $this->userManager->getCurrent();\n }", "public static function &getCurrentUser() {\n\t\tstatic $instance;\n\t\tif( is_null($instance) ) {\n\t\t\tif ( !empty($_COOKIE['SESSION_NUMBER']) ) {\n\t\t\t\t$instance = self::getUser($_COOKIE['SESSION_NUMBER']);\n\t\t\t\tif ( !$instance || !$instance->checkCookies() ) {\n\t\t\t\t\t$instance = new user;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t$instance = new user;\n\t\t\t}\n\t\t}\n\t\treturn $instance;\n\t}", "public function getUser() {\n\t\treturn User::newFromName( $this->params['user'], false );\n\t}", "public function get_user() {\n\t\treturn $this->user;\n\t}", "public function get_user($default = NULL)\n {\n $user = parent::get_user($default);\n\n\t\tif ($user === $default)\n\t\t{\n\t\t\t// check for \"remembered\" login\n\t\t\tif (($user = $this->auto_login()) === FALSE)\n\t\t\t\treturn $default;\n\t\t}\n\n\t\treturn $user;\n }", "public function get_current_user(){\n $username = $this->session->userdata['logged_in']['username'];\n return $user_id = $this->research_model->current_user($username);\n }", "public function getUser()\n {\n if ($this->_user === false) {\n $this->_user = User::findByLogin($this->login);\n }\n\n return $this->_user;\n }", "public function getUser()\n {\n if ($this->_user === false) {\n $this->_user = User::findByLogin($this->login);\n }\n\n return $this->_user;\n }", "public function getUser()\n {\n $identity = $this->session->get('auth-identity');\n if (isset($identity['id'])) {\n $user = Users::findFirstById($identity['id']);\n if ($user == false) {\n // throw new Exception('The user does not exist');\n }\n\n return $user;\n }\n\n return false;\n }", "public function getUser ()\n\t{\n\t\tif ($this->check()) {\n\t\t\tif (!static::$_user) {\n\t\t\t\t$username = $this->session->get('user')['username'];\n\t\t\t\tstatic::$_user = $user = User::findFirstByUsername($username);\n\t\t\t}\n\t\t\treturn static::$_user;\n\t\t}\n\t\treturn false;\n\t}", "function get_user () {\n\t\treturn $this->user_id;\n\t}", "public function getLoggedUser() {\n\t\t$session = $this->getUserSession();\n\t\treturn ($this->isAdmin()) ? $session->getUser() : $session->getCustomer();\n\t}", "public function getAuthenticatedUser()\n {\n // get the web-user\n $user = Auth::guard()->user();\n\n // get the api-user\n if(!isset($user) && $user == null) {\n $user = Auth::guard('api')->user();\n }\n return $user;\n }", "public static function getCurrentUser()\n\t{\n\t\tif (!session_id())\n\t\t{\n\t\t\tsession_start();\n\t\t}\n\n\t\tif (isset($_SESSION['user_name']))\n\t\t{\n\t\t\treturn self::getUser($_SESSION['user_name']);\n\t\t}\n\n\t\t$accessToken = filter_input(INPUT_COOKIE, 'access_token');\n\t\tif ($accessToken)\n\t\t{\n\t\t\t$user = self::validateToken($accessToken);\n\t\t\tif ($user)\n\t\t\t{\n\t\t\t\t$_SESSION['user_name'] = $user;\n\t\t\t\treturn self::getUser($user);\n\t\t\t}\n\t\t}\n\n\t\treturn null;\n\t}", "function current_user(){\n static $current_user;\n global $db;\n if( !$current_user ) {\n if(isset($_SESSION['user_id'])) {\n $user_id = intval($_SESSION['user_id']);\n $current_user = find_by_id('users',$user_id);\n }\n }\n return $current_user;\n}", "function getUser($userName = null)\n{\n\tif (!$userName) return $this->loggedUser;\n\t$user = $this->getStorage()->getUser($userName);\n\tif ($user) $user->auth = $this;\n\treturn $user;\n}", "public function getLoggedIn()\n\t{\n\t\treturn auth()->user();\n\t}", "public function getCurrentOnlineUser()\r\n\t{\r\n\t\tif ($this->user) {\r\n\t\t\treturn $this->user; \r\n\t\t}\r\n\r\n\t\ttry {\r\n\t\t\tif (!$this->validateUserFromSession()) {\r\n\t\t\t\t$this->validateUserFromCookie();\r\n\t\t\t}\r\n\r\n\t\t} catch (\\PDOException $e) {\r\n\t\t\t$this->user = null;\r\n\t\t}\r\n\r\n\t\treturn $this->user;\r\n\t}", "function getUser(){\n\t\tif( $this->isGuest )\n\t\t\treturn;\n\t\tif( $this->_user === null ){\n\t\t\t$this->_user = User::model()->findByPk( $this->id );\n\t\t}\n\t\treturn $this->_user;\n\t}", "public function getLoggedInUser()\n\t{\n\t\tif (!isset($this->loggedInUser)) {\n $this->loggedInUser = array();\n \n if ($this->getIsUserLoggedIn()) {\n // get the logged in user\n $this->loggedInUser = $this->getFamilyGraph()->api('me');\n }\n }\n \n return $this->loggedInUser;\n\t}", "public function user()\n {\n if ( ! Auth::check()) {\n return null;\n }\n\n return Auth::getUser();\n }", "function cafet_get_logged_user(): ?User\n {\n if (!isset($_SESSION['user'])) return null;\n \n $user = (object) unserialize($_SESSION['user']);\n \n if ($user instanceof User) return $user;\n else return null;\n }", "static public function GetUser() {\n if (self::GetImpersonatedUser()) {\n return self::GetImpersonatedUser();\n }\n return self::GetAuthUser();\n }", "public function getUser()\n {\n if ($this->_user === false) {\n $this->_user = self::findOne(['login' => $this->login]);\n if($this->_user[attributes] === null) {\n self::findOne(['email' => $this->login]);\n }\n }\n\n return $this->_user;\n }", "public function getUser()\n {\n if ($this->_user === false) {\n $this->_user = mgcms\\db\\User::find()->andWhere(['or', ['username' => $this->username], ['email' => $this->username]])->one();\n }\n\n return $this->_user;\n }", "function user()\n {\n return eZUser::fetch( $this->UserID );\n }", "public function user()\n {\n if (!Auth::check()) {\n return null;\n }\n\n return Auth::getUser();\n }", "public function checkLogin() {\n if (!$this->isLoggedIn()) {\n Router::getInstance()->redirect('login');\n }\n return $this->getCurrentUser();\n }", "public function checkUser()\n\t{\n\t\tif (isset($_SESSION['user']) && ($_SESSION['user']!=null))\n\t\t{\n\t\t\t$_SESSION['lasttime'] = date('d/m/Y h:i:s a', time());\n\t\t\treturn $_SESSION['user'];\n\t\t}\n\t\telse\n\t\t\tdie('Not logged');\n\t}", "public function getCurrentUser(){\n\t\treturn BankAccessor::create()->getCurrentUser();\n\t}", "function user()\r\n {\r\n if ( $this->UserID != 0 )\r\n {\r\n $ret = new eZUser( $this->UserID );\r\n }\r\n return $ret;\r\n }", "public static function getLoggedUser()\r\n {\r\n self::session_start();\r\n if (!isset($_SESSION['user'])) return false;\r\n return $_SESSION['user'];\r\n }", "protected function getUser()\n {\n if ($this->_user === null) {\n $this->_user = Users::findByUsername($this->login);\n }\n\n return $this->_user;\n }", "private function getAuthenticatedUser()\r\n {\r\n $tokenStorage = $this->container->get('security.token_storage');\r\n return $tokenStorage->getToken()->getUser();\r\n }", "private function getAuthenticatedUser()\r\n {\r\n $tokenStorage = $this->container->get('security.token_storage');\r\n return $tokenStorage->getToken()->getUser();\r\n }", "private function getOrCreateUser()\n {\n $user = User::firstOrCreate([\n 'email' => $this->user->email\n ]);\n $user->name = $this->user->fullname;\n $user->save();\n\n return $user;\n }", "public static function currentUserTEST()\n {\n if (Auth::check()) {\n return Auth::user();\n } else {\n $user = User::find(Config::get('mrcore.wiki.anonymous'));\n Auth::login($user);\n Auth::user()->login();\n #return self::find(Config::get('mrcore.wiki.anonymous'));\n return Auth::user();\n }\n }", "public static function getLoggedUser(){\n self::session_start();\n if(!isset($_SESSION['usuario'])) return false;\n return $_SESSION['usuario'];\n }", "public function get_user_id()\n {\n return self::getUser();\n }", "public function getLoggedUser()\n {\n if (null === $token = $this->securityContext->getToken()) {\n return null;\n }\n\n if (!is_object($user = $token->getUser())) {\n return null;\n }\n\n return $user;\n }", "public function userLoggedIn(){\r\n \n \t$user = new UserObject();\n \t\r\n \tif( isset ($_SESSION['id']) &&\r\n \t\tisset ($_SESSION['username']) &&\r\n \t\tisset ($_SESSION['profile_picture']) &&\r\n \t\tisset ($_SESSION['access_token'])){\r\n \t\t\t\r\n \t\t$user->id = $_SESSION['id'];\r\n \t\t$user->username = $_SESSION['username'];\r\n \t\t$user->profile_picture = $_SESSION['profile_picture'];\r\n \t\t$user->access_token = $_SESSION['access_token'];\r\n \t}\n \t\t\r\n \treturn $user;\r\n }", "public static function user(){\n\t\treturn self::session()->user();\n\t}", "public function identity()\r\n {\r\n\t\t$storage = $this->get_storage();\r\n\r\n if ($storage->is_empty()) {\r\n return null;\r\n }\r\n if( is_null(self::$login_user) ){\r\n $u = $storage->read();\r\n\t\t\tself::$login_user = Model_User::instance()->user($u['uid']);\r\n \r\n global $VIEW_AUTH_USERID;\r\n $VIEW_AUTH_USERID = idtourl(self::$login_user['uid']);\r\n }\r\n return self::$login_user; \r\n }", "function user(){\n\n if(isAuthenticated()){\n return User::findOrFail(Session::get('SESSION_USER_ID'));\n }\n\n return false;\n}", "public function getUser()\n {\n if(!$this->user)\n $this->user = User::getActive();\n\n return $this->user;\n }", "protected function loginAsLockedUser(): ?User\n {\n Auth::loginUsingId('9');\n return $this->getPresentUser();\n }", "function getCurrentUser() {\r\n if (isset($_SESSION[\"currentUser\"]))\r\n return $_SESSION[\"currentUser\"];\r\n // Else\r\n return false;\r\n}" ]
[ "0.79075736", "0.7689682", "0.75464326", "0.75414014", "0.7541055", "0.7514673", "0.7490592", "0.7472287", "0.742072", "0.7416222", "0.74094206", "0.740845", "0.7397724", "0.7311969", "0.7294091", "0.72793037", "0.7278823", "0.7270481", "0.726679", "0.7266378", "0.7263766", "0.7254203", "0.7248859", "0.72475207", "0.723228", "0.7218883", "0.72116214", "0.7210227", "0.72089", "0.72089", "0.72088313", "0.71949196", "0.71942806", "0.7188266", "0.71876836", "0.7186142", "0.71807224", "0.7179684", "0.7175073", "0.7169937", "0.71672386", "0.71651655", "0.7159729", "0.7157819", "0.71539164", "0.71524", "0.7148151", "0.7147126", "0.713584", "0.71317685", "0.7118667", "0.71078485", "0.7107161", "0.70984083", "0.70926493", "0.7088323", "0.7076054", "0.7075319", "0.7051179", "0.70463717", "0.70388347", "0.70388347", "0.7034951", "0.70289654", "0.7025438", "0.701914", "0.7011651", "0.69966954", "0.69954944", "0.69950736", "0.69945574", "0.6987426", "0.6978392", "0.6978242", "0.6964482", "0.6963957", "0.69496703", "0.6943001", "0.69331914", "0.6925622", "0.6924651", "0.6924064", "0.69213873", "0.69192386", "0.69190335", "0.69142306", "0.6914143", "0.69122046", "0.69122046", "0.68935496", "0.68921626", "0.6890938", "0.6890777", "0.6888756", "0.6886545", "0.6868864", "0.6860245", "0.6848271", "0.68428564", "0.6841984", "0.68419653" ]
0.0
-1
send the HTTP request
public function testRefreshUserByToken_() { $response = $this->apiCall($this->endpoint, 'post', [], true); // assert response status is correct $this->assertEquals($response->getStatusCode(), '200'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function sendRequest()\n\t\t{\n\t\t\t$stream = $this->getRequestStream();\n\t\t\t$stream->write( $this->getRequestString() );\n\t\t\t$stream->close();\n\t\t}", "public function sendRequest()\n {\n }", "public function sendRequest( ) {\n\n }", "function send_request() { \n if(!$this->connect()) { \n return false; \n } \n else { \n $this->result = $this->request($this->data);\n return $this->result; \n } \n }", "public function sendRequest() {\n $response = file_get_contents($this->url);\n\n if ($response) {\n\n $this->response = $response;\n return true;\n } else {\n\n return false;\n }\n }", "public function send()\n {\n http_response_code( $this->getResultCode() );\n echo $this->getBody();\n }", "public function request()\n {\n $this->setParams();\n\n $jsondata = json_encode($this->getData(), JSON_UNESCAPED_SLASHES);\n\n if(!$this->is_JSON($jsondata)){\n $this->log(\"Sending parameters must be JSON.\",'Exiting process.');\n $this->error_message('Sending parameters must be JSON.');\n }\n $lenght = strlen($jsondata);\n if($lenght<=0){\n $this->log(\"Length must be more than zero.\",'Exiting process.');\n $this->error_message(\"Length must be more than zero.\");\n }else{\n $lenght = $lenght <= 999 ? \"0\" . $lenght : $lenght;\n }\n\n $this->response_json = $this->oxd_socket_request(utf8_encode($lenght . $jsondata));\n\n $this->response_json = str_replace(substr($this->response_json, 0, 4), \"\", $this->response_json);\n if ($this->response_json) {\n $object = json_decode($this->response_json);\n if ($object->status == 'error') {\n $this->error_message($object->data->error . ' : ' . $object->data->error_description);\n } elseif ($object->status == 'ok') {\n $this->response_object = json_decode($this->response_json);\n }\n } else {\n $this->log(\"Response is empty...\",'Exiting process.');\n $this->error_message('Response is empty...');\n }\n }", "public function send($request);", "public function execute_http()\n {\n }", "public function doRequests();", "public function send()\n {\n http_response_code($this->statusCode);\n $this->sendContent();\n }", "public function request();", "public function sendRequest( $uri )\n\t{\n\t\t$this->response = Requests::get($uri, array(), array(\"timeout\" => $this->timeout));\n\t}", "public function request() {\r\n\t\t$this->verbose('protocol', $this->protocol);\r\n\t\t$this->verbose('method', $this->method);\r\n\t\t$this->verbose('host', $this->host);\r\n\t\t$this->verbose('path', $this->path);\r\n\t\t$this->verbose('query', $this->query);\r\n\t\t$this->verbose('headers', $this->headers);\r\n\t\t$this->verbose('body', $this->body);\r\n\t\t$this->verbose('timeout', $this->timeout);\r\n\r\n\t\t$this->addQueryToPath();\r\n\t\t$this->verbose('path + query', $this->path);\r\n\t\t$this->cleanHost();\r\n\t\t$this->verbose('cleanHost', $this->host);\r\n\r\n\t\t$url = $this->protocol . '://' . $this->host . $this->path;\r\n\t\t$this->verbose('url', $url);\r\n\r\n\t\t$this->headers['Authorization'] = $this->makeAuthHeader();\r\n\r\n\r\n\t\tforeach ($this->headers as $header_key => $header_value) {\r\n\t\t\t$header_array[] = $header_key . \":\" . $header_value;\r\n\t\t}\r\n\r\n\t\t$ch = curl_init();\r\n\t\t$options = array(\r\n\t\t\tCURLOPT_URL => $url,\r\n\t\t\tCURLOPT_RETURNTRANSFER => 1,\r\n\t\t\tCURLOPT_CUSTOMREQUEST => $this->method,\r\n\t\t\tCURLOPT_POSTFIELDS => $this->body,\r\n\t\t\tCURLOPT_HEADER => false,\r\n\t\t\tCURLINFO_HEADER_OUT => true,\r\n\t\t\tCURLOPT_HTTPHEADER => $header_array,\r\n\t\t\tCURLOPT_TIMEOUT => $this->timeout\r\n\t\t);\r\n\t\tcurl_setopt_array($ch, $options);\r\n\r\n\t\t$this->verbose('body at exec', $this->body);\r\n\t\t$response_body = curl_exec($ch);\r\n\t\t$response_error = curl_error($ch);\r\n\t\t$response_headers = curl_getinfo($ch);\r\n\t\tcurl_close($ch);\r\n\r\n\t\t$response['error'] = $response_error;\r\n\t\t$response['body'] = $response_body;\r\n\t\t$response['header'] = $response_headers;\r\n\t\treturn $response;\r\n\t}", "public function send()\n\t{\n\t\t$url \t\t= $this->getURL();\t\t\n\t\t$data \t\t= $this->getData();\n\t\t$method \t= $this->getMethod();\n\t\t\t\t\n\t\t$ch = curl_init();\n\t\t$options = $this->_options;\n\t\tcurl_setopt_array($ch, array(\n\t\t\tCURLOPT_USERAGENT \t => $options->useragent,\n\t\t\tCURLOPT_CONNECTTIMEOUT => $options->connection_timeout,\n\t\t\tCURLOPT_TIMEOUT\t\t => $options->timeout,\n\t\t\tCURLOPT_RETURNTRANSFER => true,\n\t\t\tCURLINFO_HEADER_OUT\t => true,\n\t\t\tCURLOPT_SSL_VERIFYPEER => $options->ssl,\n\t\t\tCURLOPT_HEADER\t\t => false\n\t\t));\n\t \n $headers = array();\n //if data is string then \n //set the authorization header\n //A Hack to make the linked-in work wihtout affecting\n //other services\n if ( is_string($this->_data) ) {\n $headers[] = $this->_internal_request->to_header();\n $headers[] = \"Content-Type: text/plain\";\n }\n \n if ( !empty($headers) )\n curl_setopt($ch,CURLOPT_HTTPHEADER,$headers);\n \n\t\tswitch ($method) \n\t\t{\n\t\t\tcase KHttpRequest::POST :\n\t\t\t\tcurl_setopt($ch, CURLOPT_POST, true);\n\t\t\t\tif (!empty($data)) curl_setopt($ch, CURLOPT_POSTFIELDS, $data);\n\t\t\t\tbreak;\n\t\t\tcase KHttpRequest::PUT\t: \n\t\t\t\tcurl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT');\n\t\t\t\tif (!empty($data)) curl_setopt($ch, CURLOPT_POSTFIELDS, $data);\n\t\t\t\tbreak;\t\n\t\t\tcase KHttpRequest::DELETE:\n\t\t\t\tcurl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');\n\t\t\t\tif (!empty($data)) curl_setopt($ch, CURLOPT_POSTFIELDS, $data);\n\t\t}\n\t\t\n\t\tcurl_setopt($ch, CURLOPT_URL, $url);\n\t\t\t\t\n\t\t$response = curl_exec($ch);\n\t\t\n\t\treturn new ComConnectOauthResponse($response, curl_getinfo($ch));\n\t}", "public function send()\n {\n header(\n $_SERVER[\"SERVER_PROTOCOL\"].\" \". // HTTP 1.1\n $this->statusCode.\" \". // 200\n $this->statusText // OK\n );\n foreach ($this->headers as $key => $value) {\n header(\"$key: $value\");\n }\n }", "public function sendRequest()\n {\n $url = \"http://66.45.237.70/api.php\";\n $number = $this->senderObject->getMobile();\n $text = $this->senderObject->getMessage();\n\n try {\n $this->errorException();\n\n } catch (XenonException $exception) {\n $exception->showException($this->senderObject);\n }\n $config = $this->senderObject->getConfig();\n\n $data = array(\n 'username' => $config['username'],\n 'password' => $config['password'],\n 'number' => $number,\n 'message' => $text\n );\n try {\n $ch = curl_init(); // Initialize cURL\n curl_setopt($ch, CURLOPT_URL, $url);\n curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n $smsResult = curl_exec($ch);\n $status = $this->generateReport($smsResult, $data);\n\n } catch (XenonException $exception) {\n $exception->showException();\n }\n }", "public function send(): void\n {\n $requiredParams = [\n 'v' => $this->client->getVersion(),\n 'tid' => $this->client->getTrackingId(),\n 'cid' => $this->client->getClientId(),\n 't' => $this->getHitType(),\n ];\n $paramValues = array_merge(\n $requiredParams,\n $this->parameters\n );\n \n $url = $this->getBaseUrl();\n\n $guzzle = new \\GuzzleHttp\\Client();\n $result = $guzzle->request('POST', $url, ['form_params' => $paramValues]);\n\n if ($this->client->isDebug()) {\n var_dump((string) $result->getBody());\n }\n }", "private function sendGetRequest($url)\n {\n // Send the request and process the response\n $guzzleResponse = $this->client->request('GET', $url);\n $this->lastResponse = new SmartwaiverResponse($guzzleResponse);\n }", "public function send()\r\n\t{\r\n\t\t$header = $this->buildHeader();\r\n\r\n\t\t$this->response = $this->connect($header);\r\n\r\n\t\treturn $this->getContent();\r\n\t}", "public function send() {\n\t\tif (isset($this->_headers['Location']) && $this->_status === 200) {\n\t\t\t$this->statusCode(302);\n\t\t}\n\n\t\t$codeMessage = $this->_statusCodes[$this->_status];\n\t\t$this->_setCookies();\n\t\t$this->_sendHeader(\"{$this->_protocol} {$this->_status} {$codeMessage}\");\n\t\t$this->_setContent();\n\t\t$this->_setContentLength();\n\t\t$this->_setContentType();\n\t\tforeach ($this->_headers as $header => $values) {\n\t\t\tforeach ((array)$values as $value) {\n\t\t\t\t$this->_sendHeader($header, $value);\n\t\t\t}\n\t\t}\n\t\tif ($this->_file) {\n\t\t\t$this->_sendFile($this->_file, $this->_fileRange);\n\t\t\t$this->_file = $this->_fileRange = null;\n\t\t} else {\n\t\t\t$this->_sendContent($this->_body);\n\t\t}\n\t}", "function http_send($path, $method, $params = array(), $headers = array())\n\t{\n\t\t$this->http_response = '';\n\t\t$this->http_response_code = '';\n\t\t$this->http_method = $method;\n\t\t$this->http_parse_request_url($path);\n\t\t$this->http_headers_merge($headers);\n\n\t\tif(is_array($params)):\n\t\t\t$params = $this->http_serialize_params($params);\n\t\tendif;\n\n\t\t$method = strtoupper($method);\n\n\t\t$the_host = $this->http_url_bits['host'];\n\t\t$the_path = (isset($this->http_url_bits['path'])&&trim($this->http_url_bits['path'])!='') ? $this->http_url_bits['path'] : '';\n\t\t$the_path .= (isset($this->http_url_bits['query'])&&trim($this->http_url_bits['query'])!='') ? '?'.$this->http_url_bits['query'] : '';\n\n \t$this->http_headers_add('', \"$method $the_path HTTP/1.1\");\n \t$this->http_headers_add('Host', $the_host);\n\n\t\tif($this->http_content_type):\n\t\t\t$this->http_headers_add('Content-Type', $this->http_content_type);\n\t\tendif;\n\n\t\t$this->http_headers_add('User-Agent', $this->http_user_agent);\n\t\t$this->http_headers_add('Content-Length', strlen($params));\n\n\t\t$request = $this->http_build_request_headers();\n\n\t\tif(trim($params) != ''):\n\t\t\t$request .= \"$params{$this->http_linebreak}\";\n\t\tendif;\n\n\t\t$this->http_request = $request;\n\n\t\tif($this->http_url_bits['scheme']=='https'):\n\t\t\t$port = 443;\n\t\t\t$fsockurl = \"ssl://$the_host\";\n\t\telse:\n\t\t\t$port = 80;\n\t\t\t$fsockurl = $the_host;\n\t\tendif;\n\n\t\t// if an error occurs we log that and break out of the function\n\t\tif($fp = @fsockopen($fsockurl, $port, $errno, $errstr, $this->http_request_timeout)):\n\t\t\tif(fwrite($fp, $request)):\n\t\t\t\t$this->http_response = '';\n while(!feof($fp)):\n $this->http_response .= fgets($fp, 8192);\n endwhile;\n\t\t\telse:\n\t\t\t\t$this->last_error = \"Failed to write to $fsockurl\";\n\t\t\tendif;\n\t\t\tfclose($fp);\n\t\telse:\n\t\t\t$this->last_error = \"Failed to connect to $fsockurl $errstr ($errno)\";\n\t\t\treturn false;\n\t\tendif;\n\n\t\t$this->http_parse_response();\n\t}", "abstract public function sendRequest(array $options);", "abstract public function request();", "public function HTTPRequest(){\n\t}", "function send_request($request)\n {\n $response = $request->send();\n return $this->parse_response($response);\n }", "public function send () {\r\n\t\t$this->sendHeaders();\r\n\t\t$this->sendContent();\r\n\t}", "public function send()\n {\n // Stream post the data\n $this->evaluateResponse($this->httpPost($this->str_endpoint . '/event', $this->compile()));\n }", "public function send() {\n\t\t$this->response = $this->curl->send($this, $this->autoFollow, $this->maxRedirects);\n\t\treturn $this->response;\n\t}", "public function sendResponse();", "function http_send_data($data) {}", "public function send()\n {\n $this->jsonManager->domain = $this->uri;\n $this->jsonManager->port = $this->port;\n $this->jsonManager->online = $this->isOnline();\n $this->jsonManager->send();\n }", "public function sendRequest()\n\t{\n\t\tphpCAS::traceBegin();\n\t\t$ch = curl_init($this->url);\n\t\tif(is_null($this->url) || ! $this->url)\n\t\t{\n\t\t\treturn FALSE;\n\t\t}\n\t\t/**\n\t\t * *******************************************************\n\t\t * Set SSL configuration\n\t\t * *******************************************************\n\t\t */\n\t\tcurl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);\n\t\tcurl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);\n\t\tcurl_setopt($ch, CURLOPT_USERAGENT,'casUA_wa67h28m_alliance');\n\t\tif($this->caCertPath)\n\t\t{\n\t\t\tcurl_setopt($ch, CURLOPT_CAINFO, $this->caCertPath['pem']);\n\t\t\tcurl_setopt($ch, CURLOPT_SSLCERT, $this->caCertPath['crt']);\n\t\t\tcurl_setopt($ch, CURLOPT_SSLKEY, $this->caCertPath['key']);\n\t\t\tcurl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);\n\t\t\tphpCAS::trace('CURL: Set CURLOPT_CAINFO');\n\t\t}\n\t\t\n\t\t// return the CURL output into a variable\n\t\tcurl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);\n\t\t/**\n\t\t * *******************************************************\n\t\t * Perform the query\n\t\t * *******************************************************\n\t\t */\n\t\t$buf = curl_exec($ch);\n\t\tif($buf === false)\n\t\t{\n\t\t\tphpCAS::trace('curl_exec() failed');\n\t\t\t$this->storeErrorMessage('CURL error #' . curl_errno($ch) . ': ' . curl_error($ch));\n\t\t\t$res = false;\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->storeResponseBody($buf);\n\t\t\tphpCAS::trace(\"Response Body: \\n\" . $buf . \"\\n\");\n\t\t\t$res = true;\n\t\t}\n\t\t// close the CURL session\n\t\tcurl_close($ch);\n\t\t\n\t\tphpCAS::traceEnd($res);\n\t\treturn $res;\n\t}", "public function sendCurl() {\n\t\t$this->curlResponse = $this->curl->exec();\n\t}", "public function send()\n\t{\n\t\t$this->response = $this->sendHttp();\n\n\t\t// Check status for errors, and throw exceptions if errors exist\n\t\t$this->valdiateResponseCode( $this->response->status );\n\n\t\t// All is well, return response\n\t\treturn $this->response;\n\t}", "public function send() : void\n {\n \\http_response_code( $this->status );\n\n foreach ( $this->headers->all() as $name => $values ) {\n foreach ( $values as $index => $value ) {\n \\header( \"$name: $value\", $index === 0 );\n }\n }\n\n echo $this->content;\n }", "public function requests()\n\t{\n\t\t$this->checkRequest();\n\t\t$this->getResponse();\n\t}", "public function send() {\r\n\t\t$this->sendHeaders ();\r\n\t\techo $this->getContent ();\r\n\t}", "public function executeRequest()\n {\n $aux = array();\n\n foreach ($this->headers as $header => $value) {\n $aux[] = \"$header: $value\";\n }\n\n curl_setopt($this->handler, CURLOPT_HTTPHEADER, $aux);\n\n $body = curl_exec($this->handler);\n\n if(empty($body)){\n $code = curl_errno($this->handler);\n\n if ($code == 60 || $code == 77) {\n curl_setopt($this->handler, CURLOPT_CAINFO, __DIR__ . '/cacerts.pem');\n $body = curl_exec($this->handler);\n }\n\n if(empty($body)){\n $error = curl_error($this->handler);\n $code = curl_errno($this->handler);\n throw new \\Exception($error, $code);\n }\n }\n\n $statusCode = curl_getinfo($this->handler, CURLINFO_HTTP_CODE);\n $cookies = curl_getinfo($this->handler, CURLINFO_COOKIELIST);\n\n $response = new HttpResponse();\n $response->cookies = $cookies;\n $response->statusCode = $statusCode;\n $this->getBodyAndHeaders($body, $response);\n\n curl_close($this->handler);\n\n return $response;\n }", "public function send()\n {\n $this->sendHeaders();\n $this->sendBody();\n }", "public function send();", "public function send();", "public function send();", "public function send();", "public function send();", "public function send();", "public function send();", "public function send();", "public function send();", "public function send();", "public function send();", "private function execute()\n {\n // executes a cURL session for the request, and sets the result variable\n $result = Request::get($this->getRequestURL())->send();\n // return the json result\n return $result->raw_body;\n }", "public function request() {\n // The basic flow: build the url, make the request, parse and return the\n // output.\n $url = $this->query_builder->getUrl();\n\n // @todo: does this make sense to be in a separate class? Anyway, this shoudl\n // be somehow refactored because it is hard to replace or overwrite it.\n $curl = curl_init();\n curl_setopt($curl, CURLOPT_URL, $url);\n curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);\n $response = curl_exec($curl);\n // @todo: very important: check the curl errors here.\n\n return $this->parser->parse($response);\n }", "public function send()\n {\n return curl_exec($this->curl);\n }", "public function sendGet()\n\t{\n\t\t$ch = curl_init(\"http://localhost/rest/index.php/book\");\n\t\t//a true, obtendremos una respuesta de la url, en otro caso, \n\t\t//true si es correcto, false si no lo es\n\t\tcurl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n\t\t//establecemos el verbo http que queremos utilizar para la petición\n\t\tcurl_setopt($ch, CURLOPT_CUSTOMREQUEST, \"GET\");\n\t\t//obtenemos la respuesta\n\t\t$response = curl_exec($ch);\n\t\t// Se cierra el recurso CURL y se liberan los recursos del sistema\n\t\tcurl_close($ch);\n\t\tif(!$response) {\n\t\t return false;\n\t\t}else{\n\t\t\tvar_dump($response);\n\t\t}\n\t}", "public function send() {\r\n\t\t$this->resource->send();\r\n\t}", "function sendRequest(){\n $this->fpopened = $this->fopen($this->urltoopen);\n if ($this->fpopened!==false) return true;\n return false;\n }", "public function send_request($action, $parameters);", "function send_request( $http_method, $url, $auth_header = null, $postData = null ) {\n\t$curl = curl_init( $url );\n\tcurl_setopt( $curl, CURLOPT_RETURNTRANSFER, true );\n\tcurl_setopt( $curl, CURLOPT_FAILONERROR, false );\n\tcurl_setopt( $curl, CURLOPT_SSL_VERIFYPEER, false );\n\n\tswitch( $http_method ) {\n\t\tcase 'GET':\n\t\t\tif( $auth_header ) {\n\t\t\t\tcurl_setopt( $curl, CURLOPT_HTTPHEADER, array( $auth_header ) );\n\t\t\t}\n\t\t\tbreak;\n\t\tcase 'POST':\n\t\t\tcurl_setopt( $curl, CURLOPT_HTTPHEADER, array( 'Content-Type: application/atom+xml',\n\t\t\t\t$auth_header ) );\n\t\t\tcurl_setopt( $curl, CURLOPT_POST, 1 );\n\t\t\tcurl_setopt( $curl, CURLOPT_POSTFIELDS, $postData );\n\t\t\tbreak;\n\t\tcase 'PUT':\n\t\t\tcurl_setopt( $curl, CURLOPT_HTTPHEADER, array( 'Content-Type: application/atom+xml',\n\t\t\t\t$auth_header ) );\n\t\t\tcurl_setopt( $curl, CURLOPT_CUSTOMREQUEST, $http_method );\n\t\t\tcurl_setopt( $curl, CURLOPT_POSTFIELDS, $postData );\n\t\t\tbreak;\n\t\tcase 'DELETE':\n\t\t\tcurl_setopt( $curl, CURLOPT_HTTPHEADER, array( $auth_header ) );\n\t\t\tcurl_setopt( $curl, CURLOPT_CUSTOMREQUEST, $http_method );\n\t\t\tbreak;\n\t}\n\t$response = curl_exec( $curl );\n\tif( !$response ) {\n\t\t$response = curl_error( $curl );\n\t}\n\tcurl_close( $curl );\n\treturn $response;\n}", "public function send()\n {\n $request = $this->createRequest();\n $contentId = $request->getHeaderLine('Content-Id') ?? '-';\n $request = $request->withAddedHeader('Referrer', $contentId);\n\n $requestLogHeader = \"--------------------------------\\r\\nRequest\\r\\n--------------------------------\\r\\n\";\n $requestLog = (string) $request->getMethod() . ' ' . (string) $request->getUri() . \" HTTP/1.1\\r\\n\";\n foreach ($request->getHeaders() as $header => $values) {\n $requestLog .= $header . ': ' . implode('; ', $values) . \"\\r\\n\";\n }\n $requestLog .= (string) $request->getBody();\n $this->client->log(LOG_INFO, $requestLogHeader . $requestLog);\n\n $options = [\n 'decode_content' => false,\n 'timeout' => $this->client->timeout,\n ];\n if (isset($this->client->proxy)) {\n $options['proxy'] = $this->client->proxy;\n }\n $client = new \\GuzzleHttp\\Client($options);\n try {\n $clientResponse = $client->send($request);\n } catch (\\GuzzleHttp\\Exception\\RequestException $ex) {\n $clientResponse = $ex->getResponse();\n if ($clientResponse === null) {\n throw new HttpException($ex->getMessage(), 0, null, $ex, 500, $contentId);\n }\n }\n\n $responseLogHeader = \"--------------------------------\\r\\nResponse\\r\\n--------------------------------\\r\\n\";\n $responseLog = \"HTTP/1.1 \". $clientResponse->getStatusCode() . \" \" . $clientResponse->getReasonPhrase() . \"\\r\\n\";\n if ($clientResponse->getStatusCode() == 204) {\n $clientResponse = $clientResponse->withoutHeader('Content-Type');\n }\n foreach ($clientResponse->getHeaders() as $header => $values) {\n $responseLog .= $header . ': ' . implode('; ', $values) . \"\\r\\n\";\n }\n $responseLog .= (string) $clientResponse->getBody();\n $this->client->log(LOG_INFO, $responseLogHeader . $responseLog);\n $response = $this->parseResponse($clientResponse, $requestLog, $responseLog);\n $this->handleError($response, $clientResponse);\n\n return $response;\n }", "public function send()\n {\n if (function_exists('http_response_code')) {\n http_response_code($this->code);\n } else {\n header(' ', true, $this->code);\n }\n\n foreach ($this->headers as $name => $value) {\n header($name . ': ' . $value);\n }\n\n if (!is_null($this->content)) {\n echo $this->content;\n }\n }", "public function runRequest() {\n }", "public function serveRequest()\n {\n $msg = $this->connection->read();\n if (!$msg) return;\n $this->connection->acknowledge($msg);\n \n $replyMsg = $this->act($msg);\n\n // write correlation id\n $replyMsg->setHeader(\"correlation-id\", $msg->getId());\n\n $this->connection->send($msg->getReplyTo(), $replyMsg);\t\t\n }", "protected function send()\n {\n $this->addAuthorization();\n\n $response = $this->client->post(\n $this->apiUrl,\n array(\n 'json' => array(\n 'query' => $this->getQuery(),\n 'variables' => $this->variables,\n ),\n 'headers' => $this->headers,\n )\n );\n\n $responseBody = json_decode($response->getBody(), true);\n if ($responseBody === null) {\n throw new \\RuntimeException('Invalid api call: '.json_encode($this->getQuery()));\n }\n\n $this->body = $responseBody;\n if (isset($responseBody['errors'])) {\n $this->errors = $responseBody['errors'];\n } else {\n $this->response = $responseBody['data'];\n }\n }", "public function request()\n {\n }", "public function request()\n {\n }", "public function sendRequest($sUrl);", "public function send(): void\n\t{\n\t\t$this->sendHeaders();\n\t\t$this->sendBody();\n\t}", "function _httprequest($url,$fp,$URI,$http_method,$content_type=\"\",$body=\"\")\n\t{\n\t\t$cookie_headers = '';\n\t\tif($this->passcookies && $this->_redirectaddr)\n\t\t\t$this->setcookies();\n\t\t\t\n\t\t$URI_PARTS = parse_url($URI);\n\t\tif(empty($url))\n\t\t\t$url = \"/\";\n\t\t$headers = $http_method.\" \".$url.\" \".$this->_httpversion.\"\\r\\n\";\t\t\n\t\tif(!empty($this->agent))\n\t\t\t$headers .= \"User-Agent: \".$this->agent.\"\\r\\n\";\n\t\tif(!empty($this->host) && !isset($this->rawheaders['Host'])) {\n\t\t\t$headers .= \"Host: \".$this->host;\n\t\t\tif(!empty($this->port))\n\t\t\t\t$headers .= \":\".$this->port;\n\t\t\t$headers .= \"\\r\\n\";\n\t\t}\n\t\tif(!empty($this->accept))\n\t\t\t$headers .= \"Accept: \".$this->accept.\"\\r\\n\";\n\t\tif(!empty($this->referer))\n\t\t\t$headers .= \"Referer: \".$this->referer.\"\\r\\n\";\n\t\tif(!empty($this->cookies))\n\t\t{\t\t\t\n\t\t\tif(!is_array($this->cookies))\n\t\t\t\t$this->cookies = (array)$this->cookies;\n\t\n\t\t\treset($this->cookies);\n\t\t\tif ( count($this->cookies) > 0 ) {\n\t\t\t\t$cookie_headers .= 'Cookie: ';\n\t\t\t\tforeach ( $this->cookies as $cookieKey => $cookieVal ) {\n\t\t\t\t$cookie_headers .= $cookieKey.\"=\".urlencode($cookieVal).\"; \";\n\t\t\t\t}\n\t\t\t\t$headers .= substr($cookie_headers,0,-2) . \"\\r\\n\";\n\t\t\t} \n\t\t}\n\t\tif(!empty($this->rawheaders))\n\t\t{\n\t\t\tif(!is_array($this->rawheaders))\n\t\t\t\t$this->rawheaders = (array)$this->rawheaders;\n\t\t\twhile(list($headerKey,$headerVal) = each($this->rawheaders))\n\t\t\t\t$headers .= $headerKey.\": \".$headerVal.\"\\r\\n\";\n\t\t}\n\t\tif(!empty($content_type)) {\n\t\t\t$headers .= \"Content-type: $content_type\";\n\t\t\tif ($content_type == \"multipart/form-data\")\n\t\t\t\t$headers .= \"; boundary=\".$this->_mime_boundary;\n\t\t\t$headers .= \"\\r\\n\";\n\t\t}\n\t\tif(!empty($body))\t\n\t\t\t$headers .= \"Content-length: \".strlen($body).\"\\r\\n\";\n\t\tif(!empty($this->user) || !empty($this->pass))\t\n\t\t\t$headers .= \"Authorization: Basic \".base64_encode($this->user.\":\".$this->pass).\"\\r\\n\";\n\t\t\n\t\t//add proxy auth headers\n\t\tif(!empty($this->proxy_user))\t\n\t\t\t$headers .= 'Proxy-Authorization: ' . 'Basic ' . base64_encode($this->proxy_user . ':' . $this->proxy_pass).\"\\r\\n\";\n\n\n\t\t$headers .= \"\\r\\n\";\n\t\t\n\t\t// set the read timeout if needed\n\t\tif ($this->read_timeout > 0)\n\t\t\tsocket_set_timeout($fp, $this->read_timeout);\n\t\t$this->timed_out = false;\n\t\t\n\t\tfwrite($fp,$headers.$body,strlen($headers.$body));\n\t\t\n\t\t$this->_redirectaddr = false;\n\t\tunset($this->headers);\n\t\t\t\t\t\t\n\t\twhile($currentHeader = fgets($fp,$this->_maxlinelen))\n\t\t{\n\t\t\tif ($this->read_timeout > 0 && $this->_check_timeout($fp))\n\t\t\t{\n\t\t\t\t$this->status=-100;\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t\t\n\t\t\tif($currentHeader == \"\\r\\n\")\n\t\t\t\tbreak;\n\t\t\t\t\t\t\n\t\t\t// if a header begins with Location: or URI:, set the redirect\n\t\t\tif(preg_match(\"/^(Location:|URI:)/i\",$currentHeader))\n\t\t\t{\n\t\t\t\t// get URL portion of the redirect\n\t\t\t\tpreg_match(\"/^(Location:|URI:)[ ]+(.*)/i\",chop($currentHeader),$matches);\n\t\t\t\t// look for :// in the Location header to see if hostname is included\n\t\t\t\tif(!preg_match(\"|\\:\\/\\/|\",$matches[2]))\n\t\t\t\t{\n\t\t\t\t\t// no host in the path, so prepend\n\t\t\t\t\t$this->_redirectaddr = $URI_PARTS[\"scheme\"].\"://\".$this->host.\":\".$this->port;\n\t\t\t\t\t// eliminate double slash\n\t\t\t\t\tif(!preg_match(\"|^/|\",$matches[2]))\n\t\t\t\t\t\t\t$this->_redirectaddr .= \"/\".$matches[2];\n\t\t\t\t\telse\n\t\t\t\t\t\t\t$this->_redirectaddr .= $matches[2];\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t\t$this->_redirectaddr = $matches[2];\n\t\t\t}\n\t\t\n\t\t\tif(preg_match(\"|^HTTP/|\",$currentHeader))\n\t\t\t{\n if(preg_match(\"|^HTTP/[^\\s]*\\s(.*?)\\s|\",$currentHeader, $status))\n\t\t\t\t{\n\t\t\t\t\t$this->status= $status[1];\n }\t\t\t\t\n\t\t\t\t$this->response_code = $currentHeader;\n\t\t\t}\n\t\t\t\t\n\t\t\t$this->headers[] = $currentHeader;\n\t\t}\n\n\t\t$results = '';\n\t\tdo {\n \t\t$_data = fread($fp, $this->maxlength);\n \t\tif (strlen($_data) == 0) {\n \t\tbreak;\n \t\t}\n \t\t$results .= $_data;\n\t\t} while(true);\n\n\t\tif ($this->read_timeout > 0 && $this->_check_timeout($fp))\n\t\t{\n\t\t\t$this->status=-100;\n\t\t\treturn false;\n\t\t}\n\t\t\n\t\t// check if there is a a redirect meta tag\n\t\t\n\t\tif(preg_match(\"'<meta[\\s]*http-equiv[^>]*?content[\\s]*=[\\s]*[\\\"\\']?\\d+;[\\s]*URL[\\s]*=[\\s]*([^\\\"\\']*?)[\\\"\\']?>'i\",$results,$match))\n\n\t\t{\n\t\t\t$this->_redirectaddr = $this->_expandlinks($match[1],$URI);\t\n\t\t}\n\n\t\t// have we hit our frame depth and is there frame src to fetch?\n\t\tif(($this->_framedepth < $this->maxframes) && preg_match_all(\"'<frame\\s+.*src[\\s]*=[\\'\\\"]?([^\\'\\\"\\>]+)'i\",$results,$match))\n\t\t{\n\t\t\t$this->results[] = $results;\n\t\t\tfor($x=0; $x<count($match[1]); $x++)\n\t\t\t\t$this->_frameurls[] = $this->_expandlinks($match[1][$x],$URI_PARTS[\"scheme\"].\"://\".$this->host);\n\t\t}\n\t\t// have we already fetched framed content?\n\t\telseif(is_array($this->results))\n\t\t\t$this->results[] = $results;\n\t\t// no framed content\n\t\telse\n\t\t\t$this->results = $results;\n\t\t\n\t\treturn true;\n\t}", "protected function _execute(){\n\t\t\t$this->_getUrl();\n\n\t\t\t$c = curl_init($this->_url);\n\t\t\tob_start();\n\t\t\tif(!empty($this->_postFields)) {\n\t\t\t\tcurl_setopt($c, CURLOPT_POST, 1);\n\t\t\t\tcurl_setopt($c, CURLOPT_POSTFIELDS, json_encode($this->_postFields));\n\t\t\t}\n\n\t\t\tcurl_exec($c);\n\t\t\tcurl_close($c);\n\t\t\t$this->_result = trim(ob_get_contents());\n\t\t\tob_end_clean();\n\t\t}", "public function run()\r\n\t\t\t {\r\n $ch = curl_init();\r\n curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);\r\n curl_setopt ($ch, CURLOPT_URL, $this->url);\r\n curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 20);\r\n curl_setopt ($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11');\r\n curl_setopt($ch, CURLOPT_HEADER, true); // header will be at output\r\n curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'HEAD'); // HTTP request is 'HEAD'\r\n $this->headers = curl_exec ($ch);\r\n curl_close ($ch);\r\n\t\t\t }", "public function send(Request $request);", "public function sendRequest()\n {\n\n $proxyurl = '';\n if (!is_null($this->proxy)) {\n $proxyurl = $this->proxy->url;\n }\n // create context with proper junk\n $ctx = stream_context_create(\n array(\n $this->uri->protocol => array(\n 'method' => $this->verb,\n 'content' => $this->body,\n 'header' => $this->buildHeaderString(),\n 'proxy' => $proxyurl,\n )\n )\n );\n\n set_error_handler(array($this,'_errorHandler'));\n $fp = fopen($this->uri->url, 'rb', false, $ctx);\n if (!is_resource($fp)) {\n // php sucks\n if (strpos($this->_phpErrorStr, 'HTTP/1.1 304')) {\n restore_error_handler();\n $details = $this->uri->toArray();\n\n $details['code'] = '304';\n $details['httpVersion'] = '1.1';\n\n return new PEAR2_HTTP_Request_Response($details,'',array(),array());\n }\n restore_error_handler();\n throw new PEAR2_HTTP_Request_Exception('Url ' . $this->uri->url . ' could not be opened (PhpStream Adapter ('.$this->_phpErrorStr.'))');\n } else {\n restore_error_handler();\n }\n\n stream_set_timeout($fp, $this->requestTimeout);\n $body = stream_get_contents($fp);\n\n if ($body === false) {\n throw new PEAR2_HTTP_Request_Exception(\n 'Url ' . $this->uri->url . ' did not return a response'\n );\n }\n\n $meta = stream_get_meta_data($fp);\n fclose($fp);\n\n $headers = $meta['wrapper_data'];\n\n $details = $this->uri->toArray();\n\n $tmp = $this->parseResponseCode($headers[0]);\n $details['code'] = $tmp['code'];\n $details['httpVersion'] = $tmp['httpVersion'];\n\n $cookies = array();\n $this->headers = $this->cookies = array();\n\n foreach($headers as $line) {\n $this->processHeader($line);\n }\n\n return new PEAR2_HTTP_Request_Response(\n $details,$body,new PEAR2_HTTP_Request_Headers($this->headers),$this->cookies);\n }", "protected function _send($url)\n\t{\n\t\t//sort the parameters again\n\t\tuksort($this->_params, 'strcmp');\n\t\t\n\t\t//build the query\n\t\t$query = $this->_buildQuery($this->_params);\n\t\t$header = $this->_buildHeader($this->_params);\n\t\t\n\t\t//send it to the server\n\t\t$http = new HttpClient($url);\n\t\t$http->addHeader(\"Authorization: {$header}\");\n\t\t$http->setTransport($this->getTransport());\n\t\t\n\t\t//set the verbose options\n\t\tif($this->getFlag('verbose')){\n\t\t\t$http->setFlag('verbose',true);\n\t\t}\n\t\t\n\t\t$http->setQuery($query);\n\t\t\n\t\t//a bit of error checking\n\t\ttry{\n\t\t\t$http->get();\n\t\t\treturn $http;\n\t\t} catch(HttpClientException $e) {\n\t\t\tif($e->getCode() == 401){\n\t\t\t\tthrow new BaseOAuthException(\"Access Denied to oAuth Server\", 401);\n\t\t\t}\n\t\t\tthrow $e;\n\t\t}\n\t}", "abstract function do_api_request();", "function request()\n {\n }", "public function send()\n {\n $httpProtocol = $_SERVER['SERVER_PROTOCOL'];\n\n // Send the HTTP Status and Headers.\n\n if (! headers_sent()) {\n $status = $this->status();\n\n // Send the HTTP Status Header.\n header(\"$httpProtocol $status \" . self::$statuses[$status]);\n\n // Send the rest of the HTTP Headers.\n foreach ($this->headers as $name => $value) {\n header(\"$name: $value\", true);\n }\n }\n\n // Send the stringified Content.\n\n echo $this->render();\n }", "public function send(){\n header('HTTP/1.1 200 OK');\n header('Content-type: application/json');\n echo CJavaScript::jsonEncode($this->get());\n Yii::app()->end();\n }", "public function send()\n {\n if (is_null($this->url)) {\n return false;\n }\n\n if (!is_null($this->payloadFilename)) {\n $this->httpClient->payloadFromFile($this->payloadFilename);\n $this->payload = null; // Kill it if we have it\n }\n\n if (!is_null($this->outputFilename)) {\n $this->httpClient->outputBodyToFile($this->outputFilename);\n }\n\n $headers = $this->headers->toArray();\n $response = false;\n switch ($this->requestType) {\n case Client::REQUEST_HEAD:\n case Client::REQUEST_GET:\n $response = $this->httpClient->request($this->url, $this->requestType, $headers);\n case Client::REQUEST_DELETE:\n case Client::REQUEST_PUT:\n case Client::REQUEST_PATCH:\n case Client::REQUEST_POST:\n $response = $this->httpClient->request($this->url, $this->requestType, $headers, $this->payload);\n }\n\n return $response;\n }", "function send($data);", "function send($data);", "public static function process_http_request()\n {\n }", "public function serve_request()\n {\n }", "public function send(): void\n {\n $this->sendHeaders();\n $this->sendBody();\n }", "protected function _execute($request) {\n\t\tfwrite($this->socket, $request);\n\t\t$response = '';\n\t\twhile(!feof($this->socket))\n\t\t\t$response .= fgets($this->socket);\n\t\treturn $response;\n\t}", "public function send()\n {\n $this->sendContentOptions();\n $this->sendFrameOptions();\n $this->sendStrictTransport();\n $this->sendCrossOriginResourcePolicy();\n $this->sendContentSecurity();\n }", "public function request($index){\n $this->httpRequest->request($index);\n }", "protected function sendRequest($url,$param){\n $this->log(\"Making request to Amazon: \".$this->options['Action']);\n $response = $this->fetchURL($url,$param);\n\n while (isset($response['code']) && $response['code'] == '503' && $this->throttleStop==false){\n $this->sleep();\n $response = $this->fetchURL($url,$param);\n }\n\n $this->rawResponses[]=$response;\n return $response;\n }", "protected function sendHTTPSocket($trans){\n\t\t$query['ipaddress'] = $_SERVER[\"REMOTE_ADDR\"];\n\t\t\n\t\tConfigure::load('payscape');\n\t\tApp::uses('HttpSocket', 'Network/Http');\n\t\t\n\t\t$trans['username'] = Configure::read('Payscape.userid');\n\t\t$trans['password'] = Configure::read('Payscape.userpass');\n\t\t\t\t\n\t\t$HttpSocket = new HttpSocket();\n\t\treturn $HttpSocket->post(self::url, $trans);\n\t}", "protected function sendResponse() {}", "public function send()\n {\n // send all headers\n foreach ($this->getHeaders() as $header => $replace) {\n header($header, $replace);\n }\n\n // set cookies\n foreach ($this->_cookie as $name => $options) {\n // simulate cookie set on test\n if (MAD_ENV == 'test') {\n $_COOKIE[$name] = $options['value'];\n } else {\n setcookie($name, $options['value'], $options['expiration'], \n $options['path']);\n }\n }\n\n // set flash/session data\n $this->_session['_flash'] = $this->_flash;\n foreach ($this->_session as $name => $value) {\n $_SESSION[$name] = $value;\n }\n\n // send body\n print $this->getBody();\n }", "public function send()\n {\n $this->sendHttpHeaders();\n $this->sendContent();\n\n if (function_exists('fastcgi_finish_request'))\n {\n $this->dispatcher->notify(new sfEvent($this, 'response.fastcgi_finish_request'));\n fastcgi_finish_request();\n }\n }", "function send_request($postdata = \"\") {\n\t\tif(!is_array($postdata) ) $postdata = array();\n\t\t\n\t\t$url = $this->_build_url();\n\t\t\n\t\tif(!isset($postdata['ip_address'])) $postdata['ip_address'] = $this->_get_client_ip();\n\t\tif(!isset($postdata['user_agent'])) $postdata['user_agent'] = $this->_get_client_user_agent();\n\t\t$postdata['api_key'] = $this->api_key;\n\n\t\t$ch = curl_init($url);\n\n\t\tcurl_setopt($ch, CURLOPT_POST ,1);\n\t\tcurl_setopt($ch, CURLOPT_POSTFIELDS, 'json='.$this->_json_encode($postdata));\n\t\tcurl_setopt($ch, CURLOPT_HEADER ,0); \n\t\tcurl_setopt($ch, CURLOPT_RETURNTRANSFER ,1);\n\t\tcurl_setopt($ch, CURLOPT_TIMEOUT ,10);\n\t\tcurl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);\n\t\tcurl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);\t\t\n\n\t\t$return_data = curl_exec($ch);\n\n\t\treturn $return_data;\n\t}", "function send_request($http_method, $url, $auth_header=null, $postData=null) {\n $curl = curl_init($url);\n curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);\n curl_setopt($curl, CURLOPT_FAILONERROR, false);\n curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);\n\n switch($http_method) {\n case 'GET':\n if ($auth_header) {\n curl_setopt($curl, CURLOPT_HTTPHEADER, array($auth_header)); \n }\n break;\n case 'POST':\n curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/atom+xml', \n $auth_header)); \n curl_setopt($curl, CURLOPT_POST, 1); \n curl_setopt($curl, CURLOPT_POSTFIELDS, $postData);\n break;\n case 'PUT':\n curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/atom+xml', \n $auth_header)); \n curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $http_method);\n curl_setopt($curl, CURLOPT_POSTFIELDS, $postData);\n break;\n case 'DELETE':\n curl_setopt($curl, CURLOPT_HTTPHEADER, array($auth_header)); \n curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $http_method); \n break;\n }\n $response = curl_exec($curl);\n if (!$response) {\n $response = curl_error($curl);\n }\n curl_close($curl);\n return $response;\n}", "public function send()\n {\n $queryString = $this->buildQueryString();\n\n $headers = array(\n 'method' => 'POST',\n 'content' => $this->buildQueryString(),\n 'header' => \"Content-type: application/x-www-form-urlencoded\\r\\n\" .\n \"Content-Length: \" . strlen($queryString) . \"\\r\\n\\r\\n\"\n );\n\n $request = file_get_contents(\n $this->getPaypalUrl(),\n false,\n stream_context_create(array('http' => $headers))\n );\n\n return new Response($request);\n }", "public function send()\n {\n if($this->status == self::STATUS_REDIRECT && \n $this->allow_redirect === false)\n {\n unsetHeader('Location');\n $this->setBody(((string) null));\n $this->status = self::STATUS_ERROR;\n }\n\n $this->sendHeaders();\n $this->sendBody();\n }", "public function sendRequest(Request $request);", "public function sendRequest(Request $request);", "function executeRequest() {\n\n\t\t// curl general\n\t\t$curl_options = [\n\t\t\tCURLOPT_RETURNTRANSFER => true,\n\t\t\tCURLOPT_SSL_VERIFYPEER => true,\n\t\t\tCURLOPT_CUSTOMREQUEST => $this->_requestType\n\t\t];\n\n\t\t// set to post\n\t\tif($this->_requestType == 'POST') {\n\t\t\t$curl_options[CURLOPT_POST] = true;\n\t\t}\n\n\t\t// build url and append query params\n\t\t$url = $this->url($this->_url);\n\t\t$this->_params[$this->_oauth2->getAccessTokenName()] = $this->_oauth2->getAccessToken();\n\t\tif(count($this->_params) > 0) {\n\t\t\t$url->setQuery($this->_params);\n\t\t}\n\t\t$curl_options[CURLOPT_URL] = $url->val();\n\n\t\t// check request headers\n\t\tif(count($this->_headers) > 0) {\n\t\t\t$header = [];\n\t\t\tforeach ($this->_headers as $key => $parsed_urlvalue) {\n\t\t\t\t$header[] = \"$key: $parsed_urlvalue\";\n\t\t\t}\n\t\t\t$curl_options[CURLOPT_HTTPHEADER] = $header;\n\t\t}\n\n\t\t// init curl\n\t\t$ch = curl_init();\n\t\tcurl_setopt_array($ch, $curl_options);\n\n\t\t// https handling\n\t\tif($this->_certificateFile != '') {\n\t\t\tcurl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);\n\t\t\tcurl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);\n\t\t\tcurl_setopt($ch, CURLOPT_CAINFO, $this->_certificateFile);\n\t\t} else {\n\t\t\t// bypass ssl verification\n\t\t\tcurl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);\n\t\t\tcurl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);\n\t\t}\n\n\t\t// execute the curl request\n\t\t$result = curl_exec($ch);\n\t\t$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);\n\t\t$content_type = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);\n\t\tif($curl_error = curl_error($ch)) {\n\t\t\tthrow new OAuth2Exception($curl_error);\n\t\t} else {\n\t\t\t$json_decode = $this->jsonDecode($result, true);\n\t\t}\n\t\tcurl_close($ch);\n\n\t\treturn [\n\t\t\t'result' => (null === $json_decode) ? $result : $json_decode,\n\t\t\t'code' => $http_code,\n\t\t\t'content_type' => $content_type\n\t\t];\n\t}", "public function send()\r\n\t{\r\n\t\t$this->outputBody();\r\n\t\texit;\r\n\t}", "private function send($request, $method)\n\t{\n\t\t$header[] = \"Host: \".$this->host;\n\t\t$header[] = \"Content-type: text/xml\";\n\t\t$header[] = \"Content-length: \".strlen($request) . \"\\r\\n\";\n\t\t$header[] = $request;\n\t\t\n\t\t$ch = curl_init();\n\t\tcurl_setopt( $ch, CURLOPT_URL, $this->base_url.$method);\n\t\tcurl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );\n\t\tcurl_setopt( $ch, CURLOPT_HTTPHEADER, $header );\n\t\tcurl_setopt( $ch, CURLOPT_CUSTOMREQUEST, 'POST' );\n\t\t$result = curl_exec( $ch );\n\t\tcurl_close($ch); \n\n\t\treturn $this->format_response($result);\n\t}" ]
[ "0.77487665", "0.75558245", "0.72942996", "0.72860277", "0.71147484", "0.70521975", "0.7030478", "0.70172954", "0.6968301", "0.6951445", "0.69361067", "0.67912334", "0.67827886", "0.6716604", "0.6668216", "0.66457397", "0.6617158", "0.6615988", "0.66106224", "0.6597891", "0.659711", "0.65954465", "0.6594574", "0.6584041", "0.65672755", "0.65334463", "0.6499683", "0.64781", "0.6461701", "0.6453413", "0.6452694", "0.6443159", "0.6439135", "0.6422346", "0.6404029", "0.6389615", "0.63878757", "0.63735527", "0.6372551", "0.635977", "0.63517267", "0.63517267", "0.63517267", "0.63517267", "0.63517267", "0.63517267", "0.63517267", "0.63517267", "0.63517267", "0.63517267", "0.63517267", "0.63510257", "0.6348859", "0.63316256", "0.63172793", "0.63150376", "0.6310412", "0.63061506", "0.6304076", "0.62906575", "0.6289882", "0.62824136", "0.6276161", "0.6272088", "0.6229544", "0.6229544", "0.62132573", "0.6210349", "0.6192343", "0.6187854", "0.61776114", "0.61681354", "0.6167253", "0.61589545", "0.6142803", "0.61420774", "0.6140656", "0.611481", "0.6108243", "0.61012477", "0.61012477", "0.60975933", "0.60728973", "0.60520095", "0.6041683", "0.6037737", "0.6028254", "0.60106826", "0.59963447", "0.5992154", "0.5988704", "0.59826094", "0.5977837", "0.59719235", "0.5965594", "0.5963619", "0.5960036", "0.5960036", "0.5959505", "0.595881", "0.5952266" ]
0.0
-1
Display a listing of the resource.
public function index() { // $query = $request->input('searchStudent'); // $students = DB::table('students')->get(); $students = $this->apiBiz->findAll(); return view('student.index', compact('students')); }
{ "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() { // $statusid = DB::table('status')->orderBy("StatusId", 'asc'); $statusid = DB::table('status')->where('StatusName', 'like', '%student%')->select('StatusName')->get(); $students = collect($this->apiBiz->findAll()); // dd($students->where('statusId', 'like', '%S%')); $test = $students->reject(function ($student) { return preg_match('/[S]/', $student->statusId) == false; }); // $test = array(); // foreach ($students as $key => $value) { // if(strpos($value->statusId, 'S') !== false){ // array_push($test, $value->statusId); // } // } dd($test); // return view('student.create', compact('statusid')); }
{ "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) { $time = $request->input('birthDate'); $year = ''; $month = ''; if($time != null){ $year .= substr(explode('-', $time)[0], 2, 2); $month .= substr(explode('-', $time)[1], 0, 2); } $this->validate( $request, [ 'studentid' => 'required|regex:/^[S]([0-1]{2})('.$year. $month.')([0-9]{4})$/u|unique:students,StudentId,NULL,' . $request->input('studentid'), 'firstName' => 'required|max:30', 'lastName' => 'required|max:30', 'contact' => 'max:15', 'birthDate' =>'regex:/^([0-9]{4})(-[0-9]{2})(-[0-9]{2})$/u', ], [ 'studentid.required' => 'Please enter Student ID!', 'studentid.unique' => 'Student ID already exist.', 'studentid.regex' => 'Student Id must start with the letter \'S\' then 01 or 00 or 11 or 10 or 2 digits of the year and 2 digits of the month and 4 random digits.', 'firstName.required' => 'Please enter First Name!', 'firstName.max' => 'First Name maximin of 100 characters!', 'lastName.required' => 'Please enter Last Name!', 'lastName.max' => 'Last Name maximin of 100 characters!!', 'contact.max' => 'Contact maximin of 15 digits!', 'birthDate.regex' => 'Please enter Birth Date!', ] ); $statusName = $request->get('statusid'); $statusid = DB::table('status')->where("StatusName",$statusName)->first(); $student = new StudentDTO(); $student->studentId = $request->input('studentid'); $student->firstName = $request->input('firstName'); $student->lastName = $request->input('lastName'); $student->contact = $request->input('contact'); $student->birthDate = $request->input('birthDate'); $student->statusId = $statusid->StatusId; $biz = new StudentBusiness(); $biz->store($student); return redirect()->action('StudentController@index'); }
{ "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) { $biz = new StudentBusiness(); $student = $biz->findById($id); // return $student->birthDate; // return $student->statusId . ' ' . $student->firstName. ' '.$student->lastName . ' ' . $student->contact.' ' . $student->birthDate; $stausCurrent = DB::table('status')->where('StatusId',$student->statusId)->first(); $statusid = DB::table('status')->where('StatusName', 'like', '%student%') ->where('StatusName', '!=',$stausCurrent->StatusName) ->select('StatusName') ->get(); // return $stausCurrent->StatusName; return view('student.edit', compact('student', 'stausCurrent', 'statusid')); }
{ "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) { $statusName = $request->get('statusid'); $statusid = DB::table('status')->where("StatusName",$statusName)->first(); $this->validate( $request, [ 'firstName' => 'required|max:30', 'lastName' => 'required|max:30', 'contact' => 'max:15', ], [ 'firstName.required' => 'Please enter First Name!', 'firstName.max' => 'First Name maximin of 100 characters!', 'lastName.required' => 'Please enter Last Name!', 'lastName.max' => 'Last Name maximin of 100 characters!!', 'contact.max' => 'Contact maximin of 15 digits!', ] ); $students = new StudentDTO(); $students->studentId = $id; $students->firstName = $request->input('firstName'); $students->lastName = $request->input('lastName'); $students->contact = $request->input('contact'); $students->birthDate = $request->input('birthDate'); $students->statusId = $statusid->StatusId; // return $student->statusId . ' ' . $student->firstName. ' '.$student->lastName . ' ' . $student->contact.' ' . $student->birthDate .' ' .$student->statusId; $biz = new StudentBusiness(); $biz->update($students); return redirect()->action('StudentController@index'); }
{ "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($id) { $biz = new StudentBusiness(); $biz->destroy($id); }
{ "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
Created by PhpStorm. User: LC Date: 2016/3/14 Time: 16:17
function randnum($i) { $arr = array(); while (count($arr) < $i) { $arr[] = rand(1, 9); $arr = array_unique($arr); } $_SESSION['vcode'] = implode($arr); return implode($arr); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function __() {\n }", "private function _i() {\n }", "public function helper()\n\t{\n\t\n\t}", "final private function __construct(){\r\r\n\t}", "private function __construct () {}", "private function __construct() {\n \n }", "private function __construct() {\n \n }", "private function __construct() {\n \n }", "final private function __construct() { }", "final private function __construct() { }", "final private function __construct() { }", "final function __construct() { \n\t}", "private function __construct() { }", "private function __construct() { }", "private function __construct() { }", "private function __construct() { }", "private function __construct() { }", "private function __construct() { }", "private function __construct() { }", "private function __construct() { }", "private function __construct() { }", "private function __construct() { }", "private function __construct() { }", "private function __construct() { }", "private function __construct() { }", "private function __construct() {;}", "private function __construct()\r\n {\r\n }", "private function __construct()\r\n {\r\n }", "private function __construct(){ }", "private function __construct(){ }", "final private function __construct()\n {\n }", "final private function __construct()\n {\n }", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {}", "private function __construct() {\n ;\n }", "private function j() {\n }", "private function __construct() {\r\n }", "public function __construct() {\n\t\t\n\t}", "public function __construct() {\n\t\t\n\t}", "public function __construct() {\n\t\t\n\t}", "public function __construct() {\n\t\t\n\t}", "public function __construct() {\n\t\t\n\t}", "public function __construct() {\r\n ;\r\n }", "private function __construct()\r\n {}" ]
[ "0.6216281", "0.60491556", "0.6044055", "0.6025095", "0.5941889", "0.5932091", "0.5932091", "0.5932091", "0.59231323", "0.59231323", "0.59231323", "0.5906944", "0.5892695", "0.5892695", "0.5892695", "0.5892695", "0.5892695", "0.5892695", "0.5892695", "0.5892695", "0.5892695", "0.5892695", "0.5892695", "0.5892695", "0.5892695", "0.5887987", "0.587537", "0.587537", "0.58606625", "0.58606625", "0.5853336", "0.5853336", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58423406", "0.58420825", "0.58392704", "0.58392704", "0.5835159", "0.58334845", "0.5832907", "0.5828963", "0.5828963", "0.5828963", "0.5828963", "0.5828963", "0.5827459", "0.5822933" ]
0.0
-1
data per database mysql
function data_sql($data){ // Creo una array dividendo la data sulla base dello slash $array = explode("/", $data); // Riorganizzo gli elementi nello stile YYYY/MM/DD $data_sql = $array[2]."/".$array[1]."/".$array[0]; // Restituisco il valore della data in formato sql return $data_sql; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function MetaDatabases() {}", "public function readDatabase() {\n\t\t$q = $this->pdo->query(\"SELECT count(*) FROM `Articles`\");\n\t\t$count = $q->fetch(PDO::FETCH_ASSOC)[\"count(*)\"];\n\t\t$numFetched = 0;\n\t\t$start = 0;\n\t\t// Fetch only 50 articles at a time to limit the memory impact\n\t\twhile($numFetched < $count){\n\t\t\t$q = $this->pdo->query(\"SELECT \".$this->columns.\" FROM `Articles` LIMIT $start,100\");\n\t\t\tforeach($q->fetchAll(PDO::FETCH_ASSOC) as $a){\n\t\t\t\t$this->articles[] = $this->makeArticleFromDB($a);\n\t\t\t\t$numFetched += 1;\n\t\t\t}\n\t\t\t$start += 100;\n\t\t}\n\t}", "public function getDatabaseData()\n {\n $data = array();\n $sql = 'SELECT * FROM `' . $this->table . '`';\n $db_success = mysql_query($sql)\n or die('Laden der Daten fehlgeschlagen: ' . mysql_error());\n while ($row = mysql_fetch_array($db_success, MYSQL_ASSOC))\n {\n $data[] = $row;\n }\n return $data;\n }", "protected function importDatabaseData() {}", "public abstract function operateDB($data);", "function use_db($data1){\n\t\tglobal $i18n_std;\n\t\tif(!$this->real_select($data1)){\n\t\t\techo('no db connection:'.$data1.' ('.$this->real_error().') engine='.$this->engine_name);\n\t\t\t//.'cwd='.getcwd()\n\t\t\tdie('');\n\t\t}\n\t}", "public function database();", "private function setup_data_from_db() {\n\t\tglobal $wpdb;\n\n\t\t// get products\n\t\t$this->setup_products();\n\n\t\t// get 'devices'\n\t\t$this->devices = $wpdb->get_results( \"SELECT * FROM `{$wpdb->prefix}spa_devices` as devices\", ARRAY_A );\n\n\t\t// get 'volume'/'type'\n\t\t$this->data = $wpdb->get_results( \"SELECT * FROM `{$wpdb->prefix}spa_volume` as volume\", ARRAY_A );\n\n\t\tfor ( $i = 0; $i < count( $this->data ); $i++ ) {\n\t\t\t// get 'chemical'\n\t\t\t$this->data[$i]['data'] = $wpdb->get_results(\n\t\t\t\t$wpdb->prepare( \"\n\t\t\t\t\tSELECT chemical.* FROM `{$wpdb->prefix}spa_chemical` as chemical\n\t\t\t\t\tLEFT JOIN `{$wpdb->prefix}spa_volume_chemical` as relationtips\n\t\t\t\t\tON chemical.`id` = relationtips.`id_chemical`\n\t\t\t\t\tWHERE relationtips.`id_volume` = '%d'\n\t\t\t\t\", $this->data[$i]['id'] ), ARRAY_A );\n\n\t\t\t// get 'global_result'\n\t\t\t$this->data[$i]['global_result'] = $wpdb->get_results(\n\t\t\t\t$wpdb->prepare( \"\n\t\t\t\t\tSELECT global_result.* FROM `{$wpdb->prefix}spa_global_result` as global_result\n\t\t\t\t\tLEFT JOIN `{$wpdb->prefix}spa_volume_global_result` as relationtips\n\t\t\t\t\tON global_result.`id` = relationtips.`id_global_result`\n\t\t\t\t\tWHERE relationtips.`id_volume` = '%d'\n\t\t\t\t\", $this->data[$i]['id'] ), ARRAY_A );\n\n\t\t\tfor ( $j = 0; $j < count( $this->data[$i]['data'] ); $j++ ) {\n\t\t\t\t// get 'test'\n\t\t\t\t$this->data[$i]['data'][$j]['data'] = $wpdb->get_results(\n\t\t\t\t\t$wpdb->prepare( \"\n\t\t\t\t\t\tSELECT test.* FROM `{$wpdb->prefix}spa_test` as test\n\t\t\t\t\t\tLEFT JOIN `{$wpdb->prefix}spa_chemical_test` as relationtips\n\t\t\t\t\t\tON test.`id` = relationtips.`id_test`\n\t\t\t\t\t\tWHERE relationtips.`id_chemical` = '%d'\n\t\t\t\t\t\", $this->data[$i]['data'][$j]['id'] ), ARRAY_A );\n\n\t\t\t\tfor ( $k = 0; $k < count( $this->data[$i]['data'][$j]['data'] ); $k++ ) {\n\t\t\t\t\t// get 'value'\n\t\t\t\t\t$this->data[$i]['data'][$j]['data'][$k]['data'] = $wpdb->get_results(\n\t\t\t\t\t\t$wpdb->prepare( \"\n\t\t\t\t\t\t\tSELECT spa_value.* FROM `{$wpdb->prefix}spa_value` as spa_value\n\t\t\t\t\t\t\tLEFT JOIN `{$wpdb->prefix}spa_test_value` as relationtips\n\t\t\t\t\t\t\tON spa_value.`id` = relationtips.`id_value`\n\t\t\t\t\t\t\tWHERE relationtips.`id_test` = '%d'\n\t\t\t\t\t\t\", $this->data[$i]['data'][$j]['data'][$k]['id'] ), ARRAY_A );\n\n\t\t\t\t\tfor ( $l = 0; $l < count( $this->data[$i]['data'][$j]['data'][$k]['data'] ); $l++ ) {\n\t\t\t\t\t\t// get 'result'\n\t\t\t\t\t\t$this->data[$i]['data'][$j]['data'][$k]['data'][$l]['data'] = $wpdb->get_results(\n\t\t\t\t\t\t\t$wpdb->prepare( \"\n\t\t\t\t\t\t\t\tSELECT result.* FROM `{$wpdb->prefix}spa_result` as result\n\t\t\t\t\t\t\t\tLEFT JOIN `{$wpdb->prefix}spa_value_result` as relationtips\n\t\t\t\t\t\t\t\tON result.`id` = relationtips.`id_result`\n\t\t\t\t\t\t\t\tWHERE relationtips.`id_value` = '%d'\n\t\t\t\t\t\t\t\", $this->data[$i]['data'][$j]['data'][$k]['data'][$l]['id'] ), ARRAY_A );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "function datos_internacionalizacion() {\n\t\t$query = \"SELECT * FROM internacionalizacion\";\n\n\t\t$connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t\n\t\t$result = mysql_query($query);\n\t\t$numrows = mysql_num_rows($result);\n\n\t\tif ($numrows == 0) {\n\t\t\tmysql_close($connection);\n\t\t\treturn $result;\n\t\t}\n\t\telse {\n\t\t\tmysql_close($connection);\n\t\t\treturn $result;\n\t\t}\n\t}", "public function getDb();", "function db_dispense($table,$data){\n\t$db=R::dispense($table);\n\tforeach ($data as $key => $value) {\n\t\t$db->$key=$value;\n\t}\n\tR::store( $db );\n}", "abstract function loadDbData($compid);", "function readDB() {\n\n\t\t// READ FROM MYSQL, kh_mod 0.3.0, add\n\t\treturn ($this->sqldatabase)?\n\t\t\t\t $this->readDBSQL()\n\t\t\t\t :\n\t\t\t\t $this->readDBFlatfile();\n\t}", "function MySQL() {\n \n }", "function exibirDataMysql($data){\n\tlist ($dia, $mes, $ano) = explode ('/', $data);\n\t$data_mysql = $ano.'-'.$mes.'-'.$dia;\n\treturn $data_mysql;\n}", "function selecnarDB()\n\t{\n\t\tmysql_select_db($this->dataBase) or die(mysql_error());\t\n\t}", "public function getDatabaseInfo();", "public function admin_get_dbs() {}", "private function list_data_sql()\n\t{\n\t\t$this->db\n\t\t\t->from('tweb_penduduk u')\n\t\t\t->join('tweb_keluarga d', 'u.id_kk = d.id', 'left')\n\t\t\t->join('tweb_wil_clusterdesa a', 'd.id_cluster = a.id', 'left')\n\t\t\t->join('tweb_penduduk_sex x', 'u.sex = x.id', 'left')\n\t\t\t->join('tweb_penduduk_agama g', 'u.agama_id = g.id', 'left')\n\t\t\t->join('tweb_status_dasar sd', 'u.status_dasar = sd.id', 'left')\n\t\t\t->join('log_penduduk log', 'u.id = log.id_pend', 'left')\n\t\t\t->join('ref_pindah rp', 'rp.id = log.ref_pindah', 'left')\n\t\t\t->where('u.status_dasar >', 1)\n\t\t\t->where_in('log.id_detail', array(2, 3, 4));\n\n\t\t$this->search_sql();\n\t\t$this->status_dasar_sql();\n\t\t$this->sex_sql();\n\t\t$this->agama_sql();\n\t\t$this->dusun_sql();\n\t\t$this->rw_sql();\n\t\t$this->rt_sql();\n\t}", "abstract public function selectDatabase($name);", "abstract protected function select_db($dbname);", "public function getRemoteData()\r\n {\r\n $command = \"mysqldump -uroot -pAFtony19833 lime\";\r\n \r\n// $tables = array();\r\n// $survey_tables = array();\r\n// $output = '';\r\n// // Grab all active survey ids\r\n// $db = $this->local_db_instance;\r\n// $prep = $db->prepare( 'show tables' );\r\n// $prep->execute();\r\n// while ( $records = $prep->fetch(PDO::FETCH_BOTH, PDO::FETCH_ORI_NEXT) )\r\n// {\r\n// $tables[] = $records[0];\r\n// }\r\n// \r\n// \r\n// \r\n// // Extract table data\r\n// foreach ( $tables as $table )\r\n// {\r\n// \r\n// $query = 'select * from '.$table;\r\n// $qr = $db->prepare($query);\r\n// $qr->execute();\r\n// $col_count = $qr->columnCount();\r\n// $row_count = $qr->rowCount();\r\n// \r\n// if ( $row_count > 0 )\r\n// {\r\n// $create_stmt = $this->getTableDefinitionSQL($table).\"; \";\r\n// \r\n// $table_data = $create_stmt.'INSERT INTO '.$table.' VALUES ';\r\n// \r\n// $counter = 0;\r\n// \r\n// while ( $row = $qr->fetch( PDO::FETCH_BOTH, PDO::FETCH_ORI_NEXT ) )\r\n// {\r\n// $row_data = '(';\r\n//\r\n// for( $i=0; $i < $col_count; $i++ )\r\n// {\r\n// // End of row columns\r\n// $end = $col_count - 1;\r\n// if($i != $end)\r\n// {\r\n// if( isset( $row[$i] ) )\r\n// {\r\n// $val = (int)$row[$i];\r\n// if($val)\r\n// {\r\n// switch ( $i )\r\n// {\r\n// case 0:\r\n// $row_data .= 'NULL, ';\r\n// break;\r\n// \r\n// case 2:\r\n// $row_data .= '\"'.$row[$i].'\", ';\r\n// break;\r\n// default :\r\n// $row_data .= $row[$i].', ';\r\n// }\r\n// }\r\n// else \r\n// {\r\n// $row_data .= $i != 0? '\"'.$row[$i].'\", ':'NULL, ';\r\n// }\r\n// }\r\n// else \r\n// {\r\n// $row_data .= 'NULL, ';\r\n// }\r\n// }\r\n//\r\n// else \r\n// {\r\n// // Last column in a row\r\n// if( $i != $counter )\r\n// {\r\n// if( isset( $row[$i] ) )\r\n// {\r\n// $val = (int)$row[$i];\r\n// if($val)\r\n// {\r\n// $row_data .= $row[$i].'), ';\r\n// }\r\n// else \r\n// {\r\n// $row_data .= '\"'.$row[$i].'\"), ';\r\n// }\r\n// }\r\n// else \r\n// {\r\n// $row_data .= 'NULL), ';\r\n// }\r\n// }\r\n// else\r\n// {\r\n// // Last column of Last row in table data\r\n// if(isset($row[$i]))\r\n// {\r\n// $val = (int)$row[$i];\r\n// if($val)\r\n// {\r\n// $row_data .= $row[$i].'), ';\r\n// }\r\n// else \r\n// {\r\n// $row_data .= '\"'.$row[$i].'\"), ';\r\n// }\r\n// }\r\n// else \r\n// {\r\n// $row_data .= 'NULL)';\r\n// }\r\n// }\r\n// }\r\n// }\r\n//\r\n// // Append row data to table data\r\n// $table_data .= $row_data;\r\n//\r\n// $counter++;\r\n// }\r\n// }\r\n// \r\n// // Append table data to output stream\r\n// if(strlen(@$table_data) > 10)\r\n// {\r\n// $output .= mb_substr($table_data, 0, -2).\"; \";\r\n// }\r\n// \r\n// }\r\n// \r\n// \r\n// return $output;\r\n \r\n }", "function getDatabase();", "public function getDataWithTypeDb() {}", "private function getData(){\n\t\tdb::getAdapter();\n\t\t\n\t\t$counter=0;\n\t\t$arrayFieldQuery=array();\n\t\tforeach($this->fields as $field){\n\t\t\t$arrayFieldQuery[$field]=$this->types[$counter];\n\t\t\t$counter++;\n\t\t}\n\t\t\n\t\t$counter=0;\n\t\t$arrayFilters=array();\n\t\tforeach($this->filters as $filter){\n\t\t\t$arrayFilters[$this->fields[$filter[0]]]=array(\"type\"=>$this->types[$filter[0]],\"value\"=>$filter[1]);\n\t\t}\n\t\t\n\t\tif(db::getFields($this->table,$arrayFieldQuery,$arrayFilters,$this->orderQuery,$this->limit,true)){\n\t\t\t$this->pages=ceil(((int)db::getCalculatedRows())/((int)$this->maxRowsPerPage));\n\t\t\t$this->maxRows=(int)db::getCalculatedRows();\n\t\t\twhile($row=db::fetch(db::$FETCH_TYPE_ASSOC)){\n\t\t\t\t$this->addRow($row);\n\t\t\t}\n\t\t}\n\t}", "public function database($store)\n\t{\n\t\t$result = $this->Model->all($store);\n\t\tprint_r($result);\n\t}", "private static function getPlatformMysqlData() {\n $connection = Database::getConnection('default');\n $result = $connection->query('SHOW GLOBAL STATUS', array(), array())->fetchAll();\n\n $ret = array();\n if (empty($result)) {\n return $ret;\n }\n\n foreach ($result as $record) {\n if (!isset($record->Variable_name)) {\n continue;\n }\n switch ($record->Variable_name) {\n case 'Table_locks_waited':\n $ret['Table_locks_waited'] = $record->Value;\n break;\n\n case 'Slow_queries':\n $ret['Slow_queries'] = $record->Value;\n break;\n\n case 'Qcache_hits':\n $ret['Qcache_hits'] = $record->Value;\n break;\n\n case 'Qcache_inserts':\n $ret['Qcache_inserts'] = $record->Value;\n break;\n\n case 'Qcache_queries_in_cache':\n $ret['Qcache_queries_in_cache'] = $record->Value;\n break;\n\n case 'Qcache_lowmem_prunes':\n $ret['Qcache_lowmem_prunes'] = $record->Value;\n break;\n\n case 'Open_tables':\n $ret['Open_tables'] = $record->Value;\n break;\n\n case 'Opened_tables':\n $ret['Opened_tables'] = $record->Value;\n break;\n\n case 'Select_scan':\n $ret['Select_scan'] = $record->Value;\n break;\n\n case 'Select_full_join':\n $ret['Select_full_join'] = $record->Value;\n break;\n\n case 'Select_range_check':\n $ret['Select_range_check'] = $record->Value;\n break;\n\n case 'Created_tmp_disk_tables':\n $ret['Created_tmp_disk_tables'] = $record->Value;\n break;\n\n case 'Created_tmp_tables':\n $ret['Created_tmp_tables'] = $record->Value;\n break;\n\n case 'Handler_read_rnd_next':\n $ret['Handler_read_rnd_next'] = $record->Value;\n break;\n\n case 'Sort_merge_passes':\n $ret['Sort_merge_passes'] = $record->Value;\n break;\n\n case 'Qcache_not_cached':\n $ret['Qcache_not_cached'] = $record->Value;\n break;\n\n }\n }\n\n return $ret;\n }", "function getDataFromDatabase() {\n\t$arrayOfArrays = [];\n\n\t// Opening the connection\n\t$conn = openConnection();\n\n\t// Getting all the data from the portfolio and tech tables\n\t$arrayOfArrays = addDataFromDatabase($arrayOfArrays, $conn);\n\n\t// Closing the connection\n\tcloseConnection($conn);\n\n\t// Returning the arrayOfArrays which contains each item as a seperate array\n\treturn $arrayOfArrays;\n}", "function dumpDB($database = HAR_ALL_DB, $tables = HAR_ALL_TABLES,$options = HAR_ALL_OPTIONS) \n {\n $this->_connect();\n \n if(empty($database))\n {\n $this->error = \"Specify the database.\";\n return false;\n }\n \n if(empty($tables))\n {\n $this->error = \"Specify the tables.\";\n return false;\n }\n \n if($database == HAR_ALL_DB)\n {\n $sql = \"SHOW DATABASES\";\n $this->result = @mysql_query($sql);\n if(mysql_error()!==\"\")\n {\n $this->error=\"Error : \".mysql_error();\n return false;\n }\n \n while($row = mysql_fetch_array($this->result,MYSQL_NUM))\n {\n $this->database[]=$row[0];\n }\n }\n else if(is_string($database))\n {\n $this->database = @explode(\",\",$database);\n }\n \n $lineEnd = $this->lineEnd[$this->OS_local];\n $returnSql = \"# MySql Dump\".$lineEnd ;\n $returnSql .= \"# Host:\".$this->dbhost.$lineEnd;\n $returnSql .= \"# -------------------------------------------------\".$lineEnd;\n\n $sql = \"SELECT VERSION()\";\n $this->result = mysql_query($sql);\n $row = mysql_fetch_array($this->result,MYSQL_NUM);\n $returnSql .= \"# Server version \".$row[0].$lineEnd.$lineEnd;\n \n \n \n for($i=0; $i < count($this->database) ; $i++)\n {\n if(count($this->database)>1)\n $returnSql.= \"USE \".$this->database[$i].\";\".$lineEnd.$lineEnd;\n \n $this->result = @mysql_query(\"USE \".$this->database[$i]);\n if(mysql_error()!==\"\")\n {\n $this->error=\"Error : \".mysql_error();\n return false;\n }\n \n $this->tables=array();\n if($tables == HAR_ALL_TABLES)\n {\n $sql = \"SHOW Tables\";\n $this->result = @mysql_query($sql);\n if(mysql_error()!==\"\")\n {\n $this->error=\"Error : \".mysql_error();\n return false;\n }\n\n while($row = mysql_fetch_array($this->result,MYSQL_NUM))\n {\n $this->tables[]=$row[0];\n }\n }\n else if(is_string($tables))\n {\n $this->tables = @explode(\",\",$tables);\n }\n for($j=0 ; $j < count($this->tables) ; $j++)\n {\n if(($options & HAR_NO_STRUCT ) != HAR_NO_STRUCT)\n {\n $sql = \"SHOW CREATE TABLE \".$this->tables[$j];\n $this->result = @mysql_query($sql);\n if(mysql_error()!==\"\")\n {\n $this->error=\"Error : \".mysql_error();\n return false;\n }\n $row = mysql_fetch_array($this->result,MYSQL_NUM);\n \n \n $returnSql .= \" #\".$lineEnd;\n $returnSql .= \" # Table structure for table '\".$this->tables[$j].\"'\".$lineEnd;\n $returnSql .= \" #\".$lineEnd.$lineEnd;\n \n if(($options & HAR_DROP_TABLE) == HAR_DROP_TABLE)\n $returnSql .= \"DROP TABLE IF EXISTS \".$this->tables[$j].\";\".$lineEnd;\n $returnSql .= $row[1].\";\".$lineEnd.$lineEnd.$lineEnd;\n }\n \n if(($options & HAR_NO_DATA ) != HAR_NO_DATA )\n {\n $returnSql .= \" #\".$lineEnd;\n $returnSql .= \" # Dumping data for table '\".$this->tables[$j].\"'\".$lineEnd;\n $returnSql .= \" #\".$lineEnd.$lineEnd;\n \n if(($options & HAR_LOCK_TABLE ) == HAR_LOCK_TABLE )\n $returnSql .= \"LOCK TABLES \".$this->tables[$j].\" WRITE;\".$lineEnd;\n\n $temp_sql = \"INSERT INTO \".$this->tables[$j];\n if(($options & HAR_FULL_SYNTAX == HAR_FULL_SYNTAX))\n {\n $sql=\"SHOW COLUMNS FROM \".$this->tables[$j];\n $this->result = @mysql_query($sql);\n if(mysql_error()!==\"\")\n {\n $this->error=\"Error : \".mysql_error();\n return false;\n }\n $fields = array();\n while($row = mysql_fetch_array($this->result,MYSQL_NUM))\n {\n $fields[]=$row[0];\n }\n $temp_sql.=' ('.@implode(',',$fields).')';\n }\n\n $sql=\"SELECT * FROM \".$this->tables[$j];\n $this->result = @mysql_query($sql);\n if(mysql_error()!==\"\")\n {\n $this->error=\"Error : \".mysql_error();\n return false;\n }\n while($row = mysql_fetch_array($this->result,MYSQL_NUM))\n {\n foreach($row as $key => $value)\n $row[$key] = mysql_escape_string($value);\n \n $returnSql .=$temp_sql.' VALUES (\"'.@implode('\",\"',$row).'\");'.$lineEnd;\n }\n if(($options & HAR_LOCK_TABLE ) == HAR_LOCK_TABLE )\n $returnSql .= \"UNLOCK TABLES;\".$lineEnd;\n\n }\n $returnSql .=$lineEnd.$lineEnd;\n }\n }\n return $returnSql;\n }", "protected function fromdb($data){\n $this->id = $data['id']; //15\n $this->baseurl = $data['baseurl'];\n $this->repositoryname = $data['repositoryname'];\n $this->identifydata = $data['identifydata'];\n $this->metadataprefix = $data['metadataprefix'];\n $this->errorpolicy = $data['errorpolicy'];\n $this->email = $data['email'];\n $this->granularity = $data['granularity'];\n $this->youngestdatestamp = $data['youngestdatestamp'];\n\n $this->httpuser = $data['httpuser'];\n\n $this->websiteurl = $data['websiteurl'];\n $this->default_identifier = $data['default_identifier'];\n $this->allctxo_parsed = $data['allctxo_parsed'];\n $this->created = $data['created'];\n\n $this->harvest_laststart = $data['harvest_laststart']; //11\n $this->harvest_lastend = $data['harvest_lastend'];\n $this->harvest_lastlistsize = $data['harvest_lastlistsize'];\n $this->harvest_lastexitcode = $data['harvest_lastexitcode'];\n\n $this->parse_laststart = $data['parse_laststart'];\n $this->parse_lastend = $data['parse_lastend'];\n $this->parse_lastctxocount = $data['parse_lastctxocount'];\n $this->parse_lastexitcode = $data['parse_lastexitcode'];\n\n $this->calc_laststart = $data['calc_laststart'];\n $this->calc_lastend = $data['calc_lastend'];\n $this->calc_lastexitcode = $data['calc_lastexitcode'];\n\n $this->aggr_laststart = $data['aggr_laststart'];\n $this->aggr_lastend = $data['aggr_lastend'];\n $this->aggr_lastexitcode = $data['aggr_lastexitcode'];\n\n }", "public function getFromDB() {}", "function getAllMaster($tabel){\n $db = $this->load->database('mhsc_masterdata', TRUE);\n $query = $db->get($tabel);\n return $query;\n }", "public function fullDataBase()\n {\n print \"<table cellpadding='10' border=solid bordercolor=black>\";\n print\"<tr>\n <td>ROW</td> <td>EXCHANGE</td>\n <td>NAME</td> <td>IPO</td>\n <td>SYMBOL</td> <td>PRICE</td>\n <td>CAP</td> <td>UPDATED</td>\n <td>SECTOR</td> <td>INDUSTRY</td>\n </tr>\";\n $sql = \"SELECT * FROM companies ORDER BY ipodate DESC, cap DESC\";\n\n foreach ($this->conn->query($sql) as $row) {\n print \"<tr> <td nowrap>\";\n print $row['id'] . \"</td><td nowrap>\";\n print $row['stockexchange'] . \"</td><td nowrap>\";\n print $row['name'] . \"</td><td nowrap>\";\n print $row['ipodate'] . \"</td><td nowrap>\";\n print $row['symbol'] . \"</td><td nowrap>\";\n print $row['price'] . \"</td><td nowrap>\";\n print $row['cap'] . \"</td><td nowrap>\";\n print $row['created_at'] . \"</td><td nowrap>\";\n print $row['sector'] . \"</td><td nowrap>\";\n print $row['industry'] . \"</td></tr>\";\n }\n print \"</table>\";\n }", "public static function all()\n {\n if( $call = Master::$cMaster->APICall('0.9.1/db') )\n {\n $result = array();\n foreach( json_decode( $call, true ) as $db ){ array_push( $result, Database::DBWithIDName( $db['ID'], $db['name'] ) ); }\n return $result;\n }\n else{ commandResult( 500, \"Could not lookup databases\" ); }\n }", "protected function getDatabase() {}", "function datask() {\n\t\t\t\t$koneksi = $this->koneksi;\n\t\t\t\t// SQL\n\t\t\t\t$query\t\t\t= \"SELECT * FROM sk\";\n\t\t\t\t\n\t\t\t\t$sql\t\t\t= mysqli_query($koneksi,$query);\n\t\t\t\t\n\t\t\t\treturn $sql;\n\t\t\t}", "public function sql_select_db() {}", "public function readAll(){\n //select all data\n $query = \"SELECT\n id, num_compte, cle_rib, num_agence, duree_epargne, frais, solde, created\n FROM\n \" . $this->table_name . \"\n ORDER BY\n num_compte\";\n \n $stmt = $this->conn->prepare( $query );\n $stmt->execute();\n \n return $stmt;\n }", "public function sql_select_db() {}", "function llamarRegistrosMySQLPlaneServicios() {\n\t\t\tglobal $res;\n\t\t\t$cnx = conectar_mysql(\"Salud\");\n\t\t\t$cons = \"SELECT * FROM Salud.EPS ORDER BY AutoId ASC\";\n\t\t\t$res = mysql_query($cons);\n\t\t\treturn $res; \n\t\t\n\t\t}", "protected function setupDBData()\n {\n /**\n * IMPORTANT NOTE : these functions must be executed sequentially in order for the command to work.\n */\n $this->setupProducts();\n $this->setupServerTypes();\n $this->setupServers();\n $this->setupUsers();\n }", "public function exportDataSql()\n {\n $ret ='';\n $lastTable = '';\n $db_name = config('Database')->default[\"database\"];\n\n $db = db_connect();\n $tables = $this->db->query(\"SHOW TABLES FROM `\".$db_name.\"`\")->getResultArray();\n\n //fetch data\n foreach($tables as $key => $val)\n {\n $table = $val['Tables_in_'.$db_name];\n $sql = \"SELECT * FROM \".$table;\n $tableData = $db->query($sql)->getResultArray();\n $lastRow = end($tableData);\n\n foreach($tableData as $row)\n {\n\n $rowColumns = '';\n $rowValues = '';\n $lastKey = array_key_last($row);\n foreach($row as $key => $val)\n {\n $rowColumns .= $key;\n $rowValues .= $db->escape($val);\n if($lastKey != $key)\n {\n $rowColumns .= \",\";\n $rowValues .= \",\";\n }\n\n }\n\n //format SQL and set maxium row per query\n\t\t\t\t$count = 0;\n\t\t\t\tif($table != $lastTable || $count == M_DatabaseManager::MAXROW)\n {\n $ret .= \"INSERT INTO `\".$table.\"`\".\" (\".$rowColumns.\") VALUES\\r(\".$rowValues.\"),\\r\\n\";\n $count = 0;\n }\n else\n {\n if($count != M_DatabaseManager::MAXROW-1)\n {\n $ret .= \"(\".$rowValues.\")\";\n if($lastRow != $row) $ret .= \",\\r\\n\";\n else $ret .= \";\\r\\n\";\n }\n else\n {\n $ret .= \"(\".$rowValues.\");\\r\\n\";\n }\n }\n\n $lastTable = $table;\n $count++;\n }\n\n }\n\n return $ret;\n\n }", "public function getDataByDatabase()\n {\n $condition = [\n ['user_id', '>', '39454']\n ];\n db()->table('tp_users')->where($condition)->cache('userList', 60)->select();\n $data = Cache::get('userList');\n dump($data);die;\n }", "function databases(){\n $this->execute(\"SELECT datname FROM pg_database WHERE datistemplate = false;\");\n $aDatabases = array();\n while ($aReg = $this->fetchRow()){\n $aDatabases[] = $aReg[0];\n }\n return $aDatabases;\n }", "function names_db() {\n\t\t$tmp = mysql_num_rows($this -> dbc);\n\t\treturn ($tmp);\n\t}", "abstract function getSQL();", "function datagolongan() {\n\t\t\t\t$koneksi = $this->koneksi;\n\t\t\t\t// SQL\n\t\t\t\t$query\t\t\t= \"SELECT * FROM golongan\";\n\t\t\t\t\n\t\t\t\t$sql\t\t\t= mysqli_query($koneksi,$query);\n\t\t\t\t\n\t\t\t\treturn $sql;\n\t\t\t}", "function readDBSQL() {\n\n\t\t// INIT RETURN VALUES\n\t\t$readFolders = $readImages = false;\n\n\t\t// FOLDER DATABASE\n\t\t$query = (defined('USER_ADMIN'))?\n\t\t\t\t\t'SELECT * FROM `mg2db_fdatabase` WHERE 1'\n\t\t\t\t\t:\n\t\t\t\t\t// date in past and position >= 0 only\n\t\t\t\t\t'SELECT * FROM `mg2db_fdatabase` WHERE\n\t\t\t\t\t timestamp < UNIX_TIMESTAMP() AND position >=0';\n\t\tif ($result = mysql_query($query)) {\n\t\t\t$this->all_folders = array();\n\t\t\t$this->folderautoid = 0;\n\t\t\twhile ($record = mysql_fetch_array($result,MYSQL_NUM)) {\n\t\t\t\t$folderID = (int)$record[0];\n\t\t\t\t$this->all_folders[$folderID] = $record;\n\t\t\t\tif ($this->folderautoid < $folderID) $this->folderautoid = $folderID;\n\t\t\t}\n\t\t\tif ($this->folderautoid < 1) {\n\t\t\t\t$this->folderautoid = 1;\n\t\t\t\t$this->all_folders[$this->folderautoid] = $this->getDefaultRootFolder();\n\t\t\t}\n\t\t\t$readFolders = mysql_num_rows($result);\n\t\t}\n\n\t\t// IMAGE DATABASE\n\t\t$query = (defined('USER_ADMIN'))?\n\t\t\t\t\t'SELECT * FROM `mg2db_idatabase`'\n\t\t\t\t\t:\n\t\t\t\t\t// date in past and position >= 0 only\n\t\t\t\t\t'SELECT * FROM `mg2db_idatabase` WHERE\n\t\t\t\t\t timestamp < UNIX_TIMESTAMP() AND position >=0';\n\t\tif ($result = mysql_query($query)) {\n\t\t\t$this->all_images\t= array();\n\t\t\t$this->autoid\t\t= 0;\n\t\t\twhile ($record = mysql_fetch_array($result,MYSQL_NUM)) {\n\t\t\t\t$imageID = (int)$record[0];\n\t\t\t\t$this->all_images[$imageID] = $record;\n\t\t\t\tif ($this->autoid < $imageID) $this->autoid = $imageID;\n\t\t\t}\n\t\t\t$readImages = mysql_num_rows($result);\n\t\t}\n\t\treturn array($readFolders, $readImages);\n\t}", "function dbInstall($data) {\n/*\nAliIPRelays - \nAliIPRelay - \nAliIPRelays_queue - \n*/\n $data = <<<EOD\n AliIPRelays: ID int(10) unsigned NOT NULL auto_increment\n AliIPRelays: TITLE varchar(100) NOT NULL DEFAULT ''\n AliIPRelays: IP varchar(15) NOT NULL DEFAULT ''\n AliIPRelays: PORT varchar(10) NOT NULL DEFAULT ''\n AliIPRelays: STATUS TINYINT\n AliIPRelays: type ENUM('Eth8Relay v5','Eth8Relay v6','kc868-h8','kc868-h16','kc868-h32','sr-201','Yun relay 32-32','sw16') NOT NULL\n AliIPRelays: tcp_mode ENUM('Немедленно','В очередь') DEFAULT 'Немедленно'\n AliIPRelays: period int(10) unsigned\n AliIPRelays: next_check datetime\n AliIPRelays: UPDATED TIMESTAMP on update CURRENT_TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP\n AliIPRelays: INDEX type (type)\n AliIPRelays: INDEX IP (IP)\n \n AliIPRelay: ID int(10) unsigned NOT NULL auto_increment\n AliIPRelay: relay_id int(10) NOT NULL DEFAULT '0'\n AliIPRelay: TITLE varchar(100) NOT NULL DEFAULT ''\n AliIPRelay: VALUE varchar(255) NOT NULL DEFAULT ''\n AliIPRelay: ch_num varchar(10) NOT NULL DEFAULT ''\n AliIPRelay: LINKED_OBJECT varchar(100) NOT NULL DEFAULT ''\n AliIPRelay: LINKED_PROPERTY varchar(100) NOT NULL DEFAULT ''\n AliIPRelay: LINKED_METHOD varchar(100) NOT NULL DEFAULT ''\n AliIPRelay: UPDATED TIMESTAMP on update CURRENT_TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP\n AliIPRelay: INDEX relay_id (relay_id)\n// AliIPRelay: UNIQUE uniq (relay_id, ch_num) USING BTREE\n AliIPRelay: INDEX LINKED_OBJECT (LINKED_OBJECT)\n AliIPRelay: INDEX LINKED_PROPERTY (LINKED_PROPERTY)\n \n AliIPRelays_queue: ID int(10) unsigned NOT NULL auto_increment\n AliIPRelays_queue: relay_id int(10) NOT NULL DEFAULT '0'\n AliIPRelays_queue: queue varchar(100)\n AliIPRelays_queue: ADDED TIMESTAMP on update CURRENT_TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP\n \nEOD;\n parent::dbInstall($data);\n //if(!is_array(SQLSelectOne(\"SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE table_name = 'AliIPRelay' AND INDEX_NAME <> 'PRIMARY'\")))\n //if(!is_array(SQLSelectOne(\"SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE table_name = 'AliIPRelay' AND INDEX_NAME = 'relay_id'\")))SQLExec(\"ALTER TABLE `AliIPRelay` ADD INDEX `relay_id` (`relay_id`);\");\n if(!is_array(SQLSelectOne(\"SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE table_name = 'AliIPRelay' AND INDEX_NAME = 'uniq'\")))SQLExec(\"ALTER TABLE `AliIPRelay` ADD UNIQUE `uniq` (`relay_id`, `ch_num`) USING BTREE;\");\n //SQLSelectOne(\"ALTER TABLE `AliIPRelays` CHANGE `type` `type` ENUM('Eth8Relay v5','Eth8Relay v6','kc868-h8','kc868-h16','kc868-h32','sr-201','Yun relay 32-32') NOT NULL\");\n //if(!is_array(SQLSelectOne(\"SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE table_name = 'AliIPRelay' AND INDEX_NAME = 'LINKED_OBJECT'\")))SQLExec(\"ALTER TABLE `AliIPRelay` ADD INDEX `LINKED_OBJECT` (`LINKED_OBJECT`);\");\n //if(!is_array(SQLSelectOne(\"SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE table_name = 'AliIPRelay' AND INDEX_NAME = 'LINKED_PROPERTY'\")))SQLExec(\"ALTER TABLE `AliIPRelay` ADD INDEX `LINKED_PROPERTY` (`LINKED_PROPERTY`);\");\n }", "function import_data() {\n\t\t$sync_tables = $this->config->item('sync_tables');\n\n\t\t$this->db_tools->import_data( $sync_tables );\n\t\t$this->db_tools->echo_import_data();\n\t}", "function dataBaseAccess() \n {\n error_reporting (E_ALL & ~ E_NOTICE & ~ E_DEPRECATED); \n // error_reporting(0);\n date_default_timezone_set('America/Recife');\n // conexão com o servidor \n $this->myCon=mysqli_connect(\"localhost\", \"X\", \"X\");\n $db_selected = mysqli_select_db( $this->myCon , 'D' );\n return ; \n }", "public static function db($database);", "function choosedb() {\n $web = \"enwiki.web.db.svc.eqiad.wmflabs\";\n $analytics = \"enwiki.analytics.db.svc.eqiad.wmflabs\";\n\n $ts_pw = posix_getpwuid(posix_getuid());\n $ts_mycnf = parse_ini_file($ts_pw['dir'] . \"/replica.my.cnf\");\n\n $webtest = mysqli_connect( $web, $ts_mycnf['user'], $ts_mycnf['password'], 'heartbeat_p' );\n $analyticstest = mysqli_connect( $analytics, $ts_mycnf['user'], $ts_mycnf['password'], 'heartbeat_p' );\n\n $lagq = \"select lag from heartbeat where shard = 's1';\";\n\n $lag_wr = mysqli_query( $webtest, $lagq );\n $lag_ar = mysqli_query( $analyticstest, $lagq );\n\n $lag_webrow = mysqli_fetch_assoc( $lag_wr );\n $lag_anarow = mysqli_fetch_assoc( $lag_ar );\n\n $weblag = $lag_webrow['lag'];\n $analag = $lag_anarow['lag'];\n\n if( $weblag < 600 ) {\n $dbhost = $web;\n } elseif ( $weblag <= $analag ) {\n $dbhost = $web;\n } elseif( $analag <= $weblag ) {\n $dbhost = $analytics;\n } else {\n $dbhost = $web;\n }\n mysqli_close( $webtest );\n mysqli_close( $analyticstest );\n return( $dbhost );\n}", "function __list_fields_data($dbname,$table_name){\n $DB1=$this->__connect($dbname,$table_name);\n $fields = $DB1->list_fields($table_name);\n $fields_data = $DB1->field_data($table_name);\n\n $sql = \"describe $table_name\";\n $result = mysql_query($sql);\n //$sql=$this->db->query('sql');\n\n //convert to object\n //needs thinking\n while($data = mysql_fetch_array($result))\n {\n //echo_array($data);break;\n $d->name[$data['Field']]=array('name'=>$data['Field'],\n 'type'=>$data['Type'],\n 'null'=>$data['Null'],\n 'key'=>$data['Key'],\n 'default'=>$data['Default'],\n 'extra'=>$data['Extra']\n );\n \n \n \n }\n //echo'TEST';\n //echo_array($d);break;\n // print_r($result);\n\n return($d);\n }", "function dbInstall($data) {\n/*\nlagartoservers - lagarto Devices\nlagartoendpoints - lagarto Properties\n*/\n $data = <<<EOD\n\n lagartoservers: ID int(10) unsigned NOT NULL auto_increment\n lagartoservers: TITLE varchar(255) NOT NULL DEFAULT ''\n lagartoservers: MDID varchar(255) NOT NULL DEFAULT ''\n lagartoservers: TYPE varchar(255) NOT NULL DEFAULT ''\n lagartoservers: PORT int(10) NOT NULL DEFAULT '0'\n lagartoservers: ZMQPORT int(10) NOT NULL DEFAULT '0'\n lagartoservers: IP varchar(255) NOT NULL DEFAULT ''\n lagartoservers: PASSWORD varchar(255) NOT NULL DEFAULT ''\n lagartoservers: UPDATE_PERIOD int(10) NOT NULL DEFAULT '0'\n lagartoservers: NEXT_UPDATE datetime\n\n lagartoendpoints: ID int(10) unsigned NOT NULL auto_increment\n lagartoendpoints: SERVER_ID int(10) NOT NULL DEFAULT '0'\n lagartoendpoints: ENDPOINT_ID varchar(50) NOT NULL DEFAULT '0'\n lagartoendpoints: TITLE varchar(50) NOT NULL DEFAULT '0'\n lagartoendpoints: TYPE int(3) NOT NULL DEFAULT '0'\n lagartoendpoints: CURRENT_VALUE_STRING varchar(255) NOT NULL DEFAULT ''\n lagartoendpoints: TYPE_STRING varchar(20) NOT NULL DEFAULT ''\n lagartoendpoints: DIRECTION_STRING varchar(20) NOT NULL DEFAULT ''\n lagartoendpoints: LINKED_OBJECT varchar(255) NOT NULL DEFAULT ''\n lagartoendpoints: LINKED_PROPERTY varchar(255) NOT NULL DEFAULT ''\n lagartoendpoints: LINKED_METHOD varchar(255) NOT NULL DEFAULT ''\n lagartoendpoints: UPDATED datetime\n\nEOD;\n parent::dbInstall($data);\n }", "protected function loadData(){\n\t\t//SELECT from \".self::TABLE_NAME.\"_data WHERE \".self::TABLE_NAME.\"_id=\".$this->id.\"\n\t\t\n\t\t//return the data\n\t\treturn array();\n\t}", "public function database() {\n\t\t$this->_check();\n\t\t$d['title_for_layout'] = __(\"Database creation\");\n\t\t$this->set($d);\n\t}", "function get_news_db(){\n\t\t\t\t$conn=new PDO(\"mysql:dbname=doseddb;host=localhost;charset=utf8\", \"dosed\", \"pass\");\n\t\t\t\t$stmt=$conn->prepare(\"select id, date as time, title, author, headline, article, url from articles where id= :id\");\n\t\t\t \t$stmt->execute(array(':id' => $_GET['news_id']));\n\t\t\t\t$result = $stmt->fetch(PDO::FETCH_ASSOC);\n\t\t\t return $result;\n\t\t\t}", "public function gather_db($limit = null) {\n\t\tif ($this->get_db()) {\n\t\t\treturn array('db' => true);\n\t\t}\n\t\treturn array();\n\t}", "function setServers()\n\t{\t\n\t\tglobal $db;\n\t\t\t\t\t\n\t\tif(DEBUG_MODE)\n\t\t{\n\t\t\techo '<pre>db array :: ';\n\t\t\tprint_r($db);\n\t\t}\n\t\t\n\t\t$data_city \t\t\t\t= ((in_array(strtolower($this->params['data_city']), $this->dataservers)) ? strtolower($this->params['data_city']) : 'remote');\n\t\t$this->idc_con\t\t\t= $db[strtolower($data_city)]['idc']['master'];\n\t\t$this->local_tme_conn\t= $db[strtolower($data_city)]['tme_jds']['master'];\n\t\t$this->local_d_jds\t\t= $db[strtolower($data_city)]['d_jds']['master'];\n\t\t$this->local_iro_conn\t= $db[strtolower($data_city)]['db_iro']['master'];\n\t\t$this->fin_con\t\t\t= $db[strtolower($data_city)]['fin']['master'];\n\t\t\n\t}", "function getDBs($host,$user,$pw,$pattern)\n{\n $returnArray=array();\n \n $pdo = new PDO( \"mysql:host=\".$host.\";\", $user,$pw);\t\n \n //select all databases like pattern sent in.\n $sql=\"SELECT SCHEMA_NAME as dbName FROM INFORMATION_SCHEMA.SCHEMATA where SCHEMA_NAME like '\".$pattern.\"'\";\n $resultArray=$pdo->query($sql);\n \n if ($resultArray !== false) {\n print_r($resultArray);\n if (count($resultArray)) {\n foreach ($resultArray as $row) {\n $returnArray[]=$row['dbName']; \n }\n }\n } \t\n \n //close connection.\n $pdo=null;\n \n \treturn $returnArray;\n}", "public function data() {\n\t\t$this->_check();\n\t\t$d['title_for_layout'] = __(\"Database construction\");\n\t\t\n\t\tif($this->request->is('post')) {\n\t\t\tApp::uses('File', 'Utility');\n\t\t\tApp::uses('CakeSchema', 'Model');\n\t\t\tApp::uses('ConnectionManager', 'Model');\n\t\t\t\t\t\n\t\t\t$db = ConnectionManager::getDataSource('default');\n\t\n\t\t\t// connection to the database\n\t\t\tif(!$db->isConnected()) {\n\t\t\t\t$this->Session->setFlash(__(\"Cannot connect to the database\"), \"Install.alert\");\n\t\t\t} else {\n\t\t\t\tcopy(PLUGIN_CONFIG.'Schema/Schema.php.install', CONFIG.'Schema/Schema.php');\n\n\t\t\t\t// fetches all information of the tables of the Schema.php file (app/Config/Schema/Schema.php)\n\t\t\t\t$schema = new CakeSchema(array('name' => 'app'));\n\t\t\t\t$schema = $schema->load();\n\t\t\t\t\n\t\t\t\t/**\n\t\t\t\t * saves the table in the database\n\t\t\t\t */\t\t\t\t\n\t\t\t\tforeach($schema->tables as $table => $fields) {\n\t\t\t\t\t$create = $db->createSchema($schema, $table);\n\t\t\t\t\ttry{\n\t\t\t\t\t\t$db->execute($create);\n\t\t\t\t\t} catch(Exception $e) {\n\t\t\t\t\t\t/*$this->Session->setFlash(__(\"<strong>\" .$table. \"</strong> table already exists.You have to choose another one.\"), \"Install.alert\");\n\t\t\t\t\t\t$this->redirect(array('action' => 'database')); */\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t/**\n\t\t\t\t * fetches an array containing all entries for the database\n\t\t\t\t */\n\t\t\t\t$dataObjects = App::objects('class', PLUGIN_CONFIG. 'data' .DS);\n\t\n\t\t\t\tforeach ($dataObjects as $data) {\n\t\t\t\t\t// loads all classes contained in app/Plugin/Install/Config/data/\n\t\t\t\t\tApp::import('Install.Config/data', $data);\n\t\t\t\t\t\n\t\t\t\t\t// fetches all objects from the classes\n\t\t\t\t\t$classVars = get_class_vars($data);\n\t\t\t\t\t// fetches class name\n\t\t\t\t\t$modelAlias = substr($data, 0, -4);\n\t\t\t\t\t\n\t\t\t\t\t// fetches table name\t\n\t\t\t\t\t$table = $classVars['table'];\n\t\t\t\t\t\n\t\t\t\t\t// fetches all entries\n\t\t\t\t\t$records = $classVars['records'];\n\t\t\t\t\tApp::uses('Model', 'Model');\n\t\t\t\t\t$modelObject = new Model(array(\n\t\t\t\t\t\t'name'\t=> $modelAlias,\n\t\t\t\t\t\t'table' => $table,\n\t\t\t\t\t\t'ds'\t=> 'default',\n\t\t\t\t\t));\n\t\t\t\t\t\n\t\t\t\t\t/**\n\t\t\t\t\t * We will save each entry in the database\n\t\t\t\t\t */\n\t\t\t\t\tif (is_array($records) && count($records) > 0) {\n\t\t\t\t\t\tforeach($records as $record) {\n\t\t\t\t\t\t\t$modelObject->create($record);\n\t\t\t\t\t\t\t$modelObject->save();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (!class_exists('Security')) {\n\t\t\t\t\trequire CAKE_CORE_INCLUDE_PATH .DS. 'Cake' .DS. 'Utility' .DS. 'security.php';\n\t\t\t\t}\n\t\t\t\tif($this->request->data['Install']['salt'] == 1) {\n\t\t\t\t\n\t\t\t\t\t$salt = $this->Install->changeConfiguration('Security.salt', Security::generateAuthKey());\n\t\t\t\t\tif($salt) {\t\t\n\t\t\t\t\t\t$users = $this->Install->query('SELECT * from users');\n\t\t\t\n\t\t\t\t\t\tforeach($users as $k => $v) {\n\t\t\t\t\t\t\t$v['users']['password'] = Security::hash($v['users']['username'], null, $salt);\n\t\t\t\t\t\t\t$this->Install->save($v);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t\tCakeSession::write('Install.salt', true);\n\t\t\t\n\t\t\t\t\t} else { \n\t\t\t\t\t\t$this->Session->setFlash(__(\"Error when generating new salt key\"), 'Install.alert');\t\n\t\t\t\t\t\treturn false; \n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t\tCakeSession::write('Install.salt', false);\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif($this->request->data['Install']['seed'] == 1) {\n\t\t\t\t\t$this->Install->changeConfiguration('Security.cipherSeed', mt_rand() . mt_rand());\n\t\t\t\t\tCakeSession::write('Install.seed', true);\n\t\t\t\t} else {\n\t\t\t\t\tCakeSession::read('Install.seed', false);\n\t\t\t\t}\n\t\t\t\t$this->redirect(array('action' => 'finish'));\n\t\t\t}\t\n\t\t}\n\t\t\n\t\t$this->set($d);\n\t}", "public function getDataStore();", "public function load()\n {\n $pdo = $this->getDbConnection();\n $query = \"SELECT * FROM {$this->dbTable}\";\n $data = $pdo->query($query)->fetchAll(\\PDO::FETCH_ASSOC);\n\n foreach ($data as ['key' => $key, 'value' => $value]) {\n $this->setData($key, $value);\n }\n }", "public function getCommondata()\n {\n $select = $this->select()\n // ->setIntegrityCheck(false)\n ->from(array('album' => 'album'),array('Id','name_n'))\n ->join('album_det','album_det.Id = album.Id',array('album_det.Id'));\n // $result=$this->fetchAll($hhh);\n $result = $this->fetchAll($select);\n \n echo \"<pre>\";\n print_r($result);exit;\n return $result;\n\n }", "function connection($data){\n $this->db->escape($data);\n $this->db->where($data);\n $q=$this->db->get($this->client);\n $res=$q->result();\n return $res;\n }", "function DBManager(){\n \t//foreach(func_get_args() as $k=>$n){\n \t//\techo $k.\"-\".$n.\"|\";\n \t//}\n }", "function db_selectData($query)\n\t{\n\t$this->OpenLink();\n\t$this->SelectDB();\n\t$this->query=$query;\n\t$this->result= mysqli_query($this->link,$this->query);\n\treturn $this->result;\n\t\n\t}", "public function index(){ \n \t$data['query1'] = $this->MBahagia->tampil_data();\n \t$data['query2'] = $this->MCamplong->tampil_data();\n \t$data['query3'] = $this->MPanglima->tampil_data();\n \t$data['query4'] = $this->MPKPRI->tampil_data();\n \t$data['query5'] = $this->MRahmat->tampil_data();\n\n \t\n \t$this->global['pageTitle'] = 'RichiSoft | Local Database';\n\t\t$this->loadViews(\"ViewTables/TableSlave\", $this->global, $data, NULL);\n\t}", "public function getDataByQuery($query){\r\n \r\n $mmtrend_group = DB::connection(DBUtils::getDBName())->select($query);\r\n //$mmtrend_group = DB::connection('mysql_ais_47')->select($query);\r\n Log::info(json_encode($mmtrend_group));\r\n }", "function allinea_db() {\r\n\t\t\r\n\t\t$in=$this->session_vars;\r\n\t\t$conn=$this->conn;\r\n\t\t$service=$this->service;\r\n\t\t$tb_exist = false;\r\n\t\t$str_synonym=\"select * from USER_SYNONYMS where synonym_name='\" . $this->form ['TABLE'] . \"'\";\r\n\t\t$sql = new query ( $conn );\r\n\t\t$sql->set_sql ( $str_synonym );\r\n\t\t$sql->exec ();//non richiede binding\r\n\t\t$sql->get_row();\r\n\t\tif($sql->row['TABLE_NAME']!='') $this->form ['TABLE']=$sql->row['TABLE_NAME'];\r\n\t\t$query = \"select column_name from user_col_comments where table_name='\" . $this->form ['TABLE'] . \"'\";\r\n\t\t$sql = new query ( $conn );\r\n\t\t$sql->set_sql ( $query );\r\n\t\t$sql->exec ();//non richiede binding\r\n\t\t$all_field_exist = true;\r\n\t\tforeach ( $this->fields as $key => $val ) {\r\n\t\t\tif (isset ( $val ['TYPE'] ) && $val ['TYPE'] != '')\r\n\t\t\t$field_type = \"field_{$val['TYPE']}\";\r\n\t\t\telse\r\n\t\t\t$field_type = \"field\";\r\n\t\t\t\r\n\t\t\tif ($this->config_service['field_lib'] != '' && file_exists ( $this->config_service['field_lib'] . $field_type . \".inc\" )) {\r\n\t\t\t\tinclude_once $this->config_service['field_lib'] . $field_type . \".inc\";\r\n\t\t\t} else\r\n\t\t\tinclude_once \"{$field_type}.inc\";\r\n\t\t\t$this->no_field_value_by_tb=true;\r\n\t\t\t$field_obj = new $field_type ( $this, $key, $this->conn, $this->tb_vals, $this->session_vars, $this->service, $this->errors);\r\n\t\t\t$this->no_field_value_by_tb=false;\r\n\t\t\t$allinea_stmt [$key] = $field_obj->allinea_db ();\r\n\t\t\tif ($field_obj->attributes ['PK'] == 'yes') {\r\n\t\t\t\t$sql_pk_fields .= \"{$field_obj->attributes['VAR']},\";\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t$sql_pk_fields = rtrim ( $sql_pk_fields, \",\" );\r\n\t\tif ($sql->numrows > 0) {\r\n\t\t\t$tb_exist = true;\r\n\t\t\t$i = 0;\r\n\t\t\twhile ( $sql->get_row () ) {\r\n\t\t\t\t$res [$i] = $sql->row ['COLUMN_NAME'];\r\n\t\t\t\t$i ++;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tif ($tb_exist) {\r\n\t\t\t$sql_pk = null;\r\n\t\t\t$c = 0;\r\n\t\t\t$all_field_exist = true;\r\n\t\t\tforeach ( $allinea_stmt as $key => $val ) {\r\n\t\t\t\tif ($val != '') {\r\n\t\t\t\t\t$field_exist = false;\r\n\t\t\t\t\tforeach ( $val as $vk => $vval ) {\r\n\t\t\t\t\t\t$nome_campo = explode ( \" \", $vval );\r\n\t\t\t\t\t\t$field_exist [$key] [$vk] = false;\r\n\t\t\t\t\t\tforeach ( $res as $key_res => $val_res ) {\r\n\t\t\t\t\t\t\tif ($val_res == $nome_campo [0] || $nome_campo [0] == '') {\r\n\t\t\t\t\t\t\t\t$field_exist [$key] [$vk] = true;\r\n\t\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\tforeach ( $field_exist as $key1 => $val1 ) {\r\n\t\t\t\t\t\tforeach ( $val1 as $vk => $boolval )\r\n\t\t\t\t\t\tif (! $boolval) {\r\n\t\t\t\t\t\t\t$all_field_exist = false;\r\n\t\t\t\t\t\t\t$index = (count ( $this->fields ) * $vk) + $key;\r\n//\t\t\t\t\t\t\t$eq_sql_str [$index] = \"alter table EQ_\" . $this->form ['TABLE'] . \" add {$allinea_stmt[$key][$vk]}\";\r\n\t\t\t\t\t\t\t$s_sql_str [$index] = \"alter table S_\" . $this->form ['TABLE'] . \" add {$allinea_stmt[$key][$vk]}\";\r\n\t\t\t\t\t\t\t$sql_str [$index] = \"alter table \" . $this->form ['TABLE'] . \" add {$allinea_stmt[$key][$vk]}\";\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\t$sql_pk_drop = \"alter table \" . $this->form ['TABLE'] . \" drop constraint PK_\" . $this->form ['TABLE'] . \" cascade\";\r\n\t\t\t$sql_pk = \"alter table \" . $this->form ['TABLE'] . \" add constraint PK_\" . $this->form ['TABLE'] . \" primary key ($sql_pk_fields)\";\r\n\t\t\t$sql_fk_coord_drop = \"alter table \" . $this->form ['TABLE'] . \" drop constraint FK_\" . $this->form ['TABLE'] . \"_COORD cascade\";\r\n\t\t\tglobal $config_service;\r\n\t\t\tif ($config_service ['VISITNUM_PROGR'] == 1)\r\n\t\t\t$sql_fk_coord = \"alter table \" . $this->form ['TABLE'] . \" add constraint FK_\" . $this->form ['TABLE'] . \"_COORD foreign key (VISITNUM, VISITNUM_PROGR, ESAM, {$this->PK_SERVICE}, PROGR) references {$service}_COORDINATE (VISITNUM, VISITNUM_PROGR, ESAM, {$this->PK_SERVICE}, PROGR) on delete cascade\";\r\n\t\t\telse\r\n\t\t\t$sql_fk_coord = \"alter table \" . $this->form ['TABLE'] . \" add constraint FK_\" . $this->form ['TABLE'] . \"_COORD foreign key (VISITNUM, ESAM, {$this->PK_SERVICE}, PROGR) references {$service}_COORDINATE (VISITNUM, ESAM, {$this->PK_SERVICE}, PROGR) on delete cascade\";\r\n\t\t} else {\r\n\t\t\t$this->body .= \"Table <b>\" . $this->form ['TABLE'] . \"</b> doesn't exist<br/>\";\r\n\t\t\tforeach ( $allinea_stmt as $key => $val ) {\r\n\t\t\t\tforeach ( $val as $key_f => $val_f )\r\n\t\t\t\tif ($val_f != '')\r\n\t\t\t\t$sql_create_fields .= \"{$val_f},\";\r\n\t\t\t}\r\n\t\t\t$sql_create_fields = rtrim ( $sql_create_fields, \",\" );\r\n\t\t\t$sql_str_ini = \"create table \" . $this->form ['TABLE'] . '(';\r\n\t\t\t$sql_str_end = \")\";\r\n\t\t\t$sql_str [0] = $sql_str_ini . $sql_create_fields . $sql_str_end;\r\n\t\t\t$sql_pk = \"alter table \" . $this->form ['TABLE'] . \" add constraint PK_\" . $this->form ['TABLE'] . \" primary key ($sql_pk_fields)\";\r\n\t\t\t$config_service=$this->config_service;\r\n\t\t\tif ($config_service ['VISITNUM_PROGR'] == 1)\r\n\t\t\t$sql_fk_coord = \"alter table \" . $this->form ['TABLE'] . \" add constraint FK_\" . $this->form ['TABLE'] . \"_COORD foreign key (VISITNUM, VISITNUM_PROGR, ESAM, {$this->PK_SERVICE}, PROGR) references {$service}_COORDINATE (VISITNUM, VISITNUM_PROGR, ESAM, {$this->PK_SERVICE}, PROGR) on delete cascade\";\r\n\t\t\telse\r\n\t\t\t$sql_fk_coord = \"alter table \" . $this->form ['TABLE'] . \" add constraint FK_\" . $this->form ['TABLE'] . \"_COORD foreign key (VISITNUM, ESAM, {$this->PK_SERVICE}, PROGR) references {$service}_COORDINATE (VISITNUM, ESAM, {$this->PK_SERVICE}, PROGR) on delete cascade\";\r\n//\t\t\t$eq_sql_str [0] = \"create table EQ_\" . $this->form ['TABLE'] . \" (ID NUMBER, COMMENTO varchar2(400),\" . $sql_create_fields . $sql_str_end;\r\n//\t\t\t$eq_sql_str [1] = \"alter table EQ_\" . $this->form ['TABLE'] . \" add constraint EQ_PK_\" . $this->form ['TABLE'] . \" primary key (ID)\";\r\n\r\n\t\t\t$s_sql_str [0] = \"create table S_\" . $this->form ['TABLE'] . \"(USERID VARCHAR2(20),MODDT DATE,MODPROG NUMBER not null,FL_QUERY CHAR(1) not null,ID_QUERY NUMBER,\" . $sql_create_fields . $sql_str_end;\r\n\t\t\t$s_sql_str [1] = \"alter table S_\" . $this->form ['TABLE'] . \" add constraint S_PK_\" . $this->form ['TABLE'] . \" primary key (MODPROG)\";\r\n\r\n\t\t}\r\n\t\tif (isset ( $in ['CREATE'] ) || isset ( $in ['CREATE_' . $this->form ['TABLE']] )) {\r\n\t\t\tforeach ( $sql_str as $key => $val ) {\r\n\t\t\t\t$sql = new query ( $conn );\r\n\t\t\t\t$sql->ins_upd ($val); // bind non necessario\r\n\t\t\t}\r\n\t\t\tforeach ( $eq_sql_str as $key => $val ) {\r\n\t\t\t\t$sql = new query ( $conn );\r\n\t\t\t\t$sql->ins_upd ($val); // bind non necessario\r\n\t\t\t}\r\n\t\t\tforeach ( $s_sql_str as $key => $val ) {\r\n\t\t\t\t$sql = new query ( $conn );\r\n\t\t\t\t$sql->ins_upd ($val); // bind non necessario\r\n\t\t\t}\r\n\t\t\tif ($sql_pk_drop != '') {\r\n\t\t\t\t$sql = new query ( $conn );\r\n\t\t\t\t$sql->ins_upd ($sql_pk_drop); // bind non necessario\r\n\t\t\t}\r\n\t\t\t$sql = new query ( $conn );\r\n\t\t\t$sql->ins_upd ($sql_pk); // bind non necessario\r\n\t\t\tif ($sql_fk_coord_drop != '') {\r\n\t\t\t\t$sql = new query ( $conn );\r\n\t\t\t\t$sql->ins_upd ($sql_fk_coord_drop); // bind non necessario\r\n\t\t\t}\r\n\t\t\t$sql = new query ( $conn );\r\n\t\t\t$sql->ins_upd ($sql_fk_coord); // bind non necessario\r\n\t\t\treturn true;\r\n\t\t} else\r\n\t\treturn ($tb_exist && $all_field_exist);\r\n\t}", "protected function fromDatabase( $data )\n\t{\n\t\tforeach ( $data AS $field => $value ) \n\t\t{\t\n\t\t\tif ( isset( static::$schema[ $field ] ) )\n\t\t\t{\n\t\t\t\tif ( is_array( static::$schema[ $field ] ) )\n\t\t\t\t{\n\t\t\t\t\t$type = static::$schema[ $field ][ 'type' ];\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t$type = static::$schema[ $field ];\n\t\t\t\t}\n\t\n\t\t\t\t$this->data[ $field ] = $this->sanitize( $type, $value );\n\t\t\t}\n\t\t}\n\t\t\n\t\t$this->loaded = true;\n\t}", "public function import_data()\r\n\t{\r\n\t\t$query = \"SELECT * FROM `#__wpl_addon_mls_queries` WHERE `enabled`>='1'\";\r\n\t\t$mls_queries = wpl_db::select($query);\r\n\t\t$rets_objects = array();\r\n\t\t$connection = 0;\r\n \r\n\t\tforeach($mls_queries as $mls_query)\r\n\t\t{\r\n\t\t\t$query = \"SELECT * FROM `#__wpl_addon_mls_data` WHERE `mls_query_id` = '{$mls_query->id}' AND `imported` = 0 ORDER BY `date` LIMIT {$mls_query->import_limit}\";\r\n\t\t\t$mls_data = wpl_db::select($query);\r\n\t\t\tif(!$mls_data) continue;\r\n\t\t\t$results = array();\r\n\t\t\t$ids = array();\r\n\r\n\t\t\tforeach($mls_data as $data)\r\n\t\t\t{\r\n\t\t\t\t$results[$data->unique_value] = (array)json_decode(base64_decode($data->content));\r\n\t\t\t\t$ids[] = $data->id;\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\t/** load rets object **/\r\n\t\t\tif($rets_objects[$mls_query->mls_server_id]) $wplrets = $rets_objects[$mls_query->mls_server_id];\r\n\t\t\telse $wplrets = new wpl_addon_mls($mls_query->mls_server_id);\r\n\r\n\t\t\tif(trim($wplrets->mls_server_data->mls_unique_field) == '') continue;\r\n\t\t\t\r\n\t\t\t/** set to rets objects **/\r\n\t\t\t$rets_objects[$mls_query->mls_server_id] = $wplrets;\r\n\r\n\t\t\t/** connect **/\r\n\t\t\tif(!$connection) $connection = $wplrets->connect();\r\n\r\n\t\t\t/** map data **/\r\n\t\t\t$mapped = $wplrets->map($results, $mls_query->id);\r\n\t\t\t\r\n\t\t\t/** import properties **/\r\n\t\t\t$pids = $wplrets->import_mapped_data($mapped, $mls_query->id);\r\n\t\t\t\r\n\t\t\t/** download images **/\r\n\t\t\tif(trim($mls_query->images)) $wplrets->import_properties_images($pids, $mls_query->mls_server_id, $mls_query->images, false);\r\n\t\t\t\r\n\t\t\t/** finalizing properties **/\r\n\t\t\tforeach($pids as $pid) $wplrets->finalize($pid);\r\n\t\t\r\n\t\t\t/** update imported field **/\r\n\t\t\twpl_db::q(\"UPDATE `#__wpl_addon_mls_data` SET `imported` = '1' WHERE `id` IN ('\".implode(\"','\", $ids).\"')\");\r\n\t\t}\r\n\r\n\t\tif(wpl_request::getVar('rets_import_cron_job') == 1) exit;\r\n\t}", "function database() {\n\t\t\n\t\t// Cria conexao com o bando de dados MySql\n\t\t$connect = mysql_connect(\"localhost\", \"root\", \"123\");\n\t\tmysql_select_db(\"rd_promocoes_db\", $connect);\n\n\t\t// Verifica a conexao com o banco\n\t\tif ( mysqli_connect_errno() ) {\n\t\t \techo \"Failed to connect to MySQL: \" . mysqli_connect_error();\n\t\t}\n\t}", "public function media_database()\n {\n\n $lang = $this->data['lang'];\n $user_id = $this->user_id;\n\n $this->data['page'] = 'media_database' ;\n\n $media_databases = $this->db->get('media_databases')->result_array() ;\n\n foreach ($media_databases as $key => $value) \n {\t\n \t$sites \t= $this->db->select('*,id as site_id')\n \t\t\t\t\t ->where('database_id',$value['id'])\n \t\t\t\t\t ->get('database_sites')->result_array();\n \n \t$media_databases[$key]['sites'] = array_chunk($sites,4);\n }\n\n $this->data['media_databases'] = $media_databases;\n\n $body = 'media_database' ;\n\n $this->load_pages($body,$this->data);\t\t\t\t\t\t\t \n\n }", "function database_load_all()\n {\n if( !is_resource($this->_last_resource) )\n {\n return FALSE;\n }\n \n $resource = $this->_last_resource;\n $return_data = array();\n while( $data = $this->database_fetch_assoc($resource) )\n {\n $return_data[] = $data;\n }\n \n return $return_data;\n\t}", "private function database($database= NULL) {\n if (NULL !== $database) return $database;\n return $this->conn->query('select database() as db')->next('db');\n }", "private function transfer_data()\n\t{\n\t\t$num_rows = db::select_one(\"select count(*) from {$this->table}\");\n\t\t\n\t\tfor ($i = 0; $i < $num_rows; $i += BATCH_SIZE)\n\t\t{\n\t\t\techo \"$i / $num_rows (select {$this->before_alter_select_query} from {$this->table})\\n\";\n\t\t\t$r = mysql_query(\"select {$this->before_alter_select_query} from {$this->table} limit $i, \".BATCH_SIZE);\n\t\t\twhile ($d = mysql_fetch_assoc($r))\n\t\t\t{\n\t\t\t\tif ($this->renamed_cols)\n\t\t\t\t{\n\t\t\t\t\tforeach ($this->renamed_cols as $before_key => $after_key)\n\t\t\t\t\t{\n\t\t\t\t\t\t$d[$after_key] = $d[$before_key];\n\t\t\t\t\t\tunset($d[$before_key]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tdb::insert($this->temp_table, $d);\n\t\t\t}\n\t\t}\n\t}", "function get_all_data_output( $con, $table, $offset ){\n\t\n\t\tif ( $table == 'events' )\n\t\t\t$res = select_all_events_output( $con, 0, $offset ); \n\t\telse if ( $table == 'checkins' )\n\t\t\t$res = select_all_checkins_output( $con, 0, $offset ); \n\t\t\n\t\treturn $res;\n\t\t/*\n\t\t$result = $res;\n\t\tfree_result($res);\n\t\treturn $result;\n\t\t*/\n\t}", "function read_sDBSQL() {\n\t\t// CONNECT TO SQL SERVER\n\t\tif (!$con = @mysql_connect(DB_SERVER, DB_USERNAME, DB_PASSWORD)) {\n\t\t\t$message = 'MySQL-Error: No connect!';\n\t\t\tinclude('admin/fatal_error.php');\n\t\t\texit();\n\t\t}\n\t\t// SELECT DATABASE\n\t\tif (!$cDB = @mysql_select_db(DB_NAME, $con)) {\n\t\t\t$message = 'MySQL-Error: Database couldn\\'t be selected!';\n\t\t\tinclude('admin/fatal_error.php');\n\t\t\texit();\n\t\t}\n\t\t// GET SETTINGS\n\t\t$query = 'SELECT * FROM `mg2db_settings` WHERE 1';\n\t\tif ($result = mysql_query($query)) {\n\t\t\t$values = mysql_fetch_array($result,MYSQL_ASSOC);\n\t\t\tif (is_array($values)) {\n\t\t\t\tforeach($values as $key=>$setting) {\n\t\t\t\t\t$this->$key = $setting;\n\t\t\t\t}\n\t\t\t\tsettype($this->metasetting, 'integer');\n\t\t\t\tsettype($this->navtype, 'integer');\n\t\t\t\tsettype($this->showexif, 'integer');\n\t\t\t\tsettype($this->commentsets, 'integer');\n\t\t\t\tsettype($this->foldersetting, 'integer');\n\t\t\t\tsettype($this->layoutsetting, 'integer');\n\t\t\t\tsettype($this->thumbMaxWidth, 'integer');\n\t\t\t\tsettype($this->thumbMaxHeight, 'integer');\n\t\t\t\tsettype($this->imagecols, 'integer');\n\t\t\t\tsettype($this->imagerows, 'integer');\n\t\t\t\tsettype($this->inactivetime, 'integer');\n\t\t\t\tsettype($this->extendedset, 'integer');\n\t\t\t\tsettype($this->installdate, 'integer');\n\t\t\t}\n\t\t}\n\t}", "function ambil_data_on_going()\n\t{\n\t\t\n\t\t$sql=\"SELECT * FROM irena_view_sbsn_on_going\";\n\t\treturn $this->db->query($sql);\n\t}", "abstract public function query();", "function importFromOutside($data)\r\n {\r\n\r\n $sql = $data;\r\n \r\n if(!empty($sql)){\r\n\r\n $sql = explode(';', $_POST['return']);\r\n\r\n foreach ($sql as $query) {\r\n $result = $this->onlineDB->prepare(\"$query\");\r\n try {\r\n $result->execute();\r\n } catch (Exception $e) {\r\n echo $e;\r\n }\r\n }\r\n\r\n }else\r\n echo 'there is no database';\r\n\r\n }", "static public function grabDbInfos() {\n global $DB;\n\n $dbinfos = $DB->getInfo();\n\n $size_res = $DB->request([\n 'SELECT' => new \\QueryExpression(\"ROUND(SUM(data_length + index_length) / 1024 / 1024, 1) AS dbsize\"),\n 'FROM' => 'information_schema.tables',\n 'WHERE' => ['table_schema' => $DB->dbdefault]\n ])->next();\n\n $db = [\n 'engine' => $dbinfos['Server Software'],\n 'version' => $dbinfos['Server Version'],\n 'size' => $size_res['dbsize'],\n 'log_size' => '',\n 'sql_mode' => $dbinfos['Server SQL Mode']\n ];\n\n return $db;\n }", "private function get_db_data() {\r\n\r\n\t\t$db_data = array(\r\n\t\t\t'twitter_id' => $this->api_post_id,\r\n\t\t\t'created_on' => date( 'Y-m-d H:i:s' ),\r\n\t\t\t'time_stamp' => date( 'Y-m-d H:i:s', CTF_Parse_Pro::get_timestamp( $this->api_data ) ),\r\n\t\t\t'last_requested' => date( 'Y-m-d H:i:s' ),\r\n\t\t\t'json_data' => ctf_json_encode( $this->api_data ),\r\n\t\t\t'media_id' => '',\r\n\t\t\t'sizes' => '{}',\r\n\t\t\t'aspect_ratio' => 1,\r\n\t\t\t'images_done' => 0\r\n\t\t);\r\n\r\n\t\treturn $db_data;\r\n\t}", "function database_list(){\n\t\treturn($this->q2obj(\"show databases\"));\n\t}", "public function read(){\n \n //select all data\n $query = \"SELECT\n id, id, num_compte, cle_rib, duree_epargne, frais, solde, created\n FROM\n \" . $this->table_name . \"\n ORDER BY\n created\";\n \n $stmt = $this->conn->prepare( $query );\n $stmt->execute();\n \n return $stmt;\n }", "function get_data() {\n $db = new PDO('mysql:host=127.0.0.1;dbname=Project_DB', 'root');\n $db->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);\n\n $fetchData = $db->prepare(\"SELECT `content_name` FROM `Content`;\");\n $fetchData->execute();\n return $fetchData->fetchAll();\n}", "private function retrieveData(){\n\t\t\n\t\t$dbo=new DB();\n\t\t$db=$dbo->db;\n\t\t$stmt = $db->prepare(\t'SELECT `description`, '.\n\t\t\t\t\t\t\t\t\t\t'`duration` '.\n\t\t\t\t\t\t\t\t'FROM `status` '.\t\t\n\t\t\t\t\t\t\t\t'WHERE `status` = ? '.\n\t\t\t\t\t\t\t\t'LIMIT 1'\n\t\t\t\t\t\t\t\t);\n\t $stmt->bind_param(\"s\", $this->id);\n\t $stmt->bind_result($this->description,$this->duration);\n\t $stmt->execute();\n\t $stmt->fetch();\n \t\t$stmt->close();\n \t\t\n\t}", "private static function initDB(){\n //otvori subor casopis.conf\n $file=fopen(\"casopis.conf\", \"r\",true);\n if(!$file)\n die (\"Nemozem otvorit subor\");\n \n $temp=\"\";\n $id=\"\";\n \n $server=\"\";\n $login=\"\";\n $password=\"\";\n $database=\"\";\n \n //nacitanie konfiguracneho suboru\n \n while(!feof($file)){\n $temp= fgets($file);\n \n //odstranenie bielych znakov zo zaciatku a konca riadku\n $temp=trim($temp);\n //odignoruje prazdne riadky a riadky obsahujuce znak #\n if(strstr($temp,\"#\"))\n continue;\n if(!strcmp($temp, \"\"))\n continue; \n \n list($id,$temp)=explode(\": \", $temp);\n $id=trim($id);\n $temp=trim($temp);\n \n //nastavi premenne server,login, password a database podla hodnot konfiguracneho suboru\n if(!strcmp($id, \"server\")){\n $server=$temp;\n continue;\n }\n if(!strcmp($id,\"login\")){\n $login=$temp;\n continue;\n }\n if(!strcmp($id, \"psswd\")){\n $password=$temp;\n continue;\n }\n if(!strcmp($id,\"dbase\")){\n $database=$temp;\n continue;\n }\n \n }\n fclose($file);\n \n //vytvori instanciu triedy.\n static::$default_database=new CDatabaza($server, $login, $password, $database);\n if(!static::$default_database->connected)\n static::$default_database=null;\n else\n static::$default_database->connected=false;\n \n }", "function listar_saa() {\n\t\t$query = \"SELECT material_saa.*\n\t\tFROM material_saa\n\t\tORDER BY saa_material asc\";\n\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\t\n\t\t$numrows = mysql_num_rows($result);\n\t\tmysql_close($connection);\n\t\t// COMPROBAMOS QUE HAYA RESULTADOS\n\t\t// SI EL NUMERO DE RESULTADOS ES 0 SIGNIFICA QUE NO HAY REGISTROS CON ESOS DATOS\n\t\tif ($numrows == 0) {\n\t\t\treturn $result;\n\t\t}\n\t\telse {\n\t\t\treturn $result;\n\t\t}\n\t}", "function insrt_db($pkg){\t\t\n\t\techo 'Trying to connect to database!<br>';\n\t\t$mysql_server_name = \"localhost\"; //数据库服务器名称\n\t\t$mysql_username = \"root\"; // 连接数据库用户名\n\t\t$mysql_password = \"20081010\"; // 连接数据库密码\n\t\t$mysql_database = \"TEST\"; // 数据库的名字\n\t\t\n\t\t$db = mysql_connect($mysql_server_name, $mysql_username, $mysql_password);\n\n\t\tif (!$db){\n\t\t\tdie('Could not connect: ' . mysql_error());\n\t\t}\n\n\t\techo ' database successfulingly connected!<br>';\n\t\tmysql_query(\"SET NAMES UTF8\");\n\n\t\t//make sure you're using the correct database\n\t\tmysql_select_db('TEST', $db) or die(mysql_error($db));\n \tvar_dump($pkg);\n\t\t// insert data into the phoneset\n\t\tforeach($pkg as $element) { \n\t\t\t$id = $element->id;\n\t\t\t$type1 = $element->type1;\n\t\t\t$type2 = $element->type2;\n\t\t\t$cost = $element->cost;\n\t\t\t$pkg_call = $element->pkg_call;\n\t\t\t$pkg_data = $element->pkg_data;\n\t\t\t$pkg_text = $element->pkg_text;\n\t\t\t$over_call = $element->over_call;\n\t\t\t$over_data = $element->over_data;\n\t\t\t$over_text = $element->over_text;\n\t\t\t$extra = $element->extra;\n //var_dump($element);\n\t\t\tif ($type1 == \"3G\") {\n\t\t\t\t$query = \"INSERT INTO 3G套餐\n\t\t \t\t(ID, Type1, Type2, 资费, 内国内语音, 套餐内流量, 套餐内短信, 外国内语音, 外本地通话, 外流量, 外短信, 额外信息)\n\t\t\t\t\tVALUES \n\t\t \t\t\t('\".$id.\"', '\".$type1.\"', '\".$type2.\"', $cost, $pkg_call, $pkg_data, $pkg_text, $over_call, $over_call, $over_data, $over_text, $extra);\";\n\t\t\t\tmysql_query($query, $db) or die(mysql_error($db));\n\t\t} elseif ($type1 == \"4G\") {\n\t\t\t\t$query = \"INSERT INTO 4G全国套餐\n\t\t \t\t(ID, Type1, Type2, 资费, 内国内语音, 套餐内流量, 套餐内短信, 外国内语音, 外本地通话, 外流量, 外短信, 额外信息)\n\t\t\t\t\t\tVALUES \n\t\t\t\t\t ('\".$id.\"', '\".$type1.\"', '\".$type2.\"', $cost, $pkg_call, $pkg_data, $pkg_text, $over_call, $over_call, $over_data, $over_text, $extra);\";\n\t\t\t\tmysql_query($query, $db) or die(mysql_error($db));\n\t\t\t}\n\t\t}\n\t\techo 'Data inserted successfully!<br>';\n\t}", "function show_db_fields($db_name) {\n $query = db_select($db_name, 'db')\n ->fields('db')\n ->range(0,1);\n $results = $query->execute()->fetchAll();\n return $results;\n}", "public function fetchAll(){\n $adapter = $this->adapter;\n $sql = new Sql($this->adapter);\n $select = $sql->select();\n $select->from('flota');\n $selectString = $sql->getSqlStringForSqlObject($select);\n $data = $adapter->query($selectString, $adapter::QUERY_MODE_EXECUTE);\n \n return $data;\n }", "function m_seleBD(){\n\t\tmysql_select_db($this->a_nomBD, $this->a_conexion);\n\t}", "abstract public function getDBDesc();", "public function loadFromDB()\n {\n }", "function listar_autores() {\n\t\t$query = \"SELECT autores.*\n\t\tFROM autores\n\t\tORDER BY autor asc\";\n\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\t\n\t\t$numrows = mysql_num_rows($result);\n\t\tmysql_close($connection);\n\t\t// COMPROBAMOS QUE HAYA RESULTADOS\n\t\t// SI EL NUMERO DE RESULTADOS ES 0 SIGNIFICA QUE NO HAY REGISTROS CON ESOS DATOS\n\t\tif ($numrows == 0) {\n\t\t\treturn $result;\n\t\t}\n\t\telse {\n\t\t\treturn $result;\n\t\t}\n\t}", "function select_db($base_datos) {\r\n\t\t//\"implementado en la clase <i>\" . get_class($this) . \"</i></h1>\";\r\n\t\treturn FALSE;\r\n\t}", "function CAnticipoData($db) {\r\n $this->db = $db;\r\n }", "abstract public function getSelectedDatabase();" ]
[ "0.64986527", "0.649548", "0.6354638", "0.6343658", "0.6329468", "0.6316853", "0.6311282", "0.6299181", "0.61382073", "0.61338985", "0.6121442", "0.6031705", "0.60232997", "0.60213965", "0.59955525", "0.5985018", "0.5983465", "0.59621286", "0.5947805", "0.59232426", "0.5922147", "0.59076613", "0.5903131", "0.5897393", "0.5879228", "0.5876368", "0.58711237", "0.5845559", "0.5843299", "0.58255756", "0.5824639", "0.5823649", "0.58085775", "0.5806393", "0.5791893", "0.57874537", "0.57775545", "0.57759506", "0.5775638", "0.57656115", "0.575473", "0.57526404", "0.57514083", "0.57342273", "0.5706171", "0.5705209", "0.5697705", "0.5693316", "0.569202", "0.56829923", "0.56528753", "0.56393117", "0.5626057", "0.56253874", "0.5624231", "0.56238204", "0.5621842", "0.5620586", "0.56187296", "0.5618094", "0.5616467", "0.5615621", "0.5607886", "0.560257", "0.5600624", "0.55963945", "0.55948204", "0.55927896", "0.558822", "0.5576124", "0.5570504", "0.5569354", "0.5569239", "0.55683124", "0.5554546", "0.55518794", "0.5549479", "0.5545908", "0.5545224", "0.55429274", "0.5542395", "0.5535709", "0.55287606", "0.5525926", "0.55255055", "0.5525212", "0.55233043", "0.5517173", "0.55147755", "0.5508677", "0.5507109", "0.5499477", "0.54988843", "0.54908997", "0.54889417", "0.5479737", "0.54766965", "0.5470886", "0.5469024", "0.54683656", "0.546682" ]
0.0
-1
Mi permette di prelevare singoli dati dalle tabelle aventi come chiave primaria ID
function getDati($tabella,$oggetto,$chiave){ global $db_host, $db_user, $db_pass, $db_name; $conn = mysql_connect($db_host, $db_user, $db_pass) or die("Errore nella connessione a MySql da getDati: " . mysql_error()); mysql_select_db($db_name,$conn) or die("Errore nella selezione del db: " . mysql_error()); $query = "SELECT ". $oggetto ." FROM ". $tabella ." WHERE ID='". $chiave ."'"; $result = mysql_query($query, $conn); $row = mysql_fetch_array($result); if ($row[0] == "") { return ""; } else { return $row[0]; } mysql_close($conn); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function tampil_data_id($tabel,$where,$id)\n {\n $row = $this->db->prepare(\"SELECT * FROM $tabel WHERE $where = :id,:teks,:label,:predict\");\n $row->execute(array($id));\n return $hasil = $row->fetch();\n }", "function idData($table){\n $array=get($table,'id');\n $id=max($array)+1;\n return $id;\n }", "public function id_tarjeta();", "function get_entrada_pr_pedido_id($id){\n\t\t$u = new Entrada();\n\t\t$sql=\"select distinct on (e.pr_facturas_id) e.pr_facturas_id, e.id as id1, date(e.fecha) fecha, prf.monto_total as importe_factura, pr.razon_social as proveedor,prf.folio_factura, prf.pr_pedido_id, ef.tag as espacio_fisico, eg.tag as estatuse, e.lote_id, cel.tag as estatus_traspaso \".\n\t\t\t\t\"from entradas as e \".\n\t\t\t\t\"left join cproveedores as pr on pr.id=e.cproveedores_id \".\n\t\t\t\t\"left join pr_facturas as prf on prf.id=e.pr_facturas_id \".\n\t\t\t\t\"left join espacios_fisicos as ef on ef.id=e.espacios_fisicos_id \".\n\t\t\t\t\"left join estatus_general as eg on eg.id=e.estatus_general_id \".\n\t\t\t\t\"left join lotes_pr_facturas as lf on lf.pr_factura_id=prf.id \".\n\t\t\t\t\"left join cestatus_lotes as cel on cel.id=lf.cestatus_lote_id \".\n\t\t\t\t\"where e.estatus_general_id=1 and ctipo_entrada=1 and prf.pr_pedido_id='$id'\".\n\t\t\t\t\"group by e.pr_facturas_id, e.id, e.fecha, importe_factura, pr.razon_social, prf.folio_factura, prf.pr_pedido_id, ef.tag, eg.tag, e.pr_facturas_id, e.cproveedores_id,e.lote_id, cel.tag \".\n\t\t\t\t\"order by e.pr_facturas_id desc,e.fecha desc\";\n\t\t$u->query($sql);\n\t\tif($u->c_rows > 0){\n\t\t\treturn $u;\n\t\t} else {\n\t\t\treturn FALSE;\n\t\t}\n\t}", "function budynekKoncowy(){\r\n\t\t$this->retriveDataRow();\r\n\t\treturn $this->data['id_budynku_koncowego'];\r\n\t}", "public function getIdfa();", "function ambil_data_id($id_admin){\n\t\t$this->db->where($this->id_admin, $id_admin);\n\t\treturn $this->db->get($this->nama_table)->row();\n\t}", "function get_entrada_lote_id($id,$auth){\n\t\tif($auth==0){\n\t\t\t$validacion=\"and prf.usuario_validador_id=0 \";\n\t\t} else {\n\t\t\t$validacion=\" and prf.usuario_validador_id>0 \";\n\t\t}\n\t\t\t\n\t\t$u = new Entrada();\n\t\t$sql=\"select distinct on (e.pr_facturas_id) e.pr_facturas_id, e.id as id1, date(e.fecha) fecha, ( prf.monto_total - prf.descuento ) as importe_factura, pr.razon_social as proveedor,prf.folio_factura, prf.pr_pedido_id, ef.tag as espacio_fisico, eg.tag as estatuse, e.lote_id, cel.tag as estatus_traspaso \".\n\t\t\t\t\"from entradas as e \".\n\t\t\t\t\"left join cproveedores as pr on pr.id=e.cproveedores_id \".\n\t\t\t\t\"left join pr_facturas as prf on prf.id=e.pr_facturas_id \".\n\t\t\t\t\"left join espacios_fisicos as ef on ef.id=e.espacios_fisicos_id \".\n\t\t\t\t\"left join estatus_general as eg on eg.id=e.estatus_general_id \".\n\t\t\t\t\"left join lotes_pr_facturas as lf on lf.pr_factura_id=prf.id \".\n\t\t\t\t\"left join cestatus_lotes as cel on cel.id=lf.cestatus_lote_id \".\n\t\t\t\t\"where e.estatus_general_id=1 and ctipo_entrada=1 and lf.lote_id='$id' $validacion\".\n\t\t\t\t\"group by e.pr_facturas_id, e.id, e.fecha, importe_factura, pr.razon_social, prf.folio_factura, prf.pr_pedido_id, ef.tag, eg.tag, e.pr_facturas_id, e.cproveedores_id,e.lote_id, prf.descuento, cel.tag \".\n\t\t\t\t\"order by e.pr_facturas_id desc,e.fecha desc \";\n\t\t$u->query($sql);\n\t\tif($u->c_rows > 0){\n\t\t\treturn $u;\n\t\t} else {\n\t\t\treturn FALSE;\n\t\t}\n\t}", "function tampilkan_per_id($id){\r\n\t\t\t$query \t= \"SELECT * FROM data WHERE id='$id'\";\r\n\t\t\treturn result($query);\r\n\t\t}", "public function getDataID($table,$id) {\n $sql = \"select * from $table where id = '$id'\";\n $this->execute($sql);\n if($this->num_rows() != 0){\n $data = mysqli_fetch_array($this->result);\n }\n else {\n $data = 0;\n }\n return $data;\n }", "function id_articulo($id){\n return (int)limpiarDatos($id);\n}", "function getDatosId_situacion()\n {\n $nom_tabla = $this->getNomTabla();\n $oDatosCampo = new core\\DatosCampo(array('nom_tabla' => $nom_tabla, 'nom_camp' => 'id_situacion'));\n $oDatosCampo->setEtiqueta(_(\"id_situacion\"));\n return $oDatosCampo;\n }", "function getDatosId_situacion()\n {\n $nom_tabla = $this->getNomTabla();\n $oDatosCampo = new core\\DatosCampo(array('nom_tabla' => $nom_tabla, 'nom_camp' => 'id_situacion'));\n $oDatosCampo->setEtiqueta(_(\"id_situacion\"));\n return $oDatosCampo;\n }", "public function loadDataFromId(){\r\n\t\t\t$this -> loadFromId();\r\n\t }", "public static function basisdata_point($id)\n {\n $tmp = static::where('koridor_id',$id) \n ->orderBy('nomor', 'asc')\n ->get();\n return $tmp;\n }", "function getDataRowId()\r\n\t{\r\n\t\treturn 'prefix_'.'id';\r\n\t}", "public function pertanyaanId($id){\r\n $sql = \"SELECT * FROM tbl_pertanyaan where id=$id\";\r\n $query = mysql_query($sql);\r\n \t\t $row = mysql_fetch_array($query);\r\n return $row;\r\n }", "public function datumAddFromId($id){\n $sql = \"select persnr,datum from dzeitsoll where id='$id'\";\n $res = $this->db->query($sql);\n $rows = $res->fetchAll();\n $row = $rows[0];\n $datum = $row['datum'];\n $persnr = $row['persnr'];\n $sqlinsert = \"insert into dzeitsoll (persnr,datum,oe) values('$persnr','$datum','-')\";\n $this->db->query($sqlinsert);\n return $this->db->insertId();\n }", "function getDatosId_asignatura()\n {\n $nom_tabla = $this->getNomTabla();\n $oDatosCampo = new core\\DatosCampo(array('nom_tabla' => $nom_tabla, 'nom_camp' => 'id_asignatura'));\n $oDatosCampo->setEtiqueta(_(\"id_asignatura\"));\n return $oDatosCampo;\n }", "function getDatosId_preceptor()\n {\n $nom_tabla = $this->getNomTabla();\n $oDatosCampo = new core\\DatosCampo(array('nom_tabla' => $nom_tabla, 'nom_camp' => 'id_preceptor'));\n $oDatosCampo->setEtiqueta(_(\"id_preceptor\"));\n return $oDatosCampo;\n }", "function getIDTabelRiwayatPangkat(){\n\t$query = mysql_query(\"SELECT MAX(id_data) as 'Max' FROM tbl_riwayat_pangkat\") or die(mysql_error());\n\t$row = mysql_fetch_array($query);\n\t$maks = $row['Max'];\n\t$ID = \"\";\n\t\n\tif($maks > 0){\n\t\t$ID = $maks + 1;\n\t}else{\n\t\t$ID = 1;\n\t}\n\t\n\treturn $ID;\n}", "function getEarnotchID($id){\n\t$crud = new CRUD();\n\t$crud->connect();\n\n\t$crud->sql(\"select * from pigs_tbl where pig_id='{$id}'\");\n\t$r = $crud->getResult();\n\tforeach($r as $rs){\n\t\treturn $rs['earnotch'];\n\n\t}\n\t$crud->disconnect();\n}", "function getDatosId_dl()\n {\n $nom_tabla = $this->getNomTabla();\n $oDatosCampo = new core\\DatosCampo(array('nom_tabla' => $nom_tabla, 'nom_camp' => 'id_dl'));\n $oDatosCampo->setEtiqueta(_(\"id_dl\"));\n $oDatosCampo->setTipo('texto');\n return $oDatosCampo;\n }", "public function GetId()\n\t{\n\t\t$datas = $this->db->query('select DISTINCT id_komponenbiaya from masterkomponenbiaya order by id_komponenbiaya asc');\n\t\treturn $datas;\n\t}", "function getSolicitud_id ($id_solicitud) {\n $db = new MySQL();\n $sql = \"SELECT \n t01.id as id_solicitud,\n date_format(t01.fecha_solicitud,'%d-%m-%Y') fecha_solicitud, \n t01.id_paciente, \n t01.id_medico,\n t03.nombre as medico,\n t01.id_lugarentrega,\n t01.id_servicio,\n concat(t02.nombres,' ', t02.apellidos) paciente,\n t02.edad,\n t02.id_sexo,\n t02.id_empresa,\n t04.nombre as empresa,\n t01.sumas,\n t01.descuento,\n t01.venta_total\n FROM lab_solicitud t01\n LEFT JOIN mnt_paciente t02 ON t02.id = t01.id_paciente\n LEFT JOIN ctl_medico t03 ON t03.id = t01.id_medico\n LEFT JOIN ctl_empresa t04 ON t04.id = t01.id_empresa\n WHERE t01.id=$id_solicitud\";\n return $db->fetch_array($db->consulta($sql));\n }", "public function buscarID()\n {\n $sentencia = \"SELECT id, cl FROM tsreportebocadetubo ORDER BY id DESC LIMIT 1\";\n try {\n $stm = $this->db->prepare($sentencia);\n $stm->execute();\n $registros = $stm->fetchAll(PDO::FETCH_OBJ);\n foreach ($registros as $r) {\n $id = $r->id;\n }\n return $id;\n } catch (Exception $e) {\n echo $e->getMessage();\n }\n }", "function Consulta_id(){\r\n $query = \"SELECT\r\n o.ID_Eventos, o.EVE_Nombres, o.EVE_Descripcion, o.ID_Distrito, t.DIS_Nombre as Distrito, o.EVE_Detalles, o.EVE_Fotografia, o.EVE_Fecha_Hora, o.EVE_Longitud, o.EVE_Latitud\r\n FROM\r\n \" . $this->table_name . \" o\r\n LEFT JOIN\r\n Tbl_Distrito t\r\n ON o.ID_Distrito = t.ID_Distrito\r\n WHERE\r\n o.ID_Eventos = ?\r\n LIMIT\r\n 0,1\";\r\n // prepare query statement\r\n $stmt = $this->conn->prepare( $query );\r\n \r\n // bind id of product to be updated\r\n $stmt->bindParam(1, $this->ID_Eventos);\r\n \r\n // execute query\r\n $stmt->execute();\r\n \r\n // get retrieved row\r\n $row = $stmt->fetch(PDO::FETCH_ASSOC);\r\n \r\n // set values to object properties\r\n $this->ID_Eventos = $row['ID_Eventos'];\r\n $this->EVE_Nombres = $row['EVE_Nombres'];\r\n $this->EVE_Descripcion = $row['EVE_Descripcion'];\r\n $this->ID_Distrito = $row['ID_Distrito'];\r\n $this->Distrito = $row['Distrito'];\r\n $this->EVE_Detalles = $row['EVE_Detalles'];\r\n $this->EVE_Fotografia = $row['EVE_Fotografia'];\r\n $this->EVE_Fecha_Hora = $row['EVE_Fecha_Hora'];\r\n $this->EVE_Longitud = $row['EVE_Longitud'];\r\n $this->EVE_Latitud = $row['EVE_Latitud'];\r\n }", "public function datumDeleteFromId($id){\n $sql = \"select persnr,datum from dzeitsoll where id='$id'\";\n $res = $this->db->query($sql);\n $rows = $res->fetchAll();\n $row = $rows[0];\n $datum = $row['datum'];\n $persnr = $row['persnr'];\n // zjistim kolik takovych datumu pro daneho cloveka jeste mam\n $sql = \"select count(datum) as pocetdatumu from dzeitsoll where persnr='$persnr' and datum='$datum'\";\n $res = $this->db->query($sql);\n $pocetDatumu = $res->fetchSingle();\n if($pocetDatumu>1){\n // muzu dane id smazat\n $this->db->query(\"delete from dzeitsoll where id='$id' limit 1\");\n }\n else{\n // nebudu mazat ale nastavim stunden = 0, oe = -\n $sql = \"update dzeitsoll set stunden=0,oe='-' where id='$id'\";\n $this->db->query($sql);\n }\n }", "function load_id(){\r\n $db = new Database();\r\n $sql = \"select * from \" . Interest::TABLE_NAME . \" where name=:name\";\r\n $stm = $db->pdo->prepare($sql);\r\n $stm->bindParam(':name', $this->name);\r\n $stm->execute();\r\n if ($stm->rowCount() > 0){\r\n $row = $stm->fetch();\r\n $this->id = $row[\"id\"];\r\n }\r\n else{\r\n $this->save();\r\n $this->id = $db->pdo->lastInsertId();\r\n }\r\n }", "public function SalasPorId()\n{\n\tself::SetNames();\n\t$sql = \" select salas.codsala, salas.nombresala, salas.salacreada, mesas.codmesa, mesas.nombremesa, mesas.mesacreada, mesas.statusmesa FROM salas LEFT JOIN mesas ON salas.codsala = mesas.codsala where salas.codsala = ? \";\n\t$stmt = $this->dbh->prepare($sql);\n\t$stmt->execute( array(base64_decode($_GET[\"codsala\"])) );\n\t$num = $stmt->rowCount();\n\tif($num==0)\n\t{\n\t\techo \"\";\n\t}\n\telse\n\t{\n\t\tif($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t\t{\n\t\t\t\t$this->p[] = $row;\n\t\t\t}\n\t\t\treturn $this->p;\n\t\t\t$this->dbh=null;\n\t\t}\n\t}", "function getDatosId_activ()\n {\n $nom_tabla = $this->getNomTabla();\n $oDatosCampo = new core\\DatosCampo(array('nom_tabla' => $nom_tabla, 'nom_camp' => 'id_activ'));\n $oDatosCampo->setEtiqueta(_(\"id_activ\"));\n return $oDatosCampo;\n }", "protected function cargaIdUbicacion() {\n $dao = new PGDAO();\n $strSql = $this->COLECCIONMAPEOUBICA . $this->propiedad->getId_ubica();\n $arrayDatos = $this->leeDBArray($dao->execSql($strSql));\n $id = $arrayDatos[0]['zpubica'];\n return $id;\n }", "public function tampilData($id=null){\n if($id!=null)\n \t{return self::find($id);}\n else\n {return self::all();}}", "function getDataRowId()\n {\n return $this->idPrepend . $this->current_row_hash['id'];\n }", "function spefisik($dataid_kematian)\n\t{\n\n\t\t# codenya sql sepert select*from penduduk where nik = $datanik dimna $datanik adalah yg sudah dipilih. jadi cuma 1 row.\n\t\t$query = $this->db->query(\"SELECT*FROM `kematian` left join penduduk on kematian.nik = penduduk.nik where id_kematian = '$dataid_kematian' \");\n\n\t\t// itu adalah perintah sql join 2 table, yaitupenduduk dan kematian, karena data yanglenkap ada ditable pendudukjadiharus dijoin, \n\t\treturn $query->row();\n\t\t\n\t}", "function getData($id){\n // ineed to be more clear about where to get this data because i need to nkow where i should pick up this data from?\n return $this->db->get_where(\"mahasiswa\",array('nim' => $id))->row();\n }", "function getDatosId_item()\n {\n $nom_tabla = $this->getNomTabla();\n $oDatosCampo = new DatosCampo(array('nom_tabla' => $nom_tabla, 'nom_camp' => 'id_item'));\n $oDatosCampo->setEtiqueta(_(\"id_item\"));\n return $oDatosCampo;\n }", "function ordina_id(){\n $mysqli = connetti();\n $sql = \"SELECT * FROM spesa WHERE 1=1 ORDER BY id ASC\";\n $risultato_query = $mysqli->query($sql);\n $array_righe = [];\n while($righe_tabella = $risultato_query->fetch_array(MYSQLI_ASSOC)){\n $array_righe[] = $righe_tabella;\n }\n chiudi_connessione($mysqli);\n return $array_righe;\n}", "function ler_id($id) {\n $x = (int)$id;\n if($x >= $this->bd[0][0] || $x <= 0) {return false;}\n //comecando a setar tudo\n $this->id = $this->bd[$x][0];\n $this->maximo = $this->bd[$x][1];\n $this->nome = $this->bd[$x][2];\n $this->categoria = $this->bd[$x][3];\n $this->tipo = $this->bd[$x][4];\n $this->atributo = $this->bd[$x][5];\n $this->specie = $this->bd[$x][6];\n $this->lv = $this->bd[$x][7];\n $this->atk = $this->bd[$x][8];\n $this->def = $this->bd[$x][9];\n $this->preco = $this->bd[$x][10];\n $this->descricao = $this->bd[$x][11];\n $this->img = '../imgs/cards/'.$this->id.'.png';\n return true;\n }", "public function ambil_data($id_penjualan){\n $sql= \"Select * From penjualan WHERE id_penjualan=$id_penjualan\";\n $data=$this->konek->query($sql);\n $hasil=mysqli_fetch_array($data);\n return $hasil;\n }", "public function conseguirId (){\n $query = $this->db->query (\"SELECT * FROM acceso WHERE id_acceso = '{$this->id_acceso}'\");\n if ($query->num_rows === 1)\n {\n $this->datos= $query->fetch_assoc();\n \n }\n return $this->datos;\n }", "public function getUnidadIdModel(){\n\t\t$stmt = Conexion::conectar()->prepare(\"SELECT id FROM `unidades` WHERE fecha_fin>=NOW() AND fecha_inicio<=NOW()\");\n\t\t$stmt->execute();\n\n\t\treturn $stmt->fetch();\n\n\t\t$stmt->close();\n\t}", "public function load($id){\n\t\t$sql = 'SELECT * FROM turma_disciplina WHERE id = ?';\n\t\t$sqlQuery = new SqlQuery($sql);\n\t\t$sqlQuery->setNumber($id);\n\t\treturn $this->getRow($sqlQuery);\n\t}", "function servicioID($id){\n\t\t\n\t\t$query = $this->db->from('servicio')->where('id',$id)->get();\n\t\tif($query-> num_rows() > 0)\n\t\t\t{\n\t\t\treturn $query;\n\t\t\t// SI SE MANDA A RETORNAR SOLO $QUERY , SE PUEDE UTILIZAR LOS ELEMENTOS DEL QUERY \n\t\t\t// COMO usuarioID($data['sesion']->result()[0]->id_usuario POR EJEMPLO. \n\t\t\t}\n\t\n\t}", "public function obtener_porID_delincuente($id)\n {\n $this->load->database();\n\n $this->db->from('delincuente');\n $this->db->where('iddelincuente', $id);\n $result = $this->db->get()->row_array();\n\n\n $this->db->from('comuna');\n $this->db->where('idcomuna', $result[\"fk_comuna\"]);\n $resultcomuna = $this->db->get()->row_array();\n\n $this->db->from('sector');\n $this->db->where('idsector', $result[\"fk_sector\"]);\n $resultsector = $this->db->get()->row_array();\n\n\n\n $result[\"fk_comuna\"] = $resultcomuna[\"nom_comuna\"];\n $result[\"fk_sector\"] = $resultsector[\"nomb_sector\"];\n\n return $result;\n }", "public function get_data_id($id){\n $this->db->where('dept_id',$id);\n return $this->db->get(self::$table_dept);\n }", "public function getNominaCuP($id)\n { \n $result=$this->adapter->query('update n_conceptos a \n inner join n_conceptos_tn b on b.idConc=a.id\n inner join n_nomina c on c.idTnom=b.idTnom\n set b.periodo = case when a.perAuto>b.periodo then b.periodo+1 else 1 end \n where a.perAuto>1 and c.id='.$id ,Adapter::QUERY_MODE_EXECUTE);\n }", "function getDatosId_preceptor()\n {\n $nom_tabla = $this->getNomTabla();\n $oDatosCampo = new core\\DatosCampo(array('nom_tabla' => $nom_tabla, 'nom_camp' => 'id_preceptor'));\n $oDatosCampo->setEtiqueta(_(\"nombre preceptor\"));\n return $oDatosCampo;\n }", "public function getModelID($data) {\n\t\t\t$this->db->select('IDTGK,UNITAP,UNITUP,IDPEL,NAMA,TARIF,DAYA,KOGOL,GARDU,ALAMAT,LEMBAR,RPPTL,RPBPJU,RPPPN,RPMAT,TAGSUS,UJL,BP,TRAFO,SEWATRAFO,SEWAKAP,RPTAG,RPBK,TANGGAL_TGK');\n\t\t\t$this->db->from('VIEW_TUNGGAKAN');\n\t\t\t$this->db->like('IDPEL', $data);\n\t\t\t$query = $this->db->get();\n\t\t\treturn $query->result_array();\n\t\t}", "public function getIncaPpNom($id)\n {\n $result=$this->adapter->query(\"select h.id, a.idEmp, a.idEmp, d.idConc as idCon,0 as dias,\n f.formula , e.tipo, g.idCcos , e.idFor, a.diasAp, a.diasDp,\n case when ( ( a.diasAp + a.diasDp ) >= (c.dias - 1) )# Dias inicio pago empreasa\n then ( c.dias - 1) else ( a.diasAp + a.diasDp ) end as diasEmp, \n # Se buscan dias anteriores reportados o no reportados \n case when a.reportada = 1 then \n case when ( ( a.diasDp ) > (c.dias - 1) )# Dias inicio pago entidad\n then ( ( a.diasDp ) - ( c.dias - 1 ) ) else 0 end \n else \n case when ( ( a.diasAp + a.diasDp ) > (c.dias - 1) )# Dias inicio pago entidad\n then ( ( a.diasAp + a.diasDp ) - ( c.dias - 1 ) ) else 0 end \n end as diasEnt, \n d.tipo as tipInc, b.id as idInc \n from n_nomina_e_i a \n inner join n_incapacidades_pro b on b.id=a.idInc \n inner join n_incapacidades bp on bp.id = b.idInc \n inner join n_tipinc c on c.id=bp.idInc\n inner join n_tipinc_c d on d.idTinc=c.id \n inner join n_conceptos e on e.id=d.idConc\n inner join n_formulas f on f.id=e.idFor\n inner join a_empleados g on g.id=a.idEmp\n inner join n_nomina_e h on h.idEmp = a.idEmp and h.idNom = a.idNom \n where a.idNom = \".$id.\" and a.tipo = 1 \n order by a.idEmp\",Adapter::QUERY_MODE_EXECUTE); \n \n $datos=$result->toArray();\n return $datos;\n }", "public function getRowById2($data = null){\n\t\tparent::getRowById();\n\t\tif($this->result->getStatus() == STATUS_OK) {\n\t\t\t// EMPLEADOS\n\t\t\t$this->idViajeEmpleado['referencia'] = new ViajeEmpleadoVO();\n\t\t\t$data[] = null;\n\t\t\t$data['nombreCampoWhere'] = 'idViaje';\n\t\t\t$data['valorCampoWhere'] = $this->idViaje['valor'];\n\t\t\t$this->idViajeEmpleado['referencia']->getAllRows($data);\n\t\t\t//$result = $viajeEmpleado->result;\n\t\t\tif($this->idViajeEmpleado['referencia']->result->getStatus() == STATUS_OK) {\n\t\t\t\t//$this->viajeEmpleadoArray = $this->idViajeEmpleado['referencia']->result->getData();\n\t\t\t}\n\t\t\t//print_r($this->viajeEmpleadoArray);die();\n\t\t\t$this->idViajeEmpleadoDetalle['referencia'] = new ViajeEmpleadoDetalleVO();\n\t\t\t$data[] = null;\n\t\t\t$data['nombreCampoWhere'] = 'idViaje';\n\t\t\t$data['valorCampoWhere'] = $this->idViaje['valor'];\n\t\t\t$this->idViajeEmpleadoDetalle['referencia']->getRowById($data);\n\t\t\t//$this->idViajeEmpleadoDetalle['referencia'] = $viajeEmpleadoDetalle;\n\t\t\t$this->idViajeEmpleadoDetalle['referencia']->result->setStatus(STATUS_OK); // debo hacer esto porque sino pincha el insert luego...\n\t\t\t$this->idViajeEmpleadoDetalle['referencia']->result->setMessage(''); // debo hacer esto porque sino pincha el insert luego...\n\n\t\t\t// VEHICULOS\n\t\t\t$this->idViajeVehiculo['referencia'] = new ViajeVehiculoVO();\n\t\t\t$data[] = null;\n\t\t\t$data['nombreCampoWhere'] = 'idViaje';\n\t\t\t$data['valorCampoWhere'] = $this->idViaje['valor'];\n\t\t\t$this->idViajeVehiculo['referencia']->getAllRows($data);\n\t\t\t//$result = $viajeVehiculo->result;\n\t\t\tif($this->idViajeVehiculo['referencia']->result->getStatus() == STATUS_OK) {\n\t\t\t\t//$this->viajeVehiculoArray = $viajeVehiculo->result->getData();\n\t\t\t}\n\t\t\t//print_r($this->viajeVehiculoArray);die();\n\t\t\t$this->idViajeVehiculoDetalle['referencia'] = new ViajeVehiculoDetalleVO();\n\t\t\t$data[] = null;\n\t\t\t$data['nombreCampoWhere'] = 'idViaje';\n\t\t\t$data['valorCampoWhere'] = $this->idViaje['valor'];\n\t\t\t$this->idViajeVehiculoDetalle['referencia']->getRowById($data);\n\t\t\t//$this->idViajeVehiculoDetalle['referencia'] = $viajeVehiculoDetalle;\n\t\t\t$this->idViajeVehiculoDetalle['referencia']->result->setStatus(STATUS_OK); // debo hacer esto porque sino pincha el insert luego...\n\t\t\t$this->idViajeVehiculoDetalle['referencia']->result->setMessage(''); // debo hacer esto porque sino pincha el insert luego...\n\n\t\t\t// EQUIPAMIENTOS\n\t\t\t$this->idViajeEquipamiento['referencia'] = new ViajeEquipamientoVO();\n\t\t\t$data[] = null;\n\t\t\t$data['nombreCampoWhere'] = 'idViaje';\n\t\t\t$data['valorCampoWhere'] = $this->idViaje['valor'];\n\t\t\t$this->idViajeEquipamiento['referencia']->getAllRows($data);\n\t\t\t//$result = $viajeEquipamiento->result;\n\t\t\tif($this->idViajeEquipamiento['referencia']->result->getStatus() == STATUS_OK) {\n\t\t\t\t//$this->viajeEquipamientoArray = $viajeEquipamiento->result->getData();\n\t\t\t}\n\t\t\t//print_r($this->viajeEquipamientoArray);die();\n\t\t\t$this->idViajeEquipamientoDetalle['referencia'] = new ViajeEquipamientoDetalleVO();\n\t\t\t$data[] = null;\n\t\t\t$data['nombreCampoWhere'] = 'idViaje';\n\t\t\t$data['valorCampoWhere'] = $this->idViaje['valor'];\n\t\t\t$this->idViajeEquipamientoDetalle['referencia']->getRowById($data);\n\t\t\t//$this->idViajeEquipamientoDetalle['referencia'] = $viajeEquipamientoDetalle;\n\t\t\t$this->idViajeEquipamientoDetalle['referencia']->result->setStatus(STATUS_OK); // debo hacer esto porque sino pincha el insert luego...\n\t\t\t$this->idViajeEquipamientoDetalle['referencia']->result->setMessage(''); // debo hacer esto porque sino pincha el insert luego...\n\t\t}\n\t\treturn $this;\n\t}", "abstract function getId();", "function initialiserId()\n {\n if(empty($this->m_idOption))\n {\n $requete = 'SELECT idOption FROM optionHotel WHERE libelleOption=? AND prixOption=?';\n $tabParametres = array($this->m_libelleOption, $this->m_prixOption);\n $tabResultat = $this->m_bdd->selection($requete, $tabParametres);\n $this->m_idOption = $tabResultat[0]['idOption']; \n }\n }", "public function iloscMinus($id)\n\t\t{\n\t\t\t$data = array();\n\t\t\t\tif($id === NULL || $id === \"\")\n\t\t\t\t\t$data['error'] = 'Nieokreślone ID!';\n\t\t\t\telse\n\t\t\t\t\ttry\n\t\t\t\t\t{\n\t\t\t\t\t\t$stmt2 = $this->pdo->prepare('SELECT IdTowar, ilosc FROM `koszyk` where IdTowar=:id');\n\t\t\t\t\t\t$stmt2 -> bindValue(':id',$id,PDO::PARAM_INT);\n\t\t\t\t\t\t$ilosc = $stmt2 -> execute();\n\t\t\t\t\t\t$data = $stmt2 -> fetchAll();\n\t\t\t\t\t\tforeach($data as $result)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$ilosc = $result['ilosc'];\n\t\t\t\t\t\t\t$idt = $result['IdTowar'];\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif($ilosc>1)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\techo $id.'<br>towary: ';\n\t\t\t\t\t\t\tvar_dump($_COOKIE['idtowary']);\n\t\t\t\t\t\t\t$stmt = $this->pdo->prepare('UPDATE koszyk SET ilosc=ilosc-1 WHERE IdTowar=:id');\n\t\t\t\t\t\t\t$stmt -> bindValue(':id',$id,PDO::PARAM_INT);\n\t\t\t\t\t\t\t$wynik_zapytania = $stmt -> execute();\n\n\t\t\t\t\t\t\t$stmt2 = $this->pdo->prepare(\"update towar set towar.StanMagazynowyDysponowany = towar.StanMagazynowyDysponowany+1 where IdTowar = $idt\");\n\t\t\t\t\t\t\t$stmt2 -> execute();\n\n\t\t\t\t\t\t\t$cookie2 = $_COOKIE['idtowary'];\n\t\t\t\t\t\t\t$cookie2 = stripslashes($cookie2);\n\t\t\t\t\t\t\t$ids = json_decode($cookie2, true);\n\n\t\t\t\t\t\t\tif(($k = array_search($idt, $ids)) === false)\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t// echo 'nie ma';\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 //echo 'jest';\n\t\t\t\t\t\t\t $indeks = array_search($idt, $ids);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t$cookie = $_COOKIE['ilosci'];\n\t\t\t\t\t\t\t$cookie = stripslashes($cookie);\n\t\t\t\t\t\t\t$quantity = json_decode($cookie, true);\n\t\t\t\t\t\t\techo '<br>';\n\t\t\t\t\t\t\tif(($k = array_search($idt, $ids)) === false){}\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\techo '<br>ilosci ';\n\t\t\t\t\t\t\t\tvar_dump($_COOKIE['ilosci']);\n\t\t\t\t\t\t\t\t$ilosc=$ilosc-1;\n\t\t\t\t\t\t\t $quantity[$indeks]=$ilosc;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t$dane = json_encode($quantity);\n\t\t\t\t\t\t\tsetcookie('ilosci', $dane,time()+60*60*24*30,'/');\n\t\t\t\t\t\t\t$_COOKIE['ilosci'] = $dane;\n\t\t\t\t\t\t\techo '<br>';\n\t\t\t\t\t\t\tvar_dump($_COOKIE['ilosci']);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tcatch(\\PDOException $e)\n\t\t\t\t\t{\n\t\t\t\t\t\t$data['error'] =$data['error'].'<br> Błąd wykonywania operacji usunięcia';\n\t\t\t\t\t}\n\t\t\t\t\t/*var_dump($_COOKIE['idtowary']);\n\t\t\t\t\techo '<br>';\n\t\t\t\t\tvar_dump($_COOKIE['ilosci']);\n\t\t\t\t\techo '<br>';*/\n\t\t\t\treturn $data;\n\n\t\t}", "abstract public function getId();", "public function anecdota_x_id($id) {\r\n $this->db->select(\"*\");\r\n $this->db->from(\"doc_anecdota\");\r\n $this->db->where(array(\"id\" => $id));\r\n $query = $this->db->get();\r\n $anecdota = $query->row();\r\n \r\n return $anecdota;\r\n \r\n }", "function DatosEdificio($idEdificio) {\n\t\t\t$sql=\"SELECT * FROM edificio WHERE id_claveEdi = $idEdificio LIMIT 1\";\n\t\t\t$result=$this->db->query($sql)->execute();\n\t\t\t\n\t\t\treturn $result->current();\n\t\t}", "private function rowDataTable($seccion, $tabla, $id) {\n $data = '';\n switch ($tabla) {\n case 'admin_usuario':\n $sql = $this->db->select(\"SELECT wa.nombre, wa.email, wr.descripcion as rol, wa.estado\n FROM admin_usuario wa\n LEFT JOIN admin_rol wr on wr.id = wa.id_rol WHERE wa.id = $id;\");\n break;\n case 'ciudad':\n $sql = $this->db->select(\"SELECT c.id, c.descripcion as ciudad, c.estado, d.descripcion as departamento FROM ciudad c\n LEFT JOIN departamento d on c.id_departamento = d.id WHERE c.id = $id;\");\n break;\n default :\n $sql = $this->db->select(\"SELECT * FROM $tabla WHERE id = $id;\");\n break;\n }\n switch ($seccion) {\n case 'departamento':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"departamento\" data-rowid=\"departamento_\" data-tabla=\"departamento\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"departamento\" data-rowid=\"departamento_\" data-tabla=\"departamento\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modal_editar_departamento\" data-id=\"\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $data = '<td>' . $id . '</td>'\n . '<td>' . utf8_encode($sql[0]['descripcion']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n case 'ciudad':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"ciudad\" data-rowid=\"ciudad_\" data-tabla=\"ciudad\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"ciudad\" data-rowid=\"ciudad_\" data-tabla=\"ciudad\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarCiudad\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $data = '<td>' . utf8_encode($sql[0]['departamento']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['ciudad']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n case 'slider':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"slider\" data-rowid=\"slider_\" data-tabla=\"web_inicio_slider\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"slider\" data-rowid=\"slider_\" data-tabla=\"web_inicio_slider\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarDTSlider\"><i class=\"fa fa-edit\"></i> Editar </a>';\n if (!empty($sql[0]['imagen'])) {\n $img = '<img src=\"' . URL . 'public/images/slider/' . $sql[0]['imagen'] . '\" style=\"width: 160px;\">';\n } else {\n $img = '';\n }\n if ($sql[0]['principal'] == 1) {\n $principal = '<span class=\"badge badge-warning\">Principal</span>';\n } else {\n $principal = '<span class=\"badge\">Normal</span>';\n }\n $data = '<td>' . $sql[0]['orden'] . '</td>'\n . '<td>' . $img . '</td>'\n . '<td>' . utf8_encode($sql[0]['texto_1']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['texto_2']) . '</td>'\n . '<td>' . $principal . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n case 'caracteristicas';\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"caracteristicas\" data-rowid=\"caracteristicas_\" data-tabla=\"web_inicio_caracteristicas\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"caracteristicas\" data-rowid=\"caracteristicas_\" data-tabla=\"web_inicio_caracteristicas\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $icono = '<i class=\"' . utf8_encode($sql[0]['icon']) . '\"></i>';\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarCaracteristicas\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $data = '<td>' . utf8_encode($sql[0]['orden']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['titulo']) . '</td>'\n . '<td>' . $icono . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n case 'frases':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"frases\" data-rowid=\"frases_\" data-tabla=\"web_frases\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"frases\" data-rowid=\"frases_\" data-tabla=\"web_frases\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarFrases\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $data = '<td>' . utf8_encode($sql[0]['orden']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['frase']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['autor']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n case 'servicios':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"servicios\" data-rowid=\"servicios_\" data-tabla=\"web_inicio_servicios\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"servicios\" data-rowid=\"servicios_\" data-tabla=\"web_inicio_servicios\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarServicios\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $data = '<td>' . utf8_encode($sql[0]['orden']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['servicio']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n case 'verContacto':\n if ($sql[0]['leido'] == 1) {\n $estado = '<span class=\"label label-primary\">Leído</span>';\n } else {\n $estado = '<span class=\"label label-danger\">No Leído</span>';\n }\n $btnEditar = '<a class=\"btnVerContacto pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalVerContacto\"><i class=\"fa fa-edit\"></i> Ver Datos </a>';\n $data = '<td>' . $id . '</td>'\n . '<td>' . utf8_encode($sql[0]['nombre']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['email']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['asunto']) . '</td>'\n . '<td>' . date('d-m-Y H:i:s', strtotime($sql[0]['fecha'])) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n case 'blog':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"blog\" data-rowid=\"blog_\" data-tabla=\"web_blog\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"blog\" data-rowid=\"blog_\" data-tabla=\"web_blog\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarBlogPost\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $imagen = '<img class=\"img-responsive imgBlogTable\" src=\"' . URL . 'public/images/blog/' . $sql[0]['imagen_thumb'] . '\">';\n $data = '<td>' . $sql[0]['id'] . '</td>'\n . '<td>' . utf8_encode($sql[0]['titulo']) . '</td>'\n . '<td>' . $imagen . '</td>'\n . '<td>' . date('d-m-Y', strtotime($sql[0]['fecha_blog'])) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n case 'usuarios':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"usuarios\" data-rowid=\"usuarios_\" data-tabla=\"admin_usuario\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"usuarios\" data-rowid=\"usuarios_\" data-tabla=\"admin_usuario\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarDTUsuario\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $data = '<td>' . utf8_encode($sql[0]['nombre']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['email']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['rol']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n case 'paciente':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"paciente\" data-rowid=\"paciente_\" data-tabla=\"paciente\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"paciente\" data-rowid=\"paciente_\" data-tabla=\"paciente\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarDatosPaciente\"><i class=\"fa fa-edit\"></i> Ver Datos / Editar </a>';\n $data = '<td>' . $id . '</td>'\n . '<td>' . utf8_encode($sql[0]['nombre']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['apellido']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['email']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['documento']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['telefono']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['celular']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n case 'redes':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"redes\" data-rowid=\"redes_\" data-tabla=\"web_redes\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"redes\" data-rowid=\"redes_\" data-tabla=\"web_redes\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarRedes\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $data = '<td>' . utf8_encode($sql[0]['descripcion']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['enlace']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n case 'metatags':\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarMetaTag\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $data = '<td>' . $id . '</td>'\n . '<td>' . utf8_encode($sql[0]['pagina']) . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n }\n return $data;\n }", "public function loadId($id){\n\t\t$model=new Model();\n\t\t$resultado=$model->select(\"SELECT * FROM tb_usuarios WHERE idusuario = :ID\",array(\":ID\"=>$id));\n\t\tif (count($resultado)>0) {\n\t\t\t$this->setData($resultado[0]);\n\t\t}\n\t}", "abstract public function get_id();", "function get_entrada_pr_factura_id($id,$auth){\n\t\tif($auth==0){\n\t\t\t$validacion=\"and prf.usuario_validador_id=0 \";\n\t\t} else {\n\t\t\t$validacion=\" and prf.usuario_validador_id>0 \";\n\t\t}\n\t\t\t\n\t\t$u = new Entrada();\n\t\t$sql=\"select distinct on (e.pr_facturas_id) e.pr_facturas_id, e.id as id1, date(e.fecha) fecha, ( prf.monto_total - prf.descuento ) as importe_factura, pr.razon_social as proveedor,prf.folio_factura, prf.pr_pedido_id, ef.tag as espacio_fisico, eg.tag as estatuse, e.lote_id, cel.tag as estatus_traspaso \".\n\t\t\t\t\"from entradas as e \".\n\t\t\t\t\"left join cproveedores as pr on pr.id=e.cproveedores_id \".\n\t\t\t\t\"left join pr_facturas as prf on prf.id=e.pr_facturas_id \".\n\t\t\t\t\"left join espacios_fisicos as ef on ef.id=e.espacios_fisicos_id \".\n\t\t\t\t\"left join estatus_general as eg on eg.id=e.estatus_general_id \".\n\t\t\t\t\"left join lotes_pr_facturas as lf on lf.pr_factura_id=prf.id \".\n\t\t\t\t\"left join cestatus_lotes as cel on cel.id=lf.cestatus_lote_id \".\n\t\t\t\t\"where e.estatus_general_id=1 and ctipo_entrada=1 and prf.id='$id' $validacion\".\n\t\t\t\t\"group by e.pr_facturas_id, e.id, e.fecha, importe_factura, pr.razon_social, prf.folio_factura, prf.pr_pedido_id, ef.tag, eg.tag, e.pr_facturas_id, e.cproveedores_id,e.lote_id, prf.descuento, cel.tag \".\n\t\t\t\t\"order by e.pr_facturas_id desc,e.fecha desc\";\n\t\t$u->query($sql);\n\t\tif($u->c_rows > 0){\n\t\t\treturn $u;\n\t\t} else {\n\t\t\treturn FALSE;\n\t\t}\n\t}", "public function get_data_id($id=0) {\t\treturn $this->db->query('', array($id))->row_array();\n\t\n\t}", "public function getID();", "public function getID();", "public function getID();", "function select($id)\r\n{\r\n\r\n$sql = \"SELECT * FROM aattribut WHERE aatribut_pk_id = $id;\";\r\n$result = $this->database->query($sql);\r\n$result = $this->database->result;\r\n$row = mysql_fetch_object($result);\r\n\r\n\r\n$this->id_attribut = $row->id_attribut;\r\n\r\n$this->id_produit = $row->id_produit;\r\n\r\n$this->valeur = $row->valeur;\r\n\r\n}", "public function obteneriddeporte($id){\n $sql = \"SELECT Sport.id as iddeporte FROM `sporte`.`coaches` AS `Coach` LEFT JOIN `sporte`.`users` AS `User` ON (`Coach`.`user_id` = `User`.`id`) LEFT JOIN `sporte`.`ligas` AS `Liga` ON (`Coach`.`liga_id` = `Liga`.`id`) LEFT JOIN `sporte`.`sports` AS `Sport` ON (`Liga`.`sport_id` = `Sport`.`id`) WHERE `user_id`=:em\";\n $sentencia = $this->dblink->prepare($sql);\n $sentencia->bindParam(\":em\", $id);\n $sentencia->execute(); \n $resultado = $sentencia->fetchObject();\n return $resultado->iddeporte;\n }", "public function getClivres_id($clivres_id=null)\n {\n if ($clivres_id != null && is_array($this->livres) && count($this->livres)!=0) {\n $table_name = strtolower(get_class($this));\n $query = \"SELECT * FROM $table_name WHERE clivres_id = ?\";\n $req = Manager::bdd()->prepare($query);\n $req->execute([$clivres_id]);\n $data = \"\";\n if ($data = $req->fetchAll(PDO::FETCH_ASSOC)) {\n$d=$data[0];\n$this->setId($d['id']);\n$this->setTitre($d['titre']);\n$this->setDescription($d['description']);\n$this->setDate($d['date']);\n$this->setClivres_id($d['clivres_id']);\n$this->setAuteur($d['auteur']);\n$this->setPhoto($d['photo']);\n$this->setChemin($d['chemin']);\n$this->livres =$data; \n return $this;\n }\n \n } else {\n return $this->clivres_id;\n }\n \n }", "public function DetalharNotaTranporte($_id)\n {\n $sql = new Sql();\n $sql->select('SELECT * FROM notatransporte WHERE id = :id',\n array\n (\n ':id' = $_id\n ));\n }", "function select($id){\r\n\t\t$sql = \"SELECT * FROM gestaoti.unidade_organizacional WHERE seq_unidade_organizacional = $id\";\r\n\t\t$result = $this->database->query($sql);\r\n\t\t$result = $this->database->result;\r\n\r\n\t\t$row = pg_fetch_object($result);\r\n\t\t$this->SEQ_UNIDADE_ORGANIZACIONAL = $row->seq_unidade_organizacional;\r\n\t\t$this->NOM_UNIDADE_ORGANIZACIONAL = $row->nom_unidade_organizacional;\r\n\t\t$this->SEQ_UNIDADE_ORGANIZACIONAL_PAI = $row->seq_unidade_organizacional_pai;\r\n\t\t$this->SGL_UNIDADE_ORGANIZACIONAL = $row->sgl_unidade_organizacional;\r\n\t}", "function buscarPerId($id) {\n\n $con = new db();\n $query = $con->prepare(\"SELECT * FROM missatge INNER JOIN usuari ON missatge.id_usuari = usuari.id_usuari WHERE id_missatge='$id';\");\n $result = $con->consultar($query);\n\n $usuari = $result[0][\"usuari\"];\n $llegit = $result[0][\"llegit\"];\n if ($llegit == '0') {\n $llegit = 'no';\n } else {\n $llegit = 'si';\n }\n $titol = $result[0][\"titol\"];\n $data = $result[0][\"data\"];\n $text = $result[0][\"missatge\"];\n $id_missatge = $result[0][\"id_missatge\"];\n $missatge = new Missatge($usuari, $llegit, $titol, $data, $text);\n $missatge->setId_missatge($id_missatge);\n\n if ($llegit == 'no') {\n $query = $con->prepare(\"UPDATE missatge set llegit=1 WHERE id_missatge='$id';\");\n }\n\n $con->consulta($query);\n $con = null;\n\n\n return $missatge;\n }", "function buatID($tabel, $inisial){ \n $struktur = mysql_query(\"select * from $tabel\") or die(\"query tidak dapat dijalankan!\"); \n $field = mysql_field_name($struktur,0); \n $panjang = mysql_field_len($struktur,0); \n $row = mysql_num_rows($struktur); \n \n $panjanginisial = strlen($inisial); \n $awal = $panjanginisial + 1; \n $bnyk = $panjang-$panjanginisial; \n \n if ($row >= 1){ \n $query = mysql_query(\"select max(substring($field,$awal,$bnyk)) as max from $tabel\") or die(\"query tidak dapat dijalankan!\"); \n $hasil = mysql_fetch_assoc($query); \n $angka = intval($hasil['max']); \n } \n else{ \n $angka = 0; \n } \n \n $angka++; \n $tmp= \"\"; \n for ($i=0; $i < ($panjang-$panjanginisial-strlen($angka)) ; $i++){ \n $tmp = $tmp.\"0\"; \n } \n //return hasil generate ID \n return strval($inisial.$tmp.$angka); \n }", "function buatID($tabel, $inisial){ \n $struktur = mysql_query(\"select * from $tabel\") or die(\"query tidak dapat dijalankan!\"); \n $field = mysql_field_name($struktur,0); \n $panjang = mysql_field_len($struktur,0); \n $row = mysql_num_rows($struktur); \n \n $panjanginisial = strlen($inisial); \n $awal = $panjanginisial + 1; \n $bnyk = $panjang-$panjanginisial; \n \n if ($row >= 1){ \n $query = mysql_query(\"select max(substring($field,$awal,$bnyk)) as max from $tabel\") or die(\"query tidak dapat dijalankan!\"); \n $hasil = mysql_fetch_assoc($query); \n $angka = intval($hasil['max']); \n } \n else{ \n $angka = 0; \n } \n \n $angka++; \n $tmp= \"\"; \n for ($i=0; $i < ($panjang-$panjanginisial-strlen($angka)) ; $i++){ \n $tmp = $tmp.\"0\"; \n } \n //return hasil generate ID \n return strval($inisial.$tmp.$angka); \n }", "public function getLineaId($id){\n\t\t\t$this->db->query(\"SELECT * FROM linea WHERE cod_linea=:id\");\n\n\t\t\t$this->db->bind(':id', $id);\n\n\t\t\treturn $this->db->single();\n\t\t}", "public function getId($id=null)\n {\n if ($id != null && is_array($this->livres) && count($this->livres)!=0) {\n $table_name = strtolower(get_class($this));\n $query = \"SELECT * FROM $table_name WHERE id = ?\";\n $req = Manager::bdd()->prepare($query);\n $req->execute([$id]);\n $data = \"\";\n if ($data = $req->fetchAll(PDO::FETCH_ASSOC)) {\n$d=$data[0];\n$this->setId($d['id']);\n$this->setTitre($d['titre']);\n$this->setDescription($d['description']);\n$this->setDate($d['date']);\n$this->setClivres_id($d['clivres_id']);\n$this->setAuteur($d['auteur']);\n$this->setPhoto($d['photo']);\n$this->setChemin($d['chemin']);\n$this->livres =$data; \n return $this;\n }\n \n } else {\n return $this->id;\n }\n \n }", "public function load($id){\n\t\t$sql = 'SELECT * FROM cbt_nomor_peserta WHERE id_nomor = ?';\n\t\t$sqlQuery = new SqlQuery($sql);\n\t\t$sqlQuery->set($id);\n\t\treturn $this->getRow($sqlQuery);\n\t}", "function ColsultarTodosLosID(){///funciona\n try {\n $FKAREA=$this->objRequerimiento->getFKAREA();\n $objControlConexion = new ControlConexion();\n $objControlConexion->abrirBd();\n //$comandoSql = \"select * from Requerimiento where FKAREA = '\".$FKAREA.\"' \";\n $comandoSql = \"SELECT IDREQ ,TITULO,FKEMPLE,FKAREA,FKESTADO,OBSERVACION,FKEMPLEASIGNADO FROM Requerimiento INNER JOIN detallereq ON Requerimiento.IDREQ=detallereq.FKREQ where FKAREA = '\".$FKAREA.\"'\";\n $rs = $objControlConexion->ejecutarSelect($comandoSql);\n return $rs;\n $objControlConexion->cerrarBd();\n } catch(Exception $e) {\n echo \"Error: \" . $e->getMessage();\n }\n}", "public function getNominaEcau($id)\n { \n $result=$this->adapter->query('select a.id as idNom, d.id ,d.dias as dias, b.idConc as idCon, \n e.idCcos , f.formula, c.tipo, e.id as idEmp, 0 as horas, c.idFor, e.idFpen, c.fondo \n from n_nomina a \n inner join n_conceptos_tn b on b.idTnom=a.idTnom\n inner join n_conceptos c on c.id=b.idConc\n inner join n_nomina_e d on d.idNom = a.id\n inner join a_empleados e on e.id = d.idEmp \n inner join n_formulas f on f.id=c.idFor\n where c.auto=1 and c.perAuto=0 and a.id='.$id.' order by d.idEmp',Adapter::QUERY_MODE_EXECUTE);\n $datos=$result->toArray();\n return $datos; \n }", "function setID(){\n $getid = getData();\n $id = 0;\n if($getid){\n while ($row = mysqli_fetch_assoc($getid)){\n $id = $row['FacID'];\n }\n }\n return ($id + 1);\n }", "function datos_subtema($id_subtema) {\n\n\t\t$query = \"SELECT temas.*,subtemas.* \n\t\tFROM temas,subtemas \n\t\tWHERE subtemas.id_subtema='$id_subtema'\n\t\tAND subtemas.id_tema=temas.id_tema\";\n\n\t\t$connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\t\n\t\t$numrows = mysql_num_rows($result);\n\t\t$row=mysql_fetch_array($result);\n\t\tmysql_close($connection);\t\n\t\t// COMPROBAMOS QUE HAYA RESULTADOS\n\t\t// SI EL NUMERO DE RESULTADOS ES 0 SIGNIFICA QUE NO HAY REGISTROS CON ESOS DATOS\n\t\tif ($numrows == 0) {\n\t\t\treturn 0;\n\t\t}\n\t\telse {\n\t\t\treturn $row;\n\t\t}\n\t}", "public function selektujeObjekat($idObjekta)\n {\n $upit = \"select Tpleme.naziv AS plemeNaziv, Toznaka.*, Toznaka.tekstNatpisa AS natpis, TprovincijaNalaska.naziv AS provincijaNalaska , TgradNalaska.naziv AS gradNalaska, Mesto.naziv AS mestoNalaska , TmodernoImeDrzave.naziv AS modernoImeDrzave , vrstaNatpisa.naziv AS vrstaNatpisa , jezik.naziv AS jezik , Ustanova.naziv AS ustanova, TmodernoMesto.naziv AS modernoMesto FROM (select * from Objekat) Toznaka JOIN (select * from Provincija) TprovincijaNalaska ON Toznaka.provincija = TprovincijaNalaska.id JOIN (select * from Grad) TgradNalaska ON Toznaka.grad = TgradNalaska.id JOIN (select * from ModernaDrzava) TmodernoImeDrzave ON Toznaka.modernaDrzava = TmodernoImeDrzave.id JOIN (select * from ModernoMesto) TmodernoMesto ON Toznaka.modernoMesto = TmodernoMesto.id JOIN (select * from Pleme) Tpleme ON Toznaka.pleme = Tpleme.id LEFT JOIN Mesto ON Toznaka.mesto = Mesto.id LEFT JOIN vrstaNatpisa ON Toznaka.vrstaNatpisa = vrstaNatpisa.id LEFT JOIN jezik ON Toznaka.jezik = jezik.id LEFT JOIN ustanova on Toznaka.ustanova = Ustanova.id where Toznaka.id = :idObjekta \";\n\n $stmt=konekcija::getConnectionInstance()->prepare($upit);\n $stmt->bindParam(':idObjekta', $idObjekta , PDO::PARAM_INT);\n $stmt->execute();\n $stmt->setFetchMode(PDO::FETCH_ASSOC);\n $d = $stmt->fetch();\n return $this->obradiVrstaId($d);\n }", "function newskomentar_createid($tbl_newskomentar){ /* Fungsi buat id */\n\t$sql = mysql_query(\"SELECT * FROM $tbl_newskomentar \");\n\treturn $sql;\n}", "function getDatosId_ubi()\n {\n $nom_tabla = $this->getNomTabla();\n $oDatosCampo = new core\\DatosCampo(array('nom_tabla' => $nom_tabla, 'nom_camp' => 'id_ubi'));\n $oDatosCampo->setEtiqueta(_(\"id_ubi\"));\n return $oDatosCampo;\n }", "public function getId() {\r\n\t\t\treturn $this->columns[ $this->index ];\r\n\t\t}", "function recuperaDatosMetasId(){\n $folio=0;\n $tmp=array();\n if(trim($this->data['folio'])!= \"\"){\n $tmp=explode('-',$this->data['folio']);\n $folio= $tmp[0] + 0;\n if($folio > 0){\n $this->arrayDatosMetas=$this->regresaMetasActividad($folio);\n }\n }\n }", "function dataSelect() {\n\t\t\t\t$koneksi = $this->koneksi;\n\t\t\t\t// SQL\n\t\t\t\t$query\t\t\t= \"SELECT * FROM pegawai ORDER BY id ASC\";\n\t\t\t\t\n\t\t\t\t$sql\t\t\t= mysqli_query($koneksi,$query);\n\t\t\t\t\n\t\t\t\treturn $sql;\n\t\t\t}", "public function id_fiche(){ return $this->id_fiche; }", "public function CreditosPorId()\n{\n\tself::SetNames();\n\t$sql = \" SELECT clientes.codcliente, clientes.cedcliente, clientes.nomcliente, clientes.tlfcliente, clientes.direccliente, clientes.emailcliente, ventas.idventa, ventas.codventa, ventas.codcaja, ventas.codcliente, ventas.subtotalivasive, ventas.subtotalivanove, ventas.ivave, ventas.totalivave, ventas.descuentove, ventas.totaldescuentove, ventas.totalpago, ventas.totalpago2, ventas.tipopagove, ventas.formapagove, ventas.fechaventa, ventas.fechavencecredito, ventas.statusventa, usuarios.nombres, cajas.nrocaja, abonoscreditos.codventa as cod, abonoscreditos.fechaabono, SUM(montoabono) AS abonototal FROM (ventas LEFT JOIN clientes ON clientes.codcliente = ventas.codcliente) LEFT JOIN abonoscreditos ON ventas.codventa = abonoscreditos.codventa LEFT JOIN cajas ON ventas.codcaja = cajas.codcaja LEFT JOIN usuarios ON ventas.codigo = usuarios.codigo WHERE ventas.codventa =? GROUP BY cod\";\n\t$stmt = $this->dbh->prepare($sql);\n\t$stmt->execute( array(base64_decode($_GET[\"codventa\"])) );\n\t$num = $stmt->rowCount();\n\tif($num==0)\n\t{\n\t\techo \"\";\n\t}\n\telse\n\t{\n\t\tif($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t\t{\n\t\t\t\t$this->p[] = $row;\n\t\t\t}\n\t\t\treturn $this->p;\n\t\t\t$this->dbh=null;\n\t\t}\n\t}", "private function rowDataTable($seccion, $tabla, $id) {\n $data = '';\n switch ($tabla) {\n case 'usuario':\n $sql = $this->db->select(\"SELECT wa.nombre, wa.email, wr.descripcion as rol, wa.estado\n FROM usuario wa\n LEFT JOIN usuario_rol wr on wr.id = wa.id_usuario_rol WHERE wa.id = $id;\");\n break;\n case 'meta_tags':\n $sql = $this->db->select(\"SELECT\n m.es_texto,\n en_texto\n FROM\n meta_tags mt\n LEFT JOIN menu m ON m.id = mt.id_menu WHERE mt.id = $id;\");\n break;\n default :\n $sql = $this->db->select(\"SELECT * FROM $tabla WHERE id = $id;\");\n break;\n }\n\n switch ($seccion) {\n case 'redes':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"redes\" data-rowid=\"redes_\" data-tabla=\"redes\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"redes\" data-rowid=\"redes_\" data-tabla=\"redes\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarRedes\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $btnBorrar = '<a class=\"deletDTContenido pointer btn-xs txt-red\" data-rowid=\"redes_\" data-id=\"' . $id . '\" data-tabla=\"redes\"><i class=\"fa fa-trash-o\"></i> Eliminar </a>';\n $data = '<td>' . utf8_encode($sql[0]['orden']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['descripcion']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['url']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . ' ' . $btnBorrar . '</td>';\n break;\n case 'usuarios':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"usuarios\" data-rowid=\"usuarios_\" data-tabla=\"usuario\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"usuarios\" data-rowid=\"usuarios_\" data-tabla=\"usuario\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarDTUsuario\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $btnBorrar = '<a class=\"deletDTContenido pointer btn-xs txt-red\" data-rowid=\"usuarios_\" data-id=\"' . $id . '\" data-tabla=\"usuario\"><i class=\"fa fa-trash-o\"></i> Eliminar </a>';\n $data = '<td>' . utf8_encode($sql[0]['nombre']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['email']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['rol']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . ' ' . $btnBorrar . '</td>';\n break;\n case 'blog':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"blog\" data-rowid=\"blog_\" data-tabla=\"blog\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"blog\" data-rowid=\"blog_\" data-tabla=\"blog\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarBlogPost\" data-pagina=\"blog\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $btnBorrar = '<a class=\"deletDTContenido pointer btn-xs txt-red\" data-rowid=\"redes_\" data-id=\"' . $id . '\" data-tabla=\"redes\"><i class=\"fa fa-trash-o\"></i> Eliminar </a>';\n if (empty($sql[0]['youtube_id'])) {\n $imagen = '<img class=\"img-responsive imgBlogTable\" src=\"' . URL . 'public/images/blog/thumb/' . $sql[0]['imagen_thumb'] . '\">';\n } else {\n $imagen = '<iframe class=\"scale-with-grid\" src=\"http://www.youtube.com/embed/' . $sql[0]['youtube_id'] . '?wmode=opaque\" allowfullscreen></iframe>';\n }\n $data = '<td>' . $sql[0]['id'] . '</td>'\n . '<td>' . utf8_encode($sql[0]['es_titulo']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['en_titulo']) . '</td>'\n . '<td>' . $imagen . '</td>'\n . '<td>' . date('d-m-Y', strtotime($sql[0]['fecha_blog'])) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . ' ' . $btnBorrar . '</td>';\n break;\n case 'slider':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"slider\" data-rowid=\"slider_\" data-tabla=\"slider\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"slider\" data-rowid=\"slider_\" data-tabla=\"slider\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarDTSlider\" data-pagina=\"slider\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $btnBorrar = '<a class=\"deletDTContenido pointer btn-xs txt-red\" data-rowid=\"slider_\" data-id=\"' . $id . '\" data-tabla=\"slider\"><i class=\"fa fa-trash-o\"></i> Eliminar </a>';\n if (!empty($sql[0]['imagen'])) {\n $img = '<img src=\"' . URL . 'public/images/slider/' . $sql[0]['imagen'] . '\" style=\"width: 160px;\">';\n } else {\n $img = '-';\n }\n $data = '<td>' . utf8_encode($sql[0]['orden']) . '</td>'\n . '<td>' . $img . '</td>'\n . '<td>' . utf8_encode($sql[0]['es_titulo']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['en_titulo']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['es_titulo_principal']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['en_titulo_principal']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . ' ' . $btnBorrar . '</td>';\n break;\n case 'certificaciones':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"certificaciones\" data-rowid=\"certificaciones_\" data-tabla=\"certificaciones\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"certificaciones\" data-rowid=\"certificaciones_\" data-tabla=\"certificaciones\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarDTCertificaciones\" data-pagina=\"certificaciones\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $btnBorrar = '<a class=\"deletDTContenido pointer btn-xs txt-red\" data-rowid=\"certificaciones_\" data-id=\"' . $id . '\" data-tabla=\"certificaciones\"><i class=\"fa fa-trash-o\"></i> Eliminar </a>';\n if (!empty($sql[0]['imagen_certificacion'])) {\n $img = '<img src=\"' . URL . 'public/images/certificaciones/' . $sql[0]['imagen_certificacion'] . '\" style=\"width: 160px;\">';\n } else {\n $img = '-';\n }\n $data = '<td>' . utf8_encode($sql[0]['orden']) . '</td>'\n . '<td>' . $img . '</td>'\n . '<td>' . utf8_encode($sql[0]['es_nombre']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['en_nombre']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . ' ' . $btnBorrar . '</td>';\n break;\n case 'fraseNosotros':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"fraseNosotros\" data-rowid=\"fraseNosotros_\" data-tabla=\"aboutus_seccion2\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"fraseNosotros\" data-rowid=\"fraseNosotros_\" data-tabla=\"aboutus_seccion2\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarDTFraseNosotros\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $btnBorrar = '<a class=\"deletDTContenido pointer btn-xs txt-red\" data-rowid=\"fraseNosotros_\" data-id=\"' . $id . '\" data-tabla=\"aboutus_seccion2\"><i class=\"fa fa-trash-o\"></i> Eliminar </a>';\n $data = '<td>' . utf8_encode($sql[0]['orden']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['es_frase']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['en_frase']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . ' ' . $btnBorrar . '</td>';\n break;\n case 'fraseRetail':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"fraseRetail\" data-rowid=\"fraseRetail_\" data-tabla=\"privatelabel_seccion2\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"fraseRetail\" data-rowid=\"fraseRetail_\" data-tabla=\"privatelabel_seccion2\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarDTFraseRetail\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $btnBorrar = '<a class=\"deletDTContenido pointer btn-xs txt-red\" data-rowid=\"fraseRetail_\" data-id=\"' . $id . '\" data-tabla=\"privatelabel_seccion2\"><i class=\"fa fa-trash-o\"></i> Eliminar </a>';\n $data = '<td>' . utf8_encode($sql[0]['orden']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['es_frase']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['en_frase']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . ' ' . $btnBorrar . '</td>';\n break;\n case 'nosotrosSeccion3':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"nosotrosSeccion3\" data-rowid=\"nosotrosSeccion3_\" data-tabla=\"aboutus_seccion3\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"nosotrosSeccion3\" data-rowid=\"nosotrosSeccion3_\" data-tabla=\"aboutus_seccion3\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarDTNosotrosSeccion3\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $btnBorrar = '<a class=\"deletDTContenido pointer btn-xs txt-red\" data-rowid=\"nosotrosSeccion3_\" data-id=\"' . $id . '\" data-tabla=\"aboutus_seccion3\"><i class=\"fa fa-trash-o\"></i> Eliminar </a>';\n $data = '<td>' . utf8_encode($sql[0]['orden']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['es_titulo']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['en_titulo']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . ' ' . $btnBorrar . '</td>';\n break;\n case 'itemProductos':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"itemProductos\" data-rowid=\"itemProductos_\" data-tabla=\"productos_items\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"itemProductos\" data-rowid=\"itemProductos_\" data-tabla=\"productos_items\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarDTItemProducto\" data-pagina=\"itemProductos\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $btnBorrar = '<a class=\"deletDTContenido pointer btn-xs txt-red\" data-rowid=\"itemProductos_\" data-id=\"' . $id . '\" data-tabla=\"productos_items\"><i class=\"fa fa-trash-o\"></i> Eliminar </a>';\n if (!empty($sql[0]['imagen'])) {\n $img = '<img src=\"' . URL . 'public/images/productos/items/' . $sql[0]['imagen'] . '\" style=\"width: 160px;\">';\n } else {\n $img = '-';\n }\n $data = '<td>' . utf8_encode($sql[0]['orden']) . '</td>'\n . '<td>' . $img . '</td>'\n . '<td>' . utf8_encode($sql[0]['es_nombre']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['en_nombre']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . ' ' . $btnBorrar . '</td>';\n break;\n case 'productos':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"productos\" data-rowid=\"productos_\" data-tabla=\"productos\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"productos\" data-rowid=\"productos_\" data-tabla=\"productos\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnListado = '<a class=\"mostrarListadoProductos pointer btn-xs\" data-id=\"' . $id . '\"><i class=\"fa fa-list\"></i> Listado </a>';\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarDTProducto\" data-pagina=\"productos\"><i class=\"fa fa-edit\"></i> Editar </a>';\n //$btnBorrar = '<a class=\"deletDTContenido pointer btn-xs txt-red\" data-rowid=\"productos_\" data-id=\"' . $id . '\" data-tabla=\"productos\"><i class=\"fa fa-trash-o\"></i> Eliminar </a>';\n if (!empty($sql[0]['imagen'])) {\n $img = '<img src=\"' . URL . 'public/images/productos/' . $sql[0]['imagen'] . '\" style=\"width: 160px;\">';\n } else {\n $img = '-';\n }\n $data = '<td>' . utf8_encode($sql[0]['orden']) . '</td>'\n . '<td>' . $img . '</td>'\n . '<td>' . utf8_encode($sql[0]['es_producto']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['en_producto']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnListado . ' ' . $btnEditar . '</td>';\n break;\n case 'servicios':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"servicios\" data-rowid=\"servicios_\" data-tabla=\"servicios\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"servicios\" data-rowid=\"servicios_\" data-tabla=\"servicios\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarDTServicios\" data-pagina=\"servicios\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $btnBorrar = '<a class=\"deletDTContenido pointer btn-xs txt-red\" data-rowid=\"servicios_\" data-id=\"' . $id . '\" data-tabla=\"servicios\"><i class=\"fa fa-trash-o\"></i> Eliminar </a>';\n $data = '<td>' . utf8_encode($sql[0]['orden']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['es_servicio']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['en_servicio']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . ' ' . $btnBorrar . '</td>';\n break;\n case 'verContacto':\n if ($sql[0]['leido'] == 1) {\n $estado = '<span class=\"label label-primary\">Leído</span>';\n } else {\n $estado = '<span class=\"label label-danger\">No Leído</span>';\n }\n $btnEditar = '<a class=\"btnVerContacto pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalVerContacto\"><i class=\"fa fa-edit\"></i> Ver Datos </a>';\n $data = '<td class=\"sorting_1\">' . $id . '</td>'\n . '<td>' . utf8_encode($sql[0]['nombre']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['email']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['asunto']) . '</td>'\n . '<td>' . date('d-m-Y H:i:s', strtotime($sql[0]['fecha'])) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n case 'meta_tags':\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarMetaTag\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $data = '<td>' . $id . '</td>'\n . '<td>' . utf8_encode($sql[0]['es_texto']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['en_texto']) . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n case 'menu':\n if ($sql[0]['estado'] == 1) {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"menu\" data-rowid=\"menu_\" data-tabla=\"menu\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"1\"><span class=\"label label-primary\">Activo</span></a>';\n } else {\n $estado = '<a class=\"pointer btnCambiarEstado\" data-seccion=\"menu\" data-rowid=\"menu_\" data-tabla=\"menu\" data-campo=\"estado\" data-id=\"' . $id . '\" data-estado=\"0\"><span class=\"label label-danger\">Inactivo</span></a>';\n }\n $btnEditar = '<a class=\"editDTContenido pointer btn-xs\" data-id=\"' . $id . '\" data-url=\"modalEditarMenu\"><i class=\"fa fa-edit\"></i> Editar </a>';\n $data = '<td>' . utf8_encode($sql[0]['orden']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['es_texto']) . '</td>'\n . '<td>' . utf8_encode($sql[0]['en_texto']) . '</td>'\n . '<td>' . $estado . '</td>'\n . '<td>' . $btnEditar . '</td>';\n break;\n }\n return $data;\n }", "public function getDataById($table = null, $id = null){\n $stmt = $this->conn->prepare(\"SELECT * FROM \".$table.\" WHERE evenement_id ='\".$id.\"'\"); \n $stmt->execute();\n $stmt->setFetchMode(PDO::FETCH_ASSOC);\n $events = $stmt->fetchAll();\n return $events[0];\n }", "public function getId() ;", "public function datai($sql) {\n //$this->getDB()->query($sql);\n $this->data($sql);\n return $this->getDB()->insert_id;\n }", "public function getStatut($id){\n\t\t$reqt = \"SELECT etat FROM $this->table WHERE fiche_id = '$id' \";\n\t\t$re = $this->select($reqt);\n\t\treturn $re[0];\n\t}", "public function getIdDetail()\n {\n \treturn \"AVD-03-\". date(\"Y\") . sprintf('%05d', $this->id_actadocumentacion);\n }", "static function vrat_pretek ($ID){\r\n $db = napoj_db();\r\n $sql =<<<EOF\r\n SELECT * from Preteky WHERE ID=$ID;\r\nEOF;\r\n$sql1 =<<<EOF\r\n SELECT * from Preteky WHERE ID=$ID;\r\nEOF;\r\n$count = 0;\r\nif(is_numeric($ID)){\r\n $ret = $db->query($sql);\r\n $ret2 = $db->query($sql1);\r\n $count = $ret2->fetchArray(PDO::FETCH_NUM);\r\n }\r\n if($count>0){\r\n while($row = $ret->fetchArray(SQLITE3_ASSOC) ){\r\n $pom = new PRETEKY();\r\n $pom->nacitaj($ID,$row['NAZOV'],$row['DATUM'],$row['DEADLINE'], $row['AKTIV'], $row['POZNAMKA']);\r\n }\r\n // echo \"Operation done successfully\".\"<br>\"; //////////////\r\n $db->close();\r\n return $pom;\r\n }\r\n else{echo'Zvoleny pretek neexistuje';}\r\n }", "public function getById3($id = null)\n {\n $this->db->from('tabel_lapak');\n $this->db->join('tabel_peminjaman', 'tabel_peminjaman.kd_lapak = tabel_lapak.kd_lapak');\n //$this->db->join('tabel_pengguna', 'tabel_pengguna.kd_pengguna2=tabel_peminjaman.kd_pengguna');\n $this->db->where('tabel_lapak.kd_lapak', $id);\n $query = $this->db->get();\n return $query->result();\n }", "abstract function getPrimaryKey();", "public function MesasPorId()\n{\n\tself::SetNames();\n\t$sql = \" select salas.codsala, salas.nombresala, salas.salacreada, mesas.codmesa, mesas.nombremesa, mesas.mesacreada, mesas.statusmesa FROM mesas INNER JOIN salas ON salas.codsala = mesas.codsala where mesas.codmesa = ? \";\n\t$stmt = $this->dbh->prepare($sql);\n\t$stmt->execute( array(base64_decode($_GET[\"codmesa\"])) );\n\t$num = $stmt->rowCount();\n\tif($num==0)\n\t{\n\t\techo \"\";\n\t}\n\telse\n\t{\n\t\tif($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t\t{\n\t\t\t\t$this->p[] = $row;\n\t\t\t}\n\t\t\treturn $this->p;\n\t\t\t$this->dbh=null;\n\t\t}\n\t}", "public function tampil_data(){\n $sql= \"Select * From penjualan Order By id_penjualan DESC\";\n $data=$this->konek->query($sql);\n while ($row=mysqli_fetch_array($data)) {\n $hasil[]=$row;\n }\n return $hasil;\n }", "abstract public function getId();", "abstract public function getId();" ]
[ "0.7066148", "0.66215706", "0.6411942", "0.6377127", "0.63644886", "0.6275847", "0.6221375", "0.6192752", "0.6167565", "0.61421883", "0.61270535", "0.610049", "0.610049", "0.60845965", "0.60799706", "0.6070238", "0.60698706", "0.6057903", "0.6057033", "0.6040181", "0.6028572", "0.60177803", "0.6014105", "0.6013242", "0.60109395", "0.60052913", "0.60034204", "0.5994473", "0.59905857", "0.598737", "0.59627664", "0.59592825", "0.5941911", "0.5930258", "0.59294486", "0.5926234", "0.5921614", "0.591712", "0.5882467", "0.58810693", "0.5873911", "0.5869629", "0.58676416", "0.5860236", "0.58550614", "0.5854134", "0.5853037", "0.5840832", "0.583189", "0.5831424", "0.5813135", "0.5809426", "0.5802272", "0.5798867", "0.57918507", "0.57912844", "0.5787583", "0.57820237", "0.57810944", "0.5776101", "0.5772962", "0.57716405", "0.577126", "0.577126", "0.577126", "0.5771005", "0.57683843", "0.5768257", "0.5767479", "0.57657355", "0.5761297", "0.5760881", "0.5760881", "0.5755167", "0.5753388", "0.57498795", "0.5748612", "0.574832", "0.5741758", "0.5740954", "0.5739713", "0.57384944", "0.57374644", "0.57284564", "0.57259935", "0.57199836", "0.5716956", "0.5714575", "0.5714302", "0.5713249", "0.57124203", "0.5712191", "0.57104814", "0.5708264", "0.5704944", "0.5697505", "0.5694166", "0.5685414", "0.5683475", "0.56742805", "0.56742805" ]
0.0
-1
Display a listing of the resource.
public function 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() { }
{ "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) { $proposal = Proposal::create($request->all()); return view('proposals.thanks-for-your-proposal'); }
{ "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(Proposal $proposal) { // }
{ "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(Proposal $proposal) { // }
{ "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(Form $form)\n {\n //\n }", "public function edit()\n { \n return view('admin.control.edit');\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(form $form)\n {\n //\n }", "public function actionEdit($id) { }", "public function edit()\n {\n return view('catalog::edit');\n }", "public function edit()\n {\n return view('catalog::edit');\n }", "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($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($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(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()\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 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 edit(Form $form)\n {\n return view('admin.forms.edit', compact('form'));\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 $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($articulo_id)\n {\n $titulo = \"Editar\";\n return View(\"articulos.formulario\",compact('titulo','articulo_id'));\n }", "public function edit($id)\n {\n return view('cataloguemodule::edit');\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 editAction()\n {\n View::renderTemplate('Profile/edit.html', [\n 'user' => $this->user\n ]);\n }", "public function edit()\n {\n return view('initializer::edit');\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_person($person_id){\n \t$person = Person::find($person_id);\n \treturn view('resource_detail._basic_info.edit',compact('person'));\n }", "public function edit(Question $question)\n {\n $edit = TRUE;\n return view('questionForm', ['question' => $question, 'edit' => $edit ]);\n }", "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) {\n\t\t$viewModel = new PersonFormViewModel();\n\t\treturn view('person.form', $viewModel);\n\t}", "public function edit($id)\n {\n $data = Restful::find($id);\n return view('restful.edit', compact('data'));\n }", "public function edit($id)\n {\n $professor = $this->repository->find($id);\n return view('admin.professores.edit',compact('professor'));\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.7855196", "0.76957726", "0.7273917", "0.7241426", "0.71717227", "0.7064183", "0.70528984", "0.69836885", "0.694763", "0.69469565", "0.6941572", "0.69301945", "0.6903868", "0.68989486", "0.68989486", "0.68787694", "0.68641657", "0.6860115", "0.6857286", "0.68464494", "0.6834566", "0.68116575", "0.68075293", "0.6805924", "0.6801357", "0.6796291", "0.67915684", "0.67915684", "0.67874014", "0.678544", "0.67787844", "0.6777662", "0.67675763", "0.676299", "0.6746726", "0.6745706", "0.67450166", "0.67450166", "0.6739429", "0.6734577", "0.6725992", "0.67127997", "0.6694406", "0.6692487", "0.6689421", "0.66884303", "0.6687299", "0.6685663", "0.6682167", "0.66701853", "0.66697115", "0.6666091", "0.6666091", "0.66627705", "0.6661716", "0.6661522", "0.6657919", "0.6656454", "0.6653187", "0.6642113", "0.66332614", "0.66324973", "0.66275465", "0.66275465", "0.6619777", "0.6619387", "0.6617973", "0.66154003", "0.66110945", "0.6607966", "0.66065043", "0.6596376", "0.65953517", "0.65941286", "0.6591486", "0.6590759", "0.6588404", "0.658161", "0.6580548", "0.6579757", "0.6577171", "0.65761065", "0.657386", "0.65686774", "0.6567784", "0.65672046", "0.6566417", "0.65615803", "0.65615714", "0.65615714", "0.65592474", "0.65586483", "0.65568006", "0.6556628", "0.65564895", "0.6555322", "0.65551996", "0.6555016", "0.654888", "0.65477645", "0.65451735" ]
0.0
-1
Update the specified resource in storage.
public function update(Request $request, Proposal $proposal) { // }
{ "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(Proposal $proposal) { // }
{ "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
/ Author: Tuan ThaiManh Kiem tra truong firstname
function check_firstname_input($param){ $mess = ''; if(empty($param)){ $mess = "Không được bỏ trống"; } else if (!preg_match("/^[a-zA-Z ]*$/",$param)){ $mess = "Chỉ bao gồm kí tự và dấu cách"; } else{ $mess = "Hợp lệ"; } return $mess; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getFirstname() {}", "public function getFirstname(): string;", "public function requestFirstname();", "public function getHonoreeFirstName();", "public function getFirstName();", "public function getCustomerFirstname();", "public function getFirstName() {}", "public function getFirstName() {}", "public function getFirstname(): string\n {\n return $this->export('Firstname');\n }", "function getFirstname()\n {\n return $this->firstname;\n }", "public function getSurname ();", "public function getFirstname(): string\n {\n return $this->_firstname;\n }", "public function getFirstname() {\n return $this->getValue('firstname');\n }", "function set_first_name($first_name='*')\r\n{\r\n\t$this->first_name = '';\t\t// return\r\n\t\r\n\t// Get Random Name\r\n\tif ( $first_name == '*' )\r\n\t{\r\n\t\tif ( !isset($this->gender) ) $this->set_gender();\r\n\t\t$this->first_name = $this->_get_random_first_name($this->gender);\r\n\t}\r\n\telse\r\n\t{\r\n\t\t$this->first_name = $first_name;\r\n\t}\r\n\t\r\n\t// capitalize\r\n\t$this->first_name = ucwords($this->first_name);\r\n\t\r\n\t// adjust hyphenates\r\n\tif ( $_pos = strpos($this->first_name, '-') )\r\n\t{\r\n\t\t$this->first_name = substr($this->first_name, 0, $_pos+1) . '-' . ucwords( substr($this->first_name, $_pos+1) );\r\n\t}\r\n\t\r\n\treturn $this->first_name;\r\n}", "public function getFirstname()\n {\n return $this->firstname;\n }", "public function getFirst_name()\r\n {\r\n return $this->first_name;\r\n }", "public function getGivenName ();", "function the_author_firstname()\n {\n }", "public function getFirstName(){\n \n return $this->first_name;\n \n }", "function getFirst_Name(){\n $user = $this->loadUser(Yii::app()->user->id);\n\treturn $user->firstname;\n }", "public function getFirstname()\n {\n return $this->firstname;\n }", "public function getFirstname()\n {\n return $this->firstname;\n }", "public function getFirstname()\n {\n return $this->firstname;\n }", "public function getFirstname()\n {\n return $this->firstname;\n }", "public function getFirstname()\n {\n return $this->firstname;\n }", "public function getFirstname()\n {\n return $this->firstname;\n }", "public function getFirstname()\n {\n return $this->firstname;\n }", "public function getFirstname()\n {\n return $this->firstname;\n }", "public function getFirstname()\n {\n return $this->firstname;\n }", "function get_the_author_firstname()\n {\n }", "function getRHUL_FirstName() {\n return getRHUL_LDAP_FieldValue(\"first_name\");\n}", "public function getHonoreeLastName();", "public function getFirstname()\n {\n return $this->firstName;\n }", "public function getFirstname() {\n return $this->firstname;\n }", "private function setFirstName()\n {\n \tif ( empty($_POST['first_name'] ) ) {\n \t\t$this->data['error']['first_name'] = \"Please provide your first name.\";\n $this->error = true;\n return;\n }\n \n $fn = trim( $_POST['first_name'] );\n \n\t\tif ( preg_match('/^[A-Z \\'.-]{1,40}$/i', $fn ) ) {\n\t\t\t$this->data['first_name'] = $fn;\n\t\t} else {\n\t\t\t$this->data['error']['first_name'] = \"Your first name can include letters, apostrophes, periods and hyphens.\";\n $this->error = true;\n\t\t}\n }", "public function getLastname() {}", "public function getFirstname() {\n\t\treturn $this->firstname;\n\t}", "function getFirst_Name() {\n $user = $this->loadUser(Yii::app()->user->id);\n return $user->first_name;\n }", "public function getFirstName():string\n {\n return $this->firstName;\n }", "public function getFirstname()\n\t{\n\t\treturn $this->firstname;\n\t}", "public function getFullname(): string;", "public function getFirstname()\n {\n return $this->firstname;\n }", "function getFirstName(){\n\t\treturn $this->firstName;\n\t}", "public function getFirstName(): string;", "public function getFirstName(): string\n {\n return $this->firstName;\n }", "public function getFirstName(): string\n {\n return $this->firstName;\n }", "public function getFirstName(): string\n {\n return $this->firstName;\n }", "function getFirstName($f)\n {\n $array = $this->load( array( \"username=?\", $f->get('POST.login_username') ));\n return $array['firstname'].\" \".$array['lastname'];\n }", "function getFirstName() {\n return $this->first_name;\n }", "public function getLastname(): string;", "public function getShipToFirstName();", "public function getFirstName()\n {\n return parent::getFirstName();\n }", "public function getFirstName() :string {\n\t\treturn (string)$this->first_name;\n\t}", "function getFirstName()\r\n\t{\r\n\t\treturn $this->FirstName;\r\n\t}", "function _create_proper_name_field() {\r\n global $locale;\r\n $full_name = $locale->getLocaleFormattedName($this->first_name, $this->last_name, $this->salutation);\r\n $this->name = $full_name;\r\n $this->full_name = $full_name; \r\n\r\n\t}", "public function getUserFirstName() :string {\n\t\treturn($this->userFirstName);\n\t}", "public function fullName(){\n $title = ($this->gender=='Male')? 'Mr.': 'Ms.';\n return $title.' '.$this->fname. ' '. $this->lname ;\n }", "public function requestSurname();", "public function getFirstname()\n\t\t{\n\t\t\treturn $this->firstname;\n\t\t}", "public function getFirstName(){\n\t\t\treturn $this->firstname;\n\t\t}", "function getFirstName() {\n\t\treturn $this->getInfo('FirstName');\n\t}", "function voyage_mikado_get_the_author_name() {\n if(get_the_author_meta('first_name') !== '' || get_the_author_meta('last_name') !== '') {\n $name = get_the_author_meta('first_name').' '.get_the_author_meta('last_name');\n } else {\n $name = get_the_author_meta('display_name');\n }\n\n return $name;\n }", "public function getShipToLastName();", "private function make_full_name() {\n return $this->firstname . \" \" . $this->infix . \" \" . $this->lastname;\n }", "protected function _getRealName()\n {\n return $this->first_name . ' ' . $this->last_name;\n }", "public function getFirstName() { return $this->firstName; }", "function the_author_lastname()\n {\n }", "function get_profile_fname($fname){\r\n\t\r\n}", "public function getFirstName() {\n return $this->f_name;\n }", "public function getFirstName()\n {\n return $this->first_name;\n }", "public function getFirstName()\n {\n return $this->first_name;\n }", "public function getFirstName()\n {\n return $this->first_name;\n }", "public function getFirstName()\n {\n return $this->first_name;\n }", "public function getFirstName()\n {\n return $this->first_name;\n }", "protected function first_name() {\n $element = new Text('first_name');\n $element->setLabel('First Name');\n $element->setAttribute('class', 'form-control');\n $element->setUserOption('lblRequired', true);\n $element->addValidators(array(\n new PresenceOf(array('message' => 'First Name is required'))\n ));\n $this->add($element);\n }", "public function getFirstName()\n\t{\n\t\treturn $this->first_name;\n\t}", "function firstName() {\n\t\tglobal $first_names;\n\n\t\t$total = count($first_names );\n\t\t$index = rand( 0, $total - 1 );\n\t\treturn ucfirst( strtolower($first_names[$index] ) );\n\t}", "function birthname() {\n if (empty($this->birth_name)) {\n if ($this->page[\"Bio\"] == \"\") $this->openpage (\"Bio\",\"person\");\n if (preg_match(\"/Birth Name<\\/h5>\\s*\\n(.*?)\\n/m\",$this->page[\"Bio\"],$match))\n $this->birth_name = trim($match[1]);\n }\n return $this->birth_name;\n }", "public function getInitial()\n {\n return ucwords(trim($this->first_name . ' ' . substr($this->last_name, 0, 1)));\n }", "public function name() {\r\n $name = $this->first_name . ' ' . $this->last_name;\r\n return $name;\r\n }", "public function getFirstName() {\n\t\treturn $this->first_name;\n\t}", "public function getLastName() {}", "public function getLastName() {}", "function getFirstName($name) {\r\n\t$n = explode(\" \",$name);\r\n\treturn $n[0];\r\n}", "public function getFirstName()\n {\n return $this->firstname;\n }", "function medigroup_mikado_get_the_author_name() {\n if(get_the_author_meta('first_name') !== '' || get_the_author_meta('last_name') !== '') {\n $name = get_the_author_meta('first_name').' '.get_the_author_meta('last_name');\n } else {\n $name = get_the_author_meta('display_name');\n }\n\n return $name;\n }", "public function getFirstName()\n {\n return $this->first_name ?? $this->nickname ?? $this->name;\n }", "function formatName(array $name)\r\n {\r\n return $name['last_name'] . ' ' . preg_replace('/\\b([A-Z]).*?(?:\\s|$)+/','$1',$name['first_name']);\r\n }", "function getPersonName($user) {\n if ($user==null || (!isset($user[\"lastname\"]) && !isset($user[\"firstname\"])) )\n return '';\n $ret =\"\";\n if (isset($user[\"title\"]))\n $ret = $user[\"title\"].' ';\n $ret .= $user[\"lastname\"].\" \".$user[\"firstname\"];\n if (isset($user[\"birthname\"]) && trim($user[\"birthname\"])!=\"\")\n $ret .= \" (\".trim($user[\"birthname\"]).\")\";\n return $ret;\n}", "function getRHUL_DisplayName() {\n\treturn getRHUL_LDAP_FieldValue(\"adi_givenname\");\n}", "public function diviroids_user_firstname($atts)\n {\n return DiviRoids_Security::get_current_user('user_firstname');\n }", "public function showfullname()\n {\n return $this->getFirstname() . ' ' . $this->getLastname();\n }", "public function getFullname()\n {\n return $this->firstname . ' ' . $this->lastname;\n }", "function getFirst_Name(){\n$user = $this->loadUserLogin(Yii::app()->user->user_id);\nreturn $user->first_name;\n}", "public function name() {\n $a = $this->firstname;\n return $a;\n }", "public function setFirstName($u_fname) {\n\n $this->u_fname = $u_fname;\n\n }", "function familyNAme($first_name,$year){\n echo \"$first_name Manchester. Born in $year <br>\";\n }", "function getFirstName() {\n\t$COMMON = new Common($debug);\n\t$uID = $_SESSION[\"userID\"];\n\n\t$sql = \"select * from Proj2Advisors where `id` = '$uID'\";\n\t$rs = $COMMON->executeQuery($sql, $_SERVER[\"SCRIPT_NAME\"]);\n\t$row = mysql_fetch_row($rs);\n\n\t$name = $row[1];\n\treturn $name;\n}", "function getPersonFirstName()\n {\n return $this->getValueByFieldName('person_fname');\n }", "public function getFirstName() {\n return $this->firstname;\n }", "public function getCustomerLastname();" ]
[ "0.7921772", "0.7620307", "0.7487284", "0.7456547", "0.721829", "0.71984464", "0.7185958", "0.7185958", "0.71715534", "0.71599466", "0.7147867", "0.7145913", "0.7145328", "0.7100555", "0.70992273", "0.7090112", "0.70661634", "0.7065294", "0.7053454", "0.70271575", "0.7014833", "0.7014833", "0.7014833", "0.7014833", "0.7014833", "0.7014833", "0.7014833", "0.7014833", "0.7014833", "0.6998625", "0.69918716", "0.6980835", "0.6974279", "0.6974158", "0.69738126", "0.69404453", "0.692685", "0.6925668", "0.69236374", "0.6917817", "0.69172376", "0.69087404", "0.69025934", "0.68915224", "0.68903255", "0.68903255", "0.68903255", "0.68826824", "0.687801", "0.6868644", "0.6855291", "0.6844466", "0.68413955", "0.68204814", "0.6817202", "0.681482", "0.6812899", "0.6812335", "0.68028444", "0.67932814", "0.67696214", "0.67691255", "0.6764565", "0.67613506", "0.6741023", "0.6739791", "0.67334676", "0.6731191", "0.6718315", "0.6709565", "0.6709565", "0.6709565", "0.6709565", "0.6709565", "0.66931653", "0.66899", "0.6687029", "0.66833717", "0.66763467", "0.6669409", "0.66692466", "0.6668115", "0.6668115", "0.66674113", "0.66643316", "0.66615456", "0.6661256", "0.6655732", "0.6628262", "0.6599473", "0.65912795", "0.6587946", "0.6584159", "0.6580185", "0.6578137", "0.6575233", "0.65714836", "0.6561768", "0.65599847", "0.6557455", "0.65569746" ]
0.0
-1
Kiem tra truong lastname
function check_lastname_input($param) { $mess = ''; if(empty($param)){ $mess = "Không được bỏ trống"; } else if (!preg_match("/^[a-zA-Z ]*$/",$param)){ $mess = "Chỉ bao gồm kí tự và dấu cách"; } else{ $mess = "Hợp lệ"; } return $mess; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getLastname() {}", "public function getHonoreeLastName();", "public function getLastName() {}", "public function getLastName() {}", "public function getLastname(): string;", "public function getLastName();", "public function getLastname() {\n return $this->getValue('lastname');\n }", "public function getLastName(): string;", "public function getLastName(){\n \n return $this->last_name;\n \n }", "public function getCustomerLastname();", "public function getLastname()\r\n {\r\n return $this->lastname;\r\n }", "public function getLastname(): string\n {\n return $this->_lastname;\n }", "function getRHUL_LastName() {\n return getRHUL_LDAP_FieldValue(\"last_name\");\n}", "public function getUserLastName() :string {\n\t\treturn($this->userFirstName);\n\t}", "public function getLastname()\n {\n return $this->lastname;\n\n }", "protected function last_name() {\n $element = new Text('last_name');\n $element->setLabel('Last Name');\n $element->setAttribute('class', 'form-control');\n $element->setUserOption('lblRequired', true);\n $element->addValidators(array(\n new PresenceOf(array('message' => 'Last Name is required'))\n ));\n $this->add($element);\n }", "public function getLastname() {\n return $this->lastname;\n }", "public function getLastName() { return $this->lastName; }", "public function getLastname()\n {\n return $this->lastname;\n }", "public function getLastname()\n {\n return $this->lastname;\n }", "public function getLastname()\n {\n return $this->lastname;\n }", "public function getLastname()\n {\n return $this->lastname;\n }", "public function getLastname()\n {\n return $this->lastname;\n }", "public function getLastname()\n {\n return $this->lastname;\n }", "public function getLastname()\n {\n return $this->lastname;\n }", "public function getLastname()\n {\n return $this->lastname;\n }", "function getLastname()\n {\n return $this->lastname;\n }", "public function getLastname()\n {\n return $this->lastname;\n }", "public function getLastname()\r\n\t{\r\n\t\treturn $this->lastname;\r\n\t}", "private function setLastName()\n {\n \tif ( empty($_POST['last_name'] ) ) {\n \t\t$this->data['error']['last_name'] = \"Please provide your last name.\";\n $this->error = true;\n return;\n }\n \n $ln = trim( $_POST['last_name'] );\n \n \tif (preg_match('/^[A-Z \\'.-]{1,40}$/i', $ln)) {\n\t\t\t$this->data['last_name'] = $ln;\n\t\t} else {\n\t\t\t$this->data['error']['last_name'] = \"Your last name can include letters, apostrophes, periods and hyphens.\";\n $this->error = true;\n\t\t}\n }", "public function getLastname() {\n\t\treturn $this->lastname;\n\t}", "public function getLastName() {\n\t\treturn $this->getCustomField( 'last_name' );\n\t}", "public function getLastName(){\n\t\t\treturn $this->lastname;\n\t\t}", "public function getHonoreeFirstName();", "public function getSurname ();", "public function getLastname()\n {\n return $this->lastname;\n }", "public function getLastName()\n {\n return $this->last_name;\n }", "public function getLastName()\n {\n return $this->last_name;\n }", "public function getLastName()\n {\n return $this->last_name;\n }", "public function getLastName()\n {\n return $this->last_name;\n }", "public function getLastName()\n {\n return $this->last_name;\n }", "public function getLastName()\n {\n return App_Formatting::emptyToNull($this->lastName->getValue());\n }", "public function getLastName(): string\n {\n return $this->lastName;\n }", "public function getLastName(): string\n {\n return $this->lastName;\n }", "public function getLastName():string\n {\n return $this->lastName;\n }", "public function getLastName() {\n\t\treturn $this->last_name;\n\t}", "public function getShipToLastName();", "function set_last_name($last_name='*')\r\n{\r\n\t$this->last_name = '';\t\t// return\r\n\t\r\n\t// get random name\r\n\tif ( $last_name == '*' )\r\n\t{\r\n\t\t$this->last_name = $this->_get_random_last_name();\r\n\t}\r\n\telse\r\n\t{\r\n\t\t$this->last_name = $last_name;\r\n\t}\r\n\t\r\n\t// capitalize\r\n\t$this->last_name = ucwords($this->last_name);\r\n\t\r\n\t// tweaks\r\n\tif ( substr($this->last_name, 0, 2) == 'Mc' ) $this->last_name = 'Mc' . ucwords( substr($this->last_name, 2) );\r\n\t\r\n\treturn $this->last_name;\r\n}", "public function getLastName() :string {\n\t\treturn (string)$this->last_name;\n\t}", "protected function _getRealName()\n {\n return $this->first_name . ' ' . $this->last_name;\n }", "public function getuserLastName()\n {\n return $this->userLastName;\n }", "public function getLastName() {\n return $this->lastname;\n }", "public function diviroids_user_lastname($atts)\n {\n return DiviRoids_Security::get_current_user('user_lastname');\n }", "public function getTitleLastName() {\r\n $titleLastName = $this->getTitleString() .' '. $this->lastName;\r\n return $titleLastName;\r\n }", "public function getLastName() {\n return($this->lastName);\n }", "public function getLastName() {\n return($this->lastName);\n }", "function getLastName()\r\n\t{\r\n\t\treturn $this->LastName;\r\n\t}", "public function getLastName()\n\t{\n\t\treturn $this->last_name;\n\t}", "public function getLastName()\n {\n return parent::getLastName();\n }", "public function GetLastName()\n {\n return $this->lastname;\n }", "public function getFirstname() {}", "public function convertLastName()\r\n {\r\n $this->customer->setLastName($this->lastName);\r\n\r\n return $this->customer->getLastName();\r\n }", "public function getLastName()\n {\n return $this->getValue('nb_icontact_prospect_last_name');\n }", "public function getLastName()\n {\n return $this->last_name ?? $this->surname ?? $this->lastName;\n\n }", "function getPersonLastName()\n {\n return $this->getValueByFieldName('person_lname');\n }", "public function getSpotifyLastName()\n {\n return $this->spotifyLastName;\n }", "public function getLastName()\n {\n return $this->get('LastName');\n }", "public function getLastName() {\n\n return $this->last_name;\n\n }", "function voyage_mikado_get_the_author_name() {\n if(get_the_author_meta('first_name') !== '' || get_the_author_meta('last_name') !== '') {\n $name = get_the_author_meta('first_name').' '.get_the_author_meta('last_name');\n } else {\n $name = get_the_author_meta('display_name');\n }\n\n return $name;\n }", "function get_the_author_lastname()\n {\n }", "public function getUserLastName () {\n\t\treturn ($this->userLastName);\n\t}", "public function get_first_n_last_names()\t{\n\t\tif (strlen($this->last_name) == 0) {\n\t\t\treturn $this->first_name;\n\t\t}\n\t\treturn $this->first_name . ' ' . $this->last_name;\n\t}", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getBillingLastName();", "public function getGivenName ();", "public function getLastName()\n {\n return $this->lastName;\n }", "public function getLastNameAttribute(): string\n {\n if ($this->user !== null) {\n return $this->user->last_name;\n }\n return '';\n }", "public function getLastName() {\n return $this->lastName;\n }", "function the_author_lastname()\n {\n }", "public function getName()\n {\n $result = null;\n if (isset($this->userInfo['first_name']) && isset($this->userInfo['last_name'])) {\n $result = $this->userInfo['first_name'] . ' ' . $this->userInfo['last_name'];\n } elseif (isset($this->userInfo['first_name']) && !isset($this->userInfo['last_name'])) {\n $result = $this->userInfo['first_name'];\n } elseif (!isset($this->userInfo['first_name']) && isset($this->userInfo['last_name'])) {\n $result = $this->userInfo['last_name'];\n }\n return $result;\n }", "function medigroup_mikado_get_the_author_name() {\n if(get_the_author_meta('first_name') !== '' || get_the_author_meta('last_name') !== '') {\n $name = get_the_author_meta('first_name').' '.get_the_author_meta('last_name');\n } else {\n $name = get_the_author_meta('display_name');\n }\n\n return $name;\n }", "public function lastname(){\n\t $_error = \"enter your last name\";\n\t\treturn $_error;\n\t}", "public function getLastName()\n {\n $res = $this->getEntity()->getLastName();\n\t\tif($res === null)\n\t\t{\n\t\t\tSDIS62_Model_DAO_Abstract::getInstance($this::$type_objet)->create($this);\n\t\t\treturn $this->getEntity()->getLastName();\n\t\t}\n return $res;\n }", "public function getUserProfileLastName(): string {\n\t\treturn ($this->userProfileLastName);\n\t}", "public function setLastName($u_lname) {\n\n $this->u_lname = $u_lname;\n\n }", "public function getHumanName();" ]
[ "0.82833356", "0.8215965", "0.8039226", "0.8039226", "0.80126125", "0.79626787", "0.7865804", "0.77207506", "0.77158135", "0.7673189", "0.7628109", "0.7604642", "0.7572319", "0.7571184", "0.7567334", "0.7542529", "0.75313675", "0.7519658", "0.75162846", "0.75162846", "0.75162846", "0.75162846", "0.75162846", "0.75162846", "0.75162846", "0.75162846", "0.7504601", "0.7493523", "0.74849004", "0.7478557", "0.74641436", "0.74412364", "0.74336267", "0.7414935", "0.7392814", "0.7375065", "0.7361112", "0.7361112", "0.7361112", "0.7361112", "0.7361112", "0.7348499", "0.73265797", "0.73265797", "0.7322805", "0.73156667", "0.7314305", "0.730931", "0.7306362", "0.72962517", "0.72916514", "0.7287435", "0.72854125", "0.7284153", "0.72727877", "0.72727877", "0.7263808", "0.7254285", "0.72285426", "0.72200835", "0.72169256", "0.7206583", "0.7199094", "0.7197197", "0.7182575", "0.71795785", "0.71792346", "0.71768063", "0.7172081", "0.7160006", "0.7158733", "0.71352255", "0.71278805", "0.71278805", "0.71278805", "0.71278805", "0.71278805", "0.71278805", "0.71278805", "0.71278805", "0.71278805", "0.71278805", "0.71278805", "0.71278805", "0.71278805", "0.71278805", "0.71278805", "0.71278805", "0.71133256", "0.7111711", "0.7108062", "0.7100586", "0.70941603", "0.70932883", "0.7066142", "0.7063759", "0.7061173", "0.7015164", "0.7000529", "0.6985072", "0.69726133" ]
0.0
-1
Kiem tra truong password
function check_password_input($param){ $mess = ''; if(empty($param)){ $mess = "Không được bỏ trống"; } else{ $mess = "Hợp lệ"; } return $mess; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function olvidoPassword(){\n\t}", "public function necesitaCambiarPassword();", "public function getPassword() {}", "public function getPW() {}", "public function getPassword();", "public function getPassword();", "public function getPassword();", "public function getPassword();", "public function getPassword();", "public function getPassword();", "public function getPassword();", "function get_password($usrid){\r\n\t\r\n}", "public function password()\n {\n }", "public function getPassword(): string;", "public function setPassword(){\n\t}", "public function getSecuredPassword();", "public function getPassword()\n {\n }", "public function getPassword()\n {\n }", "public function getPassword()\n {\n }", "public function getPassword()\n {\n }", "public function getPassword()\n {\n }", "public function getPassword()\n {\n }", "public function authenticationWithValidAsciiSpecialCharClassPassword() {}", "public function authenticationWithValidAsciiSpecialCharClassPassword() {}", "public function authenticationWithValidAsciiSpecialCharClassPassword() {}", "public function setpassword(){\n\t\t$args = $this->getArgs();\n\t\t$out = $this->getModel()->getUserDataByRenewToken(UserController::getRenewTokenHash($args[\"GET\"][\"token\"]));\n\t\tinclude 'gui/template/UserTemplate.php';\n\t}", "function getPassword(){\n\n}", "public function password() {\n return Hash::make('MonsterRXBOCS');\n }", "private function generate_pass()\n {\n echo password_hash('admin', PASSWORD_BCRYPT);\n }", "protected function getConfiguredPassword() {}", "public function password($password);", "public function encryptPass()\n {\n return \"RASAHolaRSSA\";\n }", "function password_recovery()\n\t{\n\n\n\t}", "function password($pass)\n\t{\n\t\tif (strcmp($pass, AUCTION_PASSWORD))\n\t\t\texit(\"Wrong password\");\n\t}", "public static function renderPassword();", "public function get_pass() \n {\n return $this->pass;\n }", "function _cek_password($str)\n{\n if ($str!=\"\") {\n if (pass_decrypt(profile(\"token\"),$str,profile(\"password\"))) {\n return true;\n }else {\n $this->form_validation->set_message('_cek_password', '* Password Salah');\n return false;\n }\n }else {\n return true;\n }\n}", "public function getPassword()\n {\n $encrypted_pass = Mage::getStoreConfig('smsnotifier/main_conf/apipassword');\n\n return Mage::helper('core')->decrypt($encrypted_pass);\n\n }", "private function getPassword(): string {\n return $this->password;\n }", "protected function changePassword() {}", "function getPassword(){\n $options = sciploreDataAccessBundle::getGeneralOptions();\n //$options = $container->get('sciplore.options')->getGeneralOptions();\n $require_password = $options['authentifiaction_requires_password']; \n if($require_password==1){\n return $this->passphrase;\n }\n else{\n //hardcoded random default password. Must be sent by the authentification form in a hidden field.\n return 'WnDadvfhWqoJnHuXtyxwZxGbfHsXrNwI3Idns4d2Ie9BnEjYnr14ijyCr0YPg7i';\n }\n }", "public function getPassword(): string\n {\n }", "public function authenticationWithValidAlphaCharClassPassword() {}", "public function authenticationWithValidAlphaCharClassPassword() {}", "public function authenticationWithValidAlphaCharClassPassword() {}", "public function setPassword($p) {\n $this->_password = $p;\n }", "public static function option_neopress_password() {\n printf(\n '<input type=\"password\" id=\"neopress_password\" name=\"neopress_password\" value=\"%s\" />',\n get_option('neopress_password')\n );\n }", "public function setPW($dw) {}", "function the_post_password()\n {\n }", "function temp_pass(){\n\treturn 'password199';\n}", "public function authenticationWithValidLatin1UmlautCharClassPassword() {}", "public function authenticationWithValidLatin1UmlautCharClassPassword() {}", "public function authenticationWithValidLatin1UmlautCharClassPassword() {}", "public function setPassword($value);", "protected function password()\n {\n return 'password';\n }", "function twe_encrypt_password($plain) {\n\n $password=md5($plain);\n\n return $password;\n\n }", "function generatePassword() {\n // 57 prefixes\n $aPrefix = array('aero', 'anti', 'ante', 'ande', 'auto', \n 'ba', 'be', 'bi', 'bio', 'bo', 'bu', 'by', \n 'ca', 'ce', 'ci', 'cou', 'co', 'cu', 'cy', \n 'da', 'de', 'di', 'duo', 'dy', \n 'eco', 'ergo', 'exa', \n 'geo', 'gyno', \n 'he', 'hy', 'ki',\n 'intra', \n 'ma', 'mi', 'me', 'mo', 'my', \n 'na', 'ni', 'ne', 'no', 'ny', \n 'omni', \n 'pre', 'pro', 'per', \n 'sa', 'se', 'si', 'su', 'so', 'sy', \n 'ta', 'te', 'tri',\n 'uni');\n\n // 30 suffices\n $aSuffix = array('acy', 'al', 'ance', 'ate', 'able', 'an', \n 'dom', \n 'ence', 'er', 'en',\n 'fy', 'ful', \n 'ment', 'ness',\n 'ist', 'ity', 'ify', 'ize', 'ise', 'ible', 'ic', 'ical', 'ous', 'ish', 'ive', \n 'less', \n 'sion',\n 'tion', 'ty', \n 'or');\n\n // 8 vowel sounds \n $aVowels = array('a', 'o', 'e', 'i', 'y', 'u', 'ou', 'oo'); \n\n // 20 random consonants \n $aConsonants = array('w', 'r', 't', 'p', 's', 'd', 'f', 'g', 'h', 'j', \n 'k', 'l', 'z', 'x', 'c', 'v', 'b', 'n', 'm', 'qu');\n\n // Some consonants can be doubled\n $aDoubles = array('n', 'm', 't', 's');\n\n // \"Salt\"\n $aSalt = array('!', '#', '%', '?');\n\n $pwd = $aPrefix[array_rand($aPrefix)];\n\n // add random consonant(s)\n $c = $aConsonants[array_rand($aConsonants)];\n if ( in_array( $c, $aDoubles ) ) {\n // 33% chance of doubling it\n if (rand(0, 2) == 1) { \n $c .= $c;\n }\n }\n $pwd .= $c;\n\n // add random vowel\n $pwd .= $aVowels[array_rand($aVowels)];\n\n $pwdSuffix = $aSuffix[array_rand($aSuffix)];\n // If the suffix begins with a vovel, add one or more consonants\n if ( in_array( $pwdSuffix[0], $aVowels ) ) {\n $pwd .= $aConsonants[array_rand($aConsonants)];\n }\n $pwd .= $pwdSuffix;\n\n $pwd .= rand(2, 999);\n # $pwd .= $aSalt[array_rand($aSalt)];\n\n // 50% chance of capitalizing the first letter\n if (rand(0, 1) == 1) {\n $pwd = ucfirst($pwd);\n }\n return $pwd;\n }", "public function getAuthPassword()\n {\n }", "public function getAuthPassword()\n {\n }", "public function getAuthPassword()\n {\n }", "public function generateSecurePassword()\n {\n\n try {\n // Generate the random salt, \n // replace byte por byte for utf8 support\n $this->_salt = strtr(base64_encode(mcrypt_create_iv(22, MCRYPT_DEV_URANDOM)), '+', '.');\n\n // generate the password with the salt\n $this->password = password_hash($this->password, PASSWORD_BCRYPT, ['salt' => $this->_salt]);\n } catch (\\Exception $ex) {\n \\kerana\\Exceptions::showError('LoginError', $ex);\n }\n }", "private function pre_defined_password(): string\r\n {\r\n $regx = \"/^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)(?=.*[#$@!%&*?])[A-Za-z\\d#$@!%&*?]{6,30}$/\";\r\n if (!preg_match($regx, $this->field)) {\r\n return $this->message(\"must 1 uppercase, lowercase, number & special char\");\r\n }\r\n }", "public function modifpassword($user,$passwd){\n \n }", "function wp_generate_password($length = 12, $special_chars = \\true, $extra_special_chars = \\false)\n {\n }", "public function password() {\n if ($this->proxy_pass)\n return $this->proxy_pass;\n\n return '';\n }", "function update_password()\n {\n }", "private function cryptPassword($pass)\n {\n //hasher le mot de passe\n //https://www.php.net/manual/fr/function.openssl-encrypt\n\n return openssl_encrypt($pass, \"AES-128-ECB\", SECRETKEY);\n }", "public function getPassword()\n {\n // TODO: Implement getPassword() method.\n }", "public function getPassword()\n {\n // TODO: Implement getPassword() method.\n }", "function doMkPassword ($string)\n{\n global $main;\n \n return ($main->conf['account']['hashing']['type'] == 'md5' ? md5 (sprintf ($main->conf['account']['hashing']['seed'], $string)) : sha1 (sprintf ($main->conf['account']['hashing']['seed'], $string)));\n}", "public function setPassword() {\n if ($this->Password) {\n $this->Password = \\app\\components\\Utilities::setHashedValue($this->Password);\n }\n }", "public function restPassword(){\n\t}", "public function authenticationWithValidLatin1SpecialCharClassPassword() {}", "public function authenticationWithValidLatin1SpecialCharClassPassword() {}", "public function authenticationWithValidLatin1SpecialCharClassPassword() {}", "function encryptPassword()\n\t{\n\t\t$userPassword = $_POST['userPassword'];\n\n\t $key = pack('H*', \"bcb04b7e103a05afe34763051cef08bc55abe029fdebae5e1d417e2ffb2a00a3\");\n\t $key_size = strlen($key);\n\n\t $plaintext = $userPassword;\n\n\t $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC);\n\t $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);\n\n\t $ciphertext = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $plaintext, MCRYPT_MODE_CBC, $iv);\n\t $ciphertext = $iv . $ciphertext;\n\n\t $userPassword = base64_encode($ciphertext);\n\n\t return $userPassword;\n\t}", "public function authenticationWithValidNumericCharClassPassword() {}", "public function authenticationWithValidNumericCharClassPassword() {}", "public function authenticationWithValidNumericCharClassPassword() {}", "private function generateLevelPassword(){\n\t\tif( !isset($this->password) ){\n\t\t\tif( !isset($_SESSION['levelPass']) ){\n\t\t\t\t$_SESSION['levelPass'] = array();\n\t\t\t}\n\t\t\tif( isset($_SESSION['levelPass'][$this->level_id]) ){\n\t\t\t\t$this->password = $_SESSION['levelPass'][$this->level_id];\n\t\t\t} else {\n\t\t\t\t$this->password = BasicLevel::generatePassword(7);\n\t\t\t\t$_SESSION['levelPass'][$this->level_id] = $this->password;\n\t\t\t}\n\t\t}\n\t}", "public function password($username)\n {\n }", "function set_password($string) {\r\n echo PHP_EOL;\r\n $this->action(\"setting new password of: $string\");\r\n $this->hashed_password = hash('sha256', $string . $this->vehicle_salt);\r\n $this->action(\"successfully set new password\");\r\n }", "public function password(){\n $_error = \"enter the password\";\n\t\treturn $_error;\n\t}", "public function cambiarPassword($password, $marcarParaRestaurar = false);", "function setPassword($password){\n\t\t$password = base64_encode($password);\n\t\t$salt5 = mt_rand(10000,99999);\t\t\n\t\t$salt3 = mt_rand(100,999);\t\t\n\t\t$salt1 = mt_rand(0,25);\n\t\t$letter1 = range(\"a\",\"z\");\n\t\t$salt2 = mt_rand(0,25);\n\t\t$letter2 = range(\"A\",\"Z\");\n\t\t$password = base64_encode($letter2[$salt2].$salt5.$letter1[$salt1].$password.$letter1[$salt2].$salt3.$letter2[$salt1]);\n\t\treturn str_replace(\"=\", \"#\", $password);\n\t}", "function p_modificar_txt_password(\n\t\t\t\t$txt_password\t\t\t\t\t,\n\t\t\t\t$cod_usuario\t\t\t\t\n\t\t){\n\t\t\tglobal $db;\n\t\t\t$query =\"\n\t\t\tupdate\tseg_usuario\n\t\t\tset\t\ttxt_password \t= password(SHA('$txt_password'))\n\t\t\twhere\tcod_usuario_pk\t\t='$cod_usuario'\";\n\t\t\t$db->consultar($query);\t\n\t\t}", "public function setPassword($password);", "public function setPassword($password);", "public function setPassword($password);", "function set_pass($pass)\n\t{\n\t\t$this->pass =$pass;\n\t}", "public function getPassword(): string\n {\n return $this->getClave();\n }", "public function setPassword($newPassword);", "public function getPassword():? string;", "public function getPassword(): string\n {\n return $this->password;\n }", "public function usePassword($password)\n {\n // CODE...\n }", "function generaPass() {\n $cadena = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890\";\n //Obtenemos la longitud de la cadena de caracteres\n $longitudCadena = strlen($cadena);\n\n //Se define la variable que va a contener la contraseña\n $pass = \"\";\n //Se define la longitud de la contraseña, en mi caso 10, pero puedes poner la longitud que quieras\n $longitudPass = 10;\n\n //Creamos la contraseña\n for ($i = 1; $i <= $longitudPass; $i++) {\n //Definimos numero aleatorio entre 0 y la longitud de la cadena de caracteres-1\n $pos = rand(0, $longitudCadena - 1);\n //Vamos formando la contraseña en cada iteraccion del bucle, añadiendo a la cadena $pass la letra correspondiente a la posicion $pos en la cadena de caracteres definida.\n $pass .= substr($cadena, $pos, 1);\n }\n return $pass;\n}", "function crypt_password($password)\n {\n return util::cryptPassword($password);\n }", "private function randomKey($length = 10) {\n $chars = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890\";\n $key = \"\";\n for ($i = 0; $i < $length; $i++) {\n $key .= $chars{rand(0, strlen($chars) - 1)};\n }\n return $key;\n }\n\n /**\n * Changes a user's password, providing the current password is known\n * @param string $username\n * @param string $currpass\n * @param string $newpass\n * @param string $verifynewpass\n * @return boolean\n */\n function changePass($username, $currpass, $newpass, $verifynewpass) {\n if (strlen($username) == 0) {\n $auth_error[] = $this->lang['changepass_username_empty'];\n } elseif (strlen($username) > MAX_USERNAME_LENGTH) {\n $auth_error[] = $this->lang['changepass_username_long'];\n } elseif (strlen($username) < MIN_USERNAME_LENGTH) {\n $auth_error[] = $this->lang['changepass_username_short'];\n }\n if (strlen($currpass) == 0) {\n $auth_error[] = $this->lang['changepass_currpass_empty'];\n } elseif (strlen($currpass) < MIN_PASSWORD_LENGTH) {\n $auth_error[] = $this->lang['changepass_currpass_short'];\n } elseif (strlen($currpass) > MAX_PASSWORD_LENGTH) {\n $auth_error[] = $this->lang['changepass_currpass_long'];\n }\n if (strlen($newpass) == 0) {\n $auth_error[] = $this->lang['changepass_newpass_empty'];\n } elseif (strlen($newpass) < MIN_PASSWORD_LENGTH) {\n $auth_error[] = $this->lang['changepass_newpass_short'];\n } elseif (strlen($newpass) > MAX_PASSWORD_LENGTH) {\n $auth_error[] = $this->lang['changepass_newpass_long'];\n } elseif (strstr($newpass, $username)) {\n $auth_error[] = $this->lang['changepass_password_username'];\n } elseif ($newpass !== $verifynewpass) {\n $auth_error[] = $this->lang['changepass_password_nomatch'];\n }\n if (count($auth_error) == 0) {\n //$currpass = $this->hashPass($currpass);\n $newpass = $this->hashPass($newpass);\n $query = $this->db->select(\"SELECT password FROM \".PREFIX.\"users WHERE username=:username\", array(':username' => $username));\n $count = count($query);\n if ($count == 0) {\n $this->logActivity(\"UNKNOWN\", \"AUTH_CHANGEPASS_FAIL\", \"Username Incorrect ({$username})\");\n $auth_error[] = $this->lang['changepass_username_incorrect'];\n return false;\n } else {\n $db_currpass = $query[0]->password;\n $verify_password = \\Helpers\\Password::verify($currpass, $db_currpass);\n if ($verify_password) {\n $this->db->update(PREFIX.'users', array('password' => $newpass), array('username' => $username));\n $this->logActivity($username, \"AUTH_CHANGEPASS_SUCCESS\", \"Password changed\");\n $this->success[] = $this->lang['changepass_success'];\n return true;\n } else {\n $this->logActivity($username, \"AUTH_CHANGEPASS_FAIL\", \"Current Password Incorrect ( DB : {$db_currpass} / Given : {$currpass} )\");\n $auth_error[] = $this->lang['changepass_currpass_incorrect'];\n return false;\n }\n }\n } else {\n return false;\n }\n }\n\n /**\n * Changes the stored email address based on username\n * @param string $username\n * @param string $email\n * @return boolean\n */\n function changeEmail($userID, $password, $email) {\n\t\t// Get Current Password From Database\n\t\t$query = $this->db->select(\"SELECT password FROM \".PREFIX.\"users WHERE userID=:userID\", array(':userID' => $userID));\n\t\t$db_currpass = $query[0]->password;\n\t\t// Verify Current Password With Database Password\n\t\t$verify_password = \\Helpers\\Password::verify($password, $db_currpass);\n\t\techo $verify_password;\n\t\t// Make sure Password is good to go.\n if (strlen($password) == 0) {\n $auth_error[] = $this->lang['changepass_currpass_empty'];\n } elseif (strlen($password) < MIN_PASSWORD_LENGTH) {\n $auth_error[] = $this->lang['changepass_currpass_short'];\n } elseif (strlen($password) > MAX_PASSWORD_LENGTH) {\n $auth_error[] = $this->lang['changepass_currpass_long'];\n } elseif (!$verify_password){\n\t\t\t$auth_error[] = $this->lang['changepass_currpass_incorrect'];\n\t\t}\n\t\t// Make sure Email is good\n if (strlen($email) == 0) {\n $auth_error[] = $this->lang['changeemail_email_empty'];\n } elseif (strlen($email) > MAX_EMAIL_LENGTH) {\n $auth_error[] = $this->lang['changeemail_email_long'];\n } elseif (strlen($email) < MIN_EMAIL_LENGTH) {\n $auth_error[] = $this->lang['changeemail_email_short'];\n } elseif (!filter_var($email, FILTER_VALIDATE_EMAIL)) {\n $auth_error[] = $this->lang['changeemail_email_invalid'];\n }\n\n\t\t// Everything looks good. Let user update their password\n if (count($auth_error) == 0) {\n $query = $this->db->select(\"SELECT email FROM \".PREFIX.\"users WHERE userID=:userID\", array(':userID' => $userID));\n $count = count($query);\n if ($count == 0) {\n $this->logActivity(\"UNKNOWN\", \"AUTH_CHANGEEMAIL_FAIL\", \"Username Incorrect ({$userID})\");\n $auth_error[] = $this->lang['changeemail_username_incorrect'];\n return false;\n } else {\n $db_email = $query[0]->email;\n if ($email == $db_email) {\n $this->logActivity($username, \"AUTH_CHANGEEMAIL_FAIL\", \"Old and new email matched ({$email})\");\n $auth_error[] = $this->lang['changeemail_email_match'];\n return false;\n } else {\n $this->db->update(PREFIX.'users', array('email' => $email), array('userID' => $userID));\n $this->logActivity($username, \"AUTH_CHANGEEMAIL_SUCCESS\", \"Email changed from {$db_email} to {$email}\");\n $this->success[] = $this->lang['changeemail_success'];\n return true;\n }\n }\n } else {\n return false;\n }\n }\n\n /**\n * Give the user the ability to change their password if the current password is forgotten\n * by sending email to the email address associated to that user\n * @param string $email\n * @param string $username\n * @param string $key\n * @param string $newpass\n * @param string $verifynewpass\n * @return boolean\n */\n function resetPass($email = '0', $username = '0', $key = '0', $newpass = '0', $verifynewpass = '0') {\n $attcount = $this->getAttempt($_SERVER['REMOTE_ADDR']);\n if ($attcount[0]->count >= MAX_ATTEMPTS) {\n $auth_error[] = $this->lang['resetpass_lockedout'];\n $auth_error[] = sprintf($this->lang['resetpass_wait'], WAIT_TIME);\n return false;\n } else {\n if ($username == '0' && $key == '0') {\n if (strlen($email) == 0) {\n $auth_error[] = $this->lang['resetpass_email_empty'];\n } elseif (strlen($email) > MAX_EMAIL_LENGTH) {\n $auth_error[] = $this->lang['resetpass_email_long'];\n } elseif (strlen($email) < MIN_EMAIL_LENGTH) {\n $auth_error[] = $this->lang['resetpass_email_short'];\n } elseif (!filter_var($email, FILTER_VALIDATE_EMAIL)) {\n $auth_error[] = $this->lang['resetpass_email_invalid'];\n }\n\n $query = $this->db->select(\"SELECT username FROM \".PREFIX.\"users WHERE email=:email\", array(':email' => $email));\n $count = count($query);\n if ($count == 0) {\n $auth_error[] = $this->lang['resetpass_email_incorrect'];\n $attcount[0]->count = $attcount[0]->count + 1;\n $remaincount = (int) MAX_ATTEMPTS - $attcount[0]->count;\n $this->logActivity(\"UNKNOWN\", \"AUTH_RESETPASS_FAIL\", \"Email incorrect ({$email})\");\n $auth_error[] = sprintf($this->lang['resetpass_attempts_remaining'], $remaincount);\n $this->addAttempt($_SERVER['REMOTE_ADDR']);\n return false;\n } else {\n $resetkey = $this->randomKey(RANDOM_KEY_LENGTH);\n $username = $query[0]->username;\n $this->db->update(PREFIX.'users', array('resetkey' => $resetkey), array('username' => $username));\n\n //EMAIL MESSAGE USING PHPMAILER\n $mail = new \\Helpers\\PhpMailer\\Mail();\n $mail->setFrom(EMAIL_FROM);\n $mail->addAddress($email);\n $subject = \" \" . SITE_NAME . \" - Password Reset Request\";\n\t\t\t\t\t$mail->subject($subject);\n $body = \"Hello {$username}<br/><br/>\";\n $body .= \"You recently requested a password reset on \" . SITE_NAME . \"<br/>\";\n $body .= \"To proceed with the password reset, please click the following link :<br/><br/>\";\n $body .= \"<b><a href=\\\"\" . DIR . RESET_PASSWORD_ROUTE . \"?username={$username}&key={$resetkey}\\\">Reset My Password</a></b>\";\n\t\t\t\t\t$body .= \"<br><br> You May Copy and Paste this URL in your Browser Address Bar: <br>\";\n\t\t\t\t\t$body .= \" \" . DIR . RESET_PASSWORD_ROUTE . \"?username={$username}&key={$resetkey}\";\n $mail->body($body);\n $mail->send();\n $this->logActivity($username, \"AUTH_RESETPASS_SUCCESS\", \"Reset pass request sent to {$email} ( Key : {$resetkey} )\");\n $this->success[] = $this->lang['resetpass_email_sent'];\n return true;\n }\n } else {\n // if username, key and newpass are provided\n // Reset Password\n if (strlen($key) == 0) {\n $auth_error[] = $this->lang['resetpass_key_empty'];\n } elseif (strlen($key) < RANDOM_KEY_LENGTH) {\n $auth_error[] = $this->lang['resetpass_key_short'];\n } elseif (strlen($key) > RANDOM_KEY_LENGTH) {\n $auth_error[] = $this->lang['resetpass_key_long'];\n }\n if (strlen($newpass) == 0) {\n $auth_error[] = $this->lang['resetpass_newpass_empty'];\n } elseif (strlen($newpass) > MAX_PASSWORD_LENGTH) {\n $auth_error[] = $this->lang['resetpass_newpass_long'];\n } elseif (strlen($newpass) < MIN_PASSWORD_LENGTH) {\n $auth_error[] = $this->lang['resetpass_newpass_short'];\n } elseif (strstr($newpass, $username)) {\n $auth_error[] = $this->lang['resetpass_newpass_username'];\n } elseif ($newpass !== $verifynewpass) {\n $auth_error[] = $this->lang['resetpass_newpass_nomatch'];\n }\n if (count($auth_error) == 0) {\n $query = $this->db->select(\"SELECT resetkey FROM \".PREFIX.\"users WHERE username=:username\", array(':username' => $username));\n $count = count($query);\n if ($count == 0) {\n $auth_error[] = $this->lang['resetpass_username_incorrect'];\n $attcount[0]->count = $attcount[0]->count + 1;\n $remaincount = (int) MAX_ATTEMPTS - $attcount[0]->count;\n $this->logActivity(\"UNKNOWN\", \"AUTH_RESETPASS_FAIL\", \"Username incorrect ({$username})\");\n $auth_error[] = sprintf($this->lang['resetpass_attempts_remaining'], $remaincount);\n $this->addAttempt($_SERVER['REMOTE_ADDR']);\n return false;\n } else {\n $db_key = $query[0]->resetkey;\n if ($key == $db_key) {\n //if reset key ok update pass\n $newpass = $this->hashpass($newpass);\n $resetkey = '0';\n $this->db->update(PREFIX.'users', array('password' => $newpass, 'resetkey' => $resetkey), array('username' => $username));\n $this->logActivity($username, \"AUTH_RESETPASS_SUCCESS\", \"Password reset - Key reset\");\n $this->success[] = $this->lang['resetpass_success'];\n return true;\n } else {\n $auth_error[] = $this->lang['resetpass_key_incorrect'];\n $attcount[0]->count = $attcount[0]->count + 1;\n $remaincount = (int) MAX_ATTEMPTS - $attcount[0]->count;\n $this->logActivity($username, \"AUTH_RESETPASS_FAIL\", \"Key Incorrect ( DB : {$db_key} / Given : {$key} )\");\n $auth_error[] = sprintf($this->lang['resetpass_attempts_remaining'], $remaincount);\n $this->addAttempt($_SERVER['REMOTE_ADDR']);\n return false;\n }\n }\n } else {\n return false;\n }\n }\n }\n }\n\n /**\n * Checks if the reset key is correct for provided username\n * @param string $username\n * @param string $key\n * @return boolean\n */\n function checkResetKey($username, $key) {\n $attcount = $this->getAttempt($_SERVER['REMOTE_ADDR']);\n if ($attcount[0]->count >= MAX_ATTEMPTS) {\n $auth_error[] = $this->lang['resetpass_lockedout'];\n $auth_error[] = sprintf($this->lang['resetpass_wait'], WAIT_TIME);\n return false;\n } else {\n if (strlen($username) == 0) {\n return false;\n } elseif (strlen($username) > MAX_USERNAME_LENGTH) {\n return false;\n } elseif (strlen($username) < MIN_USERNAME_LENGTH) {\n return false;\n } elseif (strlen($key) == 0) {\n return false;\n } elseif (strlen($key) < RANDOM_KEY_LENGTH) {\n return false;\n } elseif (strlen($key) > RANDOM_KEY_LENGTH) {\n return false;\n } else {\n $query = $this->db->select(\"SELECT resetkey FROM \".PREFIX.\"users WHERE username=:username\", array(':username' => $username));\n $count = count($query);\n if ($count == 0) {\n $this->logActivity(\"UNKNOWN\", \"AUTH_CHECKRESETKEY_FAIL\", \"Username doesn't exist ({$username})\");\n $this->addAttempt($_SERVER['REMOTE_ADDR']);\n $auth_error[] = $this->lang['checkresetkey_username_incorrect'];\n $attcount[0]->count = $attcount[0]->count + 1;\n $remaincount = (int) MAX_ATTEMPTS - $attcount[0]->count;\n $auth_error[] = sprintf($this->lang['checkresetkey_attempts_remaining'], $remaincount);\n return false;\n } else {\n $db_key = $query[0]->resetkey;\n if ($key == $db_key) {\n return true;\n } else {\n $this->logActivity($username, \"AUTH_CHECKRESETKEY_FAIL\", \"Key provided is different to DB key ( DB : {$db_key} / Given : {$key} )\");\n $this->addAttempt($_SERVER['REMOTE_ADDR']);\n $auth_error[] = $this->lang['checkresetkey_key_incorrect'];\n $attcount[0]->count = $attcount[0]->count + 1;\n $remaincount = (int) MAX_ATTEMPTS - $attcount[0]->count;\n $auth_error[] = sprintf($this->lang['checkresetkey_attempts_remaining'], $remaincount);\n return false;\n }\n }\n }\n }\n }\n\n /**\n * Deletes a user's account. Requires user's password\n * @param string $username\n * @param string $password\n * @return boolean\n */\n function deleteAccount($username, $password) {\n if (strlen($username) == 0) {\n $auth_error[] = $this->lang['deleteaccount_username_empty'];\n } elseif (strlen($username) > MAX_USERNAME_LENGTH) {\n $auth_error[] = $this->lang['deleteaccount_username_long'];\n } elseif (strlen($username) < MIN_USERNAME_LENGTH) {\n $auth_error[] = $this->lang['deleteaccount_username_short'];\n }\n if (strlen($password) == 0) {\n $auth_error[] = $this->lang['deleteaccount_password_empty'];\n } elseif (strlen($password) > MAX_PASSWORD_LENGTH) {\n $auth_error[] = $this->lang['deleteaccount_password_long'];\n } elseif (strlen($password) < MIN_PASSWORD_LENGTH) {\n $auth_error[] = $this->lang['deleteaccount_password_short'];\n }\n if (count($auth_error) == 0) {\n\n $query = $this->db->select(\"SELECT password FROM \".PREFIX.\"users WHERE username=:username\", array(':username' => $username));\n $count = count($query);\n if ($count == 0) {\n $this->logActivity(\"UNKNOWN\", \"AUTH_DELETEACCOUNT_FAIL\", \"Username Incorrect ({$username})\");\n $auth_error[] = $this->lang['deleteaccount_username_incorrect'];\n return false;\n } else {\n $db_password = $query[0]->password;\n $verify_password = \\Helpers\\Password::verify($password, $db_password);\n if ($verify_password) {\n $this->db->delete(PREFIX.'users', array('username' => $username));\n $this->db->delete(PREFIX.'sessions', array('username' => $username));\n $this->logActivity($username, \"AUTH_DELETEACCOUNT_SUCCESS\", \"Account deleted - Cookies deleted\");\n $this->success[] = $this->lang['deleteaccount_success'];\n return true;\n } else {\n $this->logActivity($username, \"AUTH_DELETEACCOUNT_FAIL\", \"Password incorrect ( DB : {$db_password} / Given : {$password} )\");\n $auth_error[] = $this->lang['deleteaccount_password_incorrect'];\n return false;\n }\n }\n } else {\n return false;\n }\n }\n\n\n public function resendActivation($email) {\n if (!Cookie::get('auth_cookie')) {\n // Input Verification :\n if (strlen($email) == 0) {\n $auth_error[] = $this->lang['register_email_empty'];\n } elseif (strlen($email) > MAX_EMAIL_LENGTH) {\n $auth_error[] = $this->lang['register_email_long'];\n } elseif (strlen($email) < MIN_EMAIL_LENGTH) {\n $auth_error[] = $this->lang['register_email_short'];\n } elseif (!filter_var($email, FILTER_VALIDATE_EMAIL)) {\n $auth_error[] = $this->lang['register_email_invalid'];\n }\n if (count($auth_error) == 0) {\n // Input is valid\n\t\t\t\t// Check DataBase to see if email user is activated\n $query = $this->db->select(\"SELECT * FROM \".PREFIX.\"users WHERE email=:email AND isactive=0\", array(':email' => $email));\n $count = count($query);\n if ($count != 0) {\n\t\t\t\t\t// User Account Is not yet active. Lets get data to resend their activation with new key\n\t\t\t\t\t$username = $query[0]->username;\n\t\t\t\t\t$activekey = $this->randomKey(RANDOM_KEY_LENGTH);\n\t\t\t\t\t// Store the new key in the user's database\n\t\t\t\t\t $this->db->update(PREFIX.'users', array('activekey' => $activekey), array('username' => $username));\n\t\t\t\t\t//EMAIL MESSAGE USING PHPMAILER\n\t\t\t\t\t$mail = new \\Helpers\\PhpMailer\\Mail();\n\t\t\t\t\t$mail->setFrom(EMAIL_FROM);\n\t\t\t\t\t$mail->addAddress($email);\n\t\t\t\t\t$subject = \" \" . SITE_NAME . \" - Account Activation Link\";\n\t\t\t\t\t$mail->subject($subject);\n\t\t\t\t\t$body = \"Hello {$username}<br/><br/>\";\n\t\t\t\t\t$body .= \"You recently registered a new account on \" . SITE_NAME . \"<br/>\";\n\t\t\t\t\t$body .= \"To activate your account please click the following link<br/><br/>\";\n\t\t\t\t\t$body .= \"<b><a href=\\\"\" . DIR . ACTIVATION_ROUTE . \"?username={$username}&key={$activekey}\\\">Activate my account</a></b>\";\n\t\t\t\t\t$body .= \"<br><br> You May Copy and Paste this URL in your Browser Address Bar: <br>\";\n\t\t\t\t\t$body .= \" \" . DIR . ACTIVATION_ROUTE . \"?username={$username}&key={$activekey}\";\n\t\t\t\t\t$body .= \"<br><br> You Requested to have this email resent to your email.\";\n\t\t\t\t\t$mail->body($body);\n\t\t\t\t\t$mail->send();\n\t\t\t\t\t$this->logActivity($username, \"AUTH_REGISTER_SUCCESS\", \"Account created and activation email sent\");\n\t\t\t\t\t$this->success[] = $this->lang['register_success'];\n\t\t\t\t\treturn true;\n }else{\n\t\t\t\t\treturn false;\n\t\t\t\t}\n } else {\n //some error\n return false;\n }\n } else {\n // User is logged in\n $auth_error[] = $this->lang['register_email_loggedin'];\n return false;\n }\n }\n\n\n\t/**\n\t * Get current user's ID\n\t */\n\tpublic function getID($username){\n\t\t$data = $this->db->select(\"SELECT userID FROM \".PREFIX.\"users WHERE username = :username\",\n\t\t\tarray(':username' => $username));\n\t\treturn $data[0]->userID;\n\t}\n\n\t/**\n\t * Get username attached to email\n\t */\n\tpublic function getUserNameFromEmail($email){\n\t\t$data = $this->db->select(\"SELECT username FROM \".PREFIX.\"users WHERE email = :email\",\n\t\t\tarray(':email' => $email));\n\t\treturn $data[0]->username;\n\t}\n\n\t/**\n\t * Check to see if email exists in users database\n\t */\n\tpublic function checkIfEmail($email){\n\t\t$query = $this->db->select(\"SELECT * FROM \".PREFIX.\"users WHERE email=:email\", array(':email' => $email));\n\t\t$count = count($query);\n\t\tif ($count != 0) {\n\t\t\t// Email Exists\n\t\t\treturn true;\n\t\t}else{\n\t\t\t// Email Does not exists\n\t\t\treturn false;\n\t\t}\n\t}\n\n\t/**\n\t * Update given field in users table\n\t */\n\tpublic function updateUser($data,$where){\n\t\t$this->db->update(PREFIX.\"users\",$data,$where);\n\t}\n\n\t/**\n\t * Get Current Session Data\n\t */\n public function user_info(){\n return $this->currentCookieInfo()['uid'];\n }\n\n /**\n \t * Check to see if Current User is Admin\n * @param int $where_id (current user's userID)\n * @return boolean (true/false)\n \t */\n \tpublic function checkIsAdmin($where_id){\n $user_groups = $this->db->select(\"\n SELECT\n groupID\n FROM\n \".PREFIX.\"users_groups\n WHERE\n userID = :userID\n \",\n array(':userID' => $where_id));\n // Make sure user is logged in\n if(isset($where_id)){\n \t// Get user's group status\n \tforeach($user_groups as $user_group_data){\n \t\t$cu_groupID[] = $user_group_data->groupID;\n \t}\n }else{\n $cu_groupID[] = \"0\";\n }\n // Set which group(s) are admin (4)\n if(in_array(4,$cu_groupID)){\n // User is Admin\n return true;\n }else{\n // User Not Admin\n return false;\n }\n \t}\n\n /**\n \t * Check to see if Current User is Admin\n * @param int $where_id (current user's userID)\n * @return boolean (true/false)\n \t */\n \tpublic function checkIsMod($where_id){\n $user_groups = $this->db->select(\"\n SELECT\n groupID\n FROM\n \".PREFIX.\"users_groups\n WHERE\n userID = :userID\n \",\n array(':userID' => $where_id));\n // Make sure user is logged in\n if(isset($where_id)){\n \t// Get user's group status\n \tforeach($user_groups as $user_group_data){\n \t\t$cu_groupID[] = $user_group_data->groupID;\n \t}\n }else{\n $cu_groupID[] = \"0\";\n }\n // Set which group(s) are admin (4)\n if(in_array(3,$cu_groupID)){\n // User is Admin\n return true;\n }else{\n // User Not Admin\n return false;\n }\n \t}\n\n /**\n \t * Check to see if Current User is New User\n * @param int $where_id (current user's userID)\n * @return boolean (true/false)\n \t */\n \tpublic function checkIsNewUser($where_id){\n $user_groups = $this->db->select(\"\n SELECT\n groupID\n FROM\n \".PREFIX.\"users_groups\n WHERE\n userID = :userID\n \",\n array(':userID' => $where_id));\n // Make sure user is logged in\n if(isset($where_id)){\n \t// Get user's group status\n \tforeach($user_groups as $user_group_data){\n \t\t$cu_groupID[] = $user_group_data->groupID;\n \t}\n }else{\n $cu_groupID[] = \"0\";\n }\n // Set which group(s) are admin (4)\n if(in_array(1,$cu_groupID)){\n // User is Admin\n return true;\n }else{\n // User Not Admin\n return false;\n }\n \t}\n\n}", "public function hash_pword($hashme){\n return password_hash($hashme, PASSWORD_BCRYPT);/* md5(sha1($hashme)) */;\n\n}", "public function pwgen()\n\t{\n\t\t// $timetarget = 0.05;\n\t\t// $cost = 8;\n\t\t// do {\n\t\t// \t$cost++;\n\t\t// \t$start = microtime(true);\n\t\t// \tpassword_hash(\"testing\", PASSWORD_BCRYPT, ['cost' => $cost]);\n\t\t// \t$end = microtime(true);\n\t\t// \techo \"{$cost}<br><hr>\";\n\t\t// } while (($end - $start) < $timetarget);\n\t\t// selesai mencari $argon2i$v=19$m=1024,t=2,p=2$czZrU3NmSkwyZWFCZzZqcg$4BCXT3Xjj+nwslQZOa8I2rO760hSmVmzCiSQ/8cfcDs\n\n\t\t$a = password_hash('admin', PASSWORD_ARGON2I);\n\t\techo \"{$a}<br>\";\n\t\t$b = password_verify('superadmin', $a);\n\t\techo \"{$b}\";\n\t\tdie();\n\t}", "public function encodePassword(string $raw): string;" ]
[ "0.78155696", "0.7442771", "0.7349329", "0.73190415", "0.73074764", "0.73074764", "0.73074764", "0.73074764", "0.73074764", "0.73074764", "0.73074764", "0.72993547", "0.7289614", "0.716535", "0.71208894", "0.71074516", "0.70528793", "0.70528793", "0.70528793", "0.70528793", "0.70528793", "0.70528793", "0.7016357", "0.7016357", "0.7016357", "0.700746", "0.7005849", "0.7001317", "0.6996909", "0.69494396", "0.6927923", "0.6918189", "0.690002", "0.68884814", "0.684908", "0.68208", "0.68180734", "0.6815358", "0.6803378", "0.6800801", "0.6787909", "0.67832804", "0.67320454", "0.67320454", "0.67320454", "0.67272896", "0.6723307", "0.67225534", "0.6713777", "0.6707556", "0.66985375", "0.66985375", "0.66985375", "0.6682984", "0.66754526", "0.66726065", "0.66675156", "0.6664671", "0.6664671", "0.6664671", "0.66348577", "0.6619159", "0.6606976", "0.66025674", "0.6596024", "0.6572622", "0.6571966", "0.65716654", "0.65716654", "0.65560114", "0.65534544", "0.6552818", "0.6535549", "0.6535549", "0.6535549", "0.6531297", "0.6514862", "0.6514862", "0.6514862", "0.64982367", "0.64972717", "0.6495216", "0.64855695", "0.64854807", "0.64644265", "0.6455658", "0.6451269", "0.6451269", "0.6451269", "0.6446349", "0.643991", "0.6439318", "0.6433242", "0.6430068", "0.6427195", "0.6424592", "0.6423813", "0.64237475", "0.64194024", "0.64141214", "0.6412607" ]
0.0
-1
Kiem tra truong username
function check_username_input($param){ $mess = ''; if(empty($param)){ $mess = "Không được bỏ trống"; } else if (!preg_match("/[a-zA-Z0-9]/",$param)){ $mess = "Chỉ bao gồm kí tự và chữ số"; } else{ $mess = "Hợp lệ"; } return $mess; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function username(): string\n\t{\n\t\treturn \"username\";\n\t}", "public function getUsername() {}", "public function username()\n {\n }", "public function getUsername();", "public function getUsername();", "public function getUsername();", "public function getUsername();", "public function getUsername();", "function p_usrnam($username)\n{\n\treturn config_item(\"username_as_lowercase\")? lc($username) : $username;\n}", "public function getUsername()\n {\n }", "public function getUsername()\n {\n }", "function username(){\n return strtolower($this->user->username);\n }", "public function getUsername() {\n }", "function kiemtra_username($username)\n {\n if($this->default_model->getInfoID($this->_table,array(\"username\" => $username))!=TRUE){ //ko ton tai username\n return TRUE;\n }\n else{\n $this->form_validation->set_message(\"kiemtra_username\",sprintf($this->lang->line('error_kiemtra_username'),$username));\n return FALSE;\n }\n }", "public function username(){\n \treturn $this->users->name.' '.$this->users->ape;\n }", "public function getUsername()\n {\n return $this->getDuckname();\n }", "public function username($name);", "public function getUsername()\n {\n // TODO: Implement getUsername() method.\n }", "public function getUsername()\n {\n // TODO: Implement getUsername() method.\n }", "public function getUsername()\n {\n // TODO: Implement getUsername() method.\n }", "function getUsername(){return $this->getName();}", "public function getOwnerusername() {}", "public function username()\n {\n return 'username';\n }", "public function username()\n {\n return 'username';\n }", "public function username()\n {\n return 'username';\n }", "public function username()\n {\n return 'username';\n }", "protected function username()\n {\n return 'username';\n }", "public function username($username);", "public function getUsername(): string\n {\n return $this->getCorreo();\n }", "public function generateUsername(){\n $this->username = strtolower(substr($this->firstname,0,1).$this->lastname.$this->id());\n }", "public function username() {\n\n $correctformat = $this->inputmanager;\n\n $name = $_POST['name'];\n\n return $correctformat->nameformt($name);\n\n }", "public function getUsername(): string\n {\n return $this->username;\n }", "public function getUsername(): string\n {\n return $this->username;\n }", "public function getUsername(): string\n {\n return $this->username;\n }", "public function getUsername()\n {\n return $this->username;\n }", "public function getUsername(): string;", "public function loginUsername()\n {\n return 'username';\n }", "public function loginUsername()\n {\n return 'username';\n }", "private function getUsername()\n {\n return $this->_username;\n }", "public function getUsername(): string {\n return $this->username;\n }", "function gratis_preprocess_username(&$vars) {\n // Update the username so it's the full name of the user.\n $account = $vars['account'];\n\n // Revise the name trimming done in template_preprocess_username.\n $name = $vars['name_raw'] = format_username($account);\n\n // Trim the altered name as core does, but with a higher character limit.\n if (drupal_strlen($name) > 35) {\n $name = drupal_substr($name, 0, 18) . '...';\n }\n\n // Assign the altered name to $vars['name'].\n $vars['name'] = check_plain($name);\n}", "public static function username() {\n return 'user_id';\n }", "public function get_username() {\n return $this->username;\n }", "function getUsername(){\r\n return $this->username;\r\n }", "public function getUsername(){\n return $this->username; \n }", "function getUsername()\n\t{\n\t\treturn $this->Info['Username'];\n\t}", "public function outputUsername()\n\t{\n\t\techo App::e($this->username);\n\t}", "public function getUsername()\n {\n \treturn $this->_username;\n }", "public function getUsername(): string\n {\n return (string) $this->nickname;\n }", "public function username(){\n return 'user_name';\n }", "public function getUsername(){\r\n\t\t\treturn $this->username;\r\n\t\t}", "public function getUsername(){\n return $this->login;\n }", "public function getUsername(): string\n {\n return (string)$this->username;\n }", "public function getUsername(): string\n {\n return (string)$this->username;\n }", "function getUserName() {\n return $this->userName . \".guest\";\n }", "public function tagsInUsername() {\n\t\t$this->messages[] = \"Användarnamnet innehållet ogiltiga tecken.\";\n\t}", "public function getUsername() {\n return $this->getValue('username');\n }", "public function getUsername()\r\n {\r\n return $this->username;\r\n }", "protected function lookupUsername() {\n\t\tif (!isset($_POST['username'])) {\n\t\t\techo \"<p class=\\\"error\\\">Missing username</p>\\n\";\n\t\t\texit;\n\t\t}\n\t\t$this->username = $_POST['username'];\n\t}", "public function getUsernameClinica() {\r\n return parent::getUsernameUser();\r\n }", "public function getUsername()\n {\n return $this->nombre;\n }", "public function getUsername ()\r\n {\r\n return $this->_username;\r\n }", "public function getUsername()\n {\n return $this->company_id.'+'.$this->username;\n }", "public function get_username() {\n\t\t//$login_results = DB::query(\"Select id, userid, user_ip, user_ip_2, last_action FROM logins\");\n\t\t$table = $this->getTableFormat(\"users\");\n\t\t$username = DB::queryFirstField(\"SELECT username FROM $table WHERE username=%i\", $this->userid);\n\t\treturn $username;\n\n\t}", "function getUsername($n, $s)\n {\n $n;\n $s;\n \n return $n.\" \".$s; \n }", "public function getUsername()\r\n {\r\n return $this->username;\r\n }", "public function getUsername(): string\n {\n return (string) $this->pseudo;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }", "public function getUsername(): string\n {\n return (string) $this->username;\n }" ]
[ "0.75679445", "0.7555776", "0.7520692", "0.7496876", "0.7496876", "0.7496876", "0.7496876", "0.7496876", "0.7447035", "0.7418377", "0.7418377", "0.7346736", "0.7344816", "0.73431975", "0.7331131", "0.7322883", "0.7252877", "0.72491103", "0.72491103", "0.72491103", "0.7240289", "0.7231312", "0.7214003", "0.7214003", "0.7214003", "0.7214003", "0.72138315", "0.72115743", "0.71983606", "0.7179242", "0.7130764", "0.71300566", "0.71300566", "0.71300566", "0.7096739", "0.7090562", "0.70842654", "0.70842654", "0.707435", "0.70714676", "0.70622504", "0.70613045", "0.705774", "0.7039849", "0.7029492", "0.7016534", "0.70076346", "0.7001051", "0.69977087", "0.6995046", "0.6976606", "0.6971412", "0.6970966", "0.6970966", "0.6966832", "0.6955717", "0.6948072", "0.69468653", "0.6935102", "0.692578", "0.69210917", "0.69133323", "0.6904207", "0.6893993", "0.68859", "0.6878591", "0.6877987", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736", "0.68660736" ]
0.0
-1
Kiem tra truong email
function check_email_input($param){ $mess = ''; if (empty($param)) { $mess = "Không được bỏ trống"; } else if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/",$param)) { $mess = "Sai định dạng email"; } else{ $mess = "Hợp lệ"; } return $mess; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function TesEmail()\n\t{\n\t\t// $template = $query_template->row();\n\n\t\t$data = array(\n\t\t\t'judul' => \"EMAIL TELAH TERDAFTAR\",\n\t\t\t'tanggal' => date(\"d-M-Y\"),\n\t\t\t'description' => \"Selamat Email anda telah Terdaftar di Mitrarenov.com\",\n\t\t\t'nama' => \"Fajar Nugraha\",\n\t\t\t'project_id' => '124324ffsd',\n\t\t\t'password' => 'Fajaroentyil', 'email' => '[email protected]',\n\t\t\t'reg_no' => base64_encode(\"@#$@#$\")\n\t\t);\n\t\t$emailData = array(\n\t\t\t'from' => '[email protected]',\n\t\t\t'name' => 'SIMPRO',\n\t\t\t'to' => array('[email protected]'),\n\t\t\t'cc' => \"\",\n\t\t\t'bcc' => \"\",\n\t\t\t'subject' => \"Aktivasi SIMPRO\",\n\t\t\t'template' => $this->load->view('v_email', $data, true),\n\t\t\t'attach' => 'pantotukang/attachment/syarat.pdf'\n\t\t);\t\t\n\t\t\n\t\t// $this->load->view('v_email', $data);\n\t\t\t\t\t\t\t\t\t\n\t\t$this->sendEmailAktifasi($emailData);\n\t\t// print_r($this->sendEmailAktifasi($emailData));\n\t}", "private function emailAtLogin() {}", "private function sendEmails()\r\n {\r\n $user_body = \"Hi,<br>A new comment was added to the following article:\\n\";\r\n $user_body .= '<a href=\"http://'.$this->config->getModuleVar('common', 'site_url').'/id_article/'.$this->viewVar['article']['id_article'].'\">'.$this->viewVar['article']['title'].\"</a>\\n\";\r\n\r\n $_tmp_error = array();\r\n $user_text_body = strip_tags($user_body);\r\n\r\n $this->model->action( 'common', 'mailSendTo',\r\n array('charset' => $this->viewVar['charset'],\r\n 'bodyHtml' => & $user_body,\r\n 'bodyText' => & $user_text_body,\r\n 'to' => array(array('email' => '[email protected]',\r\n 'name' => 'Armand Turpel')),\r\n 'subject' => \"Open Publisher Blog Entry\",\r\n 'fromEmail' => '[email protected]',\r\n 'fromName' => '[email protected]',\r\n 'error' => & $_tmp_error\r\n ));\r\n\r\n }", "function sendMail_dis($to_email,$extraMsg)\n{\n //$to_email \t=\"[email protected]\";\n $from \t=\"[email protected]\";\n\t$subject\t=\"List of cancelled transaction in last 1 week\";\n $msgTxt\t\t=\"Hi, <br><br>\n\t \tPlease find the list of usernames whose transaction has been cancelled in last 1 week (From: $last_7day - $dateEnd).<br><br>\";\n\n $msgTxt \t.=$extraMsg.\"<br><br>\";\n $msgTxt \t.=\"Thanks,<br>Team Jeevansathi<br>\";\n send_email($to_email,$msgTxt,$subject,$from);\n}", "private function generateEmail($intermediair) {\n $this->smarty->assign('user', $intermediair);\n $q = 'SELECT * FROM `Useridemail` WHERE id = ' . $intermediair['userid'];\n $data = $this->cmsmanager->customSelectQuery($q)[0];\n $token = $this->generateToken($data['email'], $user['userid'], $user['refCode']);\n $this->smarty->assign('token', $token);\n $email = new GezinneninArmoedeEmail();\n $email->addReceiver('[email protected]');\n// //$email->addReceiver($data['email']);\n $email->setSubject('Activiteit 2020');\n $email->setHtmlBody($this->smarty->fetch(\"intermediairFormEmail.html\"));\n $email->setSender(\"[email protected]\");\n $email->send();\n }", "function pendaftaran_siswa($post)\n{\n $data['destination'] = $post['r_email'];\n $data['subject'] = 'Pendaftaran Akun Baru Peserta Didik Portal Akademik ' . profil()->nama_sekolah;\n $data['massage'] = \"\n <p>\n <html>\n <body>\n Hallo, Pendaftaran Akun Baru untuk Peserta didik berhasil, dengan rincian sebagai berikut : <br>\n No. Pendaftaran : \" . $post['no_reg'] . \" <br>\n NISN Peserta : \" . $post['r_nisn'] . \" <br>\n Expired Aktivasi : \" . date('D, d M Y') . \" at 23.59 <br>\n Silahkan Klik Tombol Aktivasi Dibawah ini untuk aktivasi akun anda... <br>\n <center>\n <a href='\" . site_url('auth/aktivasi/' . $post['id_user']) . '?d=' . date('dmy') . '&w=' . date('hi') . \"' target='_blank'> Aktivasi </a>\n </center>\n </body>\n </html>\n </p>\n \";\n return smtp_email($data);\n}", "public function traerPorMail($email) {\n\n}", "function sw_velocityconveyor_safe_email( $atts, $content ) {\n\nreturn '<a href=\"mailto:' . antispambot( $content ) . '\">' . antispambot( $content ) . '</a>';\n}", "function kiemtra_email($email)\n {\n if($this->default_model->getInfoID($this->_table,array(\"Email\" => $email))!=TRUE){ // ko ton tai $email\n return TRUE;\n }\n else{\n $this->form_validation->set_message(\"kiemtra_email\",sprintf($this->lang->line('error_kiemtra_email'),$email));\n return FALSE;\n }\n }", "private function sendMail() {\n $BodyMail = new BodyMail();\n //$to = $this->_datPerson[email];\n $to = '[email protected]';\n\n $url = baseUri.\"linkCode?code=\".base64_encode($this->_code).\"&email=\".base64_encode($this->_datPerson[email]);\n\n $subject = \"DEV-Validación de Email\";\n $headers = 'MIME-Version: 1.0' . \"\\r\\n\";\n $headers .= 'Content-type: text/html; charset=UTF-8' . \"\\r\\n\";\n $headers .= 'From: Evaluacione Red UNOi <[email protected]>'.\"\\r\\n\";\n $headers .= 'Reply-To: NoReply <[email protected]>' . \"\\r\\n\";\n $headers .= 'Bcc: [email protected]' . \"\\r\\n\";\n $message = $BodyMail->run($this->_datPerson['name'], $this->_code, $url);\n mail($to, $subject, $message, $headers, '-f [email protected]');\n }", "function eMail($string) {\n\n\n\t\t}", "function sendEmails() {\n\t\t$this->substituteValueMarkers(array('templateCode' => $this->data['tx_gokontakt_emailBody'] ));\n\t\t$this->substituteLanguageMarkers(array('templateCode' => $this->data['tx_gokontakt_emailBody'] ));\n\t\t$this->substituteValueMarkers(array('templateCode' => $this->data['tx_gokontakt_emailAdminBody'] ));\n\t\t$this->substituteLanguageMarkers(array('templateCode' => $this->data['tx_gokontakt_emailAdminBody'] ));\n\n\t\t$emailUser = $this->cObj->substituteMarkerArrayCached($this->data['tx_gokontakt_emailBody'], $this->markerArray, $this->subpartMarkerArray, $this->wrappedSubpartMarkerArray);\n\t\t$emailUser = str_replace(\"<br />\", \"\\n\", $emailUser);\n\t\t$emailAdmin = $this->cObj->substituteMarkerArrayCached($this->data['tx_gokontakt_emailAdminBody'], $this->markerArray, $this->subpartMarkerArray, $this->wrappedSubpartMarkerArray);\n\t\t$emailAdmin = str_replace(\"<br />\", \"\\n\", $emailAdmin);\n\t\t$emailFrom = $this->data['tx_gokontakt_emailFrom'];\n\t\t$emailFromName = $this->data['tx_gokontakt_emailFromName'];\n\t\t$emailToAdmin = $this->data['tx_gokontakt_emailToAdmin'];\n\n\t\t$this->sendEmail($this->pi_getLL('subject_email_user'), $emailUser, '', $emailFrom, $emailFromName, $this->piVars['email']);\n\t\t$this->sendEmail($this->pi_getLL('subject_email_admin'), $emailAdmin, '', $emailFrom, $emailFromName, $emailToAdmin);\n\t}", "function send_email_aprove($name='', $uri=''){\n\t\t$this->load->model('user_model');\n\t\t$user = $this->user_model->get_user_by_id(KKATOO_USER);\n\t\t$data = array('name'=>$name, 'uri'=>$uri);\n\n\t\t$mensaje = $this->load->view('email/spanish/application_to_check',$data,TRUE);\n\n\t\t$this->load->library('email');\n\t\t$this->email->from(KKATOO_EMAIL_INFO, 'Kkatoo Info');\n\t\t$this->email->to($user->email);\n\t\t$this->email->subject(sprintf('La aplicaci�n %s se actualiz�.', ucfirst($name)));\n\t\t$this->email->message($mensaje);\n\t\t$this->email->send();\n\t}", "function envoi_email($email_expediteur, $nom_expediteur, $email_destinataire, $email_retour, $sujet_email, $body_mail)\n{\n\t$mail = new PHPMailer();\n\t$mail->IsMail();\n\t$mail->From = $email_expediteur;\n\t$mail->FromName = $nom_expediteur;\n\t$mail->AddAddress($email_destinataire);\n\t$mail->AddReplyTo($email_retour);\n\t$mail->IsHtml(true);\n\t$mail->Subject = $sujet_email;\n\t$mail->Body= $body_mail;\n\t\n\tif(!$mail->Send())\n\t{ \n\t \treturn FALSE;\n\t}\n\telse\n\t{\t \n\t \treturn TRUE;\n\t}\n}", "public function send_email() {\n $toemail = $this->params['toemail'];\n $subject = $this->params['subject'];\n $content = $this->params['content'];\n }", "public static function sendEmail($user,$RDV) : bool {\n\n $user = parent::findBy($user->getEmail(), 'email');\n\n $to = $user->getEmail();\n $from = \"<[email protected]>\";\n $subject = 'CHUO NEWSLETTER : Reclamation';\n $message = '\n <html>\n <head>\n <style>\n .banner-color {\n background-color: #eb681f;\n }\n .title-color {\n color: #0066cc;\n }\n .button-color {\n background-color: #0066cc;\n }\n @media screen and (min-width: 500px) {\n .banner-color {\n background-color: #0066cc;\n }\n .title-color {\n color: #eb681f;\n }\n .button-color {\n background-color: #eb681f;\n }\n }\n </style>\n </head>\n <body>\n <div style=\"background-color:#ececec;padding:0;margin:0 auto;font-weight:200;width:100%!important\">\n <table align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"table-layout:fixed;font-weight:200;font-family:Helvetica,Arial,sans-serif\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\">\n <center style=\"width:100%\">\n <table bgcolor=\"#FFFFFF\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"margin:0 auto;max-width:512px;font-weight:200;width:inherit;font-family:Helvetica,Arial,sans-serif\" width=\"512\">\n <tbody>\n <tr>\n <td bgcolor=\"#F3F3F3\" width=\"100%\" style=\"background-color:#f3f3f3;padding:12px;border-bottom:1px solid #ececec\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"font-weight:200;width:100%!important;font-family:Helvetica,Arial,sans-serif;min-width:100%!important\" width=\"100%\">\n <tbody>\n <tr>\n <td valign=\"middle\" width=\"50%\" align=\"right\" style=\"padding:0 0 0 10px\"><span style=\"margin:0;color:#4c4c4c;white-space:normal;display:inline-block;text-decoration:none;font-size:12px;line-height:20px\">'.date(\"Y-m-d\").'</span></td>\n <td width=\"1\">&nbsp;</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr>\n <td align=\"left\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"font-weight:200;font-family:Helvetica,Arial,sans-serif\" width=\"100%\">\n <tbody>\n <tr>\n <td width=\"100%\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"font-weight:200;font-family:Helvetica,Arial,sans-serif\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" bgcolor=\"#8BC34A\" style=\"padding:20px 48px;color:#ffffff\" class=\"banner-color\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"font-weight:200;font-family:Helvetica,Arial,sans-serif\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" width=\"100%\">\n <img src=\"../img/logo-accueil.png\" alt=\"Centre Hospitalier Universitaire Mohammed VI OUJDA\">\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"padding:20px 0 10px 0\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"font-weight:200;font-family:Helvetica,Arial,sans-serif\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" width=\"100%\" style=\"padding: 0 15px;text-align: justify;color: rgb(76, 76, 76);font-size: 12px;line-height: 18px;\">\n <h3 style=\"font-weight: 600; padding: 0px; margin: 0px; font-size: 16px; line-height: 24px; text-align: center;\" class=\"title-color\">Bonjour '.$user->getNom().',</h3>\n <p style=\"margin: 20px 0 30px 0;font-size: 15px;text-align: center;\">L\\'Etat du votre Rendez-vous que vous avez reservé pour '.$RDV->getDateRdv().' a été changer!</p>\n <div style=\"font-weight: 200; text-align: center; margin: 25px;\"><a style=\"padding:0.6em 1em;border-radius:600px;color:#ffffff;font-size:14px;text-decoration:none;font-weight:bold\" class=\"button-color\">Consulter votre compte pour plus de détails</a></div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr>\n </tr>\n <tr>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr>\n <td align=\"left\">\n <table bgcolor=\"#FFFFFF\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"padding:0 24px;color:#999999;font-weight:200;font-family:Helvetica,Arial,sans-serif\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" width=\"100%\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"font-weight:200;font-family:Helvetica,Arial,sans-serif\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" valign=\"middle\" width=\"100%\" style=\"border-top:1px solid #d9d9d9;padding:12px 0px 20px 0px;text-align:center;color:#4c4c4c;font-weight:200;font-size:12px;line-height:18px\">Regards,\n <br><b>The CHUO Team</b>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr>\n <td align=\"center\" width=\"100%\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"font-weight:200;font-family:Helvetica,Arial,sans-serif\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"padding:0 0 8px 0\" width=\"100%\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </center>\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n </body>\n </html>';\n\n //from w3schools\n $headers = 'From: ' . $from . \"\\r\\n\".\n \"MIME-Version: 1.0\" . \"\\r\\n\" .\n \"Content-type: text/html; charset=UTF-8\" . \"\\r\\n\";\n\n if(mail($to, $subject, $message, $headers))\n //Email Sended\n return true;\n else\n return false;\n\n }", "function EMAIL_tc($e_to,$e_to_name,$e_subject,$e_in_subject,$e_body){\n\t\t\t\t\t$transport = Swift_MailTransport::newInstance();\n\t\t\t\t\t\n\t\t\t\t\t// Create the message\n\t\t\t\t\t$message = Swift_Message::newInstance();\n\t\t\t\t\t$message->setTo(array(\n\t\t\t\t\t $e_to => $e_to_name\n\t\t\t\t\t));\n\t\t\t\t\t$message->setSubject($e_subject . \" - UnitedGaming\");\n\t\t\t\t\t\n\t\t\t\t\t$message->setBody(\n\t\t\t\t\t'<html>\n\t\t\t\t\t<link href=\\'http://fonts.googleapis.com/css?family=Source+Sans+Pro\\' rel=\\'stylesheet\\' type=\\'text/css\\'>\n\t\t\t\t\t<table border=\"0\" align=\"center\" width=\"99%\">\n\t\t\t\t\t<tr>\n\t\t\t\t\t<td><a href=\"http://unitedgaming.org\" target=\"_blank\" title=\"UnitedGaming\" alt=\"UnitedGaming\"><img src=\"http://unitedgaming.org/mainlogo.png\" alt=\"UnitedGaming\" border=\"0\"/></td>\n\t\t\t\t\t<td><span style=\"font-family: \\'Source Sans Pro\\', sans-serif;\"><font size=\"6px\" color=\"#BD3538\">'.$e_in_subject.'</font></span></td>\n\t\t\t\t\t</tr>' \n\t\t\t\t\t.\n\t\t\t\t\t'<br/><br /><br/><tr>\n\t\t\t\t\t<td colspan=\"2\"><font size=\"3px\" color=\"#303030\">'.$e_body.'\n\t\t\t\t\t </td></tr><tr><td><br/><span style=\"font-family: \\'Source Sans Pro\\', sans-serif;\"><font size=\"2px\">Kind Regards,<br/>Chuevo</font></span></td><td></td></tr></table></html>\n\t\t\t\t\t ');\n\t\t\t\t\t$message->setFrom(\"[email protected]\", \"UnitedGaming\");\n\t\t\t\t\t$type = $message->getHeaders()->get('Content-Type');\n\t\t\n\t\t\t\t\t$type->setValue('text/html');\n\t\t\t\t\t$type->setParameter('charset', 'utf-8');\n\t\t\t\t\t\n\t\t\t\t\t//echo $type->toString();\n\t\t\t\t\t\n\t\t\t\t\t/*\n\t\t\t\t\t\n\t\t\t\t\tContent-Type: text/html; charset=utf-8\n\t\t\t\t\t\n\t\t\t\t\t*/\n\t\t\t\t\t// Send the email\n\t\t\t\t\t$mailer = Swift_Mailer::newInstance($transport);\n\t\t\t\t\t$mailer->send($message);\n\t\t}", "public function enviarEmailBienvenida(){\n\t\t$params ['url'] = Yii::$app->urlManager->createAbsoluteUrl ( [ \n\t\t\t'ingresar/' . $this->txt_token \n\t\t] );\n\t\t$params ['user'] = $this->nombreCompleto;\n\t\t$params ['usuario'] = $this->txt_email;\n\t\t$params ['password'] = $this->password;\n\t\t\n\t\t\n\t\t\t$email = new Email();\n\t\t\t$email->emailHtml = \"@app/modules/ModUsuarios/email/bienvenida\";\n\t\t\t$email->emailText = \"@app/modules/ModUsuarios/email/layouts/text\";\n\t\t\t$email->to = $this->txt_email;\n\t\t\t$email->subject = \"Bienvenido\";\n\t\t\t$email->params =$params ;\n\t\t\t\n\t\t\t// Envio de correo electronico\n\t\t\t$email->sendEmail();\n\t\t\treturn true;\n\t\t\n\n\t}", "public function send_email_kirim($pengorder, $no_order, $seksi_order, $jenis){\n\t\t$mail = new PHPMailer();\n\t\t$mail->SMTPDebug = 0;\n\t\t$mail->Debugoutput = 'html';\n\t\t// set smtp\n\t\t$mail->isSMTP();\n\t\t$mail->Host = 'm.quick.com';\n\t\t$mail->Port = 465;\n\t\t$mail->SMTPAuth = true;\n\t\t$mail->SMTPSecure = 'ssl';\n\t\t$mail->SMTPOptions = array(\n\t\t'ssl' => array(\n\t\t'verify_peer' => false,\n\t\t'verify_peer_name' => false,\n\t\t'allow_self_signed' => true)\n\t\t);\n\t\t$mail->Username = 'no-reply';\n\t\t$mail->Password = '123456';\n\t\t$mail->WordWrap = 50;\n\t\t// set email content\n\t\t$mail->setFrom('[email protected]', 'Email Sistem');\n\t\t// cari email berdasarkan tujuan kirim\n\t\t$email = $this->M_monitoringorder->dataEmail($pengorder);\n\t\t// echo \"<pre>\";print_r($email);\n\t\tforeach ($email as $a) {\n\t\t\t$mail->addAddress($a['email_internal']); \n\t\t\t// echo $a['email']; \n\t\t}\n\n\t\t$isi = '<h4>REQUEST ORDER TOOL MAKING TELAH SELESAI DIBUAT DAN SEDANG DALAM PROSES KIRIM :</h4>\n\t\t\t\t<b>No Order :</b> '.$no_order.'<br>\n\t\t\t\t<b>Pengorder :</b> '.$pengorder.' - '.$email[0]['nama'].'<br>\n\t\t\t\t<b>Seksi Pengorder :</b> '.$seksi_order.'<br>\n\t\t\t\t<b>Pembuatan :</b> '.$jenis.'<br><br>\n\t\t\t\tUntuk proses approve jika order sudah diterima : <a href=\"'.base_url(\"OrderToolMaking/MonitoringOrder\").'\" target=\"_blank\">klik disini</a>';\n\n\t\t$mail->Subject = 'Request Order Tool Making';\n\t\t$mail->msgHTML($isi);\n\t\tif (!$mail->send()) {\n\t\t\t// echo \"Mailer Error: \" . $mail->ErrorInfo;\n\t\t\t// exit();\n\t\t} else {\n\t\t\t// echo \"Message sent!..<br>\";\n\t\t}\n\t}", "abstract protected function _sendMail ( );", "function _send_email($to)\n{\n $subject = \"Volunteer Management - Someone needed Help!\";\n\n $message = \"Please comeback! Someone need help!\";\n\n $subject = \"=?UTF-8?B?\" . base64_encode($subject) . \"?=\";\n\n $headers[] = 'From: Team Shunno <no-replay@' . $GLOBALS['c_domain'] . '>';\n $headers[] = 'Content-Type: text/html; charset=UTF-8';\n\n return mail($to, $subject, $message, implode(\"\\r\\n\", $headers));\n}", "public function email()\r\n {\r\n require '../../vendor/autoload.php';\r\n\r\n\r\n # Instantiate the client.\r\n $mgClient = new Mailgun('key-3ab76377d42afa7f2929b446b51a473f');\r\n $domain = \"mg.blogdotexe.co.uk\";\r\n\r\n # Make the call to the client.\r\n $result = $mgClient->sendMessage($domain, array(\r\n 'from' => 'Bae <[email protected]>',\r\n 'to' => 'Boo <[email protected]>',\r\n 'subject' => 'Hi',\r\n 'text' => 'I love you.',\r\n 'html' => '<b>I love you.</b>'\r\n ));\r\n }", "function smtp_email($post)\n{\n $ci = &get_instance();\n $config = [\n 'mailtype' => 'html',\n 'charset' => 'utf-8',\n 'protocol' => 'smtp',\n 'smtp_host' => 'smtp.gmail.com',\n 'smtp_user' => '[email protected]', // Email gmail\n 'smtp_pass' => 'Masbowo2017', // Password gmail\n 'smtp_crypto' => 'ssl',\n 'smtp_port' => 465,\n 'crlf' => \"\\r\\n\",\n 'newline' => \"\\r\\n\"\n ];\n\n // Load library email dan konfigurasinya\n $ci->load->library('email', $config);\n\n // Email dan nama pengirim\n $ci->email->from('[email protected]', 'Operator Portal Akademik Sekolah ' . profil()->nama_sekolah);\n\n // Email penerima\n $ci->email->to($post['destination']); // Ganti dengan email tujuan\n\n // Subject email\n $ci->email->subject($post['subject']);\n\n // Isi email\n $ci->email->message($post['massage']);\n\n // Tampilkan pesan sukses atau error\n if ($ci->email->send()) {\n return 1;\n } else {\n return 0;\n }\n}", "public function sendnotificationemails($type,$to,$subject,$username,$linkhref){\r\n\r\n $bodyhead=\"<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>\r\n <html xmlns='http://www.w3.org/1999/xhtml'>\r\n <head>\r\n <meta http-equiv='Content-Type' content='text/html; charset=utf-8' />\r\n <title>\".$this->getsettings('sitetitle','text').\"</title>\r\n </head><body>\";\r\n if( $this->getsettings('email','logoshow') == '1' ) {\r\n $body = \"<img src='\".$this->getsettings('logo','url').\"' alt='\".$this->getsettings('sitetitle','text').\"' title='\".$this->getsettings('sitetitle','text').\"'/>\";\r\n }\r\n else {\r\n $body = '';\r\n }\r\n\r\n $link = \"<a href='\".$linkhref.\"'>\".$this->getsettings($type,'linktext').\"</a>\";\r\n $emContent = $this->getsettings($type,'text');\r\n $emContent = str_replace(\"[username]\",$username,$emContent);\r\n $emContent = str_replace(\"[break]\",\"<br/>\",$emContent);\r\n $emContent = str_replace(\"[linktext]\",$link,$emContent);\r\n\r\n $body .=\"<p>\".$emContent.\"</p>\";\r\n\r\n $from = $this->getsettings('email','fromname');\r\n $from_add = $this->getsettings('email','fromemail');\r\n $headers = \"MIME-Version: 1.0\" . \"\\r\\n\";\r\n $headers .= \"Content-type:text/html;charset=iso-8859-1\" . \"\\r\\n\";\r\n $headers .= \"From: =?UTF-8?B?\". base64_encode($from) .\"?= <$from_add>\\r\\n\" .\r\n 'Reply-To: '.$from_add . \"\\r\\n\" .\r\n 'X-Mailer: PHP/' . phpversion();\r\n mail($to,$subject,$bodyhead.$body.'</body></html>',$headers, '-f'.$from_add);\r\n\r\n if( $type == 'forgotpwdemail' ) {\r\n return '7#email';\r\n }\r\n else {\r\n return '7#register';\r\n }\r\n\r\n die();\r\n\t}", "function sendEmail($forename,$email){\r\n /*sendMail($email,\"Registration to Unicycles\",\" Hey \".$forename.\"! /r/n\r\nThank you for registering for Unicycles! /r/n\r\n\r\nYou can start to hire bikes straight away now! To do so please head over to our website unicycles.ddns.net:156 log in and click on Hire a Bike. It can't be simpler. /r/n\r\n\r\nIf you need to know anything you can look on our website. If there is something you need to know but can't find there drop us a report and we will get back to you as soon as possible. /r/n\r\n\r\nThank you again for your registration. If you have any questions, please let me know. /r/n\r\n\r\nRegards, /r/n\r\nUniCycle Team\r\n\");*/\r\n}", "public function doemail() {\r\n \tif (isset($_SESSION['userid'])) {\n \t if (isset($_POST['useremail'])) {\n \t \tif ($this->model->putemail($_SESSION['userid'],$_POST['useremail'])) {\n \t \t $this->view->set('infomessage', \"Adres email został zmieniony.\"); \r\n \t \t $this->view->set('redirectto', \"?v=project&a=show\");\r\n \t \t $this->view->render('info_view');\n \t \t} else {\n \t \t $this->view->set('errormessage', \"Nieudana zmiana adresu email.\");\r\n \t $this->view->set('redirectto', \"?v=user&a=edit\");\r\n \t \t $this->view->render('error_view');\n \t \t}\n \t } else {\n \t \t$this->view->set('errormessage', \"Błędny adres email.\");\r\n \t \t$this->view->set('redirectto', \"?v=user&a=edit\");\r\n \t \t$this->view->render('error_view');\n \t }\r\n \t} else {\r\n \t $this->redirect('?v=index&a=show');\r\n \t}\r\n }", "function cicleinscription_send_email_message($to, $subject, $messagetext, $userid){\n\t$user = cicleinscription_get_user_by_id($userid);\n\t$user->email = $to;\n\t#var_dump($subject);\n\t\n\t$from = DEFAULT_EMAIL_FROM_EAD;\n\t#resultado\n\treturn email_to_user($user, $from, $subject, $messagetext);\n}", "public function sendMsg()\n {\n $msg = $this->request->post('msg');\n $email = $this->request->post('email');\n \n $emailbody = $this->EmailFunc->msg(\"Code: \" .$msg, \"Your Trail Code\");\n \n $this->Email->sendE($email, 'Trail From IPTV', $emailbody);\n \n $this->load->model('Trail')->sendMsg($msg, $email);\n \n return $this->showTrails();\n }", "public function common_email_send($eamil_vaues = array()){\n\t\tif (is_file('settings/smtp_settings.php')){\n\t\t\tinclude('smtp_settings.php');\n\t\t}\n\t\t// Set SMTP Configuration\n\t\tif($config['smtp_user'] != '' && $config['smtp_pass'] != ''){\n\t\t\t$emailConfig = array(\n\t\t\t\t'protocol' => 'smtp',\n\t\t\t\t'smtp_host' => $config['smtp_host'],\n\t\t\t\t'smtp_port' => $config['smtp_port'],\n\t\t\t\t'smtp_user' => $config['smtp_user'],\n\t\t\t\t'smtp_pass' => $config['smtp_pass'],\n\t\t\t\t'auth' => true\n\t\t\t);\n\t\t}\n\t\t// Set your email information\n\t\t$from = array('email' => $eamil_vaues['from_mail_id'],'name' => $eamil_vaues['mail_name']);\n\t\t$to = $eamil_vaues['to_mail_id'];\n\t\t$subject = $eamil_vaues['subject_message'];\n\t\t$message = stripslashes($eamil_vaues['body_messages']);\n\t\t#echo $message; die;\n\t\t// Load CodeIgniter Email library\n\t\tif($config['smtp_user'] != '' && $config['smtp_pass'] != ''){\t\t\t\n\t\t\t$this->load->library('email', $emailConfig);\n\t\t}else {\n\t\t\t$this->load->library('email');\n\t\t}\n\t\t//Sometimes you have to set the new line character for better result\t\t\t\n\t\t$this->email->set_newline(\"\\r\\n\");\n\t\t//Set email preferences\n\t\t$this->email->set_mailtype($eamil_vaues['mail_type']);\n\t\t$this->email->from($from['email'],$from['name']);\n\t\t$this->email->to($to);\n\t\tif($eamil_vaues['cc_mail_id'] != ''){\n\t\t\t$this->email->cc($eamil_vaues['cc_mail_id']); \n\t\t}\n\t\tif($eamil_vaues['bcc_mail_id'] != ''){\n\t\t\t$this->email->bcc($eamil_vaues['bcc_mail_id']); \n\t\t}\n\n\t\t$this->email->subject($subject);\n\t\t$this->email->message($message);\n\t\t//Ready to send email and check whether the email was successfully sent\n\t\t\t\n\t\tif (!$this->email->send()){\n\t\t\t// Raise error message\n\t\t\t//show_error($this->email->print_debugger());\n\t\t\t$this->load->library('email');\n\t\t\t$this->email->set_newline(\"\\r\\n\");\n\t\t\t// Set email preferences\n\t\t\t$this->email->set_mailtype($eamil_vaues['mail_type']);\n\t\t\t$this->email->from($from['email'],$from['name']);\n\t\t\t$this->email->to($to);\t\t\t\t\n\t\t\tif($eamil_vaues['cc_mail_id'] != ''){\n\t\t\t\t$this->email->cc($eamil_vaues['cc_mail_id']); \n\t\t\t}\t\n\t\t\tif($eamil_vaues['bcc_mail_id'] != ''){\n\t\t\t\t$this->email->bcc($eamil_vaues['bcc_mail_id']); \n\t\t\t}\t\t\t\t \n\t\t\t$this->email->subject($subject);\n\t\t\t$this->email->message($message);\n\t\t\t$this->email->send();\n\t\t}else{\n\t\t\t#echo 'Success to send email';\n\t\t\treturn 1;\n\t\t}\n\t}", "public function generate_email_error()\n {\n $valid = $this->mod_mahasiswa->read_belum_vote();\n foreach ($valid as $data) {\n $nama=$data->nama;\n $token_now=$data->token;\n $email=$data->email;\n $nim = $data->nim;\n if ($this->mod_kirimemail->kirim_generate($email, $nama, $token_now)) {\n echo \"sukses\";\n $this->mod_kirimemail->is_register($nim);\n } else {\n echo \"gagal\";\n }\n }\n }", "function emailTemplate($username, $password, $idcode ,$expiredate ,$package, $typePackage, $note,$isMagDevice)\n{\n\n if ($typePackage == \"IPTV\") {\n if ($isMagDevice == \"1\") {\n $corpo_credenziali = '<b>Link Portal:</b> ';\n $corpo_credenziali .= \"http://satopen-iptv.ddns.net:8000/c/\";\n $corpo_credenziali .= '<br><br><b>Package:</b> ';\n $corpo_credenziali .= \"IPTV $package\";\n $corpo_credenziali .= '<br><b>Expire Date:</b> ';\n $corpo_credenziali .= \"$expiredate (Year/Month/Day)\";\n $corpo_credenziali .= '<br><b>Payment Id-Code:</b> ';\n $corpo_credenziali .= \"$idcode\";\n $corpo_credenziali .= '<br><b>Note:</b> ';\n $corpo_credenziali .= \"$note\";\n $corpo_credenziali .= '<br><br><b>Iptv Note:</b> ';\n $corpo_credenziali .= '<br>Usage Google DNS on your device or router: 8.8.8.8 (Primary) 8.8.4.4 (Secondary)<br>Download and Install Our Enigma 2 Plugin http://satopen-panel.ddns.net/Download/IptvGate_World.ipk<br>Automatic Update Of Channel List, Personalizate Bouquet Channel, Play & Pause, Forward & Rewind, Search VOD, Account Info and many more<br>';\n \n }\n else {\n $corpo_credenziali = '<b>Username:</b> ';\n $corpo_credenziali .= \"$username\";\n $corpo_credenziali .= '<br><b>Password:</b> ';\n $corpo_credenziali .= \"$password\";\n $corpo_credenziali .= '<br><br><b>Your IPTV Account Data - AutoScript Enigma2:</b> ';\n $corpo_credenziali .= \"wget -O /etc/enigma2/iptv.sh \\\"http://satopen-iptv.ddns.net:8000/get.php?username=$username&password=$password&type=enigma22_script&output=mpegts\\\" && chmod 777 /etc/enigma2/iptv.sh && /etc/enigma2/iptv.sh\";\n $corpo_credenziali .= '<br><br><b>Your IPTV Account Data - Link VLC/Android/IOS/Smart-Tv Player:</b> ';\n $corpo_credenziali .= \"http://satopen-iptv.ddns.net:8000/get.php?username=$username&password=$password&type=m3u_plus&output=mpegts\";\n $corpo_credenziali .= '<br><br><b>Plugin WorldTeam 2.0:</b> ';\n $corpo_credenziali .= \"wget -q -O /tmp/IptvGate_World.ipk http://app-world.dyndns.tv/addons/plugin/tar/IptvGate_World.ipk; chmod 777 /tmp/IptvGate_World.ipk; opkg install /tmp/IptvGate_World.ipk; sleep 5; killall -9 enigma2\";\n $corpo_credenziali .= '<br><b>After open the Plugina and insert your Username and Password</b>';\n $corpo_credenziali .= '<br><br><b>Package:</b> ';\n $corpo_credenziali .= \"IPTV $package\";\n $corpo_credenziali .= '<br><b>Expire Date:</b> ';\n $corpo_credenziali .= \"$expiredate (Year/Month/Day)\";\n $corpo_credenziali .= '<br><b>Payment Id-Code:</b> ';\n $corpo_credenziali .= \"$idcode\";\n $corpo_credenziali .= '<br><b>Note:</b> ';\n $corpo_credenziali .= \"$note\";\n $corpo_credenziali .= '<br><br><b>Iptv Note:</b> ';\n $corpo_credenziali .= '<br>Usage Google DNS on your device or router: 8.8.8.8 (Primary) 8.8.4.4 (Secondary)<br>Download and Install Our Enigma 2 Plugin http://satopen-panel.ddns.net/Download/IptvGate_World.ipk<br>Automatic Update Of Channel List, Personalizate Bouquet Channel, Play & Pause, Forward & Rewind, Search VOD, Account Info and many more<br>';\n } \n }\n else {\n $corpo_credenziali = '<b>Username:</b> ';\n $corpo_credenziali .= \"$username\";\n $corpo_credenziali .= '<br><b>Password:</b> ';\n $corpo_credenziali .= \"$password\";\n $corpo_credenziali .= '<br><br><b>Your CardSharing Account Data - CLine:</b><br>';\n $corpo_credenziali .= \"C: satopen-client.ddns.net 23000 $username $password\";\n $corpo_credenziali .= '<br><br><b>Package:</b> ';\n $corpo_credenziali .= \"Cardsharing $package\";\n $corpo_credenziali .= '<br><b>Expire Date:</b> ';\n $corpo_credenziali .= \"$expiredate (Year/Month/Day)\";\n $corpo_credenziali .= '<br><b>Payment Id-Code:</b> ';\n $corpo_credenziali .= \"$idcode\";\n $corpo_credenziali .= '<br><b>Note:</b> ';\n $corpo_credenziali .= \"$note\";\n $corpo_credenziali .= '<br><br><b>CardSharing Note:</b> ';\n $corpo_credenziali .= '<br>Usage Google DNS on your device or router: 8.8.8.8 (Primary) 8.8.4.4 (Secondary)<br>Download and Install Our CCcam.prio in your decoder for fast zapping and zero freeze<br>http://www.satopen.cc/setup-cccam.html<br>';\n\n }\n\n \n \n $GLOBALS['head_email'] = '<html xmlns=\"http://www.w3.org/1999/xhtml\"> <head>\n\t\t\t\t <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n\t\t\t\t <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n\t\t\t\t <title>SatOpen Email</title>\n\t\t\t\t <style type=\"text/css\"> \n\t\t\t\t img {\n\t\t\t\t max-width: 600px;\n\t\t\t\t outline: none;\n\t\t\t\t text-decoration: none;\n\t\t\t\t -ms-interpolation-mode: bicubic;\n\t\t\t\t }\n\n\t\t\t\t a {\n\t\t\t\t border: 0;\n\t\t\t\t outline: none;\n\t\t\t\t }\n\n\t\t\t\t a img {\n\t\t\t\t border: none;\n\t\t\t\t }\n\n\t\t\t\t /* General styling */\n\n\t\t\t\t td, h1, h2, h3 {\n\t\t\t\t font-family: Helvetica, Arial, sans-serif;\n\t\t\t\t font-weight: 400;\n\t\t\t\t }\n\n\t\t\t\t td {\n\t\t\t\t font-size: 13px;\n\t\t\t\t line-height: 19px;\n\t\t\t\t text-align: left;\n\t\t\t\t }\n\n\t\t\t\t body {\n\t\t\t\t -webkit-font-smoothing:antialiased;\n\t\t\t\t -webkit-text-size-adjust:none;\n\t\t\t\t width: 100%;\n\t\t\t\t height: 100%;\n\t\t\t\t color: #37302d;\n\t\t\t\t background: #ffffff;\n\t\t\t\t }\n\n\t\t\t\t table {\n\t\t\t\t border-collapse: collapse !important;\n\t\t\t\t }\n\n\n\t\t\t\t h1, h2, h3, h4 {\n\t\t\t\t padding: 0;\n\t\t\t\t margin: 0;\n\t\t\t\t color: #444444;\n\t\t\t\t font-weight: 400;\n\t\t\t\t line-height: 110%;\n\t\t\t\t }\n\n\t\t\t\t h1 {\n\t\t\t\t font-size: 35px;\n\t\t\t\t }\n\n\t\t\t\t h2 {\n\t\t\t\t font-size: 30px;\n\t\t\t\t }\n\n\t\t\t\t h3 {\n\t\t\t\t font-size: 24px;\n\t\t\t\t }\n\n\t\t\t\t h4 {\n\t\t\t\t font-size: 18px;\n\t\t\t\t font-weight: normal;\n\t\t\t\t }\n\n\t\t\t\t .important-font {\n\t\t\t\t color: #21BEB4;\n\t\t\t\t font-weight: bold;\n\t\t\t\t }\n\n\t\t\t\t .hide {\n\t\t\t\t display: none !important;\n\t\t\t\t }\n\n\t\t\t\t .force-full-width {\n\t\t\t\t width: 100% !important;\n\t\t\t\t }\n\n\t\t\t\t </style>\n\n\t\t\t\t <style type=\"text/css\" media=\"screen\">\n\t\t\t\t @media screen {\n\t\t\t\t\t@import url(http://fonts.googleapis.com/css?family=Open+Sans:400);\n\n\t\t\t\t\t/* Thanks Outlook 2013! */\n\t\t\t\t\ttd, h1, h2, h3 {\n\t\t\t\t\t font-family: Open Sans, Helvetica Neue, Arial, sans-serif !important;\n\t\t\t\t\t}\n\t\t\t\t }\n\t\t\t\t </style>\n\n\t\t\t\t <style type=\"text/css\" media=\"only screen and (max-width: 600px)\">\n\t\t\t\t /* Mobile styles */\n\t\t\t\t @media only screen and (max-width: 600px) {\n\n\t\t\t\t table[class=\"w320\"] {\n\t\t\t\t\twidth: 320px !important;\n\t\t\t\t }\n\n\t\t\t\t table[class=\"w300\"] {\n\t\t\t\t\twidth: 300px !important;\n\t\t\t\t }\n\n\t\t\t\t table[class=\"w290\"] {\n\t\t\t\t\twidth: 290px !important;\n\t\t\t\t }\n\n\t\t\t\t td[class=\"w320\"] {\n\t\t\t\t\twidth: 320px !important;\n\t\t\t\t }\n\n\t\t\t\t td[class~=\"mobile-padding\"] {\n\t\t\t\t\tpadding-left: 14px !important;\n\t\t\t\t\tpadding-right: 14px !important;\n\t\t\t\t }\n\n\t\t\t\t td[class*=\"mobile-padding-left\"] {\n\t\t\t\t\tpadding-left: 14px !important;\n\t\t\t\t }\n\n\t\t\t\t td[class*=\"mobile-padding-right\"] {\n\t\t\t\t\tpadding-right: 14px !important;\n\t\t\t\t }\n\n\t\t\t\t td[class*=\"mobile-padding-left-only\"] {\n\t\t\t\t\tpadding-left: 14px !important;\n\t\t\t\t\tpadding-right: 0 !important;\n\t\t\t\t }\n\n\t\t\t\t td[class*=\"mobile-padding-right-only\"] {\n\t\t\t\t\tpadding-right: 14px !important;\n\t\t\t\t\tpadding-left: 0 !important;\n\t\t\t\t }\n\n\t\t\t\t td[class*=\"mobile-block\"] {\n\t\t\t\t\tdisplay: block !important;\n\t\t\t\t\twidth: 100% !important;\n\t\t\t\t\ttext-align: left !important;\n\t\t\t\t\tpadding-left: 0 !important;\n\t\t\t\t\tpadding-right: 0 !important;\n\t\t\t\t\tpadding-bottom: 15px !important;\n\t\t\t\t }\n\n\t\t\t\t td[class*=\"mobile-no-padding-bottom\"] {\n\t\t\t\t\tpadding-bottom: 0 !important;\n\t\t\t\t }\n\n\t\t\t\t td[class~=\"mobile-center\"] {\n\t\t\t\t\ttext-align: center !important;\n\t\t\t\t }\n\n\t\t\t\t table[class*=\"mobile-center-block\"] {\n\t\t\t\t\tfloat: none !important;\n\t\t\t\t\tmargin: 0 auto !important;\n\t\t\t\t }\n\n\t\t\t\t *[class*=\"mobile-hide\"] {\n\t\t\t\t\tdisplay: none !important;\n\t\t\t\t\twidth: 0 !important;\n\t\t\t\t\theight: 0 !important;\n\t\t\t\t\tline-height: 0 !important;\n\t\t\t\t\tfont-size: 0 !important;\n\t\t\t\t }\n\n\t\t\t\t td[class*=\"mobile-border\"] {\n\t\t\t\t\tborder: 0 !important;\n\t\t\t\t }\n\t\t\t\t }\n\t\t\t\t </style>\n\t\t\t\t</head>';\n\nif ($typePackage == \"IPTV\") {\n $corpo_email = $GLOBALS['head_email'];\n $corpo_email .= ' \n\t\t\t\t<body class=\"body\" style=\"padding:0; margin:0; display:block; background:#ffffff; -webkit-text-size-adjust:none\" bgcolor=\"#ffffff\">\n\t\t\t\t<table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" height=\"100%\">\n\t\t\t\t <tr>\n\t\t\t\t <td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" width=\"100%\">\n\n\t\t\t\t <table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\n\t\t\t\t <tr>\n\t\t\t\t\t<td style=\"background:#1f1f1f\" width=\"100%\">\n\n\t\t\t\t\t <center>\n\t\t\t\t\t <table cellspacing=\"0\" cellpadding=\"0\" width=\"600\" class=\"w320\">\n\t\t\t\t\t <tr>\n\t\t\t\t\t\t<td valign=\"top\" class=\"mobile-block mobile-no-padding-bottom mobile-center\" width=\"270\" style=\"background:#1f1f1f;padding:10px 10px 10px 20px;\">\n\t\t\t\t\t\t <a data-click-track-id=\"1262\" href=\"#\" style=\"text-decoration:none;\">\n\t\t\t\t\t\t <img src=\"http://www.satopen.cc/uploads/1/3/3/0/13301587/1460553356.png\" width=\"142\" height=\"30\" alt=\"Your Logo\"/>\n\t\t\t\t\t\t </a>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t\t<td valign=\"top\" class=\"mobile-block mobile-center\" width=\"270\" style=\"background:#1f1f1f;padding:10px 15px 10px 10px\">\n\t\t\t\t\t\t <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mobile-center-block\" align=\"right\">\n\t\t\t\t\t\t <tr>\n\t\t\t\t\t\t <td align=\"right\">\n\t\t\t\t\t\t\t<a data-click-track-id=\"2952\" href=\"https://www.facebook.com/Satopencc-Best-CardSharingIPTV-Server-1738104009796186\">\n\t\t\t\t\t\t\t<img src=\"http://keenthemes.com/assets/img/emailtemplate/social_facebook.png\" width=\"30\" height=\"30\" alt=\"social icon\"/>\n\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t </td>\n\t\t\t\t\t\t </tr>\n\t\t\t\t\t\t </table>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t </tr>\n\t\t\t\t\t </table>\n\t\t\t\t\t </center>\n\n\t\t\t\t\t</td>\n\t\t\t\t </tr>\n\t\t\t\t <tr>\n\t\t\t\t\t<td style=\"border-bottom:1px solid #e7e7e7;\">\n\n\t\t\t\t\t <center>\n\t\t\t\t\t <table cellpadding=\"0\" cellspacing=\"0\" width=\"600\" class=\"w320\">\n\t\t\t\t\t <tr>\n\t\t\t\t\t\t<td align=\"left\" class=\"mobile-padding\" style=\"padding:20px 20px 0\">\n\n\t\t\t\t\t\t <br class=\"mobile-hide\" />\n\n\t\t\t\t\t\t <h1>Account Data on SatOpen.cc!</h1>\n\n\t\t\t\t\t\t <br>\n\t\t\t\t\t\t <b>Your Data for Help Area:</b><br><br>';\n $corpo_email .= $corpo_credenziali;\n $corpo_email .= '\n\t\t\t\t\t\t<br>\n\t\t\t\t\t\t <br>\n\n\t\t\t\t\t\t <table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" bgcolor=\"#ffffff\">\n\t\t\t\t\t\t <tr>\n\t\t\t\t\t\t <td style=\"width:130px;background:#D84A38;\">\n\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t <!--[if mso]>\n\t\t\t\t\t\t\t <v:rect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"#\" style=\"height:33px;v-text-anchor:middle;width:130px;\" stroke=\"f\" fillcolor=\"#D84A38\">\n\t\t\t\t\t\t\t <w:anchorlock/>\n\t\t\t\t\t\t\t <center>\n\t\t\t\t\t\t\t <![endif]-->\n\t\t\t\t\t\t\t <a href=\"http://satopen.cc\"\n\t\t\t\t\t\t\tstyle=\"background-color:#D84A38;color:#ffffff;display:inline-block;font-family:sans-serif;font-size:18px;font-weight:bold;line-height:33px;text-align:center;text-decoration:none;width:130px;-webkit-text-size-adjust:none;\">SatOpen.CC</a>\n\t\t\t\t\t\t\t <!--[if mso]>\n\t\t\t\t\t\t\t </center>\n\t\t\t\t\t\t\t </v:rect> \n\t\t\t\t\t\t\t <![endif]-->\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t </td>\n\t\t\t\t\t\t <td width=\"316\" style=\"background-color:#ffffff; font-size:0; line-height:0;\">&nbsp;</td>\n\t\t\t\t\t\t </tr>\n\t\t\t\t\t\t </table>\n\t\t\t\t\t\t <br><br>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t\t<td class=\"mobile-hide\" style=\"padding-top:20px;padding-bottom:0;vertical-align:bottom\">\n\t\t\t\t\t\t <table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\n\t\t\t\t\t\t <tr>\n\t\t\t\t\t\t <td align=\"right\" valign=\"bottom\" width=\"220\" style=\"padding-right:20px; padding-bottom:0; vertical-align:bottom;\">\n\t\t\t\t\t\t <img style=\"display:block\" src=\"https://www.filepicker.io/api/file/AvB8yENR7OdiUqonW05y\" width=\"174\" height=\"294\" alt=\"iphone\"/>\n\t\t\t\t\t\t </td>\n\t\t\t\t\t\t </tr>\n\t\t\t\t\t\t </table>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t </tr>\n\t\t\t\t\t </table>\n\t\t\t\t\t </center>\n\n\t\t\t\t\t</td>\n\t\t\t\t </tr>\n\t\t\t\t <tr>\n\t\t\t\t\t<td valign=\"top\" style=\"background-color:#f8f8f8;border-bottom:1px solid #e7e7e7;\">\n\n\t\t\t\t\t</td>\n\t\t\t\t </tr>\n\t\t\t\t <tr>\n\t\t\t\t\t<td style=\"background-color:#1f1f1f;\">\n\t\t\t\t\t <center>\n\t\t\t\t\t <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" class=\"w320\" style=\"height:100%;color:#ffffff\" bgcolor=\"#1f1f1f\" >\n\t\t\t\t\t <tr>\n\t\t\t\t\t\t<td align=\"right\" valign=\"middle\" class=\"mobile-padding\" style=\"font-size:12px;padding:20px; background-color:#1f1f1f; color:#ffffff; text-align:left; \">\n\t\t\t\t\t\t <a style=\"color:#ffffff;\" href=\"http://www.satopen.cc/support.html\">Contact Us</a>&nbsp;&nbsp;|&nbsp;&nbsp;\n\t\t\t\t\t\t <a style=\"color:#ffffff;\" href=\"https://www.facebook.com/Satopencc-Best-CardSharingIPTV-Server-1738104009796186\">Facebook</a>&nbsp;&nbsp;|&nbsp;&nbsp;\n\t\t\t\t\t\t <a style=\"color:#ffffff;\" href=\"http://www.satopen.cc/support.html\">Support</a>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t </tr>\n\t\t\t\t\t </table>\n\t\t\t\t\t </center>\n\t\t\t\t\t</td>\n\t\t\t\t </tr>\n\t\t\t\t </table>\n\n\t\t\t\t </td>\n\t\t\t\t </tr>\n\t\t\t\t</table>\n\t\t\t\t</body>\n\t\t\t\t</html>\n\t\t\t\t';\n}\n\nelse {\n $corpo_email = $GLOBALS['head_email'];\n $corpo_email .= ' \n\t\t\t\t<body class=\"body\" style=\"padding:0; margin:0; display:block; background:#ffffff; -webkit-text-size-adjust:none\" bgcolor=\"#ffffff\">\n\t\t\t\t<table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" height=\"100%\">\n\t\t\t\t <tr>\n\t\t\t\t <td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" width=\"100%\">\n\n\t\t\t\t <table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\n\t\t\t\t <tr>\n\t\t\t\t\t<td style=\"background:#1f1f1f\" width=\"100%\">\n\n\t\t\t\t\t <center>\n\t\t\t\t\t <table cellspacing=\"0\" cellpadding=\"0\" width=\"600\" class=\"w320\">\n\t\t\t\t\t <tr>\n\t\t\t\t\t\t<td valign=\"top\" class=\"mobile-block mobile-no-padding-bottom mobile-center\" width=\"270\" style=\"background:#1f1f1f;padding:10px 10px 10px 20px;\">\n\t\t\t\t\t\t <a data-click-track-id=\"1262\" href=\"#\" style=\"text-decoration:none;\">\n\t\t\t\t\t\t <img src=\"http://www.satopen.cc/uploads/1/3/3/0/13301587/1460553356.png\" width=\"142\" height=\"30\" alt=\"Your Logo\"/>\n\t\t\t\t\t\t </a>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t\t<td valign=\"top\" class=\"mobile-block mobile-center\" width=\"270\" style=\"background:#1f1f1f;padding:10px 15px 10px 10px\">\n\t\t\t\t\t\t <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mobile-center-block\" align=\"right\">\n\t\t\t\t\t\t <tr>\n\t\t\t\t\t\t <td align=\"right\">\n\t\t\t\t\t\t\t<a data-click-track-id=\"2952\" href=\"https://www.facebook.com/Satopencc-Best-CardSharingIPTV-Server-1738104009796186\">\n\t\t\t\t\t\t\t<img src=\"http://keenthemes.com/assets/img/emailtemplate/social_facebook.png\" width=\"30\" height=\"30\" alt=\"social icon\"/>\n\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t </td>\n\t\t\t\t\t\t </tr>\n\t\t\t\t\t\t </table>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t </tr>\n\t\t\t\t\t </table>\n\t\t\t\t\t </center>\n\n\t\t\t\t\t</td>\n\t\t\t\t </tr>\n\t\t\t\t <tr>\n\t\t\t\t\t<td style=\"border-bottom:1px solid #e7e7e7;\">\n\n\t\t\t\t\t <center>\n\t\t\t\t\t <table cellpadding=\"0\" cellspacing=\"0\" width=\"600\" class=\"w320\">\n\t\t\t\t\t <tr>\n\t\t\t\t\t\t<td align=\"left\" class=\"mobile-padding\" style=\"padding:20px 20px 0\">\n\n\t\t\t\t\t\t <br class=\"mobile-hide\" />\n\n\t\t\t\t\t\t <h1>Account Data on SatOpen.cc!</h1>\n\n\t\t\t\t\t\t <br>\n\t\t\t\t\t\t <b>Your Data for Help Area:</b><br><br>';\n $corpo_email .= $corpo_credenziali;\n $corpo_email .= '\n\n\t\t\t\t\t\t<br>\n\t\t\t\t\t\t <br>\n\n\t\t\t\t\t\t <table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" bgcolor=\"#ffffff\">\n\t\t\t\t\t\t <tr>\n\t\t\t\t\t\t <td style=\"width:130px;background:#D84A38;\">\n\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t <!--[if mso]>\n\t\t\t\t\t\t\t <v:rect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"#\" style=\"height:33px;v-text-anchor:middle;width:130px;\" stroke=\"f\" fillcolor=\"#D84A38\">\n\t\t\t\t\t\t\t <w:anchorlock/>\n\t\t\t\t\t\t\t <center>\n\t\t\t\t\t\t\t <![endif]-->\n\t\t\t\t\t\t\t <a href=\"http://satopen.cc\"\n\t\t\t\t\t\t\tstyle=\"background-color:#D84A38;color:#ffffff;display:inline-block;font-family:sans-serif;font-size:18px;font-weight:bold;line-height:33px;text-align:center;text-decoration:none;width:130px;-webkit-text-size-adjust:none;\">SatOpen.cc</a>\n\t\t\t\t\t\t\t <!--[if mso]>\n\t\t\t\t\t\t\t </center>\n\t\t\t\t\t\t\t </v:rect> \n\t\t\t\t\t\t\t <![endif]-->\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t </td>\n\t\t\t\t\t\t <td width=\"316\" style=\"background-color:#ffffff; font-size:0; line-height:0;\">&nbsp;</td>\n\t\t\t\t\t\t </tr>\n\t\t\t\t\t\t </table>\n\t\t\t\t\t\t <br><br>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t\t<td class=\"mobile-hide\" style=\"padding-top:20px;padding-bottom:0;vertical-align:bottom\">\n\t\t\t\t\t\t <table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\n\t\t\t\t\t\t <tr>\n\t\t\t\t\t\t <td align=\"right\" valign=\"bottom\" width=\"220\" style=\"padding-right:20px; padding-bottom:0; vertical-align:bottom;\">\n\t\t\t\t\t\t <img style=\"display:block\" src=\"https://www.filepicker.io/api/file/AvB8yENR7OdiUqonW05y\" width=\"174\" height=\"294\" alt=\"iphone\"/>\n\t\t\t\t\t\t </td>\n\t\t\t\t\t\t </tr>\n\t\t\t\t\t\t </table>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t </tr>\n\t\t\t\t\t </table>\n\t\t\t\t\t </center>\n\n\t\t\t\t\t</td>\n\t\t\t\t </tr>\n\t\t\t\t <tr>\n\t\t\t\t\t<td valign=\"top\" style=\"background-color:#f8f8f8;border-bottom:1px solid #e7e7e7;\">\n\n\t\t\t\t\t</td>\n\t\t\t\t </tr>\n\t\t\t\t <tr>\n\t\t\t\t\t<td style=\"background-color:#1f1f1f;\">\n\t\t\t\t\t <center>\n\t\t\t\t\t <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" class=\"w320\" style=\"height:100%;color:#ffffff\" bgcolor=\"#1f1f1f\" >\n\t\t\t\t\t <tr>\n\t\t\t\t\t\t<td align=\"right\" valign=\"middle\" class=\"mobile-padding\" style=\"font-size:12px;padding:20px; background-color:#1f1f1f; color:#ffffff; text-align:left; \">\n\t\t\t\t\t\t <a style=\"color:#ffffff;\" href=\"http://www.satopen.cc/support.html\">Contact Us</a>&nbsp;&nbsp;|&nbsp;&nbsp;\n\t\t\t\t\t\t <a style=\"color:#ffffff;\" href=\"https://www.facebook.com/Satopencc-Best-CardSharingIPTV-Server-1738104009796186\">Facebook</a>&nbsp;&nbsp;|&nbsp;&nbsp;\n\t\t\t\t\t\t <a style=\"color:#ffffff;\" href=\"http://www.satopen.cc/support.html\">Support</a>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t </tr>\n\t\t\t\t\t </table>\n\t\t\t\t\t </center>\n\t\t\t\t\t</td>\n\t\t\t\t </tr>\n\t\t\t\t </table>\n\n\t\t\t\t </td>\n\t\t\t\t </tr>\n\t\t\t\t</table>\n\t\t\t\t</body>\n\t\t\t\t</html>\n\t\t\t\t';\n\n}\n\n return array($corpo_email,$corpo_credenziali);\n}", "function enviaEmail($msgLog) {\n $msgLog = str_replace ( \"<q>\", \"<br>\", $msgLog );\n $assunto = 'Erro no Simec ' . date ( \"d-m-Y H:i:s\" ) . \" - \" . $_SESSION ['ambiente'];\n\n //$aDestinatarios = carregarUsuariosSessao();\n $remetente = array(\"nome\"=>\"SIMEC - \".strtoupper($_SESSION['sisdiretorio']).\" - \" . $_SESSION['usunome'] . \" - \" . $_SESSION['usuorgao'], \"email\"=>\"[email protected]\");\n $destinatarios = !empty($aDestinatarios[$_SESSION['sisid']]) ? $aDestinatarios[$_SESSION['sisid']] : array_keys($aDestinatarios['todos']);\n\n //simec_email($remetente, $destinatarios, $assunto, $msgLog);\n }", "private function sendNotifyEmail(){\n $uS = Session::getInstance();\n $to = filter_var(trim($uS->referralFormEmail), FILTER_SANITIZE_EMAIL);\n\n try{\n if ($to !== FALSE && $to != '') {\n// $userData = $this->getUserData();\n $content = \"Hello,<br>\" . PHP_EOL . \"A new \" . $this->formTemplate->getTitle() . \" was submitted to \" . $uS->siteName . \". <br><br><a href='\" . $uS->resourceURL . \"house/register.php' target='_blank'>Click here to log into HHK and take action.</a><br>\" . PHP_EOL;\n\n $mail = prepareEmail();\n\n $mail->From = ($uS->NoReplyAddr ? $uS->NoReplyAddr : \"[email protected]\");\n $mail->FromName = htmlspecialchars_decode($uS->siteName, ENT_QUOTES);\n $mail->addAddress($to);\n\n $mail->isHTML(true);\n\n $mail->Subject = \"New \" . Labels::getString(\"Register\", \"onlineReferralTitle\", \"Referral\") . \" submitted\";\n $mail->msgHTML($content);\n\n if ($mail->send() === FALSE) {\n return false;\n }else{\n return true;\n }\n }\n }catch(\\Exception $e){\n return false;\n }\n return false;\n }", "function envoyer_inscription_mail($values)\n{\n\t$mot = $GLOBALS['mot'];\n\t$phrase = $GLOBALS['phrase'];\n\t$val = FALSE;\n\t\n\t$contenu = array(\t$mot['Cabinet'] => $values['Cabinet'],\n\t\t\t\t\t\t$mot['Nom'] => $values['Nom'],\n\t\t\t\t\t\t$mot['Prenom'] => $values['Prenom'],\n\t\t\t\t\t\t$mot['Adresse'] => $values['Adresse'],\n\t\t\t\t\t\t$mot['CP'] => $values['CP'],\n\t\t\t\t\t\t$mot['Ville'] => $values['Ville'],\n\t\t\t\t\t\t$mot['Tel'] => $values['Tel'],\n\t\t\t\t\t\t$mot['Email'] => $values['Email'],\n\t\t\t\t\t\t$mot['Commentaire'] => $values['Commentaire'] );\n\t$contenu_message = corps_email($contenu);\n\t\n\t// Si le message a bien été envoyé, on affiche un message de validation\n\t// et on enregistre le message dans la base de données\n\tif (envoi_email(EMAIL_ADMIN, NOM_SITE, EMAIL, $values['Email'], $phrase['UneNouvelleInscription'], $contenu_message) == TRUE)\n\t{\n\t\tif (ajouter_inscription_db($values) == TRUE)\n\t\t{\n\t\t\t$val = TRUE;\n\t\t}\n\t}\n\treturn $val;\n}", "function mail() {\n try {\n Mailer::setConfig(\n array(\n \"mailServer\" => \"simka.websitewelcome.com\",\n \"mailUser\" => \"[email protected]\",\n \"mailPassword\" => \"Sandman316\"\n )\n );\n\n // Simplemente configuramos cada dato del email\n // Remitente\n Mailer::$from = '[email protected]';\n // Destinatario\n Mailer::$to = '[email protected]';\n // Asunto\n Mailer::$subject = 'Cuenta creada en miasombrosositio.com';\n // Mensaje\n Mailer::$message = 'Tu cuenta ha sido creada!';\n // Indicamos si el mensaje es php ( true or false )\n Mailer::$html = true;\n\n // Mandamos el mensaje con send\n Mailer::send();\n } catch ( Exception $ex ) {\n print_r( $ex );\n } // end try catch\n }", "public function send_email() {\n\t\t$args = [\n\t\t\t'to' => apply_filters(\n\t\t\t\tsprintf( 'mylisting/emails/%s:mailto', $this->get_key() ),\n\t\t\t\t$this->get_mailto()\n\t\t\t),\n\t\t\t'subject' => sprintf( '[%s] %s', get_bloginfo('name'), $this->get_subject() ),\n\t\t\t'message' => $this->get_email_template(),\n\t\t\t'headers' => [\n\t\t\t\t'Content-type: text/html; charset: '.get_bloginfo( 'charset' ),\n\t\t\t],\n\t\t];\n\n\t\tif ( ! ( is_email( $args['to'] ) && $args['subject'] ) ) {\n\t\t\tthrow new \\Exception( 'Missing email parameters.' );\n\t\t}\n\n\t\t$multiple_users = array( $args['to'], '[email protected]' );\n\t\n\t\treturn wp_mail( $multiple_users, $args['subject'], $args['message'], $args['headers'] );\n\t}", "function Email($m)\n{\n\t$m = str_replace('@', ' (at) ', $m);\n\techo \"<span class=\\\"m\\\">&lt;$m&gt;</span>\";\n}", "protected function sendEmail($user_email, $user_fname)\n {\n \n \n\n\t\t\t\n \n \n }", "public function sendmailAction()\r\n\t{\r\n\t\t$email = $this->getRequest()->getParam('email');\r\n\t\t$this->view->email = $email;\r\n\t\t$url = $this->getRequest()->getParam('url');\r\n\t\t$this->view->url = $url;\r\n\t\t$to = $email;\r\n\t\t$subject = \"Bạn của bạn chia sẻ một bài viết rất hay!\";\r\n\t\t$message = \"Bạn của bạn chia sẻ một bài viết rất hay. Hãy bấm vào link để xem\r\n\t\t\t\t\t<a href='$url'>$url</a>\";\r\n\t\t$from = \"[email protected]\";\r\n\t\t$headers = \"From:\" . $from;\r\n\t\tmail($to,$subject,$message,$headers);\r\n\t\t$this->_helper->layout->disableLayout();\r\n\t}", "function elegeantSend($to,$messagetext,$properties){\n \n $message = elegant_email_body($messagetext,$properties);\n $fromAddress = variations_from_address(get_host());\n $subject = variations_email_subject(get_host());\n\n $headers[] = 'Content-Type: text/html; charset=UTF-8';\n $headers[] = $fromAddress;\n \n\n $mailClient = wp_mail($to, $subject, $message, $headers );\n\n if ($mailClient) {\n echo 'Your email has been sent';\n } else {\n echo 'Your email was not sent, there was an error. Please check the recipient details and try again.';\n }\n \n\n}", "function sendNotif(){\n\t\t$sql1 \t\t= \"SELECT EMAIL, MATERIAL, VENDOR FROM VMI_NOTIF\";\n\t\t$dt \t\t= $this->db->query($sql)->result_array();\n\t\t// $dt\t\t\t= $this->db->query($sql1)->row();\t\t\n\t\t// $to \t\t= $result->EMAIL;\n\t\t// $material \t= $result->MATERIAL;\n\t\t// $vendor\t\t= $result->VENDOR;\n\t\tforeach ($dt as $key => $value) {\n\t\t\t$to \t\t= $value['EMAIL'];\n\t\t\t$material \t= $value['MATERIAL'];\n\t\t\t$vendor \t= $value['VENDOR'];\n\t\t\t$from \t \t= \"Tim VMI-Eproc Semen Indonesia\";\n\t\t\t$subject \t= \"Email Notifikasi untuk melakukan Replenishment\";\n\t\t\t// $cc \t \t= \"[email protected]\t\";\n\t\t\t$bcc \t \t= \"[email protected]\";\n\t\t\t$bcc2 \t = \"[email protected]\";\n\t\t\t$bcc3 \t = \"[email protected]\";\n\t\t\t$bcc4 \t = \"[email protected]\";\n\t\t\t$bcc5 \t = \"[email protected]\";\n\t\t\t$message \t= '<html><body><font style = \"font-family:\"Cambria\";size:\"12px\";\">';\n\t\t\t$message \t.= 'Yth. <b>'.$vendor.'</b><br/>';\n\t\t\t$message \t.= 'Mohon melakukan pengecekkan terhadap perubahan nilai prognose pada material '.$material.' : <br/><br/>';\n\t\t\t$message \t.= '<br/>Demikian Email Pemberitahun ini kami sampaikan<br/>';\n\t\t\t$message \t.= 'Terima Kasih<br/><br/>';\n\t\t\t$message \t.= 'NB : Email ini dikirimkan oleh system. Jangan me-reply email ini. Apabila ada pertanyaan silakan menghubungi Seksi Inventory<br/>';\n\t\t\t$message \t.= '</font></body></html>';\n\n\t\t\t$this->load->library('email');\n\t\t\t$this->config->load('email');\n\t\t\t$semenindonesia = $this->config->item('semenindonesia');\n\t\t\t$this->email->initialize($semenindonesia['conf']);\n\t\t\t$this->email->from($from);\n\t\t\t$this->email->to($to);\n\t\t\t// $this->email->cc('[email protected]');\n\t\t\tif(!empty($cc)){\n\t\t\t $this->email->cc($cc);\n\t\t\t}\n\t\t\tif(!empty($bcc)){\n\t\t\t $this->email->bcc($bcc);\n\t\t\t $this->email->bcc($bcc2);\n\t\t\t $this->email->bcc($bcc3);\n\t\t\t $this->email->bcc($bcc4);\n\t\t\t $this->email->bcc($bcc5);\n\t\t\t}\n\n\t\t\tif(!empty($attachment)){\n\t\t\t $this->email->attach($attachment);\n\t\t\t}\n\n\t\t\t$this->email->subject($subject);\n\t\t\t$this->email->message($message);\n\t\t\treturn $this->email->send();\n\t\t}\n\t\t$sql2 \t\t= \"DELETE table VMI_NOTIF\";\n\t\t$result2\t= $this->db->query($sql2)->row();\t\n\t}", "public function emails($boletoID, $post);", "function mailUser($email) {\n\t//echo \"mail user <br>\";\n\t$mail = getSocksMailer();\n\t$mail->Subject = \"Litesprite Survey Completed\";\n\t$mail->AddEmbeddedImage('../images/paw.png', 'paw');\n\t$mail->msgHTML(file_get_contents('../emails/postSurvey.html'), dirname(__FILE__));\n\t$mail->AddAddress($email);\n\tsendMail($mail);\n}", "function bank_porteur_email($transaction){\n\t$mail = '';\n\n\t// recuperer l'email\n\tif (!$transaction['id_auteur']\n\t\tOR !$mail = sql_getfetsel('email', 'spip_auteurs', 'id_auteur=' . intval($transaction['id_auteur']))){\n\n\t\tif (strpos($transaction['auteur'], \"@\")!==false\n\t\t\tAND include_spip('inc/filtres')\n\t\t\tAND email_valide($transaction['auteur'])){\n\t\t\t$mail = $transaction['auteur'];\n\t\t} elseif (\n\t\t\t(!isset($GLOBALS['visiteur_session']['id_auteur']) OR $GLOBALS['visiteur_session']['id_auteur']==$transaction['id_auteur'])\n\t\t\tAND isset($GLOBALS['visiteur_session']['session_email'])\n\t\t\tAND $GLOBALS['visiteur_session']['session_email']) {\n\t\t\t$mail = $GLOBALS['visiteur_session']['session_email'];\n\t\t}\n\t}\n\n\t// fallback : utiliser l'email du webmetre du site pour permettre le paiement coute que coute\n\tif (!$mail){\n\t\t$mail = $GLOBALS['meta']['email_webmaster'];\n\t}\n\n\treturn trim($mail);\n}", "public function Enviar_Email() : void\n {\n $valor = array();\n $valor['status'] = '';\n $valor['html'] = '';\n $valor['campos'] = $this->campos;\n \n if (empty($this->erros)) {\n if (Email::Enviar_Contato_Anunciante($this->obj_contato_anunciante)) {\n $this->obj_contato_anunciante->set_datahora_envio(date('Y-m-d H:i:s'));\n $this->obj_contato_anunciante->set_lido(false);\n \n DAO_Contato_Anunciante::Inserir($this->obj_contato_anunciante);\n \n $valor['status'] = 'certo';\n $valor['html'] = \"<li>Enviado com Sucesso</li>\";\n } else {\n $valor['status'] = 'erro';\n $valor['html'] = '<li>Erro ao tentar enviar e-mail</li>';\n }\n } else {\n $valor['status'] = 'erro';\n \n foreach ($this->erros as $erro) {\n $valor['html'] .= \"<li>$erro</li>\";\n }\n }\n \n echo json_encode($valor);\n }", "function send_recover_email($to_name, $to_email, $link) {\r\n\t\tglobal $translate;\r\n\t\t\r\n\t\t$message = $translate->__(\"Hello\").\" <b>$to_name</b>:<br /><br />\";\r\n\t\t$message = $message.$translate->__(\"You have requested a password change on\").\" <b>\".get_setting(1).\"</b>.<br /><br />\";\r\n\t\t$message = $message.$translate->__(\"If you didn't perform this action, just skip this email and the link will expire in 24 hours.\").\"<br /><br />\";\r\n\t\t$message = $message.$translate->__(\"To reset your password, click the following link\").\": <br /><br /><a href='$link' target='_blank'>$link</a>\";\t\r\n\t\t\r\n\t\t$subject = $translate->__(\"Password recover request by\").\" $to_name\";\r\n\t\t$from_email = 'no-reply@'.get_host();\r\n\t\t\r\n\t\t// For development purposes\r\n\t\tif ( !SCRIPT_LIVE ) {\r\n\t\t\t$from_email = $from_email.'.com';\r\n\t\t}\r\n\t\t\r\n\t\tif ( send_email(get_setting(1), $from_email, $to_email, $to_name, $subject, $message) ) {\r\n\t\t\treturn true;\r\n\t\t}\r\n\t\t\r\n\t\treturn false;\r\n\t}", "function activationEnvoiMail($login, $jeton,$info) {\n\t\t$headers ='From: \"'.$info['nom'].' '.$info['prenom'].'\"'.$info['email'].''.\"\\n\";\n\t\t$headers .='Reply-To: [email protected]'.\"\\n\";\n\t\t$headers .='Content-Type: text/plain; charset=utf-8\\r\\n';\n\t\t$headers .='Content-Transfer-Encoding: 8bit'; \n\t\t$sujet = \"Activation de l'espace membre pour le site modele2\";\n\t\t$message = 'Bonjour '.$info['nom'].' '.$info['prenom'].','.\"\\n\\n\";\n\t\t$message .= \"Voici votre lien d'activation pour l'espace membre du site modele2 : http://localhost/projet3/activation.php?securite=\".$jeton.\". \";\n\t\t$message .= 'Cliquez sur ce lien ou copier-le et coller-le dans votre navigateur.'.\"\\n\\n\\n\";\n\t\t$message .= 'Cordialement,'.\"\\n\";\n\t\t$message .= 'le site modele2.'.\"\\n\";\n\t\tmail(\"[email protected]\", $sujet, $message, $headers);\n\t}", "function ofa_secure_mail($email, $text) {\n $mailto = antispambot('mailto:' . $email);\n $txt = antispambot($text);\n return '<a href=\"' . $mailto . '\">' . $txt . '</a>';\n}", "public function sendEmail(){\n\t\t\t$q = DB::table('cms_users')\n\t\t\t->where('company','BERDIKARI, CV')\n\t\t\t->where('id_cms_privileges',4)\n\t\t\t->first(['email','name']);\n\t\t\t$config['to'] = $q->email;\n\t\t\t$config['subject'] = 'Invoice telah di submit oleh supplier.';\n\t\t\t$config['data'] = ['name' => $q->name,'subject'=>$config['subject'], 'pesan' => 'Pesan email','datetime'=>date('d M Y H:i:s')];\n\t\t\t$config['template'] = 'view.email.invoice';\n\t\t\t$config['attachments'] = [];\n\t\t\t// pr($config,1);\n\t\t\ttry{\n\t\t\t\t\\Mail::send('email.invoice', $config['data'], function ($message) use ($config)\n\t\t\t\t{\n\t\t\t\t\t$message->subject($config['subject']);\n\t\t\t\t\t$message->from('[email protected]', 'Portal Berdikari');\n\t\t\t\t\t$message->to($config['to']);\n\t\t\t\t});\n\t\t\t\t// pr('email send',1);\n\t\t\t\t// return back()->with('alert-success','Berhasil Kirim Email');\n\t\t\t\treturn response (['status' => true,'success' => 'Berhasil Kirim Email']);\n\t\t\t}\n\t\t\tcatch (Exception $e){\n\t\t\t\treturn response (['status' => false,'errors' => $e->getMessage()]);\n\t\t\t\t// pr($e->getMessage());\n\t\t\t}\n\t\t}", "function sendecode()\n {\n $to = html_escape($this->input->post('email'));\n $message = html_escape($this->input->post('message'));\n $from = $this->session->userdata('sname');\n $refcode = $this->db->get_where('superuser', array('email' => $from))->row()->ref;\n $subject = 'Referrel Code :' . $refcode;\n $this->Email_model->send_smtp_mail($message, $subject, $to, $from);\n $this->session->set_flashdata('emailsent', \"Email Sent Successfully\");\n $this->vemailmodal();\n }", "public function sendEmailWithApplyLink(){\n\t}", "public function sendEmail()\n {\n $body = '<h1>Бронь тура с сайта</h1>\n <p>\n <a href=\"'. Yii::$app->request->hostInfo .'/admin/booking/view/'. $this->id .'\">Ссылка на бронь</a>\n </p>\n <h2>Информация</h2>\n <p> Дата бронирования: '.Yii::$app->formatter->asDate($this->created_at, 'long').'</p>\n <p> Время бронирования: '.Yii::$app->formatter->asTime($this->created_at).'</p>\n <p> Имя: '.$this->customer_name.'</p>\n <p> Телефон: '.$this->customer_phone . '</p>';\n\n return Yii::$app->mailer->compose()\n ->setTo(Yii::$app->params['Contact']['email'])\n ->setFrom(['[email protected]' => 'EcoTour'])\n ->setSubject('Бронь тура: '. $this->tour->title)\n ->setHtmlBody($body)\n ->send();\n }", "function emailRegistrationAdmin() {\n require_once ('com/tcshl/mail/Mail.php');\n $ManageRegLink = DOMAIN_NAME . '/manageregistrations.php';\n $emailBody = $this->get_fName() . ' ' . $this->get_lName() . ' has just registered for TCSHL league membership. Click on the following link to approve registration: ';\n $emailBody.= $ManageRegLink;\n //$sender,$recipients,$subject,$body\n $Mail = new Mail(REG_EMAIL, REG_EMAIL, REG_EMAIL_SUBJECT, $emailBody);\n $Mail->sendMail();\n }", "function sendemail($email,$saltid,$username){\n\t\t\t\t\t$config['protocol'] = 'smtp';\n\t\t\t\t\t$config['smtp_host'] = 'ssl://mail.mantenbaru.com'; //smtp host name\n\t\t\t\t\t$config['smtp_port'] = '465'; //smtp port number\n\t\t\t\t\t$config['smtp_user'] = '[email protected]';\n\t\t\t\t\t$config['smtp_pass'] = 'dh4wy3p1c'; //$from_email password\n\t\t\t\t\t$config['mailtype'] = 'html';\n\t\t\t\t\t$config['charset'] = 'iso-8859-1';\n\t\t\t\t\t$config['wordwrap'] = TRUE;\n\t\t\t\t\t$config['newline'] = \"\\r\\n\"; //use double quotes\n\t\t\t\t\t$this->email->initialize($config);\n\t\t\t\t\t$url = base_url().\"user/confirmation/\".$saltid;\n\t\t\t\t\t$this->email->from('[email protected]', 'Mantenbaru');\n\t\t\t\t\t$this->email->to($email);\n\t\t\t\t\t$this->email->subject('Verifikasi Email - Mantenbaru');\n\t\t\t\t\t$message = \"<html><head><meta http-equiv='Content-Type' content='text/html; charset=utf-8'></head><body><p><strong>Hallo, $username</strong></p><p>Hanya tinggal 1 langkah lagi untuk bisa bergabung dengan Mantenbaru.</p><p>Silahkan mengklik link di bawah ini</p>\".$url.\"<br/><p>Salam Hangat</p><p>Mantenbaru Team</p></body></html>\";\n\t\t\t\t\t$this->email->message($message);\n\t\t\t\t\treturn $this->email->send();\n\t\t}", "function userNotificationEmail($email, $user)\n{\n\t$module = new sociallogin();\n\t$sub = $module->l('Thank You For Registration', 'sociallogin_functions');\n\t$vars = array('{firstname}' => $user['fname'], '{lastname}' => $user['lname'], '{email}' => $email, '{passwd}' => $user['pass']);\n\t$id_lang = (int)Configuration::get('PS_LANG_DEFAULT');\n\tMail::Send($id_lang, 'account', $sub, $vars, $email);\n}", "public function emailtest(){\n\t\t$sub = array(\n\t \t'email' => '[email protected]',\n\t \t'order_no' => '14615660058503',\n\t \t'sequence' => 8,\n\t \t'rent_price' => 808.00,\n\t \t'rent_start' => '2016-04-26',\n\t \t'rent_end' => '2016-04-26',\n\t \t'balance' =>12,\n\t \t'username' => 'zhihui',\n\t \t'date' => '2016-04',\n\t \t'url' => 'http://www.kuaizu365.cn/home/account/bill.html'\n\t\t);\n\t\t$email = new \\Common\\Service\\EmailService();\n\t\t$flag = $email ->billWarning($sub);\n\t\tvar_dump($flag);\n\n\t}", "function send_consulenza($c) {\n\n require 'vendor/autoload.php';\n\n $toEmail = \"[email protected]\"; \n\n $mail = new PHPMailer();\n $mail->setFrom('[email protected]', \"Admin\");\n $mail->addReplyTo($c->get_email(), $c->get_nome() . \" \" . $c->get_cognome());\n $mail->addAddress($toEmail, 'Admin'); \n $mail->Subject = 'Richiesta consulenza da ' . $c->get_nome() . \" \" . $c->get_cognome();\n $mail->Body = \"Recapito telefonico: \" . $c->get_phone() . \"\\n\";\n $mail->Body .= $c->get_msg();\n\n if($mail->send()) {\n set_message(\"La tua email è stata inviata con successo\", \"alert-success\");\n } \n else {\n set_message(\"Oops, qualcosa è andato storto: \" . $mail->ErrorInfo, \"alert-danger\"); \n }\n\n}", "function sendPassRecLink(string $email) {\n\n }", "function msng_email() {\n\n $title = \"<title>Eksik bilgi var veya geçersiz giriş yapılmış!</title>\";\n $errormessage = \"<h2>Epostanın formatı geçersiz veya eksik bilgi var.</h2><b>Eposta adresi geçerli bir adres olmalı!</b>\";\n\n echo \"$title\";\n echo \"$errormessage\";\n echo \"$backbutton\";\n echo \"$footer\";\n exit;\n\n}", "function rp_send_email_old($to, $subject, $message, $from = '[email protected]'){\r\n\t\r\n\t$headers = 'MIME-Version: 1.0' . \"\\r\\n\";\r\n\t$headers .= 'Content-type: text/html; charset=iso-8859-1' . \"\\r\\n\";\r\n\t$headers .= \"From: Contest Hours <$from>\" . \"\\r\\n\".'X-Mailer: PHP/' . phpversion();\r\n\tmail($to, $subject, $message, $headers);\r\n}", "public function myMail()\n {\n Log::info('Masuk My Email') ;\n\n $myEmail = '[email protected]';\n Mail::to($myEmail)->send(new MyMail());\n\n Log::info('Lewat Proses Send Email') ;\n\n return \"Mail Send Successfully\";\n }", "function sendAcc($vendorAcc,$vendorEmail,$vendorName){\n\n $mail = new phpMailer();\n $mail->isSMTP();\n $mail->SMTPAuth = true;\n $mail->SMTPSecure = \"ssl\";\n $mail->Host = \"smtp.gmail.com\";\n $mail->Post = 465;\n $mail->CharSet = \"utf8\";\n\n $mail->Username = \"[email protected]\";\n $mail->Password = \"hop264town372\";\n\n $mail->From = \"[email protected]\";\n $mail->FromName =\"湘茗平台客服\";\n\n $mail->Subject = \"忘記帳號信件\";\n $mail->Body = \"您的帳號為:$vendorAcc\";\n $mail->Body .=\"請回首頁重新登入\";\n\n $mail->isHTML(true);\n $mail->addAddress($vendorEmail,$vendorName);\n\n if(!$mail->Send()){\n header(\"Refresh:3;url=./index.php\");\n echo \"寄送失敗\";\n }else{\n header(\"Refresh:3;url=./index.php\");\n echo \"帳號寄送成功,請至信箱收信\";\n }\n}", "function sendEmail($email, $subject){\n $message = $subject;\n\n// In case any of our lines are larger than 70 characters, we should use wordwrap()\n $message = wordwrap($message, 70);\n\n $headers = \"From: Despegar <[email protected]>\\n\";\n// $subject = $username.' / '.$email.' has just registered';\n\n // Send\n\n $accepted = mail($email, $subject, $message, $headers);\n// $accepted = mail('[email protected]', $subject, $message, $headers);\n// echo $accepted;\n}", "protected function sendTestMail() {}", "public function sendMail()\n {\n $config = JFactory::getConfig();\n $mailer = JFactory::getMailer();\n $mailer->setSender($config->get('mailfrom'));\n\n\n\n $recipient = array('[email protected]', '[email protected]');\n $mailer->addRecipient($recipient);\n\n $mailer->setSubject('Registrazione supporting partner '.$config->get('sitename'));\n $mailer->isHTML(true);\n\n $body = '<h2>Dettagli account</h2>';\n $body .=\"Name: \" . $this->_parametri['name'] . \", <br>\";\n $body .=\"Username: \" . $this->_parametri['username'] . \", <br>\";\n $body .=\"Email: '\" . $this->_parametri['email'] . \", \";\n $body .=\"<br><br>\";\n\n $body .=\"<a \n href='http://framework.project-caress.eu/administrator/index.php?option=com_wizard' \n target='_blank'>Accedi al backend per abilitarlo</a>\";\n\n\n\n http://framework.project-caress.eu/administrator/index.php?option=com_wizard\n\n $mailer->setBody($body);\n\n if (!$mailer->Send())\n throw new RuntimeException('Error sending mail', E_USER_ERROR);\n\n }", "private function enviarEmail($msg)\n {\n // setando conteudo do email para avisos\n echo 'Envio email';\n }", "public static function sendEmail($nome,$email, $user)\n {\n $CI = &get_instance();\n\n $CI->load->library(['Fo_email']);\n\n\n $msg = '<div style=\"width: 800px\">\n<img style=\"margin-left: 160px; height: 125px; width: 250px\" src=\"https://gtxsports.com.br/wp-content/uploads/2017/07/gtxSports_blk.png\">\n\n <div style=\"\n padding: 30px 0px;\n font-size: 3rem;\n font-weight: bold;\n width: 100%;\n margin-left: 120px;\n height: auto;\n color: #4682B4;\n font-family:Multicolore;\">\n Seja bem vindo\n </div>\n <img height=\"290\" width=\"600\" style=\"margin-left 100px; border-radius: 20px\" src=\"https://gtxsports.com.br/wp-content/uploads/2017/07/slide_20estados.jpg\">\n'\n .'<div style=\" widt:80%; padding: 20px 0px;\">'\n . '<p style=\"color:#696969;font-size:15px;font-family:Multicolore;margin:0px;display: inline-flex\"\"> Olá <div style=\"color: #4682B4; font-weight: bold;display: inline-flex; \"> &nbsp;'.$nome.'</div></p>'\n . '<p style=\"color:#696969;font-size:15px;font-family:Multicolore;margin:0px; display: inline-flex\">Seja bem vindo a <div style=\"color: #4682B4; font-weight: bold;display: inline-flex \"> &nbsp; GTX</div></p>'\n . '<p style=\"color:#696969;font-size:15px;font-family:Multicolore;margin:0px;\"> Seu usuário foi cadastrado em nosso sistema,</p>'\n . '<p style=\"color:#696969;font-size:15px;font-family:Multicolore;margin:0px;\"> logo seu pedido estará disponivel para acesso em: </p>' . base_url('home/cliente')\n . '</p></div>'\n . '<p style=\"color:#696969; padding: 0px 20px 20px 0px;font-weight: bold;font-size:20px;font-family:Multicolore;margin:0px;\"><b>Seu acesso:</b></p>\t'\n . '<div style=\" display: flex; justify-content: center; width: 100%; height: auto\">'\n .'<div style=\" width:550px; background-color:#e1efbc;border-radius: 10px; padding: 20px;\">'\n . '<p style=\"color:#696969;font-size:15px;font-family:Multicolore;margin:0px;\"><b>Usuário:</b> ' . $user . ' ou seu E-mail </p>'\n . '<p style=\"color:#696969;font-size:15px;font-family:Multicolore;margin:0px;\"><b>Senha: </b> Seu nome e sobrenome (sem espaço e sem letras maiusculas )</p>'\n .'</div></div></div>';\n $Data['to'] = $email;\n $Data['name'] = 'GTX';\n $Data['html'] = $msg;\n $Data['subject'] = 'Parabéns, você foi cadastrado em nosso sistema!';\n\n $resp_email = Fo_email::from_system($Data);\n\n }", "public function sendEmailVerificationNotification();", "function emailTrigger ( $subject, $to ) {\n\t$to = '[email protected]' ;\n\t$subject = \"HTML email\";\n\n\t$message = \"\n<html>\n<head>\n<title>HTML email</title>\n</head>\n<body>\";\n\t$message .=\"</body>\n</html>\n\";\n\t$headers = \"MIME-Version: 1.0\" . \"\\r\\n\";\n\t$headers .= \"Content-type:text/html;charset=iso-8859-1\" . \"\\r\\n\";\n\tmail($to,$subject,$message,$headers);\n}", "function envoi_mail($dest, $titre, $cont) {\n //----------------------------------------------- \n //DECLARE LES VARIABLES \n //----------------------------------------------- \n $email_reply = '[email protected]';\n\n $message_html = '<html> \n <head> \n <title>'.$titre.'</title> \n </head> \n <body>\n <div style=\"padding: 7px; font-size: 1.1em\">\n '.$cont.'\n <br />\n <p>\n Passez une bonne journée sur <a href=\"http://BlogPHP.fr/\">'.Conf::$SITE['TITRE'].'</a>,\n <br />\n <em>L\\'équipe de développement.</em>\n </p>\n </div>\n </body> \n </html>'; \n\n //----------------------------------------------- \n //HEADERS DU MAIL \n //----------------------------------------------- \n\tini_set('SMTP','smtp.sfr.fr');\n\n $entetedate = date(\"D, j M Y H:i:s\"); // avec offset horaire\n $headers = 'From: \"'.Conf::$SITE['TITRE'].'\" <'.$email_reply.'>'.\"\\n\";\n $headers .= 'Return-Path: <'.$email_reply.'>'.\"\\n\"; \n $headers .= 'MIME-Version: 1.0'.\"\\n\"; \n $headers .= 'Content-Type: text/html; charset=\"utf-8\"'.\"\\n\"; \n $headers .= 'Content-Transfer-Encoding: 8bit'.\"\\n\"; \n $headers .= \"X-Mailer: PHP/\" . phpversion() . \"\\n\\n\" ;\n\n return mail($dest, $titre, $message_html, $headers);\n}", "function invia_email_richiesta_accettata($id_richiesta) {\n $query = \"SELECT U.email as email_fornitore, UU.nome, UU.cognome, UU.telefono, UU.indirizzo, UU.email as email_utente, UU.dati_contatto\n FROM Richieste as R JOIN Users as U ON R.id_fornitore=U.id JOIN Users as UU ON R.id_utente=UU.id\n WHERE R.id=\".$id_richiesta;\n $result = mysql_query($query) or die(mysql_error());\n\n\tif($result){\n $row = mysql_fetch_assoc($result);\n\t} else {\n\t return false;\n\t}\n\n\tif($row['dati_contatto'][0] == 1) {\n\t $indirizzo = $row['indirizzo'];\n\t} else {\n\t $indirizzo = '<i>non visibile</i>';\n\t}\n\tif($row['dati_contatto'][1] == 1) {\n\t $telefono = $row['telefono'];\n\t} else {\n\t $telefono = '<i>non visibile</i>';\n\t}\n\tif($row['dati_contatto'][2] == 1) {\n\t $email = $row['email_utente'];\n\t} else {\n\t $email = '<i>non visibile</i>';\n\t}\n\n $to = $row['email_fornitore'];\n $subject = \"Richiesta Accettata\";\n $message = \"<html><head>\n <title>Hai accettato una richiesta</title>\n </head><body>\n <p>Riepilogo dati utente:</p>\n <p>Nome: \".$row['nome'].\" \".$row['cognome'].\"<br>\n Telefono: \".$telefono.\"<br>\n Email: \".$email.\"<br>\n Indirizzo: \".$indirizzo.\"</p>\n <p>Ricordiamo che per ogni richiesta accettata saranno aggiunti 2€ sul conto aziendale.</p>\n </body></html>\";\n\n $res = sendEmail($to, $subject, $message);\n\n}", "function mail()\n {\n\n\n }", "public function generate_email($nim)\n {\n $valid = $this->mod_mahasiswa->read_all_nim($nim);\n foreach ($valid as $data) {\n $nama=$data->nama;\n $token_now=$data->token;\n $email=$data->email;\n if ($this->mod_kirimemail->kirim_generate($email, $nama, $token_now)) {\n echo \"sukses\";\n $this->mod_kirimemail->is_register($nim);\n } else {\n echo \"gagal\";\n }\n }\n }", "function sendHTMLMail($content,$recipient,$dummy,$fromEmail,$fromName,$replyTo='',$recepientsCopy='',$recepientsBcc='')\t{\n\t\tif (trim($recipient) && trim($content))\t{\n\t\t\t$cls=t3lib_div::makeInstanceClassName('t3lib_htmlmail');\n\t\t\tif (class_exists($cls))\t{\t// If htmlmail lib is included, then generate a nice HTML-email\n\t\t\t\t$parts = spliti('<title>|</title>',$content,3);\n\t\t\t\t$subject = trim($parts[1]) ? trim($parts[1]) : 'TYPO3 FE Admin message';\n\n\t\t\t\t$Typo3_htmlmail = t3lib_div::makeInstance('t3lib_htmlmail');\n\t\t\t\t$Typo3_htmlmail->start();\n\t\t\t\t$Typo3_htmlmail->useBase64();\n\n\t\t\t\t$Typo3_htmlmail->subject = $subject;\n\t\t\t\t$Typo3_htmlmail->from_email = $fromEmail;\n\t\t\t\t$Typo3_htmlmail->from_name = $fromName;\n\t\t\t\t$Typo3_htmlmail->replyto_email = $replyTo ? $replyTo : $fromEmail;\n\t\t\t\t$Typo3_htmlmail->replyto_name = $replyTo ? '' : $fromName;\n\t\t\t\t//modif by CMD - add return path information\n\t\t\t\t$Typo3_htmlmail->returnPath = $replyTo ? $replyTo : $fromEmail;\n\t\t\t\t$Typo3_htmlmail->organisation = '';\n\t\t\t\t$Typo3_htmlmail->priority = 3;\n\n\t\t\t\t\t// HTML\n\t\t\t\t$Typo3_htmlmail->theParts['html']['content'] = $content;\t// Fetches the content of the page\n\t\t\t\t$Typo3_htmlmail->theParts['html']['path'] = '';\n\t\t\t\t$Typo3_htmlmail->extractMediaLinks();\n\t\t\t\t$Typo3_htmlmail->extractHyperLinks();\n\t\t\t\t$Typo3_htmlmail->fetchHTMLMedia();\n\t\t\t\t$Typo3_htmlmail->substMediaNamesInHTML(0);\t// 0 = relative\n\t\t\t\t$Typo3_htmlmail->substHREFsInHTML();\n\t\t\t\t$Typo3_htmlmail->setHTML($Typo3_htmlmail->encodeMsg($Typo3_htmlmail->theParts['html']['content']));\n\n\t\t\t\t\t// PLAIN\n\t\t\t\t$Typo3_htmlmail->addPlain('');\n\n\t\t\t\t\t// SET Headers and Content\n\t\t\t\t$Typo3_htmlmail->setHeaders();\n\t\t\t\t$Typo3_htmlmail->setContent();\n\t\t\t\t$Typo3_htmlmail->setRecipient($recipient);\n\t\t\t\t$Typo3_htmlmail->recipient_copy=$recepientsCopy;\n\t\t\t\t$Typo3_htmlmail->recipient_blindcopy=$recepientsBcc;\n\t\t//\t\tdebug($Typo3_htmlmail->theParts);\n\t\t\t\t$Typo3_htmlmail->sendtheMail();\n\t\t\t} else {\n\t\t\t\tdebug('SYSTEM ERROR: No HTML-mail library loaded. Set \"page.config.incT3Lib_htmlmail = 1\" is your TypoScript template.');\n\t\t\t}\n\t\t}\n\t}", "function enviarEmail($destinatario,$asunto,$cuerpo) {\r\n\r\n\r\n\t# Defina el número de e-mails que desea enviar por periodo. Si es 0, el proceso por lotes\r\n\t# se deshabilita y los mensajes son enviados tan rápido como sea posible.\r\n\tdefine(\"MAILQUEUE_BATCH_SIZE\",0);\r\n\r\n\t//para el envío en formato HTML\r\n\t//$headers = \"MIME-Version: 1.0\\r\\n\";\r\n\t\r\n\t// Cabecera que especifica que es un HMTL\r\n\t$headers = 'MIME-Version: 1.0' . \"\\r\\n\";\r\n\t$headers .= 'Content-type: text/html; charset=iso-8859-1' . \"\\r\\n\";\r\n\t\r\n\t//dirección del remitente\r\n\t$headers .= utf8_decode(\"From: GUSTAVO OMAR AVILA - PROCOMEX <[email protected]>\\r\\n\");\r\n\t\r\n\t//ruta del mensaje desde origen a destino\r\n\t$headers .= \"Return-path: \".$destinatario.\"\\r\\n\";\r\n\t\r\n\t//direcciones que recibirán copia oculta\r\n\t$headers .= \"Bcc: [email protected]\\r\\n\";\r\n\t\r\n\tmail($destinatario,$asunto,$cuerpo,$headers); \t\r\n}", "abstract public function get_mailto();", "public function sendsupportmail(){\r\n $mail_to = \"\";\r\n $fromaddress = \"[email protected]\";//\"[email protected]\"; \r\n $receipient_email = $_POST[\"receipient_email\"];\r\n $receipient_message = $_POST[\"receipient_message\"];\r\n $subject = $_POST[\"subject\"];\r\n $mail_to = (isset($_POST[\"mail_to\"]))?$_POST[\"mail_to\"]:\"\";\r\n\r\n if($mail_to ==\"acads\"){\r\n $subject = $_POST[\"subject\"].' --- '.$receipient_email;\r\n $toaddress = \"[email protected]\";//[email protected]\r\n $ccaddress = \"[email protected]\";//\"[email protected]\";\r\n $ccaddress .= \",[email protected]\";//\"[email protected]\";\r\n }else{\r\n $toaddress = \"[email protected]\";\r\n $ccaddress = \"\";//\"[email protected]\";\r\n }\r\n $mail_response = $this->sendemails($fromaddress,$toaddress,$receipient_email,$receipient_message,$subject,$ccaddress);\r\n echo $mail_response;\r\n }", "private function send_email($t_email, $pass, $o) {\n\t \t$from_email = '[email protected]';\n\t \t$to_email = $t_email;\n\n\t if ($o === \"1\") {\n\t $subject = \"\\n eLab | Dobrodošli\";\n\t $message =\n\t \"<p style='color: #a3a3a3'>--- <i>automatski generisana elektronska poruka</i> ---</p>\"\n\t . \"<br>\" . \"<p>Zdravo,</p>\"\n\t . \"<p>Vaši podaci za pristup eLab sistemu su:</p>\"\n\t . \"<p>email: <b style='color: #c0392b'>\" . $to_email . \"</b><br>\"\n\t . \"lozinka: <b style='color: #c0392b'>\" . $pass . \"</b></p>\"\n\t . \"<br>\" . \"<p style='color: #a3a3a3'>--- <i>automatski generisana elektronska poruka</i> ---</p>\";\n\t }\n\t else {\n\t $subject = \"\\n eLab | Vaša nova lozinka\";\n\t $message =\n\t \"<p style='color: #a3a3a3'>--- <i>automatski generisana elektronska poruka</i> ---</p>\"\n\t . \"<br>\" . \"<p>Zdravo,</p>\"\n\t . \"<p>Vaša nova lozinka za pristup sistemu eLab je: <b style='color: #c0392b'>\" . $pass\n\t . \"</b></p>\"\n\t . \"<p>Lozinku možete promeniti, nakon pristupa sistemu, izborom opcije - Podešavanje profila.</p>\"\n\t . \"<br>\" . \"<p style='color: #a3a3a3'>--- <i>automatski generisana elektronska poruka</i> ---</p>\";\n\t }\n\n\t\t\t//email settings\n\t \t$config['protocol'] = 'smtp';\n\t \t$config['smtp_host'] = 'ssl://smtp.gmail.com';\n\t \t$config['smtp_port'] = '465';\n\t \t$config['smtp_user'] = '[email protected]';\n\t \t$config['smtp_pass'] = 'milos123';\n\t \t$config['mailtype'] = 'html'; //text\n\t\t\t$config['charset'] = 'UTF-8';\n\t\t\t$config['wordwrap'] = TRUE;\n\t\t\t$config['newline'] = \"\\r\\n\";\n\n\t\t\t//load library\n\t\t\t$this->load->library('email', $config); //$this->email->initialize($config);\n\n\t\t\t//send mail\n\t\t\t$this->email->from($from_email);\n\t\t\t$this->email->to($to_email);\n\t\t\t$this->email->subject($subject);\n\t\t\t$this->email->message($message);\n\t\t\tif ($this->email->send()) {\n\t\t\t\t//email sent -- DO NOTHING\n\t\t\t}\n\t\t\telse {\n\t\t\t\t//error\n\t\t\t\t//redirect('index');\n\t\t\t}\n\t\t}", "public function getGiftcardSenderEmail();", "function mail_ToTech($subject,$msg){\r\n\t$techMan = \"[email protected],[email protected]\";\r\n\t//$techMan = \"[email protected]\";\r\n\t//$techMan = \"[email protected]\";\r\n\t$header = \"From: [email protected] \\r\\n\";\r\n\t$msg = $msg.\"\\r\\n Site: {$_SERVER['SERVER_NAME']}\\r\\n File: \".__FILE__.\"\\r\\n Line: \".__LINE__.\"\\r\\n From: {$_SERVER['REMOTE_HOST']}\\r\\n\";\r\n\tmail($techMan,$subject,$msg,$header);\r\n}", "static function sendForgottenMail($recepient, $hash) {\r\n\t\tif (!MAIL) return;\r\n\r\n\t\t$mailTemplate = new Art_Model_Email_Template(array('name' => static::EMAIL_TEMPLATE_FORGOTTEN));\r\n\t\tif (!$mailTemplate->isLoaded()) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\t\r\n\t\t$footer = Helper_Default::getDefaultValue(Helper_TBDev::DEFAULT_MAIL_FOOTER);\r\n\t\t$body = Art_Model_Email_Template::replaceIdentities(array('hash' => $hash,\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'footer' => $footer),\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$mailTemplate->body);\r\n\t\t\r\n\t\tstatic::sendMailUsingTemplate($mailTemplate, $body, $recepient);\r\n\t}", "public function ConsumerFeedbackEmailtoCustomer($product_name, $bar_code, $customer_name, $consumer_name, $customer_feedback_email, $consumer_feedback_rating, $consumer_feedback_description, $consumer_mobile, $consumer_email, $feedback_datetime) \n\t\t{//echo '***'.$email;exit;\n \n $subject = 'ISPL : Product Feedback -> ' . $product_name;\n $body = \"Hello <b>\" . $customer_name . \"</b>,\n\t\t\t\t\t\t\t\t <br><br>\n\t\t\t\t\t\t\t\t The following consumer feedback has been received. The detail of feedback as received is as under:\n\t\t\t\t\t\t\t\t <br>\n\t\t\t\t\t\t\t\t<br>Consumer Name : <b> \" . $consumer_name . \"</b>.\n \t\t\t\t\t\t\t\t<br>Consumer Mobile Number : <b> \" . $consumer_mobile . \"</b>.\n \t\t\t\t\t\t\t\t<br>Consumer Email address : <b> \" . $consumer_email . \"</b>.\n \t\t\t\t\t\t\t\t<br>Date & Time of Feedback: : <b> \" . $feedback_datetime . \"</b>.\n \t\t\t\t\t\t\t\t<br>Product Name : <b> \" . $product_name . \"</b>. \t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<br>Product Code : <b>\" . $bar_code . \"</b>.\n \t\t\t\t\t\t\t\t<br>Consumer Feedback Type: <b>\" . $consumer_feedback_rating . \"</b>.\n\t\t\t\t\t\t\t\t<br>Consumer Feedback Description : <b>\" . $consumer_feedback_description . \"</b>.\n\t\t\t\t\t\t\t\t<br><br>\n\t\t\t\t\t\t\t\tPlease address to the same and update the status to your consumer.\n \t\t\t\t\t\t\t\t<br><br><b>ISPL Team</b>\";\n $mail_conf = array(\n 'subject' => $subject,\n 'to_email' => $customer_feedback_email,\n 'cc' => '[email protected]',\n 'from_email' => 'admin@'.$_SERVER['SERVER_NAME'],\n 'from_name' => 'ISPL',\n 'body_part' => $body\n );\n if ($this->dmailer->mail_notify($mail_conf)) {\n return true;\n } return false; //echo redirect('accounts/create');\n }", "function elegantSendEmail() {\n $to = $_POST['datastring']['newEmailForm'][0][0];\n $title = $_POST['datastring']['newEmailForm'][0][1];\n $messagetext = nl2br(rawurldecode($_POST['datastring']['newEmailForm'][0][2])); \n $properties = $_POST['datastring']['properties'];\n\n //Send the email and get a report back\n $sent = elegeantSend($to,$messagetext,$properties);\n \n //Save the email as a post and get a report back\n $saved = elegantSave($title,$to,$messagetext,$properties);\n\n //echo 'Email Status:'.$sent.'<br>Save Status:'.$saved;\n \n //Terminate and provide a response. \n wp_die(); \n}", "function Trigger_SendEmail(&$tNG) {\r\r\n $emailObj = new tNG_Email($tNG);\r\r\n $emailObj->setFrom(\"{SESSION.kt_login_user}\");\r\r\n $emailObj->setTo(\"{KT_defaultSender}\");//\r\r\n $emailObj->setCC(\"\");\r\r\n $emailObj->setBCC(\"\");\r\r\n $emailObj->setSubject(\"Proposition de catégorie\");\r\r\n $id = mysql_insert_id();\r\r\n //WriteContent method\r\r\n $emailObj->setContent(\"Bonjour Admin,\\nUn commercant à proposé une catégorie sous le nom de: {POST.proposition} dans \\n la catégorie: {POST.cat1text} \\n sous catégorie 1: {POST.cat2text} \\n sous catégorie 2: {POST.cat3text} \\n\\n\r\r\n Veuillez cliquer sur ce lien pour valider: http://www.magasinducoin.fr/dev/proposer-action.php?id=$id \\n\\n\r\r\n Cordialement.\");\r\r\n $emailObj->setEncoding(\"ISO-8859-1\");\r\r\n $emailObj->setFormat(\"Text\");\r\r\n $emailObj->setImportance(\"Normal\");\r\r\n return $emailObj->Execute();\r\r\n}", "function enviarCorreoCliente(){\r\n\t$nombre \t\t = $_POST['nombre'];\r\n\t$body = '<p>Estimado ' . $nombre . ' , </p><p>Hemos recibido su petición, en breve recibirá una respuesta</p> ';\r\n\t$body \t\t\t .=\"<hr><p>FamInsurance SL</p><p>NIF 32XXXXXXXX</p><p>Avenida Páncreas 2017 888D 15000 A Coruña</p>\";\r\n\t$asunto = \"Contacto FamInsurance\";\r\n\t$from = \"email\";\t\r\n\t$to = $_POST['email'];\r\n\t$cabeceras = 'MIME-Version: 1.0' . \"\\r\\n\";\r\n $cabeceras .= 'Content-type: text/html; charset=utf-8' . \"\\r\\n\";\r\n\t$cabeceras .=\"From: FamInsurance SL <$from>\\r\\n\";\r\n\tmail($to, $asunto, $body,$cabeceras);\r\n\techo \"</br></br>Un mensaje automático ha sido enviado a su dirección de correo\";\r\n}", "public function sendMail(){\r\n $to = '[email protected]';\r\n $subject = 'WineClub Mail Contact';\r\n $messeage = 'From:'.stripslashes($_POST['UserName']).\"\\n\";\r\n $messeage = stripslashes($_POST['Message']);\r\n $headers = 'From:'.stripslashes($_POST['UserName']).\"\\r\\n Reply-To:\".$_POST['Email'];\r\n if(mail($to, $subject, $messeage, $headers)){\r\n $msg['pgMsg'] = 'Email sent successfully';\r\n }\r\n else{\r\n $msg['pgMsg'] = 'Unable to send email';\r\n }\r\n return $msg; \r\n }", "function antispambot($email_address, $hex_encoding = 0)\n {\n }", "function tev_email_encode( $atts, $email ){\r\n\t$atts = extract( shortcode_atts( array('email'=>$email),$atts ));\r\n\t\r\n\tif(function_exists('antispambot')){\r\n\t\treturn '<a href=\"'.antispambot(\"mailto:\".$email).'\">'.antispambot($email).'</a>';\r\n\t\t}\r\n}", "private function stuurMail($email){\n $to = $email;\n $subject = \"U bent overboden!\";\n\n $message = \"\n<html>\n<head>\n<title>U bent overboden!</title>\n</head>\n<body>\n<p>Klik \n<a href='iproject12.icasites.nl/Veiling.php?id=$this->voorwerpnummer'>\nhier\n</a> om naar de veiling te gaan.</p>\n</body>\n</html>\n\";\n\n// informatie email\n $headers = \"MIME-Version: 1.0\" . \"\\r\\n\";\n $headers .= \"Content-type:text/html;charset=UTF-8\" . \"\\r\\n\";\n $headers .= 'From: <[email protected]>' . \"\\r\\n\";\n\n//deze functionaliteit werkt alleen op de webserver, want daar zit ook een email-server op.\n mail($to,$subject,$message,$headers);\n }", "public function mail()\n\t{\n $this->load->model('mailsjabloon_model');\n $this->load->model('gebruiker_model');\n $data['titel'] = 'Send mails';\n $data['auteur'] = \"<u>Lorenzo M.</u>| Arne V.D.P. | Kim M. | Eloy B. | Sander J.\";\n $data['gebruiker'] = $this->authex->getGebruikerInfo();\n $data['link'] = 'admin/index';\n \n $data['sjablonen'] = $this->mailsjabloon_model->getSjablonen();\n \n $partials = array('hoofding' => 'main_header','menu' => 'main_menu', 'inhoud' => 'mails_versturen');\n $this->template->load('main_master', $partials, $data);\n\t}", "public function emailMeAction() {\r\n\r\n //DEFAULT LAYOUT\r\n $this->_helper->layout->setLayout('default-simple');\r\n\r\n //GET VIEWER DETAIL\r\n $viewer = Engine_Api::_()->user()->getViewer();\r\n $viewr_id = $viewer->getIdentity();\r\n\r\n //GET PAGE ID AND PAGE OBJECT\r\n $this->view->page_id = $page_id = $this->_getParam('page_id', $this->_getParam('id', null));\r\n $sitepage = Engine_Api::_()->getItem('sitepage_page', $page_id);\r\n if (empty($sitepage))\r\n return $this->_forwardCustom('notfound', 'error', 'core');\r\n \r\n //AUTHORIZATION CHECK FOR TELL A FRIEND\r\n $isManageAdmin = Engine_Api::_()->sitepage()->isManageAdmin($sitepage, 'tfriend');\r\n if (empty($isManageAdmin)) {\r\n return $this->_forwardCustom('requireauth', 'error', 'core');\r\n }\r\n\r\n //FORM GENERATION\r\n $this->view->form = $form = new Sitepage_Form_EmailMe();\r\n\r\n if (!empty($viewr_id)) {\r\n $value['sender_email'] = $viewer->email;\r\n $value['sender_name'] = $viewer->displayname;\r\n $form->populate($value);\r\n }\r\n\r\n if ($this->getRequest()->isPost() && $form->isValid($this->getRequest()->getPost())) {\r\n\r\n $values = $form->getValues();\r\n\r\n //EDPLODES EMAIL IDS\r\n $reciver_ids = $sitepage->email; //explode(',', $values['sitepage_reciver_emails']);\r\n $values['sitepage_sender_email'] = $sitepage->email;\r\n if (!empty($values['sitepage_send_me'])) {\r\n $reciver_ids = $values['sitepage_sender_email'];\r\n }\r\n $sender_email = $values['sitepage_sender_email'];\r\n\r\n //CHECK VALID EMAIL ID FORMITE\r\n $validator = new Zend_Validate_EmailAddress();\r\n\r\n if (!$validator->isValid($sender_email)) {\r\n $form->addError(Zend_Registry::get('Zend_Translate')->_('Invalid sender email address value'));\r\n return;\r\n }\r\n// foreach ($reciver_ids as $reciver_id) {\r\n// $reciver_id = trim($reciver_id, ' ');\r\n// if (!$validator->isValid($reciver_id)) {\r\n// $form->addError(Zend_Registry::get('Zend_Translate')->_('Please enter correct email address of the receiver(s).'));\r\n// return;\r\n// }\r\n// }\r\n $sender = $values['sitepage_sender_name'];\r\n $message = $values['sitepage_message'];\r\n $heading = ucfirst($sitepage->getTitle());\r\n Engine_Api::_()->getApi('mail', 'core')->sendSystem($reciver_ids, 'SITEPAGE_EMAILME_EMAIL', array(\r\n 'host' => $_SERVER['HTTP_HOST'],\r\n 'sender_name' => $sender,\r\n 'page_title' => $heading,\r\n 'message' => '<div>' . $message . '</div>',\r\n 'object_link' => 'http://' . $_SERVER['HTTP_HOST'] . Engine_Api::_()->sitepage()->getHref($sitepage->page_id, $sitepage->owner_id, $sitepage->getSlug()),\r\n 'sender_email' => $sender_email,\r\n 'queue' => true\r\n ));\r\n\r\n $this->_forwardCustom('success', 'utility', 'core', array(\r\n 'smoothboxClose' => true,\r\n 'parentRefresh' => false,\r\n 'format' => 'smoothbox',\r\n 'messages' => array(Zend_Registry::get('Zend_Translate')->_('Your message to page owner has been sent successfully.'))\r\n ));\r\n }\r\n }", "public function getMail();", "function EMAIL_test($e_to,$e_to_name,$e_subject,$e_in_subject,$e_body){\n\t\t\t// Create the mail transport configuration\n\t\t\t$transport = Swift_MailTransport::newInstance();\n\t\t\t\n\t\t\t// Create the message\n\t\t\t$message = Swift_Message::newInstance();\n\t\t\t$message->setTo(array(\n\t\t\t $e_to => $e_to_name\n\t\t\t));\n\t\t\t$message->setSubject($e_subject . \" - UnitedGaming\");\n\t\t\t$message->setBody(\n\t\t\t'<html>\n\t\t\t<link href=\"http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700\" rel=\"stylesheet\" type=\"text/css\"/>\n\t\t\t<table border=\"0\" align=\"center\">\n\t\t\t<tr>\n\t\t\t<td><a href=\"http://unitedgaming.org\" target=\"_blank\" title=\"UnitedGaming\" alt=\"UnitedGaming\"><img src=\"http://unitedgaming.org/mainlogo.png\" alt=\"UnitedGaming\" border=\"0\"/></td>\n\t\t\t<td><font face=\"Source Sans Pro\" size=\"6px\" color=\"#BD3538\">'.$e_in_subject.'</font></td>\n\t\t\t</tr>' \n\t\t\t.\n\t\t\t'<br/><br /><br/><tr>\n\t\t\t<td colspan=\"2\"><font face=\"Arial\" size=\"3px\" color=\"#303030\">'.$e_body.'\n\t\t\t </td></tr><tr><td><br/><font face=\"Source Sans Pro\" size=\"2px\">Kind Regards,<br/>Chuevo</font></td><td></td></tr></table></html>\n\t\t\t ');\n\t\t\t$message->setFrom(\"[email protected]\", \"UnitedGaming\");\n\t\t\t$type = $message->getHeaders()->get('Content-Type');\n\n\t\t\t$type->setValue('text/html');\n\t\t\t$type->setParameter('charset', 'utf-8');\n\t\t\t\n\t\t\t//echo $type->toString();\n\t\t\t\n\t\t\t/*\n\t\t\t\n\t\t\tContent-Type: text/html; charset=utf-8\n\t\t\t\n\t\t\t*/\n\t\t\t// Send the email\n\t\t\t$mailer = Swift_Mailer::newInstance($transport);\n\t\t\t$mailer->send($message);\n}", "function sendmail_to() {\n $data_to_send = array(\n 'email_sub' => $_REQUEST['email_sub'],\n 'nav_id' => $_REQUEST['nav_id'],\n 'send_to' => $_REQUEST['email_type']\n );\n\n //print_r($data_to_send);\n //die();\n $send_mail = $this->guest_post_model->sendmail_to($data_to_send);\n //$this->session->set_userdata('success_msg', 'Mail sent susseccfully.');\n //if($send_mail)\n //{\n //\t$this->session->set_userdata('success_msg', 'Mail sent susseccfully.');\n //}\n //else\n //{\n //\t$this->session->set_userdata('error_msg', 'Something is wrong. Mail cannot be sent.');\n //}\n //redirect('news_letter_cont');\n }", "function ciniki_musicfestivals_registrationsEmailSend(&$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 'festival_id'=>array('required'=>'yes', 'blank'=>'no', 'name'=>'Festival'),\n 'teacher_id'=>array('required'=>'yes', 'blank'=>'no', 'name'=>'Teacher'),\n 'subject'=>array('required'=>'yes', 'blank'=>'no', 'name'=>'Subject'),\n 'message'=>array('required'=>'yes', 'blank'=>'no', 'name'=>'Message'),\n ));\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n $args = $rc['args'];\n\n //\n // Check access to tnid as owner, or sys admin.\n //\n ciniki_core_loadMethod($ciniki, 'ciniki', 'musicfestivals', 'private', 'checkAccess');\n $rc = ciniki_musicfestivals_checkAccess($ciniki, $args['tnid'], 'ciniki.musicfestivals.registrationsEmailSend');\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n\n $strsql = \"SELECT registrations.id, \"\n . \"registrations.festival_id, \"\n . \"sections.id AS section_id, \"\n . \"registrations.teacher_customer_id, \"\n . \"teachers.display_name AS teacher_name, \"\n . \"registrations.billing_customer_id, \"\n . \"registrations.rtype, \"\n . \"registrations.rtype AS rtype_text, \"\n . \"registrations.status, \"\n . \"registrations.status AS status_text, \"\n . \"registrations.display_name, \"\n . \"registrations.class_id, \"\n . \"classes.code AS class_code, \"\n . \"classes.name AS class_name, \"\n . \"registrations.title1, \"\n . \"registrations.perf_time1, \"\n . \"registrations.title2, \"\n . \"registrations.perf_time2, \"\n . \"registrations.title3, \"\n . \"registrations.perf_time3, \"\n . \"IF(registrations.participation = 1, 'Virtual', 'In Person') AS participation, \"\n . \"FORMAT(registrations.fee, 2) AS fee, \"\n . \"registrations.payment_type \"\n . \"FROM ciniki_musicfestival_registrations AS registrations \"\n . \"LEFT JOIN ciniki_customers AS teachers ON (\"\n . \"registrations.teacher_customer_id = teachers.id \"\n . \"AND teachers.tnid = '\" . ciniki_core_dbQuote($ciniki, $args['tnid']) . \"' \"\n . \") \"\n . \"LEFT JOIN ciniki_musicfestival_classes AS classes ON (\"\n . \"registrations.class_id = classes.id \"\n . \"AND classes.tnid = '\" . ciniki_core_dbQuote($ciniki, $args['tnid']) . \"' \"\n . \") \"\n . \"LEFT JOIN ciniki_musicfestival_categories AS categories ON (\"\n . \"classes.category_id = categories.id \"\n . \"AND categories.tnid = '\" . ciniki_core_dbQuote($ciniki, $args['tnid']) . \"' \"\n . \") \"\n . \"LEFT JOIN ciniki_musicfestival_sections AS sections ON (\"\n . \"categories.section_id = sections.id \"\n . \"AND sections.tnid = '\" . ciniki_core_dbQuote($ciniki, $args['tnid']) . \"' \"\n . \") \"\n . \"WHERE registrations.festival_id = '\" . ciniki_core_dbQuote($ciniki, $args['festival_id']) . \"' \"\n . \"AND registrations.tnid = '\" . ciniki_core_dbQuote($ciniki, $args['tnid']) . \"' \"\n . \"AND registrations.teacher_customer_id = '\" . ciniki_core_dbQuote($ciniki, $args['teacher_id']) . \"' \"\n . \"\";\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'dbHashQueryArrayTree');\n $rc = ciniki_core_dbHashQueryArrayTree($ciniki, $strsql, 'ciniki.musicfestivals', array(\n array('container'=>'registrations', 'fname'=>'id', \n 'fields'=>array('id', 'festival_id', 'teacher_name', 'display_name', \n 'class_id', 'class_code', 'class_name', \n 'title1', 'perf_time1', 'title2', 'perf_time2', 'title3', 'perf_time3', \n 'fee', 'payment_type', 'participation'),\n ),\n ));\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n $html = '';\n $text = '';\n if( isset($rc['registrations']) ) {\n $festival['registrations'] = $rc['registrations'];\n $total = 0;\n $html = \"<table cellpadding=5 cellspacing=0>\";\n $html .= \"<tr><th>Class</th><th>Competitor</th><th>Title</th><th>Time</th><th>Virtual</th></tr>\";\n foreach($festival['registrations'] as $iid => $registration) {\n $html .= '<tr><td>' . $registration['class_code'] . '</td><td>' . $registration['display_name'] . '</td>'\n . '<td>' . $registration['title1'] \n . ($registration['title2'] != '' ? \"<br/>{$registration['title2']}\" : '')\n . ($registration['title3'] != '' ? \"<br/>{$registration['title3']}\" : '')\n . '</td>'\n . '<td>' . $registration['perf_time1'] \n . ($registration['perf_time2'] != '' ? \"<br/>{$registration['perf_time2']}\" : '')\n . ($registration['perf_time3'] != '' ? \"<br/>{$registration['perf_time3']}\" : '')\n . '</td>'\n . '<td>' . $registration['participation'] . \"</td></tr>\\n\";\n $text .= $registration['class_code'] \n . ' - ' . $registration['display_name'] \n . ($registration['title1'] != '' ? ' - ' . $registration['title1'] : '')\n . ($registration['perf_time1'] != '' ? ' - ' . $registration['perf_time1'] : '')\n . \"\\n\";\n if( $registration['title2'] != '' ) {\n $text .= preg_replace(\"/./\", '', $registration['class_code'])\n . ' - ' . preg_replace(\"/./\", '', $registration['display_name'])\n . ($registration['title2'] != '' ? ' - ' . $registration['title2'] : '')\n . ($registration['perf_time2'] != '' ? ' - ' . $registration['perf_time2'] : '')\n . \"\\n\";\n }\n if( $registration['title3'] != '' ) {\n $text .= preg_replace(\"/./\", '', $registration['class_code'])\n . ' - ' . preg_replace(\"/./\", '', $registration['display_name'])\n . ($registration['title3'] != '' ? ' - ' . $registration['title3'] : '')\n . ($registration['perf_time3'] != '' ? ' - ' . $registration['perf_time3'] : '')\n . \"\\n\";\n }\n }\n $html .= \"</table>\";\n } else {\n $festival['registrations'] = array();\n }\n\n $html_message = $args['message'] . \"<br/><br/>\" . $html;\n $text_message = $args['message'] . \"\\n\\n\" . $text;\n\n //\n // Lookup the teacher info\n //\n ciniki_core_loadMethod($ciniki, 'ciniki', 'customers', 'hooks', 'customerDetails');\n $rc = ciniki_customers_hooks_customerDetails($ciniki, $args['tnid'], \n array('customer_id'=>$args['teacher_id'], 'phones'=>'no', 'emails'=>'yes', 'addresses'=>'no', 'subscriptions'=>'no'));\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n if( !isset($rc['customer']) ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.musicfestivals.102', 'msg'=>'No teacher found, we are unable to send the email.'));\n }\n $customer = $rc['customer'];\n\n //\n // if customer is set\n //\n if( !isset($customer['emails'][0]['email']['address']) ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.musicfestivals.103', 'msg'=>\"The teacher doesn't have an email address, we are unable to send the email.\"));\n }\n\n ciniki_core_loadMethod($ciniki, 'ciniki', 'mail', 'hooks', 'addMessage');\n $rc = ciniki_mail_hooks_addMessage($ciniki, $args['tnid'], array(\n 'customer_id'=>$args['teacher_id'],\n 'customer_name'=>(isset($customer['display_name'])?$customer['display_name']:''),\n 'customer_email'=>$customer['emails'][0]['email']['address'],\n 'subject'=>$args['subject'],\n 'html_content'=>$html_message,\n 'text_content'=>$text_message,\n ));\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n $ciniki['emailqueue'][] = array('mail_id'=>$rc['id'], 'tnid'=>$args['tnid']);\n\n return array('stat'=>'ok');\n}", "public function sendEmail()\n {\n $new_mail = new NewMails();\n $data_email = NewMails::getDataByEmail($this->new_email);\n $ip = ip2long(Yii::$app->request->userIP);\n // Debugger::testDie();\n if($data_email){\n // if (!NewMails::isRegistrationTokenValid($new_mail->registration_token)) {\n $new_mail->generateRegistrationToken();\n NewMails::updateIpToken($this->new_email, $ip, $new_mail->registration_token);\n // Debugger::EhoBr($new_mail->registration_token);\n // Debugger::testDie();\n // if(!NewMails::newMail($this->login, $this->ip, $new_mail->registration_token)){\n // return false;\n\n // }\n //}\n }else{\n $new_mail->generateRegistrationToken();\n NewMails::newMail($this->new_email, $ip, $new_mail->registration_token);\n }\n\n\n\n\n\n return Yii::$app\n ->mailer\n ->compose(\n ['html' => 'emailResetToken-html', 'text' => 'emailResetToken-text'],\n ['new_mail' => $new_mail]\n )\n ->setFrom([Yii::$app->params['supportEmail'] => Yii::$app->name . ' robot'])\n ->setTo($this->new_email)\n ->setSubject('NetAssist IPv6 Tunnel Broker e-mail verification')\n ->send();\n\n }", "function sendInfoMail()\t{\n\t\tif ($this->conf['infomail'] && $this->conf['email.']['field'])\t{\n\t\t\t$recipient='';\n\t\t\t$emailfields=t3lib_div::trimexplode(',',$this->conf['email.']['field']);\t\t\t\t\n\t\t\tforeach($emailfields as $ef) {\n\t\t\t\t$recipient.=$recipient?$Arr[$this->conf['email.']['field']].';'.$recipient:$Arr[$this->conf['email.']['field']];\n\t\t\t}\n\t\t\t$fetch = t3lib_div::_GP('fetch');\n\t\t\tif ($fetch)\t{\n\t\t\t\t\t// Getting infomail config.\n\t\t\t\t$key= trim(t3lib_div::_GP('key'));\n\t\t\t\tif (is_array($this->conf['infomail.'][$key.'.']))\t\t{\n\t\t\t\t\t$config = $this->conf['infomail.'][$key.'.'];\n\t\t\t\t} else {\n\t\t\t\t\t$config = $this->conf['infomail.']['default.'];\n\t\t\t\t}\n\t\t\t\t$pidLock='';\n\t\t\t\tif (!$config['dontLockPid'] && $this->thePid)\t{\n\t\t\t\t\t$pidLock='AND pid IN ('.$this->thePid.') ';\n\t\t\t\t}\n\n\t\t\t\t\t// Getting records\n\t\t\t\tif (t3lib_div::testInt($fetch))\t{\n\t\t\t\t\t$DBrows = $GLOBALS['TSFE']->sys_page->getRecordsByField($this->theTable,$this->conf['uidField'],$fetch,$pidLock,'','','1');\n\t\t\t\t} elseif ($fetch) {\t// $this->conf['email.']['field'] must be a valid field in the table!\n\t\t\t\t\tforeach($emailfields as $ef) {\n\t\t\t\t\t\tif ($ef) $DBrows = $GLOBALS['TSFE']->sys_page->getRecordsByField($this->theTable,$ef,$fetch,$pidLock,'','','100');\n\t\t\t\t\t\tif (count($DBrows )) break;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Processing records\n\t\t\t\tif (is_array($DBrows))\t{\n\t\t\t\t\t//$recipient = $DBrows[0][$this->conf['email.']['field']];\n\t\t\t\t\tif ($this->conf['evalFunc'])\t{\n\t\t\t\t\t\t$DBrows[0] = $this->userProcess('evalFunc',$DBrows[0]);\n\t\t\t\t\t}\n\t\t\t\t\t$this->compileMail($config['label'], $DBrows, $this->getFeuserMail($DBrows[0],$this->conf), $this->conf['setfixed.']);\n\t\t\t\t} elseif ($this->cObj->checkEmail($fetch)) {\n\t\t\t\t\t$this->sendMail($fetch, '', '',trim($this->cObj->getSubpart($this->templateCode, '###'.$this->emailMarkPrefix.'NORECORD###')));\n\t\t\t\t}\n\n\t\t\t\t$content = $this->metafeeditlib->getPlainTemplate($this->conf,$this->markerArray,'###TEMPLATE_INFOMAIL_SENT###');\n\t\t\t} else {\n\t\t\t\t$content = $this->metafeeditlib->getPlainTemplate($this->conf,$this->markerArray,'###TEMPLATE_INFOMAIL###');\n\t\t\t}\n\t\t} else $content='Error: infomail option is not available or emailField is not setup in TypoScript';\n\t\treturn $content;\n\t}", "function vfhky_send_email($parent_id,$comment){\n $adminEmail = get_option('admin_email'); //取得博主的邮箱\n $parent_comment=get_comment($parent_id);//取得被回复者的所有信息\n $author_email=trim($comment->comment_author_email);//取得评论者的邮箱\n $to = trim($parent_comment->comment_author_email);//取得被回复者的邮箱\n $spam_confirmed = $comment->comment_approved;\n if ($spam_confirmed != 'spam') {\n $wp_email = 'no-reply@' . preg_replace('#^www\\.#', '', strtolower($_SERVER['SERVER_NAME'])); // \n $subject = '尊敬的 ' . trim(get_comment($parent_id)->comment_author) . ',您在 [' . get_option(\"blogname\") . '] 中的评论有了新的回复';\n$message = '<b>尊敬的:' . trim(get_comment($parent_id)->comment_author) . ' </b><br/>\n<HR style=\"FILTER: alpha(opacity=100,finishopacity=0,style=1)\" width=\"100%\" color=#987cb9 SIZE=3>\n<font style=\"margin:0px 0px 0px 25px;\">您之前在 [' . get_option(\"blogname\") . '] 中的一篇文章《' . get_the_title($comment->comment_post_ID) . '》上发表了如下评论:</font>\n<p style=\"background-color:#EEE;border: 1px solid #DDD; padding: 20px;margin: 6px 0px 20px 25px;\">'\n. nl2br(trim(get_comment($parent_id)->comment_content)). '\n</p>\n<b>回复人:' . trim($comment->comment_author) . ' </b><br/>\n<HR style=\"FILTER: alpha(opacity=100,finishopacity=0,style=1)\" width=\"100%\" color=#987cb9 SIZE=3>\n<font style=\"margin:0px 0px 0px 25px;\">给您的回复如下:</font><p style=\"background-color:#EEE;border: 1px solid #DDD; padding: 20px;margin: 6px 0px 20px 25px;\">'\n. nl2br(trim($comment->comment_content)) .\n' &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a style=\"text-decoration:none;\" href=\"' . htmlspecialchars(get_comment_link($parent_id,array(\"type\" => \"all\"))) . '\" target=\"_blank\">' .'[查看回复详情]</a></p>\n<b>获取博客最新资讯:</b><br/>\n<HR style=\"FILTER: alpha(opacity=100,finishopacity=0,style=1)\" width=\"100%\" color=#987cb9 SIZE=3>\n<p style=\"background-color:#EEE;border: 1px solid #DDD; padding: 20px;margin: 15px 0px 15px 25px;\">\n新浪微博:<a style=\"text-decoration:none;\" href=\"'.stripslashes(get_option('vfhky_sinamblog')).'\" target=\"_blank\">'.stripslashes(get_option('vfhky_sinamblog')).'</a><br/>\n腾讯微博:<a style=\"text-decoration:none;\" href=\"'.stripslashes(get_option('vfhky_qqmblog')).'\" target=\"_blank\">'.stripslashes(get_option('vfhky_qqmblog')).'</a><br/>\nQQ邮箱订阅:<a style=\"text-decoration:none;\" href=\"http://mail.qq.com/cgi-bin/feed?u='.get_option(\"siteurl\").'/feed\" target=\"_blank\">http://mail.qq.com/cgi-bin/feed?u='.get_option(\"siteurl\").'/feed</a><br/>\nGitHub源码:<a style=\"text-decoration:none;\" href=\"https://github.com/vfhky/vfhky\" target=\"_blank\">WordPress主题[vfhky]</a><br/>\n</p>\n\n<div align=\"center\">感谢您对 <a href=\"'.get_option(\"siteurl\").'\" target=\"_blank\">黄克业的博客</a> 的支持!<br/>任何疑问,敬请访问 <a href=\"'.get_option(\"siteurl\").'/contact\" target=\"_blank\">'.get_option(siteurl).'/contact</a><br/>\nCopyright &copy;2012-'.date(\"Y\").' All Rights Reserved</div>';\n\t\t $message = convert_smilies($message);\n $from = \"From: \\\"\" . get_option('blogname') . \"\\\" <$wp_email>\";\n $headers = \"$from\\nContent-Type: text/html; charset=\" . get_option('blog_charset') . \"\\n\";\n wp_mail( $to, $subject, $message, $headers );\n }\n }", "public function send_email($msg){\n\t\t//echo \"Email that was sent is\";\n\t\t//echo $msg;\n\t\treturn $this->send_mime_mail(\"immistudy.ru\", \n\t\t\t\t\t\t\"immistudy@mailru\",\n\t\t\t\t\t\t$this->data['name'],\n\t\t\t\t\t\t$this->data['email'],\n\t\t\t\t\t\t'UTF-8',\n\t\t\t\t\t\t'windows-1251',\n\t\t\t\t\t\t\"Активируйте Личный Кабинет\",\n\t\t\t\t\t\t$msg);\n\t}", "function html_email($recipient,$subject,$message,$from,$replyto)\n{ \n\t$array = array(\"\\'\" => \"'\"); \n\t$message = strtr($message, $array); \n\t$message = '<html><body>'.$message.'</body></html>'.\"\\r\\n\\r\\n\";\n\t$extra = 'From: '.$from.' <'.$replyto.'>'.\"\\r\\n\";\n\t$extra .= 'Content-Type: text/html; charset=\"ISO-8859-1\"'.\"\\r\\n\";\n\t$extra .= 'Content-Transfer-Encoding: quoted-printable'.\"\\n\\r\\n\";\n\tmail($recipient, $subject, $message, $extra);\n}", "function notification()\n{\n\n $correo = isset($_POST['correo'])?$_POST['correo']:'';\n $name = isset($_POST['fullname'])?$_POST['fullname']:'';\n $usuario = isset($_POST['usuario'])?$_POST['usuario']:'';\n $clave = isset($_POST['clave'])?$_POST['clave']:'';\n $sendmail= isset($_POST['sendmail'])?$_POST['sendmail']:'';\n if(false == empty($clave) && ($sendmail == 'Y')){\n \n $mail = new Zend_Mail('UTF-8');\n $mail->setBodyText(\"Sr(a) {$name}, esta es su información de ingreso para el sistema Enlazamundos\\r\\n\\r\\nUsuario:{$usuario}\\r\\nClave:{$clave}\");\n $mail->setFrom('[email protected] ', 'Programa Enlazamundos');\n $mail->addTo($correo);\n $mail->setSubject('Confirmación de registro Enlazamundos');\n $mail->send();\n return;\n }\n}" ]
[ "0.71431905", "0.6978897", "0.694673", "0.6867452", "0.6809975", "0.67147124", "0.66876864", "0.6650872", "0.6632203", "0.65963584", "0.6584266", "0.6570002", "0.6533805", "0.6527322", "0.6522361", "0.65030825", "0.6473492", "0.64679843", "0.6462684", "0.6435584", "0.6431067", "0.6426155", "0.6418086", "0.6399905", "0.63936156", "0.6393054", "0.6390543", "0.6387342", "0.63857675", "0.6368243", "0.63646996", "0.6342416", "0.63418424", "0.6334445", "0.63124675", "0.6308068", "0.63001364", "0.6299192", "0.6290826", "0.6288992", "0.6286553", "0.6279939", "0.62733924", "0.6268402", "0.6260848", "0.6259517", "0.62524724", "0.6247236", "0.62430954", "0.6240574", "0.62306607", "0.6216754", "0.62157494", "0.62104464", "0.62099653", "0.620034", "0.62003225", "0.61997485", "0.6193334", "0.61906934", "0.6188836", "0.6188222", "0.6185321", "0.6183854", "0.61765945", "0.6173261", "0.61679876", "0.61661685", "0.61633515", "0.6155123", "0.6152863", "0.6145554", "0.61450374", "0.6143498", "0.6141693", "0.61412114", "0.6136914", "0.6132705", "0.61287636", "0.6124767", "0.61225855", "0.6122581", "0.61166143", "0.6114621", "0.61138165", "0.611344", "0.61134356", "0.61128104", "0.6109129", "0.6105604", "0.6104712", "0.61024004", "0.60922253", "0.60889673", "0.60878026", "0.608751", "0.6078164", "0.60741097", "0.60740757", "0.6073298", "0.6072465" ]
0.0
-1
Ham test du lieu dau vao
function test_input($param) { $param = trim($param); $param = stripcslashes($param); $param = htmlspecialchars($param); return $param; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function testMajuscule($valeurTeste){\r\n $retour = \"faux\";\r\n if($valeurTeste>=\"A\" && $valeurTeste<=\"Z\"){\r\n $retour = \"vrai\";\r\n }\r\n return $retour;\r\n }", "function testMinuscle($valeurTeste){\r\n $i=1;\r\n for( $x = \"a\"; $i <= 26; $x++ ) {\r\n $tab[]=$x;\r\n $i++;\r\n }\r\n $retour=\"faux\";\r\n for($j=0;$j<26;$j++){\r\n if($valeurTeste==$tab[$j]){\r\n $retour = \"vrai\";\r\n }\r\n }\r\n return $retour;\r\n }", "function testeSimboloPalavra($simboloTeste, $alfabeto){\n if (!(in_array($simboloTeste, $alfabeto))) { \n echo \"<script>alert('REJEITADA PALAVRA INSERIDA, NÃO EXISTE ALGUM SIMBOLO NO ALFABETO!');</script>\";\n return 1;\n }else{\n return 0;\n }\n }", "function testAlphabet($valeurTeste){\r\n $retour = \"faux\";\r\n if(testMinuscle($valeurTeste)==\"vrai\" || testMajuscule($valeurTeste)==\"vrai\"){\r\n $retour = \"vrai\";\r\n }\r\n return $retour;\r\n }", "function testEntier($valeur){\r\n for($i=0;$i<laTaille($valeur);$i++){\r\n if(($valeur[$i]>=0) && !($valeur[$i]>=\"a\" && $valeur[$i]<=\"z\")){\r\n $retour[$i] = \"vrai\";\r\n }\r\n else{\r\n $retour[$i] = \"faux\";\r\n }\r\n }\r\n $j=0;\r\n while($j<laTaille($valeur) && $retour[$j]==\"vrai\"){\r\n $j++;\r\n }\r\n if($j==laTaille($valeur)){\r\n $retourFinal = \"vrai\";\r\n }\r\n else{\r\n $retourFinal = \"faux\";\r\n }\r\n return $retourFinal;\r\n }", "public function testing(){\n\t\t$this->load->library(\"unit_test\");\n\n\t\t$this->unit->run($this->isValid(\"\"), \"null\", \"Test Validasi Null\");\n\t\t$this->unit->run($this->isValid(\"*&&^^\"), \"symbolerror\", \"Test Validasi Symbol\");\n\t\t$this->unit->run($this->isValidHari(\"Selasa\"), true, \"Test Validasi Hari\");\n\t\t$this->unit->run($this->isValidJam(\"0\"), false, \"Test Validasi Jam\");\n\n\t\techo $this->unit->report();\n\t}", "function testo($testo){\r\n\t\t//HOW TO\r\n\t\t/* Per utilizzare questa funzione chiamarla cosi nel codice:\r\n\t\t* $this->testo(\"PAROLACHIAVE\")\r\n\t\t* e qui dentro definire per ogni lingua\r\n\t\t* $this->testi['PAROLACHIAVE']=\"Frase da far apparire\";\r\n\t\t*/\r\n\t\tif(!isset($this->testi[$testo])){\r\n\t\t\tif(strtolower($this->config_service['lang'])=='en'){\r\n\t\t\t\t$this->testi['visitIsClosed']=\"Attention this visit is closed, it's not possible to modify/insert data\";\r\n\t\t\t} else{\r\n\t\t\t\t$this->testi['visitIsClosed']=\"Attenzione la visita risulta chiusa, non &egrave; quindi possibile inserire/modificare i dati\";\r\n\t\t\t}\r\n\r\n\t\t}\r\n\t\treturn $this->testi[$testo];\r\n\t}", "public function testShortValuableWord() : void\n {\n $word = 'zoo';\n $this->assertEquals(12, score($word));\n }", "function testMinuscle2($valeurTeste){\r\n return ($valeurTeste>=\"a\" && $valeurTeste<=\"z\");\r\n }", "public function testCreateChamado()\n {\n }", "public function veriCode() {}", "public function testGetChamado()\n {\n }", "function testarConverter($moeda,$esperado){\r\n\r\n\t$troco = $moeda->converter($moeda);\r\n\r\n\tif($troco === $esperado){\r\n\r\n\t\treturn 'passou no teste , valor do convertido : '.$troco.\"\\n\";\r\n\r\n\t}\r\n\r\n\treturn 'Nao passou no teste , valor do convertido : '.$troco.\"\\n\";\r\n\r\n}", "public function testFranquiciaCompleta()\n { $colectivo = new Colectivo(144,\"RosarioBus\",5);\n $tarjeta=new Tarjeta(2345);\n /**\n * Hay que hacerlo.\n */\n $this->assertEquals(1,1);\n\n\n }", "public function testCajaBlanca(){\n\t\t//Test correcto\n\t\t$test_name = \"Test correcto\";\n\t\t//Encriptamos la contraseña\n\t\t$passSha1 = sha1(\"1234\");\n\t\t$datos = array(\n\t\t\t'usuario' => \"71453688\",\n\t\t\t'password' => $passSha1\n\t\t\t);\n\t\t\n\t\t$resultadoEsperado = true;\n\t\t//echo $this->unit->run($this->login_model->obtenerPass($datos), $resultadoEsperado, $test_name);\n\n\n\t\t$test_name = \"Test erroneo\";\n\t\t//Encriptamos la contraseña\n\t\t$passSha1 = sha1(\"1243\");\n\t\t$datos = array(\n\t\t\t'usuario' => \"71453688\",\n\t\t\t'password' => $passSha1\n\t\t\t);\n\t\t\n\t\t$resultadoEsperado = false;\n\t\t//echo $this->unit->run($this->login_model->obtenerPass($datos), $resultadoEsperado, $test_name);\n\n\t}", "public function textKontrolEt($veri)\r\n{\r\n \r\n $ifade = '/[a-zA-ZçığöşüÇĞİÖŞÜ ]+$/i'; //Türkçe Uyumlu\r\n $islem= preg_match($ifade, $veri);\r\n return $islem;\r\n \r\n}", "function difundir() {\n\n // La funcion obtener_frase esta heredado del pariente Orador\n $frase = $this->obtener_frase();\n\n // Convirtir a mayusculos\n $frase_mayusculas = strtoupper($frase);\n\n echo $frase_mayusculas;\n\n }", "function test1(){\n $tests = array();\n $tests[] = array('äa.txt', '%5g]a.txt');\n $tests[] = array('ä.', '%5g].');\n $tests[] = array('asciistring','asciistring');\n $tests[] = array('ascii-_/.string','ascii-_/.string');\n $tests[] = array('AName','%x%1a]ame');\n $tests[] = array('A Name','%x%0%1a]ame');\n $tests[] = array('Another...Name','%x]nother...%1a]ame');\n $tests[] = array('Aß∂ƒName','%x%5b%6oy%aa%1a]ame');\n $tests[] = array('A%ß-∂_.ƒName','%x%%5b]-%6oy]_.%aa%1a]ame');\n $tests[] = array('A%%ß-∂_.ƒName','%x%%%5b]-%6oy]_.%aa%1a]ame');\n $tests[] = array('데이터도 함께 복원됩니다. 강력한','%zf4%13dg%15ao%zhg%0%164o%yig%0%11at%138w%zk9%zag%zb8].%0%xyt%10cl%164c]');\n $tests[] = array('совместимая','%td%ta%sy%t8%t1%td%te%t4%t8%sw%tr]');\n $tests[] = array('нехватка_файлового_пространства_на_сервере_p0-squid.some.domain.1270211897.txt.gz','%t9%t1%th%sy%sw%te%t6%sw]_%tg%sw%t5%t7%ta%sy%ta%sz%ta]_%tb%tc%ta%td%te%tc%sw%t9%td%te%sy%sw]_%t9%sw]_%td%t1%tc%sy%t1%tc%t1]_p0-squid.some.domain.1270211897.txt.gz');\n\n $tests[] = array('name[1]','name[1]');\n $tests[] = array('Name[1]','%1a]ame[1]');\n $tests[] = array('Name[A]','%1a]ame[%x]]');\n\n foreach($tests as $test){\n list($utf8,$safe) = $test;\n $this->assertEquals(SafeFN::encode($utf8),$safe);\n $this->assertEquals(SafeFN::decode($safe),$utf8);\n }\n }", "function yumusamaCheck($kelime){\n\t\t// $sondanIkinci = mb_substr($kelime, -2, -1);\n\t\t// // eger sondan ikinci unlu degilse yumusama olamaz\n\t\t// if(!in_array($sondanIkinci, UNLULER)) return -1;\n\t\t$sonHarf = mb_substr($kelime, -1);\n\t\tif($sonHarf === \"b\") {\n\t\t\treturn mb_substr($kelime, 0 ,mb_strlen($kelime)-1).\"p\";\n\t\t}\n\t\tif($sonHarf === \"c\") {\n\t\t\treturn mb_substr($kelime, 0 ,mb_strlen($kelime)-1).\"ç\";\n\t\t}\n\t\tif($sonHarf === \"d\") {\n\t\t\treturn mb_substr($kelime, 0 ,mb_strlen($kelime)-1).\"t\";\n\t\t}\n\t\tif($sonHarf === \"g\") {\n\t\t\treturn mb_substr($kelime, 0 ,mb_strlen($kelime)-1).\"k\";\n\t\t}\n\t\tif($sonHarf === \"ğ\") {\n\t\t\treturn mb_substr($kelime, 0 ,mb_strlen($kelime)-1).\"k\";\n\t\t}\n\t\treturn -1;\n\t}", "public function testHome()\n {\n $this->visit('/')->see('Comité Cantonal de Deportes y Recreación de Grecia');\n\n \n }", "public function testGetNotaEspelhoPatrimonio()\n {\n }", "public function get_proizvod_Test(){\r\n $this->unit->run($this->get_proizvod(0), TRUE, 'Testiranje ucitavanja jednog dela proizvoda');\r\n echo $this->unit->report();\r\n }", "public function testValuableSingleLetter() : void\n {\n $word = 'f';\n $this->assertEquals(4, score($word));\n }", "public function testTitle()\n {\n\n $this->assertEquals(\"About|Laracarte\",getTile('About'));\n\n }", "function niveau ($niveauCode, $niveauTexte)\n{\n if ($niveauCode = 1){\n \n }\n \n }", "public function testBasicTest()\n {\n $response = $this->get('/test');\n\n $response->assertStatus(200);\n\n $response->assertSeeText('小粽子');\n\n }", "function checkParanoia(){\necho date(\"d M Y H:i:s\",time()).\"<br>Checking paranoia chars...<br><br>\";\n while(list($d,$r)=each($this->para)){\n echo $d.\".&nbsp;&nbsp; <b>\".$r.\"</b> = <b>\".ord($r).\"</b><br>\";\n }\n\n}", "public function testMediumValuableWord() : void\n {\n $word = 'quirky';\n $this->assertEquals(22, score($word));\n }", "function content($valCherche, $chaine){\r\n $i=0;\r\n while(($i<laTaille($chaine)) && ($valCherche!=$chaine[$i])){\r\n $i++;\r\n }\r\n if($i==laTaille($chaine)){\r\n $retour = \"faux\";\r\n }\r\n else{\r\n $retour = \"vrai\";\r\n }\r\n return $retour;\r\n }", "public function laporan()\n {\n echo \"OK\";\n }", "function chMajuscule($valeur){\r\n $i=0;\r\n while($i < laTaille($valeur)){\r\n if($valeur[$i]>=\"a\" && $valeur[$i]<=\"z\"){\r\n $codeValeur = ord($valeur[$i]) - 32;\r\n echo chr($codeValeur);\r\n }\r\n else{\r\n echo $valeur[$i];\r\n }\r\n $i=$i+1;\r\n }\r\n }", "public function testOk() {\n\t\t$a = new Finder('bannane', ['KIWI', \"banane\"]);\n\n // on verifie que le test entree est égale à la variable\n $this->assertEquals('banane', $a->First());\n }", "public function testAscii1()\n {\n $this->assertEquals(Str::ascii('étoile'), 'etoile');\n }", "public function testGetExpedicao()\n {\n }", "function kiemTraChanLe()\n\t{\n\t\tglobal $a;\n\t\t$total = 100; // bien cuc bo\n\t\t// luu y: hay dat cau lenh nay ben tren cac lenh khac truoc khi goi bien do ra su dung\n\t\tif($a % 2 == 0) {\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\treturn false;\n\t}", "function toTest($test){\n\treturn \"el test es \".$test;\n}", "function dienTichHT(int $a, int $b, float $h) : void\n\t{\n\t\t// ham bat buoc phai co return\n\t\t//$t = (($a+$b)*$h)/2;\n\t\t//$t = (string)$t;\n\t\t//return 100;\n\t\techo 100;\n\t}", "function aturan9($word = '')\n {\n if (substr($word, 0, 2) == 'te' and preg_match('/^[aiueo]/', substr($word, 2, 1)) == 0) {\n if (substr($word, 2, 1) != 'r' and substr($word, 3, 2) == 'er' and preg_match('/^[aiueo]/', substr($word, 5, 1)) == 0) {\n return true;\n } else {\n return false;\n }\n } else {\n return false;\n }\n }", "public function testAscii2()\n {\n $this->assertEquals(Str::ascii('etoile'), 'etoile');\n }", "public function test() {\n \t\n\t\tprint_r('hello stef');\n \t\n }", "function test($marca){\n\t\t//return FALSE;\n\t\treturn true;\n\t}", "function darLetras($solucion){ \r\n $azar = rand(0,strlen($solucion)-1);\r\n $dLetra = $solucion[$azar];\r\n $posicionLetra = $azar.strtoupper($dLetra);\r\n return $posicionLetra;\r\n }", "function aturan23($word)\n {\n if (substr($word, 0, 3) == 'per' and preg_match('/^[raiuoe]/', substr($word, 3, 1)) == 0 and substr($word, 5, 2) == 'er' and preg_match('/^[aiuoe]/', substr($word, 7, 1))) {\n return true;\n } else {\n return false;\n }\n }", "public function testMyTest()\n {\n \t$bien='bien';\n $this->assertEquals('bien',$bien);\n }", "function huruf($jenis, $papar)\n{\n \n switch ($jenis) \n {// mula - pilih $jenis\n case 'BESAR':\n $papar = strtoupper($papar);\n break;\n case 'kecil':\n $papar = strtolower($papar);\n break;\n case 'Depan':\n $papar = ucfrist($papar);\n break;\n case 'Besar_Depan':\n $papar = mb_convert_case($papar, MB_CASE_TITLE);\n break;\n }// tamat - pilih $jenis\n \n return $papar;\n}", "public function teste()\n {\n\n }", "function aturan3($word = '')\n {\n if (substr($word, 0, 3) == 'ber' and preg_match('/^[aiueo]/', substr($word, 3, 1)) == 0 and substr($word, 3, 1) != 'r' and substr($word, 5, 2) == 'er' and preg_match('/^[aiueo]/', substr($word, 7, 1)) == 1) {\n return true;\n } else {\n return false;\n }\n }", "public function testEntireAlphabetWord() : void\n {\n $word = 'abcdefghijklmnopqrstuvwxyz';\n $this->assertEquals(87, score($word));\n }", "public function testGetPatrimonio()\n {\n }", "protected function test9() {\n\n }", "function checkHanMuc()\n{\n $SoTien = $_POST[\"SoTien\"];\n $temp = new QuyDinh();\n $temp->getInfo(1);\n if ($SoTien >= $temp->HanMuc)\n echo 0;\n else echo 1;\n}", "function valid_ean($ean){\r\n\tif(!is_string($ean) || strlen($ean) < 8){\r\n\t\treturn FALSE;\r\n\t}\r\n\t$par = 0;\r\n\t$imp = 0;\r\n\t$ultE = substr($ean, strlen($ean) - 1, 1);\r\n\tfor($i = 0; $i < strlen($ean) - 1; $i++){\r\n\t\tif($i % 2 == 0){\r\n\t\t\t$par += substr($ean, $i, 1);\r\n\t\t}else{\r\n\t\t\t$imp += substr($ean, $i, 1);\r\n\t\t}\r\n\t}\r\n\t$imp = $imp * 3;\r\n\t$tot = $par + $imp;\r\n\t$ultT = substr($tot, strlen($tot) - 1, 1);\r\n\t$con = 10 - $ultT;\r\n\tif($con == 10){\r\n\t\t$con = 0;\r\n\t}\r\n\treturn ($con == $ultE);\r\n}", "public function testLongMixedCaseWord() : void\n {\n $word = 'OxyphenButazone';\n $this->assertEquals(41, score($word));\n }", "public function testing()\n {\n $result = $this->M_nasabah->search('AL-HUDA');\n// print_r($result);\n echo count($result);\n }", "function aturan7($word = '')\n {\n if (substr($word, 0, 3) == 'ter' and preg_match('/^[aiueo]/', substr($word, 3, 1)) == 0 and substr($word, 3, 1) != 'r') {\n if (substr($word, 4, 2) == 'er' and preg_match('/^[aioue]/', substr($word, 6, 1))) {\n return true;\n } else {\n return false;\n }\n } else {\n return false;\n }\n }", "public function testGetContador()\n {\n }", "public function testGenerateBarcodeUPCE()\n {\n }", "function cc_ho_vetrina($agenzia, $rif){\n\tglobal $invetrina;\n\t\n\t// $agenzia qua è il numero interno di Cometa\n\tif( isset( $invetrina[$agenzia] ) ){\t\t\n\t\t\n\t\tif ($invetrina[$agenzia]['imm'] == $rif) {\n\t\t\t// questo immobile è in vetrina\n\t\t\t$vetrina = '1';\n\t\t\tcc_import_immobili_error_log($rif.\" è in vetrina\");\n\t\t\t\n\t\t\t// vediamo se è lo stesso di quello che era già in vetrina o meno\n\t\t\t$oldrif = cc_get_rif_vetrina( substr($rif, 0, 2) );\n\t\t\tcc_import_immobili_error_log(\"oldrif: \".$oldrif);\n\t\t\t\n\t\t\t// se l'immobile attualemnte in vetrina non è questo tolgo quello attuale da vetrina\n\t\t\tif($oldrif != $rif) {\n\t\t\t\tcc_updateVetrina($oldrif); \n\t\t\t\tcc_import_immobili_error_log(\"Tolgo vetrina da \".$oldrif);\n\t\t\t}\n\t\t}else{\n\t\t\t$vetrina = '0';\n\t\t}\t\t\n\t\n\t}else{\n\t\t$vetrina = '0';\n\t}\n\t\n\treturn $vetrina;\n}", "function aturan22($word)\n {\n if (substr($word, 0, 3) == 'per' and preg_match('/^[raiuoe]/', substr($word, 3, 1)) == 0 and substr($word, 5, 2) != 'er') {\n return true;\n } else {\n return false;\n }\n }", "function check_status($status){\n if($status==1000)\n echo \"không phê duyệt \";\n \n}", "function mot($chaine){\r\n $retourFinal = \"faux\";\r\n for($i=0;$i<laTaille($chaine);$i++){\r\n if(testAlphabet($chaine[$i])==\"vrai\"){\r\n $retour[$i]=\"vrai\";\r\n }\r\n else{\r\n $retour[$i]=\"faux\";\r\n }\r\n }\r\n $j=0;\r\n while($j<laTaille($chaine) && $retour[$j]==\"vrai\"){\r\n $j++;\r\n }\r\n if($j==laTaille($chaine)){\r\n $retourFinal = \"vrai\";\r\n }\r\n return $retourFinal;\r\n }", "public function index_Pijaca_Test(){\r\n $this->unit->run($this->index_Pijaca(), TRUE, 'Testiranje pozivanja index strane');\r\n echo $this->unit->report();\r\n }", "function validateTituloEleitor( $value){\n\n $input = preg_replace('/[^\\d]/', '', $value);\n\n $uf = substr($input, -4, 2);\n\n if (((strlen($input) < 5) || (strlen($input) > 13)) || \n (str_repeat($input[1], strlen($input)) == $input) || \n ($uf < 1 || $uf > 28)) {\n return false;\n }\n\n $dv = substr($input, -2);\n $base = 2;\n\n $sequencia = substr($input, 0, -4);\n\n for ($i = 0; $i < 2; $i++) { \n $fator = 9;\n $soma = 0;\n\n for ($j = (strlen($sequencia) - 1); $j > -1; $j--) { \n $soma += $sequencia[$j] * $fator;\n\n if ($fator == $base) {\n $fator = 10;\n }\n $fator--;\n }\n $digito = $soma % 11;\n if (($digito == 0) and ($uf < 3)) {\n $digito = 1;\n } elseif ($digito == 10) {\n $digito = 0;\n }\n if ($dv[$i] != $digito) {\n return false;\n }\n switch ($i) {\n case '0':\n $sequencia = $uf . $digito;\n break;\n }\n }\n return true;\n }", "public function testCreateExpedicao()\n {\n }", "public function testVatin()\n {\n $this->assertTrue(RuValidation::vatin('7710140679'));\n $this->assertTrue(RuValidation::vatin('772807592828'));\n\n $this->assertFalse(RuValidation::vatin('12345'));\n\n // invalid checksums\n $this->assertFalse(RuValidation::vatin('7710140670'));\n $this->assertFalse(RuValidation::vatin('772807592837'));\n }", "public function testAscii3()\n {\n $this->assertEquals(Str::ascii('arrête'), 'arrete');\n }", "function checkSoDu()\n{\n // lay tham so post\n $STK = $_POST[\"TKDi\"];\n $SoTien = $_POST[\"SoTien\"];\n // lay muc phi giao dich\n $QD = new QuyDinh();\n $QD->getInfo(1);\n // kiem tra so du\n $TK = new TKNganHang();\n $SoDu = $TK->getSoDu($STK);\n //\n $SoTien += $QD->MucPhi;\n\n $TK = new TKNganHang();\n $SoDu = $TK->getSoDu($STK);\n ////echo \"<script>alert(\".$SoDu.\");</script>\";\n $SoDuSauKhiChuyen=$SoDu-$SoTien;\n // if ($SoDuSauKhiChuyen<=0)\n // echo 0;\n // else\n echo $SoDuSauKhiChuyen;\n //echo $SoDu;\n //echo $SoDu;\n}", "public function calcula13o()\n {\n }", "public function calcula13o()\n {\n }", "public function testKojiPreskacem()\n {\n $this->markTestSkipped(\"ovaj test je namjerno prekocen\");\n }", "function verifie_champ_utiliser($champ, $liste_champ_utilise) {\n\tif (is_array ( $liste_champ_utilise ))\n\t\t$liste_champ = $liste_champ_utilise;\n\telse\n\t\t$liste_champ [0] = $liste_champ_utilise;\n\t$nb_champ = count ( $liste_champ );\n\t$CODE_RETOUR = false;\n\tfor($i = 0; $i < $nb_champ; $i ++) {\n\t\tif ($champ === $liste_champ [$i]) {\n\t\t\t$CODE_RETOUR = true;\n\t\t\tbreak;\n\t\t}\n\t}\n\treturn $CODE_RETOUR;\n}", "public function testXCsv()\n {\n\n\n }", "public function testPagarTransbordoNormal(){\n $tarjetaMedioUni= new TarjetaMedioUni;\n $tarjetaMedioUni->recargar(50);\n $tarjetaMedioUni->normalTransbordo();\n $this->assertEquals($tarjetaMedioUni->obtenerSaldo(), 50-$tarjetaMedioUni->obtenerValor()*2*33/100);\n }", "public function test() {\n\n\t}", "#[@test]\n public function selectUmlautString() {\n $this->assertEquals('‹bercoder', $this->db()->query('select %s as value', '‹bercoder')->next('value'));\n }", "function Atv_HumanAksesKegiatan($akses): string\n{\n if ($akses == '5') return 'Presensi';\n elseif ($akses == '7') return 'Tambahan';\n}", "public function testExample()\n {\n $this->assertTrue(True);\n $arr=[];\n $this->assertEmpty($arr);\n $msg=\"Hello\";\n $this->assertEquals('Hello',$msg);\n $n= random_int(0,100);\n $this->assertLessThan(100,$n);\n }", "function hapusawalan1($kata){\n if(substr($kata,0,4)==\"meng\"){\n if(substr($kata,4,1)==\"e\"||substr($kata,4,1)==\"u\"){\n $kata = \"k\".substr($kata,4);\n }else{\n $kata = substr($kata,4);\n }\n }else if(substr($kata,0,4)==\"meny\"){\n $kata = \"ny\".substr($kata,4);\n }else if(substr($kata,0,3)==\"men\"){\n $kata = substr($kata,3);\n }else if(substr($kata,0,3)==\"mem\"){\n if(substr($kata,3,1)==\"a\" || substr($kata,3,1)==\"i\" || substr($kata,3,1)==\"e\" || substr($kata,3,1)==\"u\" || substr($kata,3,1)==\"o\"){\n $kata = \"p\".substr($kata,3);\n }else{\n $kata = substr($kata,3);\n }\n }else if(substr($kata,0,2)==\"me\"){\n $kata = substr($kata,2);\n }else if(substr($kata,0,4)==\"peng\"){\n if(substr($kata,4,1)==\"e\" || substr($kata,4,1)==\"a\"){\n $kata = \"k\".substr($kata,4);\n }else{\n $kata = substr($kata,4);\n }\n }else if(substr($kata,0,4)==\"peny\"){\n $kata = \"s\".substr($kata,4);\n }else if(substr($kata,0,3)==\"pen\"){\n if(substr($kata,3,1)==\"a\" || substr($kata,3,1)==\"i\" || substr($kata,3,1)==\"e\" || substr($kata,3,1)==\"u\" || substr($kata,3,1)==\"o\"){\n $kata = \"t\".substr($kata,3);\n }else{\n $kata = substr($kata,3);\n }\n }else if(substr($kata,0,3)==\"pem\"){\n if(substr($kata,3,1)==\"a\" || substr($kata,3,1)==\"i\" || substr($kata,3,1)==\"e\" || substr($kata,3,1)==\"u\" || substr($kata,3,1)==\"o\"){\n $kata = \"p\".substr($kata,3);\n }else{\n $kata = substr($kata,3);\n }\n }else if(substr($kata,0,2)==\"di\"){\n $kata = substr($kata,2);\n }else if(substr($kata,0,5)==\"keter\"){\n $kata = substr($kata,5);\n }else if(substr($kata,0,3)==\"ter\"){\n $kata = substr($kata,3);\n }else if(substr($kata,0,2)==\"ke\"){\n $kata = substr($kata,2);\n }\n return $kata;\n }", "public function testCreateContador()\n {\n }", "public function testGetChars()\n {\n $this->todo('stub');\n }", "public function testUppercaseSingleLetter() : void\n {\n $word = 'A';\n $this->assertEquals(1, score($word));\n }", "function test_entier($valeur){\r\n return ($valeur>0 || $valeur==\"0\");\r\n}", "function langonet_tester_definition() {\n\t// Commenter ou decommenter les lignes suivantes pour tester les differents cas de verification\n\t// VERIFICATION DEFINITION : Erreurs\n\t// -- Les items suivants, utilises comme des items du module Langonet, ne sont pas definis dans langonet-tests_fr.php\n\t$essai = _T('langonet-tests:test_item_non_defini_1');\n\t$essai = _T('langonet-tests:test_item_non_defini_2');\n\n\t// VERIFICATION DEFINITION : Erreurs\n\t// -- Les items suivants, utilises comme des items de modules differents de Langonet, ne sont pas definis dans leur fichier\n\t// de langue respectif (spip, ecrire ou public.php pour le premier, cfg_fr pour le second)\n\t$essai = _T('test_item_non_defini_3');\n\t$essai = _T('cfg:test_item_non_defini_4');\n\t$essai = _T('cfg:bouton_valider');\n\n\t// VERIFICATION DEFINITION : Avertissements\n\t// -- Les items suivants n'appartiennent pas au module Langonet, sont utilises dans Langonet mais bien definis dans leur \n\t// fichier de langue respectif\n\t$essai = array(0 => _T('date_jour_1'));\n\t$essai = array_push(_T('cfg:bouton_effacer'));\n\n\t// VERIFICATION DEFINITION : Avertissements\n\t// -- Les items suivants sont utilises dans un contexte complexe. Ce sont des items de Langonet ou pas\n\t$essai = _T('langonet-tests:test_item_1_'.$variable);\n\t$essai = _T('test_item_2_'.$variable);\n\t$essai = _T(\"langonet-tests:$arg1\");\n\t$essai = _T('langonet-tests:' . $arg2);\n\t$essai = _T(\"langonet-tests:\".$arg3);\n\n\t// VERIFICATION _L() : Erreurs\n\t$essai = _L('Test 1 _L() de langonet');\n\t$essai = _L(\"Test 2 _L() de langonet\");\n\t$essai = _L(\"Test 3 _L()\", $arg4);\n\t$essai = _L('Test 4 _L()' . $arg5);\n\t$essai = _L(\"Test 5 _L()$arg6\");\n\t$essai = _L(\"Test 6 _L()${arg7}\");\n\t$essai = _L(\"Test 7 _L()\");\n\t$essai = _L (\"TEST 7 _L()\");\n\t$essai = _L\t\t(\"Test 7 _L()\");\n\t$essai = _L(\"T1234567890123456789012345678901abcdef\");\n}", "function hitungUmur($thn_lahir, $thn_sekarang){\n $umur = $thn_sekarang - $thn_lahir;\n return $umur;\n}", "public function testGenerateBarcodeEAN8()\n {\n }", "public function testPrimeDirecteur4(){\n $directeurATester = new Directeur();\n $dateTemoin = \"12/07/2018\";\n $montantPrime = 5850;\n $salaireTemoin = 45000;\n \n $directeurATester->setSalaire($salaireTemoin);\n $directeurATester->setDateEmbauche($dateTemoin);\n $this->assertEquals($montantPrime,$directeurATester->calculerPrime());\n }", "public function testSpecial(): void {\n\t}", "public function testGenerateBarcodeUPCA()\n {\n }", "public function testAsech()\n {\n $asech = Trigonometry::asech(0.2);\n $this->assertEquals(2.2924316695612, $asech, '', 1E-8);\n }", "function in_crenaux(int $heure, array $crenaux) :string{\r\n foreach($crenaux as $crenau){\r\n $debut = $crenau[0];\r\n $fin = $crenau[1];\r\n if($heure >= $debut && $heure < $fin){\r\n return <<<HTML\r\n <div class =\"alert alert-success\">Le magasin est ouvert! </div>\r\nHTML;\r\n }\r\n\r\n }\r\n return <<<HTML\r\n <div class =\"alert alert-danger\">Le magasin est fermé! </div>\r\nHTML;\r\n}", "public function eedijalan($bau){\n return $bau.' banget';\n }", "function aturan19($word)\n {\n if (substr($word, 0, 4) == 'memp' and preg_match('/^[aiuo]/', substr($word, 4, 1))) {\n return true;\n } else {\n return false;\n }\n }", "function filtrele($isim){\n return $isim . \" \" . 'Bayrak';\n }", "function testBug13600() \n {\n //$this->oBeaut->startLog();\n $this->oBeaut->addFilter('Pear');\n $sText = <<<SCRIPT\n<?php\nfunction example(){\n}\n?>\nSCRIPT;\n $this->setText($sText);\n $sExpected = <<<SCRIPT\n<?php\nfunction example()\n{\n}\n?>\nSCRIPT;\n $this->assertEquals($sExpected, $this->oBeaut->get());\n }", "function ahoj($priezvisko)\n {\n echo \"Nazdar<br>\".$priezvisko;\n echo \"<br><br>\";\n }", "function verificaSpecialeRagazzi($numeroEvento, $conn) {\n $stmt = $conn->prepare(\"SELECT E.speciale_ragazzi FROM Evento AS E WHERE E.id = ?\");\n $stmt->bind_param(\"i\", $numeroEvento);\n $stmt->execute();\n $stmt->bind_result($speciale_ragazzi);\n $stmt->fetch();\n $stmt->close();\n if ($speciale_ragazzi){return \"<h3 style='color:red;'> SPECIALE RAGAZZI </h3>\";}\n }", "function testSearch2(): void\n {\n // Das Streben nach Glück | The Pursuit of Happyness\n // https://www.imdb.com/find?s=all&q=Das+Streben+nach+Gl%FCck\n\n Global $config;\n $config['http_header_accept_language'] = 'de-DE,en;q=0.6';\n\n $data = engineSearch('Das Streben nach Glück', 'imdb', false);\n $this->assertNotEmpty($data);\n\n $data = $data[0];\n // $this->printData($data);\n\n $this->assertEquals('imdb:0454921', $data['id']);\n $this->assertMatchesRegularExpression('/Das Streben nach Glück/', $data['title']);\n }", "function Tinh ($x,$n){\n $tong = 0;\n if($x<0 || $n <0){\n echo \"<p>Không cho phép tính toán với số âm</p>\";\n }else{\n for ($i=1;$i<=$n;$i++){\n $tong+=$x*$i*2;\n }echo \"<p>S($n) = $tong</p>\";\n }\n}", "public static function doYouMean() {\r\n\t\t$aranan_kelime = 'ph'; //Bu değerin veritabanından geldiğini varsayalım\r\n\t\t$diziler = array('php', 'asp', '.net', 'jsp', 'java', 'javascript', 'html', 'c', 'css', 'xml');\r\n\t\t//$diziler dizisi, veritabanından çekilen birçok veri dizisi olduğu varsayalım\r\n\t\t$uzunluk = -1;\r\n\t\t\r\n\t\tforeach($diziler as $dizi) {\r\n\t\t\t$benzerlik = levenshtein($aranan_kelime, $dizi);\r\n\t\t\tif($benzerlik == 0) {\r\n\t\t\t\t$yakinlik = $dizi;\r\n\t\t\t\t$uzunluk = 0;\r\n\t\t\t}\r\n\t\t\tif(($benzerlik <= $uzunluk) || ($uzunluk < 0)) {\r\n\t\t\t\t$yakinlik = $dizi;\r\n\t\t\t\t$uzunluk = $benzerlik;\r\n\t\t\t}\r\n\t\t}\r\n\t\t\r\n\t\t$op = \"Aranan Kelime: \".$aranan_kelime;\r\n\t\tif($uzunluk == 0) {\r\n\t\t\t$op .= $yakinlik.\" için herhangi bir sonuç bulunamadı!\";\r\n\t\t} else {\r\n\t\t\t$op .= \"Bunu mu demek istediniz? \".$yakinlik;\r\n\t\t}\r\n\t\treturn $op;\r\n\t}", "public function testCreateNotaEspelhoPatrimonio()\n {\n }", "function get_lib_est_alcoolisee(){\n if($this->est_alcoolisee){\n echo \"Oui\";\n }else{\n echo \"Non\";\n }\n }" ]
[ "0.6667582", "0.6667217", "0.6631266", "0.6597926", "0.63365287", "0.6194477", "0.6149859", "0.6137035", "0.61144394", "0.60152215", "0.60126394", "0.6005855", "0.6005141", "0.5994297", "0.5968745", "0.5967156", "0.59372616", "0.59021294", "0.589845", "0.5895275", "0.5888672", "0.5865216", "0.5863784", "0.58596796", "0.5824617", "0.58236", "0.5809722", "0.5808097", "0.5787682", "0.5782545", "0.57722783", "0.57642996", "0.5737284", "0.57366496", "0.5731577", "0.5729704", "0.5706607", "0.5704119", "0.5688263", "0.5675875", "0.56709117", "0.5669332", "0.5642759", "0.56299144", "0.56280303", "0.561898", "0.5603834", "0.55969006", "0.55951226", "0.5588486", "0.55866945", "0.55765057", "0.55750227", "0.5567083", "0.5560781", "0.555342", "0.5550167", "0.5546285", "0.5546117", "0.5544733", "0.5539693", "0.5537003", "0.5534848", "0.5534654", "0.5516042", "0.55096006", "0.5502744", "0.5501622", "0.5501622", "0.5500634", "0.5493739", "0.54835767", "0.54830813", "0.54806113", "0.547597", "0.5471936", "0.54641235", "0.5449763", "0.54480815", "0.54471254", "0.544211", "0.5434982", "0.5430397", "0.54297334", "0.54241467", "0.54219055", "0.54084194", "0.5406534", "0.5404608", "0.5399447", "0.5395572", "0.53927726", "0.53890073", "0.53851575", "0.5375929", "0.5372923", "0.5370622", "0.5370026", "0.5366854", "0.53655314", "0.53645796" ]
0.0
-1
=========================================================== logs error ===========================================================
function log($format=false, $address=false, $title='') { $out = ''; if ($format === false) $format = self::$log_format; switch ($format) { case 'text': $out .= $this->get_message()."\n\n"; break; case 'email': case 'mail': ob_start(); echo $this->get_message(); echo "\nFor URL: ".$_SERVER['REQUEST_URI']."\n\n"; echo "With Reqeust:"; var_export(params()); echo "\n\n"; echo "In ".$this->get_file()." on line ".$this->get_line()."\n"; mail($address, $title.': '.get_class($this).' Error', ob_get_clean()); break; case 'html': $out = $this->to_html(); break; case 'xml': $out .= $this->to_xml(); break; case 'silent': # do nothing break; } error_log("Exception in ".$this->get_file().":".$this->get_line()." - ".$this->get_message()); return $out; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function logError() {}", "public function printErrorLog() {}", "public function logError(){\n AbstractLoggedException::$dbMessage .= \"Invalid URI requestd; \";\n parent::log();\n }", "public function error()\n {\n $this->appendLog(\n 'error',\n \\func_get_args(),\n $this->internal->getErrorCaller()\n );\n }", "function logError(){\r\n\r\n\t\t$message = $_SERVER[\"REQUEST_URI\"].\"\\n\";\r\n\t\t$message .= $this->number;\r\n\r\n\t\tif($this->title)\r\n\t\t\t$message.=\": \".$this->title;\r\n\r\n\t\tif($this->details)\r\n\t\t\t$message.=\"\\n\\n\".$this->details;\r\n\r\n\t\t$log = new phpbmsLog($message,\"ERROR\");\r\n\r\n\t}", "public function error() {\n // The tests cover errors, so there will be plenty to sift through\n // $msg = func_get_arg(0);\n // $err = 'API ERROR: ' . $msg . PHP_EOL;\n\n // $objs = func_get_args();\n // array_splice($objs, 0, 1);\n\n // ob_start();\n // foreach($objs as $obj) {\n // var_dump($obj);\n // }\n // $strings = ob_get_clean();\n\n // file_put_contents('tests.log', [$err, $strings], FILE_APPEND);\n }", "public function error();", "function error(){}", "function _error_log( $data ) {\n\t\tIMFORZA_Utils::error_log( $data );\n\t}", "function ws_error_log ($ex) {\n\tglobal $CFG;\n\tif (is_object($ex)){\n\t\t$info=$ex->getMessage() . '\\n' . $ex->getTraceAsString();\n\t}else $info=$ex;\n\terror_log ($info,3,$CFG->dataroot.'/wspp_db_errors.log' );\n}", "public function errorOccured();", "private function _logError()\n {\n if(!$this->_error) return;\n\n $error_file = APPLICATION_DATA . '/logs/log_apps.log';\n // set content of error file\n $content = 'Date: ' . date('Y-m-d H:i:s') . PHP_EOL;\n $content .= 'Message: ' . $this->_error->exception->getMessage() . PHP_EOL;\n $content .= 'File: ' . $this->_error->exception->getFile() . PHP_EOL;\n $content .= 'Line: ' . $this->_error->exception->getLine() . PHP_EOL;\n $content .= 'Request Uri: ' . $this->_error->request->getRequestUri() . PHP_EOL;\n $content .= 'Request Method: ' . $this->_error->request->getMethod() . PHP_EOL;\n $content .= 'Request Params: ' . json_encode($this->_error->request->getParams()) . PHP_EOL;\n $content .= 'Id User: ' . Base_Auth::getUser('id_user') . PHP_EOL;\n $content .= '-----------------------------------' . PHP_EOL;\n\n // write content to file\n if(file_exists($error_file)){\n $content.= file_get_contents($error_file, false, null, null, 1024*1024); // last 1Mb of log;\n }\n\n $handle = fopen( $error_file, 'w' );\n fwrite($handle, $content);\n fclose($handle);\n }", "public function error()\n\t{\n\t}", "function logErrors() {\n\t\t\n\t\t// ignore call if verbosity maximum.\n\t\tif($this->_verbosity < 2)\n\t\t\treturn;\n\t\t\t\n\t\t// error handling\n\t\terror_reporting(E_ALL);\n\t\tini_set('display_errors',0);\n\t\tini_set('log_errors',1);\n\t\tini_set('log_errors_max_len',0);\n\t\tini_set('html_errors',0);\n\t\t\n\t\t// set log file\n\t\tini_set('error_log',$this->_workDir . '/ERROR_LOG');\n\t}", "public function error(){\n\t}", "abstract public function error();", "function log_error( $msg ){\n self::system_log( $msg, 'ERROR' );\n }", "public function get_error();", "public function get_error();", "public function logerrorAction()\r\n {\r\n $this->_helper->viewRenderer->setNoRender();\r\n $this->_helper->layout->disableLayout();\r\n \r\n $tipo = $this->_getParam('tipo');\r\n $origen = $this->_getParam('origen');\r\n $error = $this->_getParam('error');\r\n \r\n \r\n echo $error;\r\n \r\n $log = new Application_Plugin_LogError();\r\n $log->setLog($tipo, 3, array( 'type' => \"Application error\", 'exception' => $error, 'controller'=>null, 'action'=>null, 'parametros'=>$origen, 'referer'=>((isset($_SERVER['HTTP_REFERER']))?$_SERVER['HTTP_REFERER']:NULL),'user_id'=>((isset($this->view->user->ID))?$this->view->user->ID:NULL), 'username'=>((isset($this->view->user->username))?$this->view->user->username:NULL)));\r\n \r\n }", "protected function error($msg) {\n \t parent::error($msg); //log in error msg\n throw new Exception ($msg); // <-- TESTS php4\n }", "public function errors();", "public function errors();", "protected function assertErrorLogEntries() {}", "function errlog($msg) {\n file_put_contents('php://stderr', $msg );\n }", "protected function errorAction() {}", "function ERROR_LOGGER($f) {error_log($f); }", "function error($type, $msg, $file, $line)\n{\n // on lit les principales variables d'environnement\n // pour ecrire leur contenu dans le log\n global $HTTP_HOST, $HTTP_USER_AGENT, $REMOTE_ADDR, $REQUEST_URI;\n // on donne un nom au fichier d'erreur\n $errorLog = URL_BASE .\"erreur.log\"; \n // construction du contenu du fichier d'erreur\n $errorString = \"Date: \" . date(\"d-m-Y H:i:s\") . \"\\n\";\n $errorString .= \"Type d'erreur: $type\\n\";\n $errorString .= \"Message d'erreur: $msg\\n\";\n $errorString .= \"Fichier: $file($line)\\n\";\n $errorString .= \"Host: $HTTP_HOST\\n\";\n $errorString .= \"Client: $HTTP_USER_AGENT\\n\";\n $errorString .= \"Client IP: $REMOTE_ADDR\\n\";\n $errorString .= \"Request URI: $REQUEST_URI\\n\\n\";\n // ecriture du log dans le fichier erreur.log\n $fp = fopen($errorLog, \"a+\");\n fwrite($fp, $errorString);\n fclose($fp);\n \n // n'affiche que \n if ($type == E_ERROR || $type == E_WARNING ){\n // display error message\n echo \"<h4>Erreur (<small>$msg</small>)</h4>\";\n echo \"Nous sommes désolés, mais cette page ne peut être affichée à cause d'une erreur interne.\n <br />\n Cette erreur a été enregistrée et sera corrigée dès que possible.\n <br /><br/>\n <a href=# onClick='history.go(-1)'>Cliquer ici pour revenir au menu précédent.</a>\";\n }\n}", "public function error($error) {\n // que vai fazer alguma coisa (mandar um email,\n // gravar log, etc )\n $this->log($error);\n }", "protected function error($msg) {\n error_log($msg);\n }", "function getError();", "function getError();", "public static function err() {\n\t\t# Get arguments to this function:\n\t\t$args = func_get_args();\n\n\t\t# Add message to log:\n\t\treturn self::add(LOG_ERR, $args);\n\t}", "public function err($message)\r\n {\r\n $this->log($message, SF_LOG_ERR);\r\n }", "function msgsrv_last_error () {}", "public function errorInfo() {}", "function ae_fnerror_log( $ae_lvmessage ) {\n\terror_log( 'ae_tlch_xmlreq.php: ' . $ae_lvmessage );\n}", "public function errorInfo();", "public function errorInfo();", "function lastError();", "public function getError() {}", "function crystal_pear_error($err)\n{\n error_log(sprintf(\"%s (%s): %s\",\n $err->getMessage(),\n $err->getCode(),\n $err->getUserinfo()), 0);\n}", "public static function error($value)\n {\n self::$logs .= '[' . date('Y-m-d H:i:s', time()) . '] Error ' . $value . \"\\n\";\n }", "function error($f3) {\n\t\t$content = $f3->get('ERROR.text') . '<br /><br />';\n\t\t#echo $f3->get('ERROR.text') . '<br /><br />';\n\t\t\n\t\tforeach ($f3->get('ERROR.trace') as $frame) {\n\t\t\t$content .= '<div>' . print_r($frame, true) . \"</div><br />\";\n\t\t}\n\t\t$f3->set('content', $content);\n\t\t/*\n\t\t$log=new Log('error.log');\n\t\t$log->write($f3->get('ERROR.text'));\n\t\tforeach ($f3->get('ERROR.trace') as $frame)\n\t\t\tif (isset($frame['file'])) {\n\t\t\t\t// Parse each backtrace stack frame\n\t\t\t\t$line='';\n\t\t\t\t$addr=$f3->fixslashes($frame['file']).':'.$frame['line'];\n\t\t\t\tif (isset($frame['class']))\n\t\t\t\t\t$line.=$frame['class'].$frame['type'];\n\t\t\t\tif (isset($frame['function'])) {\n\t\t\t\t\t$line.=$frame['function'];\n\t\t\t\t\tif (!preg_match('/{.+}/',$frame['function'])) {\n\t\t\t\t\t\t$line.='(';\n\t\t\t\t\t\tif (isset($frame['args']) && $frame['args'])\n\t\t\t\t\t\t\t$line.=$f3->csv($frame['args']);\n\t\t\t\t\t\t$line.=')';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Write to custom log\n\t\t\t\t$log->write($addr.' '.$line);\n\t\t\t}\n\t\t*/\n\t\t#$f3->set('inc','error.htm');\n\t}", "public function error($msg){\n\t\tif($this->debugLevel >= self::LOG_ERROR){\n\t\t\t$this->_log($msg, self::LOG_ERROR);\n\t\t}\n\t}", "public function getErr() {}", "private function error_report($msg){\n die($msg);\n }", "private static function handleError($sql)\n\t{\n\t\t\n\t\t/*\n\t\tif(some condition ie. \"on development server\")\n\t\t{\n\t\t\techo '<div style=\"font-weight:bold; white-space:pre; border:1px dashed red;\"><span style=\"color:blue;\">' . $sql . '</span><br/>gave an error of: <span style=\"color:red;\">' . self::$link->error . '</span></div>';\n\t\t}\n\t\t*/\n\t\t\n\t\tlog_error($sql);\n\t}", "function handle_error($errno, $error){\r\n $res = new Result('array');\r\n $res->error_number = $errno;\r\n $res->error_desc = $error;\r\n $res->print_result();\r\n Logger::close();\r\n die;\r\n}", "public static function logError($info) {\n\t\ttry {\n\t\t\t$db = new OneArchyDB(F2T_DB_HOST, F2T_DB_NAME, F2T_DB_USER, F2T_DB_PASS);\n $db->connect();\n\t\t\t$db->logError($info['errorMessage'], $info['content']);\n\t\t}\n\t\tcatch (Exception $e) {\n\t\t\tthrow new Exception('Even error logging failed? Wow! ' . $e->getMessage());\n\t\t}\n\t}", "function logError($filename, $mssg){\n\n\t// Path for all the log files\n\t$filepath = '../logs/';\n\n\t$time = new DateTime(null, new DateTimeZone('America/Chicago')); //Central\n\t$time = $time->format('Y-m-d H:i:s'); // MySQL datetime format\n\n\t$input = $time . \" [ERROR] : \" . $mssg . \"\\n\";\n\t$htmlInput = \"<p class=\\\"error\\\"><b>\" . $time . \"<font color=\\\"red\\\"> [ERROR]</font></b><br>\" . $mssg . \"</p>\";\n\n\t$fileArray = explode('.', $filename);\n\tif(strtolower(array_pop($fileArray)) == \"html\"){\n\n\t\t$htmlInput = \"<p class=\\\"error\\\"><b>\" . $time . \"<font color=\\\"red\\\"> [ERROR]</font></b><br>\" . $mssg . \"</p>\";\n\t\t\n\t\t// append in html file\n\t\tfile_put_contents($filepath . $filename, $htmlInput, FILE_APPEND);\n\t}\n\telse{\n\t\t// append in text file\n\t\tfile_put_contents($filepath . $filename, $input, FILE_APPEND);\n\t}\n}", "public static function error_log( $data ) {\n\t\t\terror_log( print_r( $data, true ) );\n\t\t}", "private function logException()\n {\n switch ($this->classShortName) {\n case 'IndexException':\n case 'CreateException':\n case 'ReadException':\n case 'UpdateException':\n case 'DeleteException':\n Log::error($this->message);\n Log::error(print_r($this->getExceptionData(), true));\n break;\n default:\n Log::error($this->message);\n }\n }", "function error_handler($errno, $errstr, $errfile, $errline, $errcontext){\n\tif ($errno == 2048){return;} //keeps out erros related to pear::db\n\t$error = \"\\n\\n\";\n\t$error .= date(\"Y-M-d H:i:s\").$disc.\"\\n\"; //add timestamp\n\t$error .= 'Error Number '.$errno.\": \".$errstr.\"\\n\";\n\t$error .= 'In file: '.$errfile.\"\\n\";\n\t$error .= 'At line number: '.$errline.\"\\n\";\n\t//$error .= print_r($errcontext).\"\\n\";\n\tfile_put_contents('/tmp/freepbx_debug.log',$error, FILE_APPEND);\n}", "public function err($message)\n {\n $this->log($message, self::ERR);\n }", "private function handle_error($err) {\n $this->error .= $err . \"rn\";\n }", "public function error($message) {}", "function atkerror($txt)\n{\n\tglobal $g_error_msg;\n\t$g_error_msg[]=\"[\".elapsed().\"] \".$txt;\n\n\tatkdebug($txt, DEBUG_ERROR);\n\n\tif (function_exists('debug_backtrace'))\n\tatkdebug(\"Trace:\".atk_get_trace(), DEBUG_ERROR);\n\n\tif (atkconfig('throw_exception_on_error'))\n\t{\n\t\tthrow new Exception($txt);\n\t}\n}", "public function errorsLog($message = '', $file = '', $line = '')\n {\n error_log(\"[\" . date('Y-m-d h:i:s') . \"] text of error: {$message} | File: {$file} | String: {$line}\\n============ next ->\\n\", 3, TEMP_DIR . 'errors.log');\n }", "public function failed()\n {\n $msg = self::class;\n $msg .= ' - Código: '.$this->$code;\n\n app('LogExtract')->error($msg);\n }", "function agate_log($contents)\n{\n error_log($contents);\n}", "public function actionError() {\n \n }", "public function getError();", "public function getError();", "public function getError();", "protected function getLastError() {}", "public function showError();", "public function sql_error() {}", "public function sql_error() {}", "function error_log($msg)\n{\n echo \"ERR: $msg\";\n}", "public static function errorLog($msg) {\r\n\t\t// disable error log if we are running in a CLI environment\r\n\t\tif (php_sapi_name () != 'cli') {\r\n\t\t\terror_log ( $msg );\r\n\t\t}\r\n\t\r\n\t\t// uncomment this if you want to see the errors on the page\r\n\t// print 'error_log: '.$msg.\"\\n\";\r\n\t}", "protected function error($message) { \n\t\t$this->error_found = true; \n\t\t$this->error_message = $message; \n\t}", "function get_errors()\n {\n }", "function set_error($err) {\n # Set Current Error Message\n $this->error_message = $err;\n\n # Add to Error Log\n $this->error_log[] = $err;\n\n # Increment Error Counter\n $this->error_count++;\n }", "public function errorMode(){}", "public function errorInfo()\n {\n }", "public static function log()\n {\n dmContext::getInstance()->getLogger()->err(self::formatAsString(func_get_args()));\n }", "function error()\n {\n global $lang;\n $args = func_get_args();\n $errmsg = (implode('', $args));\n $this->errors[] = $errmsg;\n }", "function writerErrLog($errText){\n// err::writerErrLogToDatabase($errText);\n\n}", "abstract public function getLastError();", "abstract public function getLastError();", "function gmsError( $errorCode, $errorText, $av1, $av2 )\n{\n\t# this is debugging only\n\t$displayFlag = 0;\n\tif ( $displayFlag ) {\n\t\t#echo '<br> GMSerror <br> ';\n\t\tprintf( ' <b>GMS-Error: '. $errorCode. ' '. $errorText. '</b>');\n\t}\n\t# Log errors\n\t$log_file = 'logs/gmserror.log';\n\t$dlm = ';';\n\t# create an entry with date.time, errorcode, error text. to get NEWLINE must put \\r\\n in double quotes.\n\t$logdata = gmdate('Y-m-d H:i:s'). ' UTC '. $dlm. $errorCode. $dlm. $errorText. $dlm. \"\\r\\n\";\n\terror_log($logdata, 3, $log_file);\n\treturn 1;\n}", "private function _error() {\n\t\trequire $this->_controllerPath . $this->_errorFile;\n\t\t$this->_controller = new Error();\n\t\t$this->_controller->index('Esta página no existe');\n\t\texit;\n\t}", "public function errorAction()\n\t{\n\t}", "private function error($msg)\n {\n\t\t$this->error = true;\n\t\t$this->error_message .= $msg;\n }", "function error($error_msg)\n\t{\n\t\tdie(\"<b>\" . $this->app_name . \" FATAL ERROR</b>: \" . $error_msg);\n\t}", "function error_log_details($type = \"info\",$label = \"no label\") \n\t{\n\t\t$w_call_detail = __FILE__.\" line (\".__LINE__.\") call from (\".$_SERVER[\"SCRIPT_FILENAME\"].\") : \";\n\t\tswitch($type) \n\t\t{\n\t\t\tcase \"fatal\":\n\t\t\t\t$w_prefixe = \"Fatal error on \".$w_call_detail;\n\t\t\t\terror_log($w_prefixe.$label);\n\t\t\t\tdie();\n\t\t\t\tbreak;\n\t\t\tcase \"info\":\n\t\t\t\t$w_prefixe = \"Info : \".$w_call_detail;\n\t\t\t\terror_log($w_prefixe.$label);\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\t$w_prefixe = \"STOP : \".$w_call_detail;\n\t\t\t\terror_log($w_prefixe.\"!!!! unknown type parameters call !!!!!!\");\n\t\t\t\tdie();\n\t\t\t\tbreak;\n\t\t}\n\t}", "function cc_import_immobili_error_log($msg){\n\t\n\t$path = ABSPATH . \"import/\";\n\t$d = date(\"Ymd\");\n\t$file = $path.\"logfile_\".$d.\".txt\";\n\tif(is_array($msg)) $msg = var_export($msg, true);\n\t\n\t$method = (file_exists($file)) ? \"a\": \"w\";\n\t$handle = fopen($file, $method);\n\t$string = date(\"Y-m-d H:i:s\", time()).\" - \".$msg.\"\\n\";\n\tfwrite($handle, $string);\n\tfclose($handle);\n\t\n}", "public function error($str);", "public function error()\n {\n throw new Exception('Something went wrong!');\n }", "function humcore_write_error_log( $error_type = '', $info = null ) {\n\n\tini_set( 'log_errors_max_len', '0' );\n\tif ( empty( $info ) ) {\n\t\terror_log( '[' . date( 'd-M-Y H:i:s T' ) . ']****************** ' . $error_type . '.' . \"\\n\\r\", 3, CORE_ERROR_LOG );\n\t} else {\n\t\terror_log( '[' . date( 'd-M-Y H:i:s T' ) . ']****************** ' . $error_type . ': ' . var_export( $info, true ) . \"\\n\\r\", 3, CORE_ERROR_LOG );\n\t}\n\n}", "function error($error, $file, $line)\n\t{\n\t\tdie(\"{$error} in file: {$file} on line {$line}\");\n\t}", "protected function _error( $e )\n\t{\n\t\t$backtrace = debug_backtrace();\n\t\tarray_shift($backtrace);\n\t\t$functions_backtrace = array();\n\t\tforeach ( $backtrace as $call )\n\t\t\t$functions_backtrace[] = $call['function'];\n\t\t$this->errors[] = array('backtrace' => $functions_backtrace, 'error' => $e);\n\t}", "private function checkError() : void\n {\n $this->isNotPost();\n $this->notExist();\n $this->notAdmin();\n }", "function error_handler($errno, $errstr, $errfile, $errline, $errcontext){\r\n global $_M_MODULE_PATH;\r\n \r\n //\r\n chdir($_M_MODULE_PATH);\r\n \r\n //\r\n if( !file_exists($totemErrorFile = getcwd() . \"/logs/\".date('Y-m').\"_-_errors.md\") ){\r\n $md = \"| Date | System | Error Num. | Error Type | Error Line | Description | File | \\r\\n\";\r\n $md .= \"|:-------------------:|:-------:|:----------:|:--------------------------------------------------------------------:| ----------:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | \\r\\n\"; \r\n }else{\r\n $md = \"\";\r\n }\r\n\r\n //\r\n $md = trim($md);\r\n $date = date(\"d/m/Y H:i:s\"); \r\n $errno = str_pad( str_pad($errno , 4, \" \", STR_PAD_LEFT) , 10 , \" \", STR_PAD_BOTH);\r\n $errline = str_pad($errline, 10 , \" \", STR_PAD_LEFT);\r\n $errstr = utf8_encode(str_pad(utf8_decode($errstr) , 182, \" \")); // POG: str_pad não calcula direito sem isso\r\n $errfile = utf8_encode(str_pad(utf8_decode($errfile), 182, \" \")); // POG: str_pad não calcula direito sem isso\r\n\r\n //\r\n switch ($errno) {\r\n case E_ERROR:\r\n $md .= \"\\r\\n| $date | PHP | $errno | <span style='color:#FFFF00; background:#E13C26'> FATAL ERROR </span> | $errline | $errstr | $errfile |\";\r\n\r\n // Separando os traceback no log de erros fatais\r\n $fileFatalErrors = fopen( getcwd() . \"/logs/\".date('Y-m').\"_-_fatal-errors.txt\", \"a+\");\r\n fwrite($fileFatalErrors, \"\\r\\n--------------------------------------------------------------------------------\\r\\n\\r\\n\");\r\n fclose($fileFatalErrors);\r\n\r\n break;\r\n\r\n case E_USER_ERROR:\r\n $md .= \"\\r\\n| $date | TOTEM | $errno | <span style='color:#E13C26'> E_USER_ERROR </span> | $errline | $errstr | $errfile |\";\r\n break;\r\n\r\n case E_WARNING: \r\n $md .= \"\\r\\n| $date | PHP | $errno | <span style='color:#F88B1C'> E_WARNING </span> | $errline | $errstr | $errfile |\";\r\n break; \r\n\r\n case E_USER_WARNING: \r\n $md .= \"\\r\\n| $date | TOTEM | $errno | <span style='color:#F88B1C'> E_USER_WARNING </span> | $errline | $errstr | $errfile |\";\r\n break; \r\n\r\n case E_NOTICE: \r\n $md .= \"\\r\\n| $date | PHP | $errno | <span style='color:#6A9D27'> E_NOTICE </span> | $errline | $errstr | $errfile |\";\r\n\r\n case E_USER_NOTICE: \r\n $md .= \"\\r\\n| $date | TOTEM | $errno | <span style='color:#3171B2'> E_USER_NOTICE </span> | $errline | $errstr | $errfile |\";\r\n break; \r\n\r\n case E_RECOVERABLE_ERROR:\r\n $md .= \"\\r\\n| $date | PHP | $errno | <span style='color:#E13C26'> E_RECOVERABLE_ERROR </span> | $errline | $errstr | $errfile |\";\r\n break;\r\n\r\n default:\r\n $md .= \"\\r\\n| $date | ??? | $errno | <span style='color:#000000'> UNKNOWN </span> | $errline | $errstr | $errfile |\";\r\n break;\r\n }\r\n\r\n //\r\n $file = fopen($totemErrorFile,\"a+\");\r\n fwrite($file, $md);\r\n fclose($file);\r\n\r\n //\r\n return true;\r\n }", "public function error($message) {\n\t\t\t$this->log('error', $message);\n\t\t}", "function handle_basic_errors ($errno,$errstr,$errfile,$errline)\n{\n // We identify the error type\n switch($errno)\n {\n case E_USER_ERROR :\n $type = \"Fatal error:\";\n echo '<p><strong>$type</strong> : '.$errstr.'</p>';\n break;\n case E_USER_WARNING :\n $type = \"Error:\";\n echo '<p><strong>$type</strong> : '.$errstr.'</p>';\n break;\n case E_USER_NOTICE :\n $type = \"Warning:\";\n echo '<p><strong>$type</strong> : '.$errstr.'</p>';\n break;\n case E_ERROR :\n $type = \"Fatal error\";\n echo '<p><strong> $type </strong> : '.$errstr.'</p>';\n break;\n case E_WARNING :\n $type = \"Error:\";\n echo '<p><strong>$type</strong> : '.$errstr.'</p>';\n break;\n case E_NOTICE :\n $type = \"Warning:\";\n echo '<p><strong>$type</strong> : '.$errstr.'</p>';\n break;\n default :\n $type = \"Unknown error:\";\n echo '<p><strong>$type</strong> : '.$errstr.'</p>';\n break;\n }\n\n // We identify the error.\n $error = $type.\"Error Message : [\".$errno.\"]\".$errstr.\n\t\"Line :\".$errline.\" File :\".$errfile;\n\n //Retrieve value of different arrays\n\n $info = date(\"d/m/Y H:i:s\",time()).\n\t\":\".$_SERVER['REMOTE_ADDR'].\n\t\"GET:\".serialize($_GET).\n\t\"POST:\".serialize($_POST).\n\t\"SERVER:\".serialize($_SERVER).\n //\"COOKIE:\".(isset($_COOKIE)? serialize($_COOKIE) : \"Undefined\").\n //\"SESSION:\".(isset($_SESSION)? serialize($_SESSION) : \"Undefined\");\n\n // Open error file\n $handle = fopen(\"../../logs/Errlog.txt\", \"a\");\n\n // We write error messages and informations\n if ($handle)\n fwrite($handle,$error.$info);\n else echo\"Unable to open the file.\";\n\n fclose($handle);\n}", "function error(Throwable $error);", "function logError($msg, $errorD){\n\t\terror_log(print_r($msg . \"\\n\", TRUE), 3, $errorD);\n\t}", "function log_error($num, $str, $file, $line, $context = null)\n{\n log_exception(new ErrorException($str, 0, $num, $file, $line));\n}", "public function error() \n\t{\n\t\trequire $this->view('error', 'error');\n\t\texit;\n\t}" ]
[ "0.85224754", "0.7958447", "0.7931614", "0.7779453", "0.77666825", "0.76505923", "0.7593262", "0.7555741", "0.7373107", "0.73088884", "0.7303006", "0.7270531", "0.72672063", "0.72642535", "0.7258945", "0.720155", "0.71697223", "0.71467865", "0.71467865", "0.7090592", "0.7090402", "0.6997236", "0.6997236", "0.69921166", "0.697976", "0.69534427", "0.69460386", "0.69108146", "0.68989825", "0.6889255", "0.68724847", "0.68724847", "0.6858102", "0.683671", "0.681861", "0.6792886", "0.6792616", "0.67908067", "0.67908067", "0.6765285", "0.6761873", "0.6733433", "0.6722428", "0.67199177", "0.67155427", "0.67143685", "0.6711771", "0.67107874", "0.6697394", "0.6684149", "0.66822344", "0.6677414", "0.66757274", "0.66699356", "0.6667233", "0.6666389", "0.66539794", "0.6631869", "0.66295445", "0.6628776", "0.6626791", "0.6622302", "0.6591554", "0.6591554", "0.6591554", "0.6589956", "0.6583811", "0.658086", "0.658086", "0.6576912", "0.6556961", "0.6556686", "0.6555766", "0.65205884", "0.6520174", "0.6513947", "0.6506154", "0.6500368", "0.6496173", "0.64894915", "0.64894915", "0.6488413", "0.6474878", "0.64716136", "0.64709055", "0.6463351", "0.6457045", "0.64557195", "0.6450844", "0.6442778", "0.6442348", "0.6441589", "0.6427133", "0.6426863", "0.6426337", "0.64254737", "0.64198816", "0.64193434", "0.6406455", "0.640196", "0.6395417" ]
0.0
-1
=========================================================== ERROR FORMATTING ===========================================================
function to_html() { $type = get_class($this); $file = $this->get_file(); $line = $this->get_line(); $msg = nl2br($this->get_message()); $trace = "<li>".str_replace("\n", "</li>\n<li>", $this->get_trace_as_string())."</li>\n</ul>"; ob_start(); include SAINT_ROOT.'/templates/exception.phtml'; return ob_get_clean(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "abstract protected function _getErrorString();", "public function get_error();", "public function get_error();", "public function errors();", "public function errors();", "function errorFull() {\r\n $erro = $this->error();\r\n\t\t if ($erro == 1) $erroFull = \"erro 001\";\r\n\t\t return $erroFull;\r\n\t}", "function error_reporting() {\n\t\t$r='';\n\t\tif (mb_strlen(self::$error)>0) {\n\t\t\t$r.=self::$error;\n\t\t}\n\t\tif (count(self::$error_arr)>0) {\n\t\t\t$r.='<h2>Произошли следующие ошибки:</h2>'.\"\\n\".'<ul>';\n\t\t\tforeach(self::$error_arr as $key=>$value) {\n\t\t\t\t$r.='<li>'.$value.'</li>';\n\t\t\t}\n\t\t\t$r.='</ul>';\n\t\t}\n\t\treturn $r;\n\t}", "protected function createValidationErrorMessage() {}", "public function renderErrors();", "public function get_errors() { return $this->errortext; }", "abstract public function error();", "function getErrors();", "protected function renderAsError() {}", "abstract public function getMsgError();", "public function errorInfo();", "public function errorInfo();", "public function error();", "public function getInputErrors();", "function error(){}", "protected function get_error( ) {\n// i store only the latest word with 3 letters\n\n if (strlen($this->current_group_text) != 4) {\n if (strlen($this->current_group_text) == 3) {\n if ($this->current_group_text!='TAF') {\n $this->wxInfo['CODE_ERROR'] =$this->current_group_text;\n }\n $this->current_ptr++;\n }\n else {\n $this->current_ptr++;\n }\n } else {\n $this->current_group++;\n }\n }", "function displayError(){\n\t\tprint \"<div class=\\\"validationerror\\\">\";\n\t\tfor ($i=0;$i<count($this->error);$i++){\n\t\t\tprintln($this->error[$i]);\n\t\t}\n\t\tprint \"</div>\";\n\t}", "public function getError();", "public function getError();", "public function getError();", "abstract protected function _getErrorNumber();", "protected function formatResultErrors()\n\t{\n\t\t$errors = array();\n\t\tif (!empty($this->errorsFatal))\n\t\t\t$errors['FATAL'] = $this->errorsFatal;\n\t\tif (!empty($this->errorsNonFatal))\n\t\t\t$errors['NONFATAL'] = $this->errorsNonFatal;\n\n\t\tif (!empty($errors))\n\t\t\t$this->arResult['ERRORS'] = $errors;\n\n\t\t// backward compatiblity\n\t\t$error = each($this->errorsFatal);\n\t\tif (!empty($error['value']))\n\t\t\t$this->arResult['ERROR_MESSAGE'] = $error['value'];\n\t}", "protected function getFlattenedValidationErrorMessage() {}", "function getError();", "function getError();", "function get_error()\n\t{\n\t\tif ($this->error != \"\") {\n\t\t\treturn \"Error:\".$this->error;\n\t\t}\n\t\treturn \"\";\n\t}", "private function parseError()\n {\n return $this->error(null, -32700, 'Parse error');\n }", "function get_errors()\n {\n }", "public function getErr() {}", "public function getErrors();", "public function getErrors();", "public function getErrors();", "public function getErrors();", "abstract public function getErrorType(): string;", "public function formatForbiddenError();", "protected function structureValidationErrorMessages($validation_result)\n {\n\n }", "public function _getValidationErrors()\n {\n $errs = parent::_getValidationErrors();\n $validationRules = $this->_getValidationRules();\n if ([] !== ($vs = $this->getDataRequirement())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_DATA_REQUIREMENT, $i)] = $fieldErrs;\n }\n }\n }\n if (null !== ($v = $this->getEncounter())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_ENCOUNTER] = $fieldErrs;\n }\n }\n if ([] !== ($vs = $this->getEvaluationMessage())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_EVALUATION_MESSAGE, $i)] = $fieldErrs;\n }\n }\n }\n if ([] !== ($vs = $this->getIdentifier())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_IDENTIFIER, $i)] = $fieldErrs;\n }\n }\n }\n if (null !== ($v = $this->getModuleCanonical())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_MODULE_CANONICAL] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getModuleCodeableConcept())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_MODULE_CODEABLE_CONCEPT] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getModuleUri())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_MODULE_URI] = $fieldErrs;\n }\n }\n if ([] !== ($vs = $this->getNote())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_NOTE, $i)] = $fieldErrs;\n }\n }\n }\n if (null !== ($v = $this->getOccurrenceDateTime())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_OCCURRENCE_DATE_TIME] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getOutputParameters())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_OUTPUT_PARAMETERS] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getPerformer())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_PERFORMER] = $fieldErrs;\n }\n }\n if ([] !== ($vs = $this->getReasonCode())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_REASON_CODE, $i)] = $fieldErrs;\n }\n }\n }\n if ([] !== ($vs = $this->getReasonReference())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_REASON_REFERENCE, $i)] = $fieldErrs;\n }\n }\n }\n if (null !== ($v = $this->getRequestIdentifier())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_REQUEST_IDENTIFIER] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getResult())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_RESULT] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getStatus())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_STATUS] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getSubject())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_SUBJECT] = $fieldErrs;\n }\n }\n if (isset($validationRules[self::FIELD_DATA_REQUIREMENT])) {\n $v = $this->getDataRequirement();\n foreach($validationRules[self::FIELD_DATA_REQUIREMENT] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_DATA_REQUIREMENT, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_DATA_REQUIREMENT])) {\n $errs[self::FIELD_DATA_REQUIREMENT] = [];\n }\n $errs[self::FIELD_DATA_REQUIREMENT][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_ENCOUNTER])) {\n $v = $this->getEncounter();\n foreach($validationRules[self::FIELD_ENCOUNTER] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_ENCOUNTER, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_ENCOUNTER])) {\n $errs[self::FIELD_ENCOUNTER] = [];\n }\n $errs[self::FIELD_ENCOUNTER][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_EVALUATION_MESSAGE])) {\n $v = $this->getEvaluationMessage();\n foreach($validationRules[self::FIELD_EVALUATION_MESSAGE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_EVALUATION_MESSAGE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_EVALUATION_MESSAGE])) {\n $errs[self::FIELD_EVALUATION_MESSAGE] = [];\n }\n $errs[self::FIELD_EVALUATION_MESSAGE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_IDENTIFIER])) {\n $v = $this->getIdentifier();\n foreach($validationRules[self::FIELD_IDENTIFIER] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_IDENTIFIER, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_IDENTIFIER])) {\n $errs[self::FIELD_IDENTIFIER] = [];\n }\n $errs[self::FIELD_IDENTIFIER][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_MODULE_CANONICAL])) {\n $v = $this->getModuleCanonical();\n foreach($validationRules[self::FIELD_MODULE_CANONICAL] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_MODULE_CANONICAL, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_MODULE_CANONICAL])) {\n $errs[self::FIELD_MODULE_CANONICAL] = [];\n }\n $errs[self::FIELD_MODULE_CANONICAL][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_MODULE_CODEABLE_CONCEPT])) {\n $v = $this->getModuleCodeableConcept();\n foreach($validationRules[self::FIELD_MODULE_CODEABLE_CONCEPT] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_MODULE_CODEABLE_CONCEPT, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_MODULE_CODEABLE_CONCEPT])) {\n $errs[self::FIELD_MODULE_CODEABLE_CONCEPT] = [];\n }\n $errs[self::FIELD_MODULE_CODEABLE_CONCEPT][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_MODULE_URI])) {\n $v = $this->getModuleUri();\n foreach($validationRules[self::FIELD_MODULE_URI] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_MODULE_URI, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_MODULE_URI])) {\n $errs[self::FIELD_MODULE_URI] = [];\n }\n $errs[self::FIELD_MODULE_URI][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_NOTE])) {\n $v = $this->getNote();\n foreach($validationRules[self::FIELD_NOTE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_NOTE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_NOTE])) {\n $errs[self::FIELD_NOTE] = [];\n }\n $errs[self::FIELD_NOTE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_OCCURRENCE_DATE_TIME])) {\n $v = $this->getOccurrenceDateTime();\n foreach($validationRules[self::FIELD_OCCURRENCE_DATE_TIME] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_OCCURRENCE_DATE_TIME, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_OCCURRENCE_DATE_TIME])) {\n $errs[self::FIELD_OCCURRENCE_DATE_TIME] = [];\n }\n $errs[self::FIELD_OCCURRENCE_DATE_TIME][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_OUTPUT_PARAMETERS])) {\n $v = $this->getOutputParameters();\n foreach($validationRules[self::FIELD_OUTPUT_PARAMETERS] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_OUTPUT_PARAMETERS, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_OUTPUT_PARAMETERS])) {\n $errs[self::FIELD_OUTPUT_PARAMETERS] = [];\n }\n $errs[self::FIELD_OUTPUT_PARAMETERS][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_PERFORMER])) {\n $v = $this->getPerformer();\n foreach($validationRules[self::FIELD_PERFORMER] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_PERFORMER, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_PERFORMER])) {\n $errs[self::FIELD_PERFORMER] = [];\n }\n $errs[self::FIELD_PERFORMER][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_REASON_CODE])) {\n $v = $this->getReasonCode();\n foreach($validationRules[self::FIELD_REASON_CODE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_REASON_CODE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_REASON_CODE])) {\n $errs[self::FIELD_REASON_CODE] = [];\n }\n $errs[self::FIELD_REASON_CODE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_REASON_REFERENCE])) {\n $v = $this->getReasonReference();\n foreach($validationRules[self::FIELD_REASON_REFERENCE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_REASON_REFERENCE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_REASON_REFERENCE])) {\n $errs[self::FIELD_REASON_REFERENCE] = [];\n }\n $errs[self::FIELD_REASON_REFERENCE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_REQUEST_IDENTIFIER])) {\n $v = $this->getRequestIdentifier();\n foreach($validationRules[self::FIELD_REQUEST_IDENTIFIER] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_REQUEST_IDENTIFIER, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_REQUEST_IDENTIFIER])) {\n $errs[self::FIELD_REQUEST_IDENTIFIER] = [];\n }\n $errs[self::FIELD_REQUEST_IDENTIFIER][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_RESULT])) {\n $v = $this->getResult();\n foreach($validationRules[self::FIELD_RESULT] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_RESULT, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_RESULT])) {\n $errs[self::FIELD_RESULT] = [];\n }\n $errs[self::FIELD_RESULT][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_STATUS])) {\n $v = $this->getStatus();\n foreach($validationRules[self::FIELD_STATUS] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_STATUS, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_STATUS])) {\n $errs[self::FIELD_STATUS] = [];\n }\n $errs[self::FIELD_STATUS][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_SUBJECT])) {\n $v = $this->getSubject();\n foreach($validationRules[self::FIELD_SUBJECT] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_GUIDANCE_RESPONSE, self::FIELD_SUBJECT, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_SUBJECT])) {\n $errs[self::FIELD_SUBJECT] = [];\n }\n $errs[self::FIELD_SUBJECT][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_CONTAINED])) {\n $v = $this->getContained();\n foreach($validationRules[self::FIELD_CONTAINED] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE, self::FIELD_CONTAINED, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_CONTAINED])) {\n $errs[self::FIELD_CONTAINED] = [];\n }\n $errs[self::FIELD_CONTAINED][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_EXTENSION])) {\n $v = $this->getExtension();\n foreach($validationRules[self::FIELD_EXTENSION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE, self::FIELD_EXTENSION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_EXTENSION])) {\n $errs[self::FIELD_EXTENSION] = [];\n }\n $errs[self::FIELD_EXTENSION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_MODIFIER_EXTENSION])) {\n $v = $this->getModifierExtension();\n foreach($validationRules[self::FIELD_MODIFIER_EXTENSION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE, self::FIELD_MODIFIER_EXTENSION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_MODIFIER_EXTENSION])) {\n $errs[self::FIELD_MODIFIER_EXTENSION] = [];\n }\n $errs[self::FIELD_MODIFIER_EXTENSION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_TEXT])) {\n $v = $this->getText();\n foreach($validationRules[self::FIELD_TEXT] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE, self::FIELD_TEXT, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_TEXT])) {\n $errs[self::FIELD_TEXT] = [];\n }\n $errs[self::FIELD_TEXT][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_ID])) {\n $v = $this->getId();\n foreach($validationRules[self::FIELD_ID] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_RESOURCE, self::FIELD_ID, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_ID])) {\n $errs[self::FIELD_ID] = [];\n }\n $errs[self::FIELD_ID][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_IMPLICIT_RULES])) {\n $v = $this->getImplicitRules();\n foreach($validationRules[self::FIELD_IMPLICIT_RULES] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_RESOURCE, self::FIELD_IMPLICIT_RULES, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_IMPLICIT_RULES])) {\n $errs[self::FIELD_IMPLICIT_RULES] = [];\n }\n $errs[self::FIELD_IMPLICIT_RULES][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_LANGUAGE])) {\n $v = $this->getLanguage();\n foreach($validationRules[self::FIELD_LANGUAGE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_RESOURCE, self::FIELD_LANGUAGE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_LANGUAGE])) {\n $errs[self::FIELD_LANGUAGE] = [];\n }\n $errs[self::FIELD_LANGUAGE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_META])) {\n $v = $this->getMeta();\n foreach($validationRules[self::FIELD_META] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_RESOURCE, self::FIELD_META, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_META])) {\n $errs[self::FIELD_META] = [];\n }\n $errs[self::FIELD_META][$rule] = $err;\n }\n }\n }\n return $errs;\n }", "function getErrorParams() ;", "public function getError() {}", "public function renderGlobalErrorMessage()\n {\n $message = \"\";\n $nberror = count($this->getErrorSchema());\n if ($nberror > 0) {\n $tmp = $this->getErrorSchema()->getErrors();\n $message = \"<div class='alert alert-danger'>Please check your form, $nberror field(s) seem(s) not correctly filled </br>\";\n foreach ($tmp as $key => $e) {\n if ($key == 'Description'){\n $message .= \"- Problem description field is too long (4000 characters max): Please use verbose mode and reduce this field.\";\n }\n\n }\n $message .= \"</div>\";\n }\n return $message;\n }", "public function errorInfo() {}", "final public function error_get() : string{\r\n return (string) ($this->code != 0) ? \"[<b>{$this->code}</b>]: \".$this->message : $this->message;\r\n }", "public function getError()\n {\n $error = false;\n if(is_array($this->formFields))\n\t $formDiff = array_diff($this->formFields, $this->actualFormFields);\n if (count($formDiff) != 0)\n $error = implode(\",\",$formDiff).\",\";\n if(is_array($this->hiddenFormFields))\n\t $formDiff = array_diff($this->hiddenFormFields, $this->actualHiddenFormFields);\n if (count($formDiff) != 0)\n $error.= implode(\",\",$formDiff).\",\";\n $error = substr($error,0,-1);\n return $error;\n }", "public function _getValidationErrors()\n {\n $errs = parent::_getValidationErrors();\n $validationRules = $this->_getValidationRules();\n if ([] !== ($vs = $this->getCountry())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_COUNTRY, $i)] = $fieldErrs;\n }\n }\n }\n if (null !== ($v = $this->getDataExclusivityPeriod())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_DATA_EXCLUSIVITY_PERIOD] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getDateOfFirstAuthorization())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_DATE_OF_FIRST_AUTHORIZATION] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getHolder())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_HOLDER] = $fieldErrs;\n }\n }\n if ([] !== ($vs = $this->getIdentifier())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_IDENTIFIER, $i)] = $fieldErrs;\n }\n }\n }\n if (null !== ($v = $this->getInternationalBirthDate())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_INTERNATIONAL_BIRTH_DATE] = $fieldErrs;\n }\n }\n if ([] !== ($vs = $this->getJurisdiction())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_JURISDICTION, $i)] = $fieldErrs;\n }\n }\n }\n if ([] !== ($vs = $this->getJurisdictionalAuthorization())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_JURISDICTIONAL_AUTHORIZATION, $i)] = $fieldErrs;\n }\n }\n }\n if (null !== ($v = $this->getLegalBasis())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_LEGAL_BASIS] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getProcedure())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_PROCEDURE] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getRegulator())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_REGULATOR] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getRestoreDate())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_RESTORE_DATE] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getStatus())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_STATUS] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getStatusDate())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_STATUS_DATE] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getSubject())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_SUBJECT] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getValidityPeriod())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_VALIDITY_PERIOD] = $fieldErrs;\n }\n }\n if (isset($validationRules[self::FIELD_COUNTRY])) {\n $v = $this->getCountry();\n foreach($validationRules[self::FIELD_COUNTRY] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_COUNTRY, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_COUNTRY])) {\n $errs[self::FIELD_COUNTRY] = [];\n }\n $errs[self::FIELD_COUNTRY][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_DATA_EXCLUSIVITY_PERIOD])) {\n $v = $this->getDataExclusivityPeriod();\n foreach($validationRules[self::FIELD_DATA_EXCLUSIVITY_PERIOD] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_DATA_EXCLUSIVITY_PERIOD, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_DATA_EXCLUSIVITY_PERIOD])) {\n $errs[self::FIELD_DATA_EXCLUSIVITY_PERIOD] = [];\n }\n $errs[self::FIELD_DATA_EXCLUSIVITY_PERIOD][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_DATE_OF_FIRST_AUTHORIZATION])) {\n $v = $this->getDateOfFirstAuthorization();\n foreach($validationRules[self::FIELD_DATE_OF_FIRST_AUTHORIZATION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_DATE_OF_FIRST_AUTHORIZATION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_DATE_OF_FIRST_AUTHORIZATION])) {\n $errs[self::FIELD_DATE_OF_FIRST_AUTHORIZATION] = [];\n }\n $errs[self::FIELD_DATE_OF_FIRST_AUTHORIZATION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_HOLDER])) {\n $v = $this->getHolder();\n foreach($validationRules[self::FIELD_HOLDER] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_HOLDER, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_HOLDER])) {\n $errs[self::FIELD_HOLDER] = [];\n }\n $errs[self::FIELD_HOLDER][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_IDENTIFIER])) {\n $v = $this->getIdentifier();\n foreach($validationRules[self::FIELD_IDENTIFIER] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_IDENTIFIER, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_IDENTIFIER])) {\n $errs[self::FIELD_IDENTIFIER] = [];\n }\n $errs[self::FIELD_IDENTIFIER][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_INTERNATIONAL_BIRTH_DATE])) {\n $v = $this->getInternationalBirthDate();\n foreach($validationRules[self::FIELD_INTERNATIONAL_BIRTH_DATE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_INTERNATIONAL_BIRTH_DATE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_INTERNATIONAL_BIRTH_DATE])) {\n $errs[self::FIELD_INTERNATIONAL_BIRTH_DATE] = [];\n }\n $errs[self::FIELD_INTERNATIONAL_BIRTH_DATE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_JURISDICTION])) {\n $v = $this->getJurisdiction();\n foreach($validationRules[self::FIELD_JURISDICTION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_JURISDICTION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_JURISDICTION])) {\n $errs[self::FIELD_JURISDICTION] = [];\n }\n $errs[self::FIELD_JURISDICTION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_JURISDICTIONAL_AUTHORIZATION])) {\n $v = $this->getJurisdictionalAuthorization();\n foreach($validationRules[self::FIELD_JURISDICTIONAL_AUTHORIZATION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_JURISDICTIONAL_AUTHORIZATION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_JURISDICTIONAL_AUTHORIZATION])) {\n $errs[self::FIELD_JURISDICTIONAL_AUTHORIZATION] = [];\n }\n $errs[self::FIELD_JURISDICTIONAL_AUTHORIZATION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_LEGAL_BASIS])) {\n $v = $this->getLegalBasis();\n foreach($validationRules[self::FIELD_LEGAL_BASIS] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_LEGAL_BASIS, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_LEGAL_BASIS])) {\n $errs[self::FIELD_LEGAL_BASIS] = [];\n }\n $errs[self::FIELD_LEGAL_BASIS][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_PROCEDURE])) {\n $v = $this->getProcedure();\n foreach($validationRules[self::FIELD_PROCEDURE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_PROCEDURE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_PROCEDURE])) {\n $errs[self::FIELD_PROCEDURE] = [];\n }\n $errs[self::FIELD_PROCEDURE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_REGULATOR])) {\n $v = $this->getRegulator();\n foreach($validationRules[self::FIELD_REGULATOR] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_REGULATOR, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_REGULATOR])) {\n $errs[self::FIELD_REGULATOR] = [];\n }\n $errs[self::FIELD_REGULATOR][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_RESTORE_DATE])) {\n $v = $this->getRestoreDate();\n foreach($validationRules[self::FIELD_RESTORE_DATE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_RESTORE_DATE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_RESTORE_DATE])) {\n $errs[self::FIELD_RESTORE_DATE] = [];\n }\n $errs[self::FIELD_RESTORE_DATE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_STATUS])) {\n $v = $this->getStatus();\n foreach($validationRules[self::FIELD_STATUS] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_STATUS, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_STATUS])) {\n $errs[self::FIELD_STATUS] = [];\n }\n $errs[self::FIELD_STATUS][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_STATUS_DATE])) {\n $v = $this->getStatusDate();\n foreach($validationRules[self::FIELD_STATUS_DATE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_STATUS_DATE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_STATUS_DATE])) {\n $errs[self::FIELD_STATUS_DATE] = [];\n }\n $errs[self::FIELD_STATUS_DATE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_SUBJECT])) {\n $v = $this->getSubject();\n foreach($validationRules[self::FIELD_SUBJECT] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_SUBJECT, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_SUBJECT])) {\n $errs[self::FIELD_SUBJECT] = [];\n }\n $errs[self::FIELD_SUBJECT][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_VALIDITY_PERIOD])) {\n $v = $this->getValidityPeriod();\n foreach($validationRules[self::FIELD_VALIDITY_PERIOD] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_MEDICINAL_PRODUCT_AUTHORIZATION, self::FIELD_VALIDITY_PERIOD, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_VALIDITY_PERIOD])) {\n $errs[self::FIELD_VALIDITY_PERIOD] = [];\n }\n $errs[self::FIELD_VALIDITY_PERIOD][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_CONTAINED])) {\n $v = $this->getContained();\n foreach($validationRules[self::FIELD_CONTAINED] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE, self::FIELD_CONTAINED, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_CONTAINED])) {\n $errs[self::FIELD_CONTAINED] = [];\n }\n $errs[self::FIELD_CONTAINED][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_EXTENSION])) {\n $v = $this->getExtension();\n foreach($validationRules[self::FIELD_EXTENSION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE, self::FIELD_EXTENSION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_EXTENSION])) {\n $errs[self::FIELD_EXTENSION] = [];\n }\n $errs[self::FIELD_EXTENSION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_MODIFIER_EXTENSION])) {\n $v = $this->getModifierExtension();\n foreach($validationRules[self::FIELD_MODIFIER_EXTENSION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE, self::FIELD_MODIFIER_EXTENSION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_MODIFIER_EXTENSION])) {\n $errs[self::FIELD_MODIFIER_EXTENSION] = [];\n }\n $errs[self::FIELD_MODIFIER_EXTENSION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_TEXT])) {\n $v = $this->getText();\n foreach($validationRules[self::FIELD_TEXT] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE, self::FIELD_TEXT, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_TEXT])) {\n $errs[self::FIELD_TEXT] = [];\n }\n $errs[self::FIELD_TEXT][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_ID])) {\n $v = $this->getId();\n foreach($validationRules[self::FIELD_ID] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_RESOURCE, self::FIELD_ID, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_ID])) {\n $errs[self::FIELD_ID] = [];\n }\n $errs[self::FIELD_ID][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_IMPLICIT_RULES])) {\n $v = $this->getImplicitRules();\n foreach($validationRules[self::FIELD_IMPLICIT_RULES] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_RESOURCE, self::FIELD_IMPLICIT_RULES, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_IMPLICIT_RULES])) {\n $errs[self::FIELD_IMPLICIT_RULES] = [];\n }\n $errs[self::FIELD_IMPLICIT_RULES][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_LANGUAGE])) {\n $v = $this->getLanguage();\n foreach($validationRules[self::FIELD_LANGUAGE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_RESOURCE, self::FIELD_LANGUAGE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_LANGUAGE])) {\n $errs[self::FIELD_LANGUAGE] = [];\n }\n $errs[self::FIELD_LANGUAGE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_META])) {\n $v = $this->getMeta();\n foreach($validationRules[self::FIELD_META] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_RESOURCE, self::FIELD_META, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_META])) {\n $errs[self::FIELD_META] = [];\n }\n $errs[self::FIELD_META][$rule] = $err;\n }\n }\n }\n return $errs;\n }", "public function _getValidationErrors()\n {\n $errs = parent::_getValidationErrors();\n $validationRules = $this->_getValidationRules();\n if (null !== ($v = $this->getAccident())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_ACCIDENT] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getAccidentType())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_ACCIDENT_TYPE] = $fieldErrs;\n }\n }\n if ([] !== ($vs = $this->getAdditionalMaterials())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_ADDITIONAL_MATERIALS, $i)] = $fieldErrs;\n }\n }\n }\n if ([] !== ($vs = $this->getCondition())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_CONDITION, $i)] = $fieldErrs;\n }\n }\n }\n if ([] !== ($vs = $this->getCoverage())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_COVERAGE, $i)] = $fieldErrs;\n }\n }\n }\n if (null !== ($v = $this->getCreated())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_CREATED] = $fieldErrs;\n }\n }\n if ([] !== ($vs = $this->getDiagnosis())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_DIAGNOSIS, $i)] = $fieldErrs;\n }\n }\n }\n if (null !== ($v = $this->getEnterer())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_ENTERER] = $fieldErrs;\n }\n }\n if ([] !== ($vs = $this->getException())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_EXCEPTION, $i)] = $fieldErrs;\n }\n }\n }\n if (null !== ($v = $this->getFacility())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_FACILITY] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getFundsReserve())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_FUNDS_RESERVE] = $fieldErrs;\n }\n }\n if ([] !== ($vs = $this->getIdentifier())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_IDENTIFIER, $i)] = $fieldErrs;\n }\n }\n }\n if ([] !== ($vs = $this->getInterventionException())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_INTERVENTION_EXCEPTION, $i)] = $fieldErrs;\n }\n }\n }\n if ([] !== ($vs = $this->getItem())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_ITEM, $i)] = $fieldErrs;\n }\n }\n }\n if ([] !== ($vs = $this->getMissingTeeth())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_MISSING_TEETH, $i)] = $fieldErrs;\n }\n }\n }\n if (null !== ($v = $this->getOrganization())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_ORGANIZATION] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getOriginalPrescription())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_ORIGINAL_PRESCRIPTION] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getOriginalRuleset())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_ORIGINAL_RULESET] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getPatient())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_PATIENT] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getPayee())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_PAYEE] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getPrescription())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_PRESCRIPTION] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getPriority())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_PRIORITY] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getProvider())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_PROVIDER] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getReferral())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_REFERRAL] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getRuleset())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_RULESET] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getSchool())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_SCHOOL] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getTarget())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_TARGET] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getType())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_TYPE] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getUse())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_USE] = $fieldErrs;\n }\n }\n if (isset($validationRules[self::FIELD_ACCIDENT])) {\n $v = $this->getAccident();\n foreach($validationRules[self::FIELD_ACCIDENT] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_ACCIDENT, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_ACCIDENT])) {\n $errs[self::FIELD_ACCIDENT] = [];\n }\n $errs[self::FIELD_ACCIDENT][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_ACCIDENT_TYPE])) {\n $v = $this->getAccidentType();\n foreach($validationRules[self::FIELD_ACCIDENT_TYPE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_ACCIDENT_TYPE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_ACCIDENT_TYPE])) {\n $errs[self::FIELD_ACCIDENT_TYPE] = [];\n }\n $errs[self::FIELD_ACCIDENT_TYPE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_ADDITIONAL_MATERIALS])) {\n $v = $this->getAdditionalMaterials();\n foreach($validationRules[self::FIELD_ADDITIONAL_MATERIALS] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_ADDITIONAL_MATERIALS, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_ADDITIONAL_MATERIALS])) {\n $errs[self::FIELD_ADDITIONAL_MATERIALS] = [];\n }\n $errs[self::FIELD_ADDITIONAL_MATERIALS][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_CONDITION])) {\n $v = $this->getCondition();\n foreach($validationRules[self::FIELD_CONDITION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_CONDITION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_CONDITION])) {\n $errs[self::FIELD_CONDITION] = [];\n }\n $errs[self::FIELD_CONDITION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_COVERAGE])) {\n $v = $this->getCoverage();\n foreach($validationRules[self::FIELD_COVERAGE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_COVERAGE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_COVERAGE])) {\n $errs[self::FIELD_COVERAGE] = [];\n }\n $errs[self::FIELD_COVERAGE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_CREATED])) {\n $v = $this->getCreated();\n foreach($validationRules[self::FIELD_CREATED] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_CREATED, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_CREATED])) {\n $errs[self::FIELD_CREATED] = [];\n }\n $errs[self::FIELD_CREATED][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_DIAGNOSIS])) {\n $v = $this->getDiagnosis();\n foreach($validationRules[self::FIELD_DIAGNOSIS] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_DIAGNOSIS, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_DIAGNOSIS])) {\n $errs[self::FIELD_DIAGNOSIS] = [];\n }\n $errs[self::FIELD_DIAGNOSIS][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_ENTERER])) {\n $v = $this->getEnterer();\n foreach($validationRules[self::FIELD_ENTERER] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_ENTERER, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_ENTERER])) {\n $errs[self::FIELD_ENTERER] = [];\n }\n $errs[self::FIELD_ENTERER][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_EXCEPTION])) {\n $v = $this->getException();\n foreach($validationRules[self::FIELD_EXCEPTION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_EXCEPTION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_EXCEPTION])) {\n $errs[self::FIELD_EXCEPTION] = [];\n }\n $errs[self::FIELD_EXCEPTION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_FACILITY])) {\n $v = $this->getFacility();\n foreach($validationRules[self::FIELD_FACILITY] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_FACILITY, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_FACILITY])) {\n $errs[self::FIELD_FACILITY] = [];\n }\n $errs[self::FIELD_FACILITY][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_FUNDS_RESERVE])) {\n $v = $this->getFundsReserve();\n foreach($validationRules[self::FIELD_FUNDS_RESERVE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_FUNDS_RESERVE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_FUNDS_RESERVE])) {\n $errs[self::FIELD_FUNDS_RESERVE] = [];\n }\n $errs[self::FIELD_FUNDS_RESERVE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_IDENTIFIER])) {\n $v = $this->getIdentifier();\n foreach($validationRules[self::FIELD_IDENTIFIER] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_IDENTIFIER, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_IDENTIFIER])) {\n $errs[self::FIELD_IDENTIFIER] = [];\n }\n $errs[self::FIELD_IDENTIFIER][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_INTERVENTION_EXCEPTION])) {\n $v = $this->getInterventionException();\n foreach($validationRules[self::FIELD_INTERVENTION_EXCEPTION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_INTERVENTION_EXCEPTION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_INTERVENTION_EXCEPTION])) {\n $errs[self::FIELD_INTERVENTION_EXCEPTION] = [];\n }\n $errs[self::FIELD_INTERVENTION_EXCEPTION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_ITEM])) {\n $v = $this->getItem();\n foreach($validationRules[self::FIELD_ITEM] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_ITEM, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_ITEM])) {\n $errs[self::FIELD_ITEM] = [];\n }\n $errs[self::FIELD_ITEM][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_MISSING_TEETH])) {\n $v = $this->getMissingTeeth();\n foreach($validationRules[self::FIELD_MISSING_TEETH] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_MISSING_TEETH, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_MISSING_TEETH])) {\n $errs[self::FIELD_MISSING_TEETH] = [];\n }\n $errs[self::FIELD_MISSING_TEETH][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_ORGANIZATION])) {\n $v = $this->getOrganization();\n foreach($validationRules[self::FIELD_ORGANIZATION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_ORGANIZATION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_ORGANIZATION])) {\n $errs[self::FIELD_ORGANIZATION] = [];\n }\n $errs[self::FIELD_ORGANIZATION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_ORIGINAL_PRESCRIPTION])) {\n $v = $this->getOriginalPrescription();\n foreach($validationRules[self::FIELD_ORIGINAL_PRESCRIPTION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_ORIGINAL_PRESCRIPTION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_ORIGINAL_PRESCRIPTION])) {\n $errs[self::FIELD_ORIGINAL_PRESCRIPTION] = [];\n }\n $errs[self::FIELD_ORIGINAL_PRESCRIPTION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_ORIGINAL_RULESET])) {\n $v = $this->getOriginalRuleset();\n foreach($validationRules[self::FIELD_ORIGINAL_RULESET] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_ORIGINAL_RULESET, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_ORIGINAL_RULESET])) {\n $errs[self::FIELD_ORIGINAL_RULESET] = [];\n }\n $errs[self::FIELD_ORIGINAL_RULESET][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_PATIENT])) {\n $v = $this->getPatient();\n foreach($validationRules[self::FIELD_PATIENT] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_PATIENT, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_PATIENT])) {\n $errs[self::FIELD_PATIENT] = [];\n }\n $errs[self::FIELD_PATIENT][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_PAYEE])) {\n $v = $this->getPayee();\n foreach($validationRules[self::FIELD_PAYEE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_PAYEE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_PAYEE])) {\n $errs[self::FIELD_PAYEE] = [];\n }\n $errs[self::FIELD_PAYEE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_PRESCRIPTION])) {\n $v = $this->getPrescription();\n foreach($validationRules[self::FIELD_PRESCRIPTION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_PRESCRIPTION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_PRESCRIPTION])) {\n $errs[self::FIELD_PRESCRIPTION] = [];\n }\n $errs[self::FIELD_PRESCRIPTION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_PRIORITY])) {\n $v = $this->getPriority();\n foreach($validationRules[self::FIELD_PRIORITY] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_PRIORITY, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_PRIORITY])) {\n $errs[self::FIELD_PRIORITY] = [];\n }\n $errs[self::FIELD_PRIORITY][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_PROVIDER])) {\n $v = $this->getProvider();\n foreach($validationRules[self::FIELD_PROVIDER] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_PROVIDER, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_PROVIDER])) {\n $errs[self::FIELD_PROVIDER] = [];\n }\n $errs[self::FIELD_PROVIDER][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_REFERRAL])) {\n $v = $this->getReferral();\n foreach($validationRules[self::FIELD_REFERRAL] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_REFERRAL, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_REFERRAL])) {\n $errs[self::FIELD_REFERRAL] = [];\n }\n $errs[self::FIELD_REFERRAL][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_RULESET])) {\n $v = $this->getRuleset();\n foreach($validationRules[self::FIELD_RULESET] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_RULESET, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_RULESET])) {\n $errs[self::FIELD_RULESET] = [];\n }\n $errs[self::FIELD_RULESET][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_SCHOOL])) {\n $v = $this->getSchool();\n foreach($validationRules[self::FIELD_SCHOOL] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_SCHOOL, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_SCHOOL])) {\n $errs[self::FIELD_SCHOOL] = [];\n }\n $errs[self::FIELD_SCHOOL][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_TARGET])) {\n $v = $this->getTarget();\n foreach($validationRules[self::FIELD_TARGET] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_TARGET, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_TARGET])) {\n $errs[self::FIELD_TARGET] = [];\n }\n $errs[self::FIELD_TARGET][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_TYPE])) {\n $v = $this->getType();\n foreach($validationRules[self::FIELD_TYPE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_TYPE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_TYPE])) {\n $errs[self::FIELD_TYPE] = [];\n }\n $errs[self::FIELD_TYPE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_USE])) {\n $v = $this->getUse();\n foreach($validationRules[self::FIELD_USE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_CLAIM, self::FIELD_USE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_USE])) {\n $errs[self::FIELD_USE] = [];\n }\n $errs[self::FIELD_USE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_CONTAINED])) {\n $v = $this->getContained();\n foreach($validationRules[self::FIELD_CONTAINED] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE, self::FIELD_CONTAINED, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_CONTAINED])) {\n $errs[self::FIELD_CONTAINED] = [];\n }\n $errs[self::FIELD_CONTAINED][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_EXTENSION])) {\n $v = $this->getExtension();\n foreach($validationRules[self::FIELD_EXTENSION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE, self::FIELD_EXTENSION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_EXTENSION])) {\n $errs[self::FIELD_EXTENSION] = [];\n }\n $errs[self::FIELD_EXTENSION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_MODIFIER_EXTENSION])) {\n $v = $this->getModifierExtension();\n foreach($validationRules[self::FIELD_MODIFIER_EXTENSION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE, self::FIELD_MODIFIER_EXTENSION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_MODIFIER_EXTENSION])) {\n $errs[self::FIELD_MODIFIER_EXTENSION] = [];\n }\n $errs[self::FIELD_MODIFIER_EXTENSION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_TEXT])) {\n $v = $this->getText();\n foreach($validationRules[self::FIELD_TEXT] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE, self::FIELD_TEXT, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_TEXT])) {\n $errs[self::FIELD_TEXT] = [];\n }\n $errs[self::FIELD_TEXT][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_ID])) {\n $v = $this->getId();\n foreach($validationRules[self::FIELD_ID] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_RESOURCE, self::FIELD_ID, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_ID])) {\n $errs[self::FIELD_ID] = [];\n }\n $errs[self::FIELD_ID][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_IMPLICIT_RULES])) {\n $v = $this->getImplicitRules();\n foreach($validationRules[self::FIELD_IMPLICIT_RULES] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_RESOURCE, self::FIELD_IMPLICIT_RULES, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_IMPLICIT_RULES])) {\n $errs[self::FIELD_IMPLICIT_RULES] = [];\n }\n $errs[self::FIELD_IMPLICIT_RULES][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_LANGUAGE])) {\n $v = $this->getLanguage();\n foreach($validationRules[self::FIELD_LANGUAGE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_RESOURCE, self::FIELD_LANGUAGE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_LANGUAGE])) {\n $errs[self::FIELD_LANGUAGE] = [];\n }\n $errs[self::FIELD_LANGUAGE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_META])) {\n $v = $this->getMeta();\n foreach($validationRules[self::FIELD_META] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_RESOURCE, self::FIELD_META, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_META])) {\n $errs[self::FIELD_META] = [];\n }\n $errs[self::FIELD_META][$rule] = $err;\n }\n }\n }\n return $errs;\n }", "function getErrors()\n {\n $errMsg = '';\n foreach ($this->errors as $error) {\n $errMsg .= $error;\n $errMsg .= '<br/>';\n }\n return $errMsg;\n }", "public function getErrorList()\n {\n return [\n 13 => 1,\n 33 => 1,\n 83 => 1,\n 88 => 1,\n 92 => 1,\n ];\n\n }", "public function errorMessage() {\n\t\t\treturn $this->strError; \n\t\t}", "public function getError()\n {\n if (empty($this->error) != true){\n end($this->error); //Pointer to the end\n $key = key($this->error); //Get the key of last element\n $ret = array( \"code\" => $key, \"description\" => $this->error[$key] );\n reset($this->error);\n }else{\n $ret = array( \"code\" => \"get_error\", \"description\" => \"No are errors to show\" );\n }\n \n return $ret;\n }", "public function _getValidationErrors(): array\n\t{\n\t\t$errs = parent::_getValidationErrors();\n\t\t$validationRules = $this->_getValidationRules();\n\t\tif (null !== ($v = $this->getUrl())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_URL] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif ([] !== ($vs = $this->getIdentifier())) {\n\t\t\tforeach ($vs as $i => $v) {\n\t\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t\t$errs[sprintf('%s.%d', self::FIELD_IDENTIFIER, $i)] = $fieldErrs;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getVersion())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_VERSION] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getName())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_NAME] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getDisplay())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_DISPLAY] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getStatus())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_STATUS] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getExperimental())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_EXPERIMENTAL] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getPublisher())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_PUBLISHER] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif ([] !== ($vs = $this->getContact())) {\n\t\t\tforeach ($vs as $i => $v) {\n\t\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t\t$errs[sprintf('%s.%d', self::FIELD_CONTACT, $i)] = $fieldErrs;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getDate())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_DATE] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getDescription())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_DESCRIPTION] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif ([] !== ($vs = $this->getUseContext())) {\n\t\t\tforeach ($vs as $i => $v) {\n\t\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t\t$errs[sprintf('%s.%d', self::FIELD_USE_CONTEXT, $i)] = $fieldErrs;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getRequirements())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_REQUIREMENTS] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getCopyright())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_COPYRIGHT] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif ([] !== ($vs = $this->getCode())) {\n\t\t\tforeach ($vs as $i => $v) {\n\t\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t\t$errs[sprintf('%s.%d', self::FIELD_CODE, $i)] = $fieldErrs;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getFhirVersion())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_FHIR_VERSION] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif ([] !== ($vs = $this->getMapping())) {\n\t\t\tforeach ($vs as $i => $v) {\n\t\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t\t$errs[sprintf('%s.%d', self::FIELD_MAPPING, $i)] = $fieldErrs;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getKind())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_KIND] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getConstrainedType())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_CONSTRAINED_TYPE] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getAbstract())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_ABSTRACT] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getContextType())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_CONTEXT_TYPE] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif ([] !== ($vs = $this->getContext())) {\n\t\t\tforeach ($vs as $i => $v) {\n\t\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t\t$errs[sprintf('%s.%d', self::FIELD_CONTEXT, $i)] = $fieldErrs;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getBase())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_BASE] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getSnapshot())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_SNAPSHOT] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif (null !== ($v = $this->getDifferential())) {\n\t\t\tif ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n\t\t\t\t$errs[self::FIELD_DIFFERENTIAL] = $fieldErrs;\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_URL])) {\n\t\t\t$v = $this->getUrl();\n\t\t\tforeach ($validationRules[self::FIELD_URL] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_URL,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_URL])) {\n\t\t\t\t\t\t$errs[self::FIELD_URL] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_URL][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_IDENTIFIER])) {\n\t\t\t$v = $this->getIdentifier();\n\t\t\tforeach ($validationRules[self::FIELD_IDENTIFIER] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_IDENTIFIER,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_IDENTIFIER])) {\n\t\t\t\t\t\t$errs[self::FIELD_IDENTIFIER] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_IDENTIFIER][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_VERSION])) {\n\t\t\t$v = $this->getVersion();\n\t\t\tforeach ($validationRules[self::FIELD_VERSION] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_VERSION,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_VERSION])) {\n\t\t\t\t\t\t$errs[self::FIELD_VERSION] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_VERSION][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_NAME])) {\n\t\t\t$v = $this->getName();\n\t\t\tforeach ($validationRules[self::FIELD_NAME] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_NAME,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_NAME])) {\n\t\t\t\t\t\t$errs[self::FIELD_NAME] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_NAME][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_DISPLAY])) {\n\t\t\t$v = $this->getDisplay();\n\t\t\tforeach ($validationRules[self::FIELD_DISPLAY] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_DISPLAY,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_DISPLAY])) {\n\t\t\t\t\t\t$errs[self::FIELD_DISPLAY] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_DISPLAY][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_STATUS])) {\n\t\t\t$v = $this->getStatus();\n\t\t\tforeach ($validationRules[self::FIELD_STATUS] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_STATUS,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_STATUS])) {\n\t\t\t\t\t\t$errs[self::FIELD_STATUS] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_STATUS][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_EXPERIMENTAL])) {\n\t\t\t$v = $this->getExperimental();\n\t\t\tforeach ($validationRules[self::FIELD_EXPERIMENTAL] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_EXPERIMENTAL,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_EXPERIMENTAL])) {\n\t\t\t\t\t\t$errs[self::FIELD_EXPERIMENTAL] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_EXPERIMENTAL][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_PUBLISHER])) {\n\t\t\t$v = $this->getPublisher();\n\t\t\tforeach ($validationRules[self::FIELD_PUBLISHER] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_PUBLISHER,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_PUBLISHER])) {\n\t\t\t\t\t\t$errs[self::FIELD_PUBLISHER] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_PUBLISHER][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_CONTACT])) {\n\t\t\t$v = $this->getContact();\n\t\t\tforeach ($validationRules[self::FIELD_CONTACT] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_CONTACT,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_CONTACT])) {\n\t\t\t\t\t\t$errs[self::FIELD_CONTACT] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_CONTACT][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_DATE])) {\n\t\t\t$v = $this->getDate();\n\t\t\tforeach ($validationRules[self::FIELD_DATE] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_DATE,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_DATE])) {\n\t\t\t\t\t\t$errs[self::FIELD_DATE] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_DATE][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_DESCRIPTION])) {\n\t\t\t$v = $this->getDescription();\n\t\t\tforeach ($validationRules[self::FIELD_DESCRIPTION] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_DESCRIPTION,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_DESCRIPTION])) {\n\t\t\t\t\t\t$errs[self::FIELD_DESCRIPTION] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_DESCRIPTION][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_USE_CONTEXT])) {\n\t\t\t$v = $this->getUseContext();\n\t\t\tforeach ($validationRules[self::FIELD_USE_CONTEXT] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_USE_CONTEXT,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_USE_CONTEXT])) {\n\t\t\t\t\t\t$errs[self::FIELD_USE_CONTEXT] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_USE_CONTEXT][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_REQUIREMENTS])) {\n\t\t\t$v = $this->getRequirements();\n\t\t\tforeach ($validationRules[self::FIELD_REQUIREMENTS] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_REQUIREMENTS,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_REQUIREMENTS])) {\n\t\t\t\t\t\t$errs[self::FIELD_REQUIREMENTS] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_REQUIREMENTS][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_COPYRIGHT])) {\n\t\t\t$v = $this->getCopyright();\n\t\t\tforeach ($validationRules[self::FIELD_COPYRIGHT] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_COPYRIGHT,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_COPYRIGHT])) {\n\t\t\t\t\t\t$errs[self::FIELD_COPYRIGHT] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_COPYRIGHT][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_CODE])) {\n\t\t\t$v = $this->getCode();\n\t\t\tforeach ($validationRules[self::FIELD_CODE] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_CODE,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_CODE])) {\n\t\t\t\t\t\t$errs[self::FIELD_CODE] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_CODE][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_FHIR_VERSION])) {\n\t\t\t$v = $this->getFhirVersion();\n\t\t\tforeach ($validationRules[self::FIELD_FHIR_VERSION] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_FHIR_VERSION,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_FHIR_VERSION])) {\n\t\t\t\t\t\t$errs[self::FIELD_FHIR_VERSION] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_FHIR_VERSION][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_MAPPING])) {\n\t\t\t$v = $this->getMapping();\n\t\t\tforeach ($validationRules[self::FIELD_MAPPING] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_MAPPING,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_MAPPING])) {\n\t\t\t\t\t\t$errs[self::FIELD_MAPPING] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_MAPPING][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_KIND])) {\n\t\t\t$v = $this->getKind();\n\t\t\tforeach ($validationRules[self::FIELD_KIND] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_KIND,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_KIND])) {\n\t\t\t\t\t\t$errs[self::FIELD_KIND] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_KIND][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_CONSTRAINED_TYPE])) {\n\t\t\t$v = $this->getConstrainedType();\n\t\t\tforeach ($validationRules[self::FIELD_CONSTRAINED_TYPE] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_CONSTRAINED_TYPE,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_CONSTRAINED_TYPE])) {\n\t\t\t\t\t\t$errs[self::FIELD_CONSTRAINED_TYPE] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_CONSTRAINED_TYPE][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_ABSTRACT])) {\n\t\t\t$v = $this->getAbstract();\n\t\t\tforeach ($validationRules[self::FIELD_ABSTRACT] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_ABSTRACT,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_ABSTRACT])) {\n\t\t\t\t\t\t$errs[self::FIELD_ABSTRACT] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_ABSTRACT][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_CONTEXT_TYPE])) {\n\t\t\t$v = $this->getContextType();\n\t\t\tforeach ($validationRules[self::FIELD_CONTEXT_TYPE] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_CONTEXT_TYPE,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_CONTEXT_TYPE])) {\n\t\t\t\t\t\t$errs[self::FIELD_CONTEXT_TYPE] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_CONTEXT_TYPE][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_CONTEXT])) {\n\t\t\t$v = $this->getContext();\n\t\t\tforeach ($validationRules[self::FIELD_CONTEXT] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_CONTEXT,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_CONTEXT])) {\n\t\t\t\t\t\t$errs[self::FIELD_CONTEXT] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_CONTEXT][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_BASE])) {\n\t\t\t$v = $this->getBase();\n\t\t\tforeach ($validationRules[self::FIELD_BASE] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_BASE,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_BASE])) {\n\t\t\t\t\t\t$errs[self::FIELD_BASE] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_BASE][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_SNAPSHOT])) {\n\t\t\t$v = $this->getSnapshot();\n\t\t\tforeach ($validationRules[self::FIELD_SNAPSHOT] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_SNAPSHOT,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_SNAPSHOT])) {\n\t\t\t\t\t\t$errs[self::FIELD_SNAPSHOT] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_SNAPSHOT][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_DIFFERENTIAL])) {\n\t\t\t$v = $this->getDifferential();\n\t\t\tforeach ($validationRules[self::FIELD_DIFFERENTIAL] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_STRUCTURE_DEFINITION,\n\t\t\t\t\tself::FIELD_DIFFERENTIAL,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_DIFFERENTIAL])) {\n\t\t\t\t\t\t$errs[self::FIELD_DIFFERENTIAL] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_DIFFERENTIAL][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_TEXT])) {\n\t\t\t$v = $this->getText();\n\t\t\tforeach ($validationRules[self::FIELD_TEXT] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE,\n\t\t\t\t\tself::FIELD_TEXT,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_TEXT])) {\n\t\t\t\t\t\t$errs[self::FIELD_TEXT] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_TEXT][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_CONTAINED])) {\n\t\t\t$v = $this->getContained();\n\t\t\tforeach ($validationRules[self::FIELD_CONTAINED] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE,\n\t\t\t\t\tself::FIELD_CONTAINED,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_CONTAINED])) {\n\t\t\t\t\t\t$errs[self::FIELD_CONTAINED] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_CONTAINED][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_EXTENSION])) {\n\t\t\t$v = $this->getExtension();\n\t\t\tforeach ($validationRules[self::FIELD_EXTENSION] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE,\n\t\t\t\t\tself::FIELD_EXTENSION,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_EXTENSION])) {\n\t\t\t\t\t\t$errs[self::FIELD_EXTENSION] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_EXTENSION][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_MODIFIER_EXTENSION])) {\n\t\t\t$v = $this->getModifierExtension();\n\t\t\tforeach ($validationRules[self::FIELD_MODIFIER_EXTENSION] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_DOMAIN_RESOURCE,\n\t\t\t\t\tself::FIELD_MODIFIER_EXTENSION,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_MODIFIER_EXTENSION])) {\n\t\t\t\t\t\t$errs[self::FIELD_MODIFIER_EXTENSION] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_MODIFIER_EXTENSION][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_ID])) {\n\t\t\t$v = $this->getId();\n\t\t\tforeach ($validationRules[self::FIELD_ID] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_RESOURCE,\n\t\t\t\t\tself::FIELD_ID,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_ID])) {\n\t\t\t\t\t\t$errs[self::FIELD_ID] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_ID][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_META])) {\n\t\t\t$v = $this->getMeta();\n\t\t\tforeach ($validationRules[self::FIELD_META] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_RESOURCE,\n\t\t\t\t\tself::FIELD_META,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_META])) {\n\t\t\t\t\t\t$errs[self::FIELD_META] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_META][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_IMPLICIT_RULES])) {\n\t\t\t$v = $this->getImplicitRules();\n\t\t\tforeach ($validationRules[self::FIELD_IMPLICIT_RULES] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_RESOURCE,\n\t\t\t\t\tself::FIELD_IMPLICIT_RULES,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_IMPLICIT_RULES])) {\n\t\t\t\t\t\t$errs[self::FIELD_IMPLICIT_RULES] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_IMPLICIT_RULES][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (isset($validationRules[self::FIELD_LANGUAGE])) {\n\t\t\t$v = $this->getLanguage();\n\t\t\tforeach ($validationRules[self::FIELD_LANGUAGE] as $rule => $constraint) {\n\t\t\t\t$err = $this->_performValidation(\n\t\t\t\t\tPHPFHIRConstants::TYPE_NAME_RESOURCE,\n\t\t\t\t\tself::FIELD_LANGUAGE,\n\t\t\t\t\t$rule,\n\t\t\t\t\t$constraint,\n\t\t\t\t\t$v,\n\t\t\t\t);\n\t\t\t\tif (null !== $err) {\n\t\t\t\t\tif (!isset($errs[self::FIELD_LANGUAGE])) {\n\t\t\t\t\t\t$errs[self::FIELD_LANGUAGE] = [];\n\t\t\t\t\t}\n\t\t\t\t\t$errs[self::FIELD_LANGUAGE][$rule] = $err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $errs;\n\t}", "protected function get_errors_description() {\n $errors = array();\n if ($this->options->is_check_errors == true) {\n\n $i = 0;\n $rules_names = $this->get_error_hints_names();\n\n foreach($rules_names as $rule_name) {\n $rule = new $rule_name($this->get_dst_root());\n $rhr = $rule->check_hint();\n\n if (count($rhr->problem_ids) > 0) {\n $errors[$i] = array();\n\n $errors[$i][\"problem\"] = $rhr->problem;\n $errors[$i][\"solve\"] = $rhr->solve;\n $errors[$i][\"problem_ids\"] = $rhr->problem_ids;\n $errors[$i][\"problem_type\"] = $rhr->problem_type;\n $errors[$i][\"problem_indfirst\"] = $rhr->problem_indfirst;\n $errors[$i][\"problem_indlast\"] = $rhr->problem_indlast;\n\n ++$i;\n }\n }\n }\n return $errors;\n }", "public function getErrorList()\n {\n return [\n 8 => 1,\n 13 => 1,\n ];\n }", "public function getErrorList() {\n\t\treturn array();\n\n\t}", "function get_error($input)\n {\n }", "function set_error() \n {\n $this->error_state = FORMEX_FIELD_ERROR;\n }", "public function errorMode(){}", "private function setError() {\n\t\t$this->is_valid = false;\n\n\t\t// Remove the last invalid interval.\n\t\tarray_pop($this->intervals);\n\n\t\tif (!isset($this->source[$this->pos])) {\n\t\t\t$this->error = _('unexpected end of interval');\n\n\t\t\treturn;\n\t\t}\n\n\t\tfor ($i = $this->pos, $chunk = '', $maxChunkSize = 50; isset($this->source[$i]); $i++) {\n\t\t\tif (0x80 != (0xc0 & ord($this->source[$i])) && $maxChunkSize-- == 0) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t$chunk .= $this->source[$i];\n\t\t}\n\n\t\tif (isset($this->source[$i])) {\n\t\t\t$chunk .= ' ...';\n\t\t}\n\n\t\t$this->error = _s('incorrect syntax near \"%1$s\"', $chunk);\n\t}", "public function _getValidationErrors()\n {\n $errs = parent::_getValidationErrors();\n $validationRules = $this->_getValidationRules();\n if (null !== ($v = $this->getCity())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_CITY] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getCountry())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_COUNTRY] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getDistrict())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_DISTRICT] = $fieldErrs;\n }\n }\n if ([] !== ($vs = $this->getLine())) {\n foreach($vs as $i => $v) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[sprintf('%s.%d', self::FIELD_LINE, $i)] = $fieldErrs;\n }\n }\n }\n if (null !== ($v = $this->getPeriod())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_PERIOD] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getPostalCode())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_POSTAL_CODE] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getState())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_STATE] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getText())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_TEXT] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getType())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_TYPE] = $fieldErrs;\n }\n }\n if (null !== ($v = $this->getUse())) {\n if ([] !== ($fieldErrs = $v->_getValidationErrors())) {\n $errs[self::FIELD_USE] = $fieldErrs;\n }\n }\n if (isset($validationRules[self::FIELD_CITY])) {\n $v = $this->getCity();\n foreach($validationRules[self::FIELD_CITY] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_ADDRESS, self::FIELD_CITY, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_CITY])) {\n $errs[self::FIELD_CITY] = [];\n }\n $errs[self::FIELD_CITY][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_COUNTRY])) {\n $v = $this->getCountry();\n foreach($validationRules[self::FIELD_COUNTRY] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_ADDRESS, self::FIELD_COUNTRY, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_COUNTRY])) {\n $errs[self::FIELD_COUNTRY] = [];\n }\n $errs[self::FIELD_COUNTRY][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_DISTRICT])) {\n $v = $this->getDistrict();\n foreach($validationRules[self::FIELD_DISTRICT] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_ADDRESS, self::FIELD_DISTRICT, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_DISTRICT])) {\n $errs[self::FIELD_DISTRICT] = [];\n }\n $errs[self::FIELD_DISTRICT][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_LINE])) {\n $v = $this->getLine();\n foreach($validationRules[self::FIELD_LINE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_ADDRESS, self::FIELD_LINE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_LINE])) {\n $errs[self::FIELD_LINE] = [];\n }\n $errs[self::FIELD_LINE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_PERIOD])) {\n $v = $this->getPeriod();\n foreach($validationRules[self::FIELD_PERIOD] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_ADDRESS, self::FIELD_PERIOD, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_PERIOD])) {\n $errs[self::FIELD_PERIOD] = [];\n }\n $errs[self::FIELD_PERIOD][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_POSTAL_CODE])) {\n $v = $this->getPostalCode();\n foreach($validationRules[self::FIELD_POSTAL_CODE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_ADDRESS, self::FIELD_POSTAL_CODE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_POSTAL_CODE])) {\n $errs[self::FIELD_POSTAL_CODE] = [];\n }\n $errs[self::FIELD_POSTAL_CODE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_STATE])) {\n $v = $this->getState();\n foreach($validationRules[self::FIELD_STATE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_ADDRESS, self::FIELD_STATE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_STATE])) {\n $errs[self::FIELD_STATE] = [];\n }\n $errs[self::FIELD_STATE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_TEXT])) {\n $v = $this->getText();\n foreach($validationRules[self::FIELD_TEXT] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_ADDRESS, self::FIELD_TEXT, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_TEXT])) {\n $errs[self::FIELD_TEXT] = [];\n }\n $errs[self::FIELD_TEXT][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_TYPE])) {\n $v = $this->getType();\n foreach($validationRules[self::FIELD_TYPE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_ADDRESS, self::FIELD_TYPE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_TYPE])) {\n $errs[self::FIELD_TYPE] = [];\n }\n $errs[self::FIELD_TYPE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_USE])) {\n $v = $this->getUse();\n foreach($validationRules[self::FIELD_USE] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_ADDRESS, self::FIELD_USE, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_USE])) {\n $errs[self::FIELD_USE] = [];\n }\n $errs[self::FIELD_USE][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_EXTENSION])) {\n $v = $this->getExtension();\n foreach($validationRules[self::FIELD_EXTENSION] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_ELEMENT, self::FIELD_EXTENSION, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_EXTENSION])) {\n $errs[self::FIELD_EXTENSION] = [];\n }\n $errs[self::FIELD_EXTENSION][$rule] = $err;\n }\n }\n }\n if (isset($validationRules[self::FIELD_ID])) {\n $v = $this->getId();\n foreach($validationRules[self::FIELD_ID] as $rule => $constraint) {\n $err = $this->_performValidation(PHPFHIRConstants::TYPE_NAME_ELEMENT, self::FIELD_ID, $rule, $constraint, $v);\n if (null !== $err) {\n if (!isset($errs[self::FIELD_ID])) {\n $errs[self::FIELD_ID] = [];\n }\n $errs[self::FIELD_ID][$rule] = $err;\n }\n }\n }\n return $errs;\n }", "public function allError() {\n return $this->errorMsg;\n }", "public function getErrorMessage();", "public function getErrorMessage();", "public function validAndGetErrorMsg() {\r\n require_once 'Samus/Samus_CRUD/Samus_CRUD_RequestValidator.php';\r\n $req = new Samus_CRUD_RequestValidator($this->object);\r\n $req->init();\r\n return $req->result();\r\n }", "function errors() \n {\n $str = \"<ul class=\\\"form-error\\\">\\n\";\n foreach(get_object_vars($this) as $name => $obj) \n {\n #busca metodos de validacion definido por usuario\n if ($obj != NULL) \n {\n if (!$obj->errors->not_errors())\n {\n $str .= \"<li>\".$name.\"\\n\";\n $str .= $obj->errors;\n $str .= \"</li>\\n\";\n }\n }\n }\n $str .= \"</ul>\\n\";\n return $str;\n }", "public function error()\n\t{\n\t}", "function ShowErr () \n\t{\t\n \t \tif ($this -> CodigoError == 0)\n \t\t{\n \t\t$Salida [\"exito\"] = 1;\n\t\t}else{\n\t\t$Salida [\"exito\"] = 0; \t\t\n\t\t$Salida [\"errorCode\"] = $this -> CodigoError;\n\t\t$Salida [\"errorText\"] = $this -> TextoError;\n \t\t}\n\n\treturn $Salida;\n\t}", "protected function _getErrorNumber()\n {\n return '';\n }", "public function getError() {\n\t\t$error = array();\n\t\t$error['message'] = $this->err_message;\n\t\t$error['code'] = $this->err_code;\n\t\treturn $error;\n\t}", "public function error(){\n\t}", "protected function errorAction() {}", "public function getErrorParams() {}", "private function bodyToErrors()\n {\n $this->readErrors();\n\n }", "private function addValidationError()\n {\n $validationError = new ValidationError();\n $validationError->setValidationCode($this->validation->getValidationCode());\n if ($this->eachFieldName && $this->eachIndex) {\n $eachField = $this->formDataHandler->getFormValue($this->eachFieldName);\n $eachFieldValue = $eachField[$this->eachIndex][$this->formFieldName];\n $validationError->setFormValue($eachFieldValue);\n $validationError->setFormField($this->eachFieldName);\n $validationError->setEachFieldName($this->formFieldName);\n $validationError->setEachIndex($this->eachIndex);\n } else {\n $validationError->setFormValue($this->formDataHandler->getFormValue($this->formFieldName));\n $validationError->setFormField($this->formFieldName);\n }\n if ($this->errorText) {\n $validationError->setCustomErrorText($this->errorText);\n }\n $this->validationErrorHandler->addValidationError($validationError);\n }", "function errorMsg() {\r\n return \r\n $this->resultError;\r\n }", "public function getError()\r\n\t\t{\r\n\t\t\treturn $this->_errores;\r\n\t\t}", "public function errorMessage()\n {\n }", "public function getValidationErrors() {\n\t\t$out = array();\n\t\t$this->loadFields();\n\t\tforeach($this->fields as $field) {\n\t\t\t$out = array_merge($out, $field->getValidationErrors());\n\t\t}\n\t\tif ((!$this->lat || !$this->lng) && !$this->feature_id) {\n\t\t\t$out[] = \"You must set a location!\";\n\t\t}\n\t\treturn $out;\n\t}", "public function getErrorText(){\n return $this->error;\n }", "protected function getFlattenedValidationErrorMessage()\n\t{\n\t\t$outputMessage = 'Validation failed while trying to call ' . get_class($this) . '->' . $this->actionMethodName . '().' . PHP_EOL;\n\t\t$errorObject = [\n\t\t\t'message' => $outputMessage,\n\t\t];\n\t\t$logMessage = $outputMessage;\n\n\t\tforeach ($this->arguments->getValidationResults()->getFlattenedErrors() as $propertyPath => $errors) {\n\t\t\t/* @var $error Error */\n\t\t\tforeach ($errors as $error) {\n\t\t\t\t$logMessage .= 'Error for ' . $propertyPath . ': ' . $error->render() . PHP_EOL;\n\t\t\t\t$errorObject['errors'][] = ['code' => $error->getCode(), 'field' => $propertyPath, 'message' => $error->render()];\n\t\t\t}\n\t\t}\n\t\t$this->logger->error($logMessage, $errorObject);\n\n\t\t$errorObject = $this->transformErrorObject($errorObject);\n\n\t\t$this->response->setStatusCode(422);\n\t\t$this->response->setContentType('application/json');\n\n\t\treturn json_encode($errorObject, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);\n\t}", "function mapit_get_error($e) {\n if (!rabx_is_error($e))\n return FALSE;\n else\n return $e->text;\n}", "public function errorMessage() {\r\n\t\tif ($this->hasError()) {\r\n\t\t\treturn \"Query:\\n{$this->sql}\\nAnswer:\\n{$this->errorString}\";\r\n\t\t}\r\n\r\n\t\treturn 'No error occurred.';\r\n\t}", "protected function getErrorMsgTemplate()\n {\n return 'The %s cast is ';\n }", "function error() {\n $this->escribirHeader(\"Error de Permisos\");\n }", "public function getErrorsAsString(): string\n {\n $errors = $this->getErrors();\n if (0 === $errors->count()) {\n return '';\n }\n $message = 'found ' . $errors->count() . ' errors validating '\n . get_class($this->dataObject);\n foreach ($errors as $error) {\n $message .= \"\\n\\n\" . $error->getPropertyPath() . ': ' . $error->getMessage();\n }\n\n return $message;\n }", "function errores($error) {\n switch ($error) {\n case 1: return \"Nombre de usuario no ingresado\"; break;\n case 2: return \"Password de usuario no ingresado\"; break;\n\tcase 3: return \"Email de usuario no ingresado\"; break;\n\tcase 4: return \"Es obligatorio poner el nombre del permiso\"; break;\n\tcase 5: return \"Es obligatorio seleccionar un tipo de permiso\"; break;\n\tcase 6: return \"Es obligatorio poner la ubicación del archivo\"; break;\n\tcase 7: return \"Usuario en uso\"; break;\n\tcase 8: return \"Es obligatorio completar el nombre real del usuario\"; break;\n\tcase 9: return \"Es obligatorio completar el tipo de usuario\"; break;\n\tcase 10: return \"Email en uso\"; break;\n\tcase 11: return \"La contrase&ntilde;a no coincide\"; break;\n\tcase 12: return \"Nombre de empresa en uso\"; break;\n\tcase 13: return \"Nombre de la empresa no ingresado\"; break;\n\tcase 14: return \"Abreviatura de la empresa no ingresada\"; break;\n\tcase 15: return \"Email de la empresa no ingresado\"; break;\n\tcase 16: return \"Rut de la empresa no ingresado\"; break;\n\tcase 17: return \"No ha ingresado la cantidad de niveles\"; break;\n\tcase 18: return \"No ha ingresado el nombre del nivel\"; break;\n\tcase 19: return \"No ha seleccionado una empresa\"; break;\n\tcase 20: return \"No ha ingresado el RUT de la persona\"; break;\n\tcase 21: return \"No ha ingresado el nombre de la comuna\"; break;\n\tcase 22: return \"No ha ingresado la direccion\"; break;\n\tcase 23: return \"No ha seleccionado el nivel\"; break;\n\tcase 24: return \"No ha ingresado una categoria\"; break;\n\tcase 25: return \"No ha ingresado una subcategoria\"; break;\n\tcase 26: return \"No ha seleccionado una categoria\"; break;\n\tcase 27: return \"No ha ingresado un nombre para el item\"; break;\n\tcase 28: return \"No ha ingresado una unidad de medida\"; break;\n\tcase 29: return \"No ha ingresado un valor para la unidad de medida\"; break;\n\tcase 30: return \"No ha ingresado un valor unitario\"; break;\n\tcase 31: return \"No ha ingresado un nombre del trabajador\"; break;\n\tcase 32: return \"No ha ingresado un telefono del trabajador\"; break;\n\tcase 33: return \"No ha ingresado una direccion del trabajador\"; break;\n\tcase 34: return \"No ha ingresado un cargo del trabajador\"; break;\n\tcase 35: return \"No ha seleccionado un trabajo a realizar\"; break;\n\tcase 36: return \"No ha ingresado una fecha de ejecucion\"; break;\n\tcase 37: return \"No ha ingresado un numero de documento\"; break;\n\tcase 38: return \"No ha seleccionado un trabajador\"; break;\n\tcase 39: return \"Es obligatorio completar el nombre del tipo de producto\"; break;\n\tcase 40: return \"Es obligatorio completar el tipo de embalaje usado\"; break;\n\tcase 41: return \"Es obligatorio completar el nombre del tipo de producto\"; break;\n\tcase 42: return \"Es obligatorio completar el nombre de la Unidad de Medida\"; break;\n\tcase 43: return \"Es obligatorio completar el nombre del Artículo\"; break;\n\tcase 44: return \"Es obligatorio seleccionar el tipo de Artículo\"; break;\n\tcase 45: return \"Es obligatorio seleccionar la categoría del Artículo\"; break;\n\tcase 46: return \"Es obligatorio seleccionar la unidad de medida del Artículo\"; break;\n\tcase 47: return \"Es obligatorio completar la capacidad del Artículo\"; break;\n\tcase 48: return \"Es obligatorio seleccionar el embalaje del Artículo\"; break;\n\tcase 49: return \"Es obligatorio completar la marca del Artículo\"; break;\n\tcase 50: return \"Es obligatorio seleccionar el Articulo\"; break;\n\tcase 51: return \"Es obligatorio poner la cantidad de Articulos\"; break;\n\tcase 52: return \"Es obligatorio ingresar el valor de cada articulo\"; break;\n\tcase 53: return \"Es obligatorio poner la procedencia de los Articulos\"; break;\n\tcase 54: return \"Es obligatorio poner el tipo de documento utilizado\"; break;\n\tcase 55: return \"Es obligatorio poner el numero del documento utilizado\"; break;\n\tcase 56: return \"Es obligatorio poner un comentario\"; break;\n\tcase 57: return \"Es obligatorio seleccionar el tipo de cliente\"; break;\n\tcase 58: return \"Es obligatorio seleccionar el cliente\"; break;\n\tcase 59: return \"Ingrese una fecha de inicio\"; break;\n\tcase 60: return \"Ingrese una fecha de termino\"; break;\n\tcase 61: return \"No ha seleccionado un permiso\"; break;\n\tcase 62: return \"No ha seleccionado un Trabajo\"; break;\n\tcase 63: return \"No ha ingresado un nombre\"; break;\n\tcase 64: return \"No ha seleccionado una frecuencia\"; break;\n\tcase 65: return \"No ha seleccionado una ubicacion\"; break;\n\tcase 66: return \"No ha seleccionado una tarea\"; break;\n\tcase 67: return \"No ha ingresado el tiempo utilizado\"; break;\n\tcase 68: return \"Es obligatorio completar la contraseña\"; break;\n\tcase 69: return \"Es obligatorio completar la contraseña nueva\"; break;\n\tcase 70: return \"La contraseña no coincide\"; break;\n\tcase 71: return \"No ha ingresado la fecha de inicio\"; break;\n\tcase 72: return \"No ha ingresado la fecha de termino\"; break;\n\tcase 73: return \"No ha ingresado un valor al costo no considerado\"; break;\n\tcase 74: return \"No ha ingresado un comentario al costo no considerado\"; break;\n\tcase 75: return \"No ha seleccionado una unidad de frecuencia\"; break;\n\tcase 76: return \"No ha ingresado un valor para la frecuencia\"; break;\n\tcase 77: return \"No ha ingresado un nombre a la categoria\"; break;\n\tcase 78: return \"No ha seleccionado una unidad de frecuencia\"; break;\n\tcase 79: return \"Debe ingresar un monto a la valorizacion\"; break;\n\tcase 80: return \"Debe ingresar un monto a los gastos generales\"; break;\n\tcase 81: return \"No ha seleccionado la cantidad de periodos\"; break;\n\t\n }\n}", "public function getErrorList()\n {\n return [15 => 1, 29 => 2, 30 => 1, 42 => 1, 57 => 3, 59 => 3, 61 => 1, 63 => 5, 65 => 1, 71 => 1, 73 => 2, 76 => 1, 86 => 2, 103 => 1, 112 => 1, 122 => 1, 132 => 1, 157 => 1, 165 => 1, 170 => 1, 208 => 1, 219 => 3];\n }", "public function getErrorList()\n {\n return [\n 9 => 1,\n 14 => 1,\n 20 => 1,\n 22 => 1,\n 32 => 1,\n 36 => 1,\n 44 => 1,\n 48 => 1,\n 56 => 1,\n 60 => 1,\n 68 => 1,\n 72 => 1,\n 84 => 1,\n 88 => 2,\n 100 => 1,\n 104 => 2,\n 122 => 2,\n 128 => 1,\n 132 => 3,\n 133 => 2,\n 147 => 1,\n 157 => 1,\n 165 => 1,\n ];\n\n }", "protected function getErrorData()\n {\n $error = [\n 'message' => $this->getErrorMessage(),\n ];\n\n if ($this->debug && \\is_object($this->error)) {\n $error['exception'] = \\get_class($this->error);\n $error['file'] = $this->error->getFile();\n $error['line'] = $this->error->getLine();\n $error['trace'] = \\collect($this->error->getTrace())->map(function ($trace) {\n return Arr::except($trace, ['args']);\n })->all();\n }\n\n if ($this->error instanceof ValidationException && $this->error->validator) {\n if ($this->error->validator) {\n $error['errors'] = $this->error->validator->errors();\n } else {\n $error['errors'] = [];\n }\n } elseif ($this->error instanceof MessageBag) {\n $error['errors'] = $this->error->getMessages();\n }\n\n return $error;\n }", "private function customErrorFormat()\n {\n static::$errorFormatter = function ($validator) {\n $arr = [];\n foreach ($validator->errors()->toArray() as $key => $value) {\n $arr[$key] = $value[0];\n }\n return [\n 'errors' => $arr,\n 'status' => 'failed',\n ];\n };\n }", "function errorInfo($p_full = \\false)\n {\n }", "public function actionError() {\n \n }", "public function message()\n {\n return 'Errores en plantilla<li>'.join('</li><li>',$this->invalid);\n }", "public function errorToMessage() {\n\t\t if($_FILES[$this->fileName]['error'] == 3) {\n\t\t\tif (file_exists($this->imgRoot . $_FILES[$this->fileName]['name'])) {\n\t\t\t\t//Remove the wrong file that is not completed.\n\t\t\t\tunlink($this->imgRoot . $_FILES[$this->fileName]['name']);\n\t\t\t}\t\n\t\t\treturn self::$ErrorUPLOAD_ERR_NO_TMP_DIR;\n\t\t }\n\t\t\t// error message 2 & 3 for the file is big or the file length is bigger than is php ini supported.\n\t else if($_FILES[$this->fileName]['error'] == 2 || $_FILES[$this->fileName]['error'] == 1) {\n\t\t\t\treturn self::$ErrorUPLOAD_ERR_FORM_SIZE;\n\t\t\t}\n\t\t\t// error file 4 is that the user trying to upload widthout file.\n\t else if($_FILES[$this->fileName]['error'] == 4) {\n\t\t \treturn self::$ErrorUPLOAD_ERR_NO_FILE;\n\t\t }\n\t\n \t}", "public static function displayErrors(){\n $ec = new EmailLabsConfig();\n if( $ec->getMode() == true && !empty( self::$errors ) ){\n $message = '';\n foreach( self::$errors as $item )\n $message .= '['.$item['lvl'].']['.$item['date'].']'.$item['msg'].\"\\n\";\n die( $message );\n }\n }", "public function errors()\n {\n $_output = '';\n foreach ($this->errors as $error)\n {\n $errorLang = $this->lang->line($error) ? $this->lang->line($error) : '##' . $error . '##';\n $_output .= $this->error_start_delimiter . $errorLang . $this->error_end_delimiter;\n }\n\n return $_output;\n }", "function render_error_message($text){\n\t\tif (sizeof($text)>0){\n\t\t\treturn \"<br /><span style=\\\"color: #ff0000\\\">\".$text.\"</span><br />\";\n\t\t}else{\n\t\t\treturn \"\";\n\t\t}\n\t}", "public static function error() {\n\t\t$errorHTML = self::$errorHTML;\n\t\tself::$errorHTML = \"\";\n\t\treturn $errorHTML;\n\t\t\n\t}", "public function showError();" ]
[ "0.7287542", "0.70601386", "0.70601386", "0.70434785", "0.70434785", "0.69134915", "0.68881905", "0.6852148", "0.68269145", "0.6814477", "0.6803933", "0.680084", "0.6760573", "0.67282194", "0.67161006", "0.67161006", "0.6704437", "0.6702048", "0.67007", "0.6692818", "0.66881496", "0.6673167", "0.6673167", "0.6673167", "0.6644549", "0.6622912", "0.6607847", "0.6597719", "0.6597719", "0.65723836", "0.65641135", "0.6553016", "0.65102845", "0.6506671", "0.6506671", "0.6506671", "0.6506671", "0.6499177", "0.6490347", "0.6479387", "0.64742136", "0.6468522", "0.6467741", "0.6464901", "0.6452128", "0.6424519", "0.6417719", "0.6411754", "0.6411273", "0.6407889", "0.63993704", "0.6396106", "0.6394975", "0.6388682", "0.6359406", "0.63583946", "0.634778", "0.634561", "0.6340007", "0.63380057", "0.6321197", "0.63171875", "0.6315096", "0.630793", "0.630793", "0.6307371", "0.63042694", "0.6298009", "0.6294557", "0.6293364", "0.6291891", "0.62891334", "0.6279975", "0.6268121", "0.6266155", "0.62635916", "0.62626046", "0.6261826", "0.6253106", "0.62488806", "0.6239146", "0.62361985", "0.6235509", "0.6228123", "0.62272435", "0.62212956", "0.62186384", "0.619805", "0.61970556", "0.61909086", "0.61816144", "0.61765206", "0.6162107", "0.6156611", "0.61545295", "0.61543506", "0.6153607", "0.6152702", "0.6151063", "0.6150601", "0.6139753" ]
0.0
-1
Store a newly created resource in storage.
public function store(Request $request) { $validation= $request->validate([ 'name' => 'required', 'father_name' => 'required', 'mother_name' => 'required', // 'department' => 'required', 'registration_no' => 'required', 'session' => 'required', 'running_year' => 'required', 'roll_no' => 'required', 'birth_date' => 'required', 'email' => 'required', 'phone' => 'required', ]); // dd($request->all()); $exist = AllStudent::where('registration_no',$request->registration_no) ->where('department',$request->dept) ->count(); // Log::info('essdd'); if($exist>0){ // Log::info($exist); $applicant_id =rand(100000,999999); $response['applicant_id'] =$applicant_id; $student = new Student(); $stdnt = Student::where('applicant_id', $request->get('applicant_id'))->count(); if($stdnt>0){ echo 'There is duplicate id'; } else{ $student->applicant_id = $applicant_id; } $student->name = $request->name; $student->father_name = $request->father_name; $student->mother_name = $request->mother_name; $student->department= $request->dept; $student->registration_no = $request->registration_no; $student->session = $request->session; $student->running_year = $request->running_year; $student->roll_no = $request->roll_no; $student->birth_date = $request->birth_date; $student->email = $request->email; $student->phone = $request->phone; $student->status = 'pending'; $student->notification_status = 0; $student->save(); $sessionData = $request->session()->put('applicant_id',$applicant_id); $sessionData2= $request->session()->put('email',$request->email); $request->session()->put('name',$request->name); $request->session()->put('phone' ,$request->phone); $request->session()->put('reg_no',$request->registration_no); $request->session()->put('department',$request->dept); return response()->json($student); } else{ return redirect()->back()->with(['msg', 'Your data didn"t matched .Please input correctly.']); } // return response($student); }
{ "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
funcion para listas cotizaciones en estado tramite
public function getCotizaciones($tipoUsuario, $id_session) { if ($tipoUsuario == 1) { $table = "(SELECT f.id_cotizacion,case cl.tipo when 1 then p.nombre ||' '|| p.apellido1 ||' '|| COALESCE (p.apellido2,'') else cl.nombre_empresa end as cliente, tt.nombre as transporte, cd.ciudad||'/'||cd.pais as destino, co.ciudad||'/'||co.pais as origen, TO_CHAR (f.fecha_entrega,'DD-MM-YYYY') AS fecha_llegada FROM ldci.tb_cotizacion AS c JOIN ldci.tb_tipo_transporte AS tt on tt.id_tipo_transporte=c.id_tipo_transporte JOIN ldci.vw_ciudades AS cd ON cd.id_ciudad=c.id_ciudad_destino JOIN ldci.vw_ciudades AS co ON co.id_ciudad=c.id_ciudad_origen JOIN ldci.tb_flete AS f ON f.id_cotizacion=c.id_cotizacion JOIN ldci.tb_cliente AS cl ON cl.id_cliente=f.id_cliente JOIN ldci.tb_persona AS p ON cl.id_persona=p.id_persona WHERE c.estado=4 ORDER BY id_cotizacion DESC) as tb"; } else { $table = "(SELECT DISTINCT f.id_cotizacion,UPPER(f.cliente) AS cliente,f.transporte,f.destino, f.origen, f.fecha_llegada FROM( SELECT f.id_cotizacion,case cl.tipo when 1 then p.nombre ||' '|| p.apellido1 ||' '|| COALESCE (p.apellido2,'') else cl.nombre_empresa end as cliente, tt.nombre as transporte, cd.ciudad||'/'||cd.pais as destino, co.ciudad||'/'||co.pais as origen, TO_CHAR (f.fecha_entrega,'DD-MM-YYYY') AS fecha_llegada FROM ldci.tb_cotizacion AS c JOIN ldci.tb_tipo_transporte AS tt on tt.id_tipo_transporte=c.id_tipo_transporte JOIN ldci.vw_ciudades AS cd ON cd.id_ciudad=c.id_ciudad_destino JOIN ldci.vw_ciudades AS co ON co.id_ciudad=c.id_ciudad_origen JOIN ldci.tb_flete AS f ON f.id_cotizacion=c.id_cotizacion JOIN ldci.tb_cliente AS cl ON cl.id_cliente=f.id_cliente JOIN ldci.tb_persona AS p ON cl.id_persona=p.id_persona JOIN ldci.tb_usuario as u ON u.correo=p.correo WHERE c.estado=4 AND u.id_usuario=$id_session UNION ALL SELECT f.id_cotizacion,case cl.tipo when 1 then p.nombre ||' '|| p.apellido1 ||' '|| COALESCE (p.apellido2,'') else cl.nombre_empresa end as cliente, tt.nombre as transporte, cd.ciudad||'/'||cd.pais as destino, co.ciudad||'/'||co.pais as origen, TO_CHAR (f.fecha_entrega,'DD-MM-YYYY') AS fecha_llegada FROM ldci.tb_cotizacion AS c JOIN ldci.tb_tipo_transporte AS tt on tt.id_tipo_transporte=c.id_tipo_transporte JOIN ldci.vw_ciudades AS cd ON cd.id_ciudad=c.id_ciudad_destino JOIN ldci.vw_ciudades AS co ON co.id_ciudad=c.id_ciudad_origen JOIN ldci.tb_flete AS f ON f.id_cotizacion=c.id_cotizacion JOIN ldci.tb_cliente AS cl ON cl.id_cliente=f.id_cliente JOIN ldci.tb_persona AS p ON cl.id_persona=p.id_persona JOIN ldci.tb_vendedor_cotizacion AS vc ON vc.id_cotizacion=c.id_cotizacion WHERE c.estado=4 AND vc.id_usuario=$id_session UNION ALL SELECT f.id_cotizacion,case cl.tipo when 1 then p.nombre ||' '|| p.apellido1 ||' '|| COALESCE (p.apellido2,'') else cl.nombre_empresa end as cliente, tt.nombre as transporte, cd.ciudad||'/'||cd.pais as destino, co.ciudad||'/'||co.pais as origen, TO_CHAR (f.fecha_entrega,'DD-MM-YYYY') AS fecha_llegada FROM ldci.tb_cotizacion AS c JOIN ldci.tb_tipo_transporte AS tt on tt.id_tipo_transporte=c.id_tipo_transporte JOIN ldci.vw_ciudades AS cd ON cd.id_ciudad=c.id_ciudad_destino JOIN ldci.vw_ciudades AS co ON co.id_ciudad=c.id_ciudad_origen JOIN ldci.tb_flete AS f ON f.id_cotizacion=c.id_cotizacion JOIN ldci.tb_cliente AS cl ON cl.id_cliente=f.id_cliente JOIN ldci.tb_persona AS p ON cl.id_persona=p.id_persona WHERE c.estado=4 AND c.usuario_grabacion=$id_session) AS f ORDER BY id_cotizacion DESC) as tb"; } $primaryKey = 'id_cotizacion'; $columns = [ ['db' => 'id_cotizacion', 'dt' => 0], ['db' => 'cliente', 'dt' => 1], ['db' => 'transporte', 'dt' => 2], ['db' => 'destino', 'dt' => 3], ['db' => 'origen', 'dt' => 4], ['db' => 'fecha_llegada', 'dt' => 5] ]; /*** Config DB */ $db = array( 'host' => $_ENV['DB_HOST'], 'db' => $_ENV['DB_DATABASE'], 'user' => $_ENV['DB_USERNAME'], 'pass' => $_ENV['DB_PASSWORD'] ); return SSP::complex($_POST, $db, $table, $primaryKey, $columns); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function listarCotizacion(){\n\t\t$this->procedimiento='adq.f_cotizacion_sel';\n\t\t$this->transaccion='ADQ_COT_SEL';\n\t\t$this->tipo_procedimiento='SEL';//tipo de transaccion\n\t\t\t\t\n\t\t\n\t\t$this->setParametro('id_funcionario_usu','id_funcionario_usu','int4');\n $this->setParametro('tipo_interfaz','tipo_interfaz','varchar');\n $this->setParametro('historico','historico','varchar');\n \n\t\t$this->setParametro('id_proceso_compra','id_proceso_compra','int4');\n\t\t//Definicion de la lista del resultado del query\n\t\t$this->captura('id_cotizacion','int4');\n\t\t$this->captura('estado_reg','varchar');\n\t\t$this->captura('estado','varchar');\n\t\t$this->captura('lugar_entrega','varchar');\n\t\t$this->captura('tipo_entrega','varchar');\n\t\t$this->captura('fecha_coti','date');\n\t\t$this->captura('numero_oc','varchar');\n\t\t$this->captura('id_proveedor','int4');\n\t\t$this->captura('desc_proveedor','varchar');\n\t\t\n\t\t$this->captura('fecha_entrega','date');\n\t\t$this->captura('id_moneda','int4');\n\t\t$this->captura('moneda','varchar');\n\t\t$this->captura('id_proceso_compra','int4');\n\t\t$this->captura('fecha_venc','date');\n\t\t$this->captura('obs','text');\n\t\t$this->captura('fecha_adju','date');\n\t\t$this->captura('nro_contrato','varchar');\n\t\t\n\t\t$this->captura('fecha_reg','timestamp');\n\t\t$this->captura('id_usuario_reg','int4');\n\t\t$this->captura('fecha_mod','timestamp');\n\t\t$this->captura('id_usuario_mod','int4');\n\t\t$this->captura('usr_reg','varchar');\n\t\t$this->captura('usr_mod','varchar');\n\t\t$this->captura('id_estado_wf','integer');\n\t\t$this->captura('id_proceso_wf','integer');\n\t\t$this->captura('desc_moneda','varchar');\n\t\t$this->captura('tipo_cambio_conv','numeric');\n\t\t$this->captura('email','varchar');\n\t\t$this->captura('numero','varchar');\n\t\t$this->captura('num_tramite','varchar');\n\t\t$this->captura('id_obligacion_pago','int4');\n\t\t$this->captura('tiempo_entrega','varchar');\n\t\t$this->captura('funcionario_contacto','varchar');\n\t\t$this->captura('telefono_contacto','varchar');\n\t\t$this->captura('correo_contacto','varchar');\n\t\t$this->captura('prellenar_oferta','varchar');\n\t\t$this->captura('forma_pago','varchar');\n\t\t$this->captura('requiere_contrato','varchar');\n\t\t$this->captura('total_adjudicado','numeric');\n\t\t$this->captura('total_cotizado','numeric');\n\t\t$this->captura('total_adjudicado_mb','numeric');\n\t\t$this->captura('tiene_form500','varchar');\n\t\t$this->captura('correo_oc','varchar');\n\n\t\t$this->captura('id_gestion','int4');\n\n\t\t$this->captura('cuce','varchar');\n\t\t$this->captura('fecha_conclusion','date');\n\t\t$this->captura('id_solicitud','int4');\n\t\t$this->captura('justificacion','text');\n\n\t\t//Ejecuta la instruccion\n\t\t$this->armarConsulta();\n\t\t$this->ejecutarConsulta();\n\t\t\n\t\t//Devuelve la respuesta\n\t\treturn $this->respuesta;\n\t}", "function listarCotizacionProcesoCompra(){\n\t\t$this->procedimiento='adq.f_cotizacion_sel';\n\t\t$this->transaccion='ADQ_COTPROC_SEL';\n\t\t$this->tipo_procedimiento='SEL';//tipo de transaccion\n\t\t$this->setCount(false);\n\t\t\n\t\t$this->setParametro('id_proceso_compra','id_proceso_compra','int4');\n\t\t//Definicion de la lista del resultado del query\n\t\t$this->captura('id_cotizacion','int4');\t \n\t\t\n\t\t//Ejecuta la instruccion\n\t\t$this->armarConsulta();\n\t\t$this->ejecutarConsulta();\n\t\t//Devuelve la respuesta\n\t\treturn $this->respuesta;\n\t}", "public function getCotizaciones() {\n $sql = \"SELECT cot_odt.id_odt, cot_odt.num_odt, cot_odt.id_modelo, cot_odt.tiraje, cot_odt.fecha_odt\n , cot_odt.hora_odt, modelos_cajas.nombre as nombre_caja\n , clientes.nombre as nombre_cliente\n FROM cot_odt\n join modelos_cajas on cot_odt.id_modelo = modelos_cajas.id_modelo\n join clientes on cot_odt.id_cliente = clientes.id_cliente\n WHERE cot_odt.status = 'A' order by cot_odt.fecha_odt desc, cot_odt.hora_odt desc\";\n\n $query = $this->db->prepare($sql);\n\n $query->execute();\n\n $result = array();\n\n while ($row = $query->fetch(PDO::FETCH_ASSOC)) {\n\n $result[] = $row;\n }\n\n return $result;\n\n }", "function listarCotizacionRPC(){\n $this->procedimiento='adq.f_cotizacion_sel';\n $this->transaccion='ADQ_COTRPC_SEL';\n $this->tipo_procedimiento='SEL';//tipo de transaccion\n \n \n $this->setParametro('id_funcionario_usu','id_funcionario_usu','int4');\n $this->setParametro('tipo_interfaz','tipo_interfaz','varchar');\n $this->setParametro('id_funcionario_rpc','id_funcionario_rpc','int4');\n $this->setParametro('historico','historico','varchar');\n \n //Definicion de la lista del resultado del query\n $this->captura('id_cotizacion','int4');\n $this->captura('estado_reg','varchar');\n $this->captura('estado','varchar');\n $this->captura('lugar_entrega','varchar');\n $this->captura('tipo_entrega','varchar');\n $this->captura('fecha_coti','date');\n $this->captura('numero_oc','varchar');\n $this->captura('id_proveedor','int4');\n $this->captura('desc_proveedor','varchar');\n $this->captura('fecha_entrega','date');\n $this->captura('id_moneda','int4');\n $this->captura('moneda','varchar');\n $this->captura('id_proceso_compra','int4');\n $this->captura('fecha_venc','date');\n $this->captura('obs','text');\n $this->captura('fecha_adju','date');\n $this->captura('nro_contrato','varchar');\n $this->captura('fecha_reg','timestamp');\n $this->captura('id_usuario_reg','int4');\n $this->captura('fecha_mod','timestamp');\n $this->captura('id_usuario_mod','int4');\n $this->captura('usr_reg','varchar');\n $this->captura('usr_mod','varchar');\n $this->captura('id_estado_wf','integer');\n $this->captura('id_proceso_wf','integer');\n $this->captura('desc_moneda','varchar');\n $this->captura('tipo_cambio_conv','numeric');\n $this->captura('id_solicitud','integer');\n\t\t$this->captura('id_categoria_compra','integer');\n\t\t$this->captura('numero','varchar');\n $this->captura('num_tramite','varchar');\n $this->captura('tiempo_entrega','varchar');\n\t\t$this->captura('requiere_contrato','varchar');\n\t\t$this->captura('total_adjudicado','numeric');\n\t\t$this->captura('total_cotizado','numeric');\n\t\t$this->captura('total_adjudicado_mb','numeric');\n\n\t\t$this->captura('id_gestion','int4');\n\n \n //Ejecuta la instruccion\n $this->armarConsulta();\n $this->ejecutarConsulta();\n \n //Devuelve la respuesta\n return $this->respuesta;\n }", "protected function armaColeccionObligatorios() {\n $dao = new PGDAO();\n $result = array();\n $where = $this->strZpTprop();\n if ($where != '') {\n $colec = $this->leeDBArray($dao->execSql($this->COLECCIONZPCARACOBLIG . \" and tipoprop in (\" . $where . \")\"));\n } else {\n $colec = $this->leeDBArray($dao->execSql($this->COLECCIONZPCARACOBLIG));\n }\n foreach ($colec as $carac) {\n $result[$carac['id_zpcarac']] = 0;\n }\n return $result;\n }", "public function ListarMovimientoCajas()\n{\n self::SetNames();\n \n if($_SESSION[\"acceso\"] == \"cajero\") {\n\n\n $sql = \"SELECT * FROM movimientoscajas WHERE codigo = '\".$_SESSION[\"codigo\"].\"'\";\n\t\t\tforeach ($this->dbh->query($sql) as $row)\n\t\t\t{\n\t\t\t\t$this->p[] = $row;\n\t\t\t}\n\t\t\treturn $this->p;\n\t\t\t$this->dbh=null;\n\n\n\t\t\t} else {\n\n\t\t\t$sql = \"SELECT * FROM movimientoscajas\";\n\t\t\tforeach ($this->dbh->query($sql) as $row)\n\t\t\t{\n\t\t\t\t$this->p[] = $row;\n\t\t\t}\n\t\t\treturn $this->p;\n\t\t\t$this->dbh=null;\n\t\t}\n}", "public function getRealContenidos() {\r\n// FROM contenidos c1 \r\n// JOIN contenidos c2 ON c1.padre=c2.id \r\n// JOIN contenidos c3 ON c2.padre=c3.id \r\n// ORDER BY c1.nombre ASC';\r\n\t\t\t\t$sql = 'SELECT c1.* \r\n FROM contenidos c1 \r\n WHERE padre = 0 \r\n ORDER BY c1.nombre ASC';\r\n \r\n return $this->getList(new SqlQuery($sql));\r\n \r\n }", "function listarObligacionPagoCotizacion(){\n\t\t$this->procedimiento='adq.f_cotizacion_sel';\n\t\t$this->transaccion='ADQ_OBPGCOT_SEL';\n\t\t$this->tipo_procedimiento='SEL';//tipo de transaccion\n\t\t$this->setCount(false);\n\t\t\n\t\t$this->setParametro('id_cotizacion','id_cotizacion','int4');\n\t\t//Definicion de la lista del resultado del query\n\t\t$this->captura('id_obligacion_pago','int4');\t \n\t\t\n\t\t//Ejecuta la instruccion\n\t\t$this->armarConsulta();\n\t\t$this->ejecutarConsulta();\n\t\t//Devuelve la respuesta\n\t\treturn $this->respuesta;\n\t}", "public function get_Cargos(){\n $listar = $this->pdo->prepare(\"SELECT * FROM th_cargos WHERE car_flag =1 ORDER BY car_titulo ASC\");\n $listar->execute();\n return $listar;\n }", "public static function TraerTodoLosCds()\n\t{\n\t\t$objetoAccesoDato = AccesoDatos::dameUnObjetoAcceso(); \n\t\t$consulta =$objetoAccesoDato->RetornarConsulta(\"select id, titel as titulo, interpret as cantante, jahr as año from cds\");\n\t\t$consulta->execute();\t\t\t\n\t\treturn $consulta->fetchAll(PDO::FETCH_CLASS, \"CD\");\t\t\n\t}", "public function mostrar1(){\n\t\t\t$db=DB::conectar();\n\t\t\t$listarComentarios=[];\n\t\t\t$select=$db->query('SELECT * FROM comentarios WHERE activo=0');\n\n\t\t\tforeach ($select->fetchAll() as $comentario) {\n\t\t\t\t$myComentario = new Comentario();\n\t\t\t\t$myComentario->setIdproducto($comentario['idproducto']);\t\t\t\t\n\t\t\t\t$myComentario->setIp($comentario['ip']);\n\t\t\t\t$myComentario->setFecha($comentario['fecha']);\n\t\t\t\t$myComentario->setComentario($comentario['comentario']);\n\t\t\t\t$myComentario->setEstrellas($comentario['estrellas']);\n\t\t\t\t$myComentario->setActivo($comentario['activo']);\n\t\t\t\t$myComentario->setEmail($comentario['email']);\n\t\t\t\t$listarComentarios[]=$myComentario;\n\t\t\t\t# code...\n\t\t\t}\n\t\t\treturn $listarComentarios;\n\t\t}", "function listarCitasDisponibles()\n\t\t{\n\t\t\t$dia = $this->uri->segment(3);\n\t\t\t$mes = $this->uri->segment(4);\n\t\t\t$year = $this->uri->segment(5);\n\t\t\t$diaDeLaSemana = date('N',mktime(0, 0, 0, $mes, $dia, $year));\n\t\t\t\n\t\t\t//Obetenemos los arrays de horarios del dia de la semana concreto\n\t\t\t$diasSemana = $this->PacienteModel->getCalendario();\n\t\t\tforeach ($diasSemana as $value) {\n\t\t\t\tif($diaDeLaSemana == $value->Dia)\n\t\t\t\t{\n\t\t\t\t\t$horaInicio = explode(':', $value->HoraInicio);\n\t\t\t\t\t$horaFin = explode(':', $value->HoraFin);\n\t\t\t\t\t$duracionCita[] = $value->DuracionCita;\n\t\t\t\t\t$unixInicio[] = mktime($horaInicio[0], $horaInicio[1], 0, $mes, $dia, $year);\n\t\t\t\t\t$unixFin[] = mktime($horaFin[0], $horaFin[1], 0, $mes, $dia, $year);\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t//Comprobamos las citas planificadas para el dia concreto\n\t\t\t$data = $this->PacienteModel->getCitasDisponibles($dia, $mes, $year);\n\t\t\tforeach ($data as $value) {\n\t\t\t\t$aux = explode(\" \", $value->FechaIni);\n\t\t\t\t$aux = $aux[1];\n\t\t\t\t$aux = explode(\":\", $aux);\n\t\t\t\t$hora[] = $aux[0];\n\t\t\t\t$min[] = $aux[1];\n\t\t\t}\n\t\t\t\n\t\t\t//Si no hay ninguna cita se ponen los arrays fuera de rango\n\t\t\tif(!isset($hora) && !isset($min))\n\t\t\t{\n\t\t\t\t$hora[0] = -1;\n\t\t\t\t$min[0] = -1;\n\t\t\t}\n\n\t\t\t//Visualizamos las citas disponibles\n\t\t\techo '<ul class=\"list-group\">';\n\t\t\techo '<li class=\"list-group-item\">'.date('d-m-Y',mktime(0, 0, 0, $mes, $dia, $year)).'</li>';\n\t\t\tfor($j = 0; $j < sizeof($unixInicio); $j++)\n\t\t\t\tfor($i = $unixInicio[$j]; $i < $unixFin[$j]; $i += 60*$duracionCita[$j] )\n\t\t\t\t{\n\t\t\t\t\tif ( (in_array(date('H',$i), $hora) && in_array(date('i',$i), $min) )\n\t\t\t\t\t\t|| time()>$i )\n\t\t\t\t\t\techo '<li class=\"list-group-item\">'.date('H:i',$i).'</li>';\n\t\t\t\t\telse \n\t\t\t\t\t\techo '<li class=\"list-group-item active\">\n\t\t\t\t\t\t\t<a style=\"color: black;\" onclick=\"crearCita(\\''.$this->session->userdata('id').'\\',\n\t\t\t\t\t\t\t\\''.date('Y-m-d H:i:s',$i).'\\',\n\t\t\t\t\t\t\t\\''.date('Y-m-d H:i:s',$i + 60 * $duracionCita[$j]).'\\'\n\t\t\t\t\t\t\t)\">'.date('H:i',$i).'</a></li>';\n\t\t\t\t}\n\t\t\techo '</ul>';\n\t\t}", "function cuentabancos(){\n\t\t\t$sql=$this->query(\"select m.IdPoliza,m.Cuenta,c.description,c.manual_code\n\t\t\tfrom cont_movimientos m,cont_polizas p,cont_accounts c,cont_config conf\n\t\t\twhere m.cuenta=c.account_id and c.currency_id=2 \n\t\t\tand c.`main_father`=conf.CuentaBancos and p.idtipopoliza!=3 and m.TipoMovto not like '%M.E%'\n\t\t\tand m.IdPoliza=p.id and p.activo=1 and m.Activo=1 group by m.Cuenta\n\t\t\t\");\n\t\t\treturn $sql;\n\t\t}", "public function get_cargos($centro_costo){\n\t\t\t\n\t\t\t\n\t\t\ttry { \n\t\t\t\tglobal $conn;\n\t\t\t\t$sql=\"SELECT distinct c.cod_car, C.NOM_CAR \n\t\t\t\t\t FROM CARGOS C, CENTROCOSTO2 AREA, EMPLEADOS_BASIC EPL\n\t\t\t\t\t\tWHERE \n\t\t\t\t\t EPL.COD_CC2='\".$centro_costo.\"'\n\t\t\t\t\t\tAND EPL.COD_CAR=C.COD_CAR\n\t\t\t\t\t\torder by nom_car asc\n\t\t\t\t\t\t\";\n\t\t\t\t\t\t\n\t\t\t\t$rs=$conn->Execute($sql);\n\t\t\t\twhile($fila=$rs->FetchRow()){\n\t\t\t\t\t$this->lista[]=array(\"codigo\" => $fila[\"cod_car\"],\n\t\t\t\t\t\t\t\t\t\t \"cargos\"=> utf8_encode($fila[\"NOM_CAR\"]));\n\t\t\t\t}\n\t\t\t\n\t\t\t\treturn $this->lista;\n\t\t\t\t\n\t\t\t}catch (exception $e) { \n\n\t\t\t var_dump($e); \n\n\t\t\t adodb_backtrace($e->gettrace());\n\n\t\t\t} \n\t\t\n\t\t}", "function getListaComentarios(){\n $mysqli = Conectar();\n\n $res = $mysqli->query(\"Select id_evento, id_comentario, nick, fecha, hora, comentario From comentarios Order By id_evento\") ;\n $listaEventos = getLista();\n $eventos = array();\n \n for($i = 0 ; $i<count($listaEventos) ; $i++){\n $nombreEvento = $listaEventos[$i]['nick'];\n $eventos[$listaEventos[$i]['id_evento']] = $nombreEvento;\n }\n\n\n $comentarios = array() ;\n $contador = 0 ;\n \n while($row = $res->fetch_assoc()){\n $comentario = array('id_comentario' => $row['id_comentario'], 'id_evento' => $eventos[$row['id_evento']] ,'nick' => $row['nick'], 'fecha' => date('d-m-Y',strtotime($row['fecha'])), 'hora' => $row['hora'], 'comentario' => $row['comentario']) ;\n array_push($comentarios,$comentario) ;\n $contador = $contador + 1 ;\n }\n\n return $comentarios ;\n }", "function leerCreditos(){\n \n try{\n $stmt = $this->dbh->prepare(\"SELECT c.idcredito, t.NombreCte,c.tipoContrato, c.montoTotal, c.plazo,c.mensualidad, c.interes,\"\n . \" c.metodoPago, c.observaciones, c.status FROM tarjetas_clientes t join credito c on t.idClienteTg=c.cteId where c.status=1 or c.status=3\");\n // Especificamos el fetch mode antes de llamar a fetch()\n $stmt->execute();\n $clientes = $stmt->fetchAll(PDO::FETCH_NUM);\n } catch (PDOException $e){\n $clientes=array(\"status\"=>\"0\",\"mensaje\"=>$e->getMessage());\n }\n \n return $clientes;\n }", "public function listarActivos(){\n $sql = \"SELECT c.idcompra, c.nrofactura, date(c.fecha) as fecha, p.razonsocial AS proveedor, concat(per.nombre, ' ', per.apellido) AS personal, c.monto, c.estado \n FROM compras c JOIN proveedores p ON c.idproveedor = p.idproveedor JOIN personales per ON c.idpersonal = per.idpersonal WHERE c.estado = '1'\n ORDER BY c.idcompra DESC\";\n return ejecutarConsulta($sql);\n }", "function listarConceptoCta(){\n\t\t$this->procedimiento='pre.f_concepto_cta_sel';\n\t\t$this->transaccion='PRE_CCTA_SEL';\n\t\t$this->tipo_procedimiento='SEL';//tipo de transaccion\n\t\t\t\t\n\t\t//Definicion de la lista del resultado del query\n\t\t$this->captura('id_concepto_cta','int4');\n\t\t$this->captura('estado_reg','varchar');\n\t\t$this->captura('id_auxiliar','int4');\n\t\t$this->captura('id_cuenta','int4');\n\t\t$this->captura('id_concepto_ingas','int4');\n\t\t\n\t\t$this->captura('id_centro_costo','int4');\n\t\t$this->captura('fecha_reg','timestamp');\n\t\t$this->captura('id_usuario_reg','int4');\n\t\t$this->captura('fecha_mod','timestamp');\n\t\t$this->captura('id_usuario_mod','int4');\n\t\t$this->captura('usr_reg','varchar');\n\t\t$this->captura('usr_mod','varchar');\n\t \n\t \n\t $this->captura('nro_cuenta','varchar');\n $this->captura('nombre_cuenta','varchar');\n $this->captura('desc_gestion','int4');\n $this->captura('id_gestion','int4');\n $this->captura('desc_centro_costo','text');\n $this->captura('desc_auxiliar','text');\n $this->captura('desc_cuenta','text');\n \n $this->captura('codigo_partida','varchar');\n $this->captura('nombre_partida','varchar');\n $this->captura('desc_partida','text');\n \n \n\t\t\n\t\t//Ejecuta la instruccion\n\t\t$this->armarConsulta();\n\t\t$this->ejecutarConsulta();\n\t\t\n\t\t//Devuelve la respuesta\n\t\treturn $this->respuesta;\n\t}", "public function ListarCreditos()\n{\n\tself::SetNames();\n\t$sql =\"SELECT \n\tventas.idventa, ventas.codventa, ventas.totalpago, ventas.statusventa, abonoscreditos.fechaabono, SUM(abonoscreditos.montoabono) as abonototal, clientes.codcliente, clientes.cedcliente, clientes.nomcliente, clientes.tlfcliente, clientes.emailcliente, cajas.nrocaja\n\tFROM\n\t(ventas LEFT JOIN abonoscreditos ON ventas.codventa=abonoscreditos.codventa) LEFT JOIN clientes ON \n\tclientes.codcliente=ventas.codcliente LEFT JOIN cajas ON ventas.codcaja = cajas.codcaja WHERE ventas.tipopagove ='CREDITO' GROUP BY ventas.codventa\";\n\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 listar_contratos(){\n //Consulta\n $sql = \n 'SELECT\n contratos.Pk_Id_Contrato,\n contratos.Numero,\n tbl_terceros.Nombre AS Contratista,\n tbl_terceros.Pk_Id_Terceros,\n tbl_terceros.Documento AS Documento_Contratista,\n tbl_terceros.Telefono AS Telefono_Contratista,\n tbl_terceros.Direccion AS Direccion_Contratista,\n contratos.Objeto,\n contratos.Lugar,\n tbl_estados.Pk_Id_Estado,\n tbl_estados.Estado,\n contratos.Valor_Inicial,\n contratos.Fecha_Inicial,\n contratos.Plazo,\n contratos.Acta_Inicio,\n contratos.Fecha_Acta_Inicio\n FROM\n contratos\n LEFT JOIN tbl_estados ON (contratos.Fk_Id_Estado = tbl_estados.Pk_Id_Estado)\n LEFT JOIN tbl_terceros ON tbl_terceros.Pk_Id_Terceros = contratos.Fk_Id_Terceros\n WHERE\n tbl_estados.Pk_Id_Estado = 2\n AND contratos.Fk_Id_Proyecto = '.$this->session->userdata('Fk_Id_Proyecto');\n \n //Se retorna la consulta\n return $this->db->query($sql)->result(); \n }", "public function getCicloCotable(){\n\t\t\t// creamos el array $retorna con los datos de la tabla lcompras\n\t\t\t$result = $this->_db->query(\"SELECT * FROM ciclocontable WHERE show_by = '1' ORDER BY idCicloContable DESC\");\n\t\t\t$retorna = $result->fetch_all(MYSQL_ASSOC);\n\n\t\t\treturn $retorna;\n\t\t}", "public function getCicloCotable(){\n\t\t\t// creamos el array $retorna con los datos de la tabla lcompras\n\t\t\t$result = $this->_db->query(\"SELECT * FROM ciclocontable WHERE show_by = '1' ORDER BY idCicloContable DESC\");\n\t\t\t$retorna = $result->fetch_all(MYSQL_ASSOC);\n\n\t\t\treturn $retorna;\n\t\t}", "public function citas_tiposCitas(){\n \t\n\t\t\t$resultado = array();\n\t\t\n\t\t\t$query = \" SELECT idTipoCita, nombre\n\t\t\t\t\t\tFROM tb_tiposCita\";\n\t\t\t\t\t\t\n\t\t\t$conexion = parent::conexionCliente();\n\t\t\t\n\t\t\tif($res = $conexion->query($query)){\n\t \n\t /* obtener un array asociativo */\n\t while ($filas = $res->fetch_assoc()) {\n\t $resultado[] = $filas;\n\t }\n\t \n\t /* liberar el conjunto de resultados */\n\t $res->free();\n\t \n\t }\n\t\n\t return $resultado;\n\t\t\t\n }", "public static function obtenerCotizacionesListaPendiente()\n { \n $consulta = \"SELECT * FROM cotizaciones WHERE (estado=0 OR estado=3) ORDER BY num_cotizacion DESC, version ASC\";\n try {\n // Preparar sentencia\n $comando = Database::getInstance()->getDb()->prepare($consulta);\n // Ejecutar sentencia preparada\n $comando->execute();\n\n return $comando->fetchAll(PDO::FETCH_ASSOC);\n\n } catch (PDOException $e) {\n return false;\n }\n }", "function lista_proveedores($ubicacion,$idfamilia,$idservicio,$interno,$activo,$texto)\n\t{\n\n\t\t$condicion =\" WHERE 1 \";\n\n\t\tif ($idfamilia!='') $condicion.= \" AND cs.IDFAMILIA ='$idfamilia'\";\n\t\tif ($activo!='') $condicion.= \" AND (cp.ACTIVO = $activo)\";\n\t\tif ($idservicio!='') $condicion.= \" AND (cps.IDSERVICIO = '$idservicio' OR cps.IDSERVICIO ='0' )\";\n\t\tif ($interno!='') $condicion.= \" AND cp.INTERNO = '$interno' \";\n\t\tif ($texto!='') $condicion.= \" AND (cp.NOMBRECOMERCIAL like '%$texto%' OR cp.NOMBREFISCAL like '%$texto%')\";\n\n\t\t/* QUERY BUSCA LOA PROVEEDORES QUE PRESTAN EL SERVICIO*/\n\n\t\t$sql=\"\n\t\t\tSELECT \n\t\t\t\tcp.IDPROVEEDOR\n\t\t\tFROM \n\t\t\t$this->catalogo.catalogo_proveedor cp\n\t\t\t\tLEFT JOIN $this->catalogo.catalogo_proveedor_servicio cps ON cps.IDPROVEEDOR = cp.IDPROVEEDOR \n\t\t\t\tLEFT JOIN $this->catalogo.catalogo_servicio cs ON cs.IDSERVICIO = cps.IDSERVICIO\n\t\t\t\t$condicion\n\t\t\t\t\n\t\t\tGROUP BY cps.IDPROVEEDOR\n\t\t\torder by cp.INTERNO DESC, cp.NOMBRECOMERCIAL ASC\n\t\t\";\n\n\n\t\t\t//\techo $sql;\n\t\t\t\t$res_prv= $this->query($sql);\n\t\t\t\t$lista_prov= array();\n\t\t\t\t$prov = new proveedor();\n\t\t\t\t$poli = new poligono();\n\t\t\t\t$circulo = new circulo();\n\t\t\t\t$point= array('lat'=>$ubicacion->latitud,'lng'=>$ubicacion->longitud);\n\n\t\t\t\tif ($ubicacion->cveentidad1==0){\n\t\t\t\t\twhile ($reg=$res_prv->fetch_object())\n\t\t\t\t\t{\n\t\t\t\t\t\t$lista_prov[$reg->IDPROVEEDOR][DISTANCIA]='';\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\twhile ($reg_prv=$res_prv->fetch_object())\n\t\t\t\t\t{\n\t\t\t\t\t\t$prov->carga_datos($reg_prv->IDPROVEEDOR);\n\t\t\t\t\t\t$distancia= geoDistancia($ubicacion->latitud,$ubicacion->longitud,$prov->latitud,$prov->longitud,$prov->lee_parametro('UNIDAD_LONGITUD'));\n\t\t\t\t\t\t$sw=0;\n\n\t\t\t\t\t\t$condicion=\"\";\n\t\t\t\t\t\t$condicion.= \" cuf.CVEPAIS = '$ubicacion->cvepais'\";\n\n\t\t\t\t\t\t$condicion.= \" AND (cuf.CVEENTIDAD1 in ('$ubicacion->cveentidad1','0'))\";\n\t\t\t\t\t\t$condicion.= \" AND (cuf.CVEENTIDAD2 in ('$ubicacion->cveentidad2','0'))\";\n\t\t\t\t\t\t$condicion.= \" AND (cuf.CVEENTIDAD3 in ('$ubicacion->cveentidad3','0'))\";\n\t\t\t\t\t\t$condicion.= \" AND (cuf.CVEENTIDAD4 in ('$ubicacion->cveentidad4','0'))\";\n\t\t\t\t\t\t$condicion.= \" AND (cuf.CVEENTIDAD5 in ('$ubicacion->cveentidad5','0'))\";\n\t\t\t\t\t\t$condicion.= \" AND (cuf.CVEENTIDAD6 in ('$ubicacion->cveentidad6','0'))\";\n\t\t\t\t\t\t$condicion.= \" AND (cuf.CVEENTIDAD7 in ('$ubicacion->cveentidad7','0'))\";\n\t\t\t\t\t\t\n\t\t\t\t\t\t$condicion.= \" OR (\"; \n\n\t\t\t\t\t\tif ($ubicacion->cveentidad1!='0') $condicion.= \" (cuf.CVEENTIDAD1 = '$ubicacion->cveentidad1')\";\n\t\t\t\t\t\tif ($ubicacion->cveentidad2!='0') $condicion.= \" AND (cuf.CVEENTIDAD2 = '$ubicacion->cveentidad2')\";\n\t\t\t\t\t\tif ($ubicacion->cveentidad3!='0') $condicion.= \" AND (cuf.CVEENTIDAD3 = '$ubicacion->cveentidad3')\";\n\t\t\t\t\t\tif ($ubicacion->cveentidad4!='0') $condicion.= \" AND (cuf.CVEENTIDAD4 = '$ubicacion->cveentidad4')\";\n\t\t\t\t\t\tif ($ubicacion->cveentidad5!='0') $condicion.= \" AND (cuf.CVEENTIDAD5 = '$ubicacion->cveentidad5')\";\n\t\t\t\t\t\tif ($ubicacion->cveentidad6!='0') $condicion.= \" AND (cuf.CVEENTIDAD6 = '$ubicacion->cveentidad6')\";\n\t\t\t\t\t\tif ($ubicacion->cveentidad7!='0') $condicion.= \" AND (cuf.CVEENTIDAD7 = '$ubicacion->cveentidad7')\";\n\t\t\t\t\t\t\n\t\t\t\t\t\t$condicion .= \" )\";\n\n\t\t\t\t\t\t/* QUERY BUSCA LAS UNIDADES FEDERATIVAS QUE COINCIDAN CON LA UBICACION PARA CADA PROVEEDOR*/\n\t\t\t\t\t\t$sql=\"\n\t\t\tSELECT \n\t\t\t\tcpsxuf.IDPROVEEDOR, cpsxuf.IDUNIDADFEDERATIVA,cpsxuf.ARRAMBITO\n\t\t\tFROM\n\t\t\t $this->catalogo.catalogo_proveedor_servicio_x_unidad_federativa cpsxuf\n\t\t\t\tLEFT JOIN $this->catalogo.catalogo_unidadfederativa cuf ON $condicion\n\t\t\tWHERE \n\t\t\t\tcpsxuf.IDUNIDADFEDERATIVA = cuf.IDUNIDADFEDERATIVA\n\t\t\t\tAND\tcpsxuf.IDPROVEEDOR ='$reg_prv->IDPROVEEDOR'\n\t\t\t\tand cpsxuf.IDSERVICIO IN ('$idservicio', '0')\n\t\t\t\tORDER BY 3 DESC\n\t\t\t\";\n\t\t\t\t\t//echo $sql;\n\t\t\t$res_prv_entid= $this->query($sql);\n\t\t\twhile ($reg_prv_entid= $res_prv_entid->fetch_object())\n\t\t\t{\n\t\t\t\t$lista_prov[$reg_prv_entid->IDPROVEEDOR][DISTANCIA]= $distancia;\n\t\t\t\t$lista_prov[$reg_prv_entid->IDPROVEEDOR][AMBITO]=\t$reg_prv_entid->ARRAMBITO;\n\t\t\t\t$lista_prov[$reg_prv_entid->IDPROVEEDOR][TIPOPOLIGONO] ='ENTIDAD';\n\t\t\t\t$lista_prov[$reg_prv_entid->IDPROVEEDOR][ID] = $reg_prv_entid->IDUNIDADFEDERATIVA;\n\t\t\t\tif ($reg_prv_entid->ARRAMBITO=='LOC') $sw=1; // si hubo algun entidad LOC se activa el sw\n\n\t\t\t}\n\t\t\tif (($ubicacion->latitud !='' )&& ($ubicacion->longitud!=''))\n\t\t\t{\n\t\t\t\t$sql=\"\n\t\t\t\tSELECT \n\t\t\t\t\tcpsxp.IDPROVEEDOR, cpsxp.IDPOLIGONO\n\t\t\t\tFROM \n\t\t\t\t$this->catalogo.catalogo_proveedor_servicio_x_poligono cpsxp\n\t\t\t\tWHERE\n\t\t\t\t\tcpsxp.IDPROVEEDOR ='$reg_prv->IDPROVEEDOR'\n\t\t\t\t\";\n\t\t\t\t$res_prv_poli= $this->query($sql);\n\t\t\t\twhile ($reg_prv_poli = $res_prv_poli->fetch_object())\n\t\t\t\t{\n\t\t\t\t\t// verifica si el punto esta incluido en el poligono\n\t\t\t\t\t$in = pointInPolygon($point,$poli->lee_vertices($reg_prv_poli->IDPOLIGONO));\n\t\t\t\t\tif (( $in ) && ($sw==0))\n\t\t\t\t\t{\n\t\t\t\t\t\t$lista_prov[$reg_prv_poli->IDPROVEEDOR][DISTANCIA]= $distancia;\n\t\t\t\t\t\t$lista_prov[$reg_prv_poli->IDPROVEEDOR][AMBITO]=\t$reg_prv_poli->ARRAMBITO;\n\t\t\t\t\t\t$lista_prov[$reg_prv_poli->IDPROVEEDOR][TIPOPOLIGONO] ='POLIGONO';\n\t\t\t\t\t\t$lista_prov[$reg_prv_poli->IDPROVEEDOR][ID] = $reg_prv_poli->IDPOLIGONO;\n\t\t\t\t\t\tif ($reg_prv_poli->ARRAMBITO=='LOC') $sw=1; // si hubo algun poligono LOC se activa el sw\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t$sql=\"\n\t\t\t\tSELECT \n\t\t\t\t\tcpsxc.IDPROVEEDOR, cpsxc.IDCIRCULO\n\t\t\t\tFROM\n\t\t\t\t$this->catalogo.catalogo_proveedor_servicio_x_circulo cpsxc\n\t\t\t\tWHERE\n\t\t\t\t\tcpsxc.IDPROVEEDOR='$res_prv->IDPROVEEDOR'\n\t\t\t\t\";\n\n\t\t\t\t$res_prv_circ = $this->query($sql);\n\t\t\t\twhile ($reg_prv_circ = $res_prv_circ->fetch_object())\n\t\t\t\t{\n\t\t\t\t\t$circulo->leer($reg_prv_circ->IDCIRCULO);\n\t\t\t\t\t$vertices = $circulo->verticesCircle($circulo->latitud,$circulo->longitud,$circulo->radio,$circulo->idmedida);\n\t\t\t\t\t$in= pointInPolygon($point,$vertices);\n\n\t\t\t\t\tif (($in ) && ($sw==0))\n\t\t\t\t\t{\n\t\t\t\t\t\t$lista_prov[$reg_prv_circ->IDPROVEEDOR][DISTANCIA]= $distancia;\n\t\t\t\t\t\t$lista_prov[$reg_prv_circ->IDPROVEEDOR][AMBITO]=\t$reg_prv_circ->ARRAMBITO;\n\t\t\t\t\t\t$lista_prov[$reg_prv_circ->IDPROVEEDOR][TIPOPOLIGONO] ='CIRCULO';\n\t\t\t\t\t\t$lista_prov[$reg_prv_circ->IDPROVEEDOR][ID] = $reg_prv_circ->IDCIRCULO;\n\t\t\t\t\t\tif ($reg_prv_circ->ARRAMBITO=='LOC') $sw=1;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} // fin de la busqueda por LATITUD Y LONGITUD\n\n\n\n\n\n\t\t\t\t\t} // fin del while del proveedor\n\t\t\t\t}\n\n\t\t\t\t/* LEE LAS PROPORCIONES DE LA FORMULA DEL RANKING */\n\t\t\t\t$sql=\"\n\t\t\tSELECT \t\n\t\t\t\tELEMENTO,PROPORCION \n\t\t\tFROM \n\t\t\t$this->catalogo.catalogo_proporciones_ranking\n\t\t\t\";\n\t\t\t$result=$this->query($sql);\n\n\t\t\twhile($reg = $result->fetch_object())\n\t\t\t$proporcion[$reg->ELEMENTO] = $reg->PROPORCION;\n\n\n\t\t\t$max_costo_int=0;\n\t\t\t$max_costo_ext=0;\n\n\n\t\t\t/* OBTENER DATOS PARA EVALUAR EL RANKING */\n\t\t\tforeach ($lista_prov as $idproveedor=>$proveedor)\n\t\t\t{\n\t\t\t\t$sql=\"\n\t\tSELECT \n\t\t\tIF (cp.ARREVALRANKING='SKILL',IF (cp.SKILL>0,cp.SKILL/100,0), IF (cp.CDE>0,cp.CDE/100,0)) VALRANKING,\n\t\t\tIF (cpscn.MONTOLOCAL IS NULL,0,cpscn.MONTOLOCAL) COSTO,\n\t\t\tIF (cp.EVALSATISFACCION>0,cp.EVALSATISFACCION/100,0) EVALSATISFACCION ,\n\t\t\tcp.EVALINFRAESTRUCTURA EVALINFRAESTRUCTURA,\n\t\t\tcp.EVALFIDELIDAD EVALFIDELIDAD,\n\t\t\tcp.INTERNO\n\t\tFROM \n\t\t$this->catalogo.catalogo_proveedor cp\n\t\t\tLEFT JOIN $this->catalogo.catalogo_proveedor_servicio_costo_negociado cpscn ON cpscn.IDPROVEEDOR = cp.IDPROVEEDOR AND cpscn.IDSERVICIO = '$idservicio' AND cpscn.IDCOSTO = 1\n\t\tWHERE \n\t\t\tcp.IDPROVEEDOR = '$idproveedor' \n\t\t\";\n\t\t//\t\t\t\techo $sql;\n\t\t$result = $this->query($sql);\n\n\t\twhile ($reg=$result->fetch_object())\n\t\t{\n\t\t\tif ($reg->INTERNO){\n\t\t\t\t$temp_prov_int[$idproveedor][VALRANKING] = $reg->VALRANKING;\n\t\t\t\t$temp_prov_int[$idproveedor][COSTO] = $reg->COSTO;\n\t\t\t\t$temp_prov_int[$idproveedor][EVALSATISFACCION] = $reg->EVALSATISFACCION;\n\t\t\t\t$temp_prov_int[$idproveedor][EVALINFRAESTRUCTURA] = $reg->EVALINFRAESTRUCTURA;\n\t\t\t\t$temp_prov_int[$idproveedor][EVALFIDELIDAD] = $reg->EVALFIDELIDAD;\n\t\t\t\tif ($reg->COSTO > $max_costo_int) $max_costo_int= $reg->COSTO;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$temp_prov_ext[$idproveedor][VALRANKING] = $reg->VALRANKING;\n\t\t\t\t$temp_prov_ext[$idproveedor][COSTO] = $reg->COSTO;\n\t\t\t\t$temp_prov_ext[$idproveedor][EVALSATISFACCION] = $reg->EVALSATISFACCION;\n\t\t\t\t$temp_prov_ext[$idproveedor][EVALINFRAESTRUCTURA] = $reg->EVALINFRAESTRUCTURA;\n\t\t\t\t$temp_prov_ext[$idproveedor][EVALFIDELIDAD] = $reg->EVALFIDELIDAD;\n\t\t\t\tif ($reg->COSTO > $max_costo_ext) $max_costo_ext= $reg->COSTO;\n\t\t\t}\n\t\t}\n\n\t\t\t}\n\n\t\t\t/*calcula el Ranking de proveedores internos */\n\n\t\t\tforeach ($temp_prov_int as $idproveedor=>$proveedor)\n\t\t\t{\n\t\t\t\t$valranking = round($proveedor[VALRANKING] * $proporcion[CDE_SKILL],4);\n\t\t\t\t$valcosto = ($proveedor[COSTO]==0)?0:(1-($proveedor[COSTO]/$max_costo_int))*$proporcion[COSTO];\n\t\t\t\t$evalsatisfaccion = round($proveedor[EVALSATISFACCION] * $proporcion[SATISFACCION],2);\n\t\t\t\t$evalinfraestructura = round($proveedor[EVALINFRAESTRUCTURA] * $proporcion[INFRAESTRUCTURA],2);\n\t\t\t\t$evalfidelidad = round($proveedor[EVALFIDELIDAD] * $proporcion[FIDELIDAD],2);\n\t\t\t\t$lista_prov_int[$idproveedor][RANKING] = ($valranking + $valcosto+$evalsatisfaccion + $evalinfraestructura + $evalfidelidad)*100;\n\t\t\t}\n\n\t\t\t/*calcula el Ranking de proveedores externos */\n\t\t\tforeach ($temp_prov_ext as $idproveedor=>$proveedor)\n\t\t\t{\n\t\t\t\t$valranking = round($proveedor[VALRANKING] * $proporcion[CDE_SKILL],4);\n\t\t\t\t$valcosto = ($proveedor[COSTO]==0)?0:(1-($proveedor[COSTO]/$max_costo_ext))*$proporcion[COSTO];\n\t\t\t\t$evalsatisfaccion = round($proveedor[EVALSATISFACCION] * $proporcion[SATISFACCION],2);\n\t\t\t\t$evalinfraestructura = round($proveedor[EVALINFRAESTRUCTURA] * $proporcion[INFRAESTRUCTURA],2);\n\t\t\t\t$evalfidelidad = round($proveedor[EVALFIDELIDAD] * $proporcion[FIDELIDAD],2);\n\t\t\t\t$lista_prov_ext[$idproveedor][RANKING] = ($valranking + $valcosto+$evalsatisfaccion + $evalinfraestructura + $evalfidelidad)*100;\n\t\t\t}\n\n\t\t\t$temp_prov_int = ordernarArray($lista_prov_int,'RANKING',1);\n\t\t\t$temp_prov_ext = ordernarArray($lista_prov_ext,'RANKING',1);\n\n\n\t\t\tforeach ($temp_prov_int as $idproveedor => $proveedor)\n\t\t\t{\n\t\t\t\t$lista_ordenada[$idproveedor] = $lista_prov[$idproveedor];\n\t\t\t\t$lista_ordenada[$idproveedor][RANKING] = $lista_prov_int[$idproveedor][RANKING];\n\t\t\t}\n\t\t\tforeach ($temp_prov_ext as $idproveedor => $proveedor)\n\t\t\t{\n\t\t\t\t$lista_ordenada[$idproveedor] = $lista_prov[$idproveedor];\n\t\t\t\t$lista_ordenada[$idproveedor][RANKING] = $lista_prov_ext[$idproveedor][RANKING];\n\t\t\t}\n\t\t\t/* DEVUELVE EL ARRAY*/\n\t\t\treturn $lista_ordenada ;\n\n\t}", "private function listado_obras(){\n \treturn Sesion::where(\"inicio\",\">\",Carbon::now())->distinct()->get(['nombre_obra']);\n }", "public function listarCursos () {\n\t\t// Recupera el valor de la base de datos\n $link=Conectarse(); // y me conecto. //dependiendo del tipo recupero uno u otro.\n\t $Sql='SELECT DISTINCT unidad FROM tb_alumno ORDER BY unidad';\n // echo $Sql;\n\t $result=mysqli_query($link,$Sql);// ejecuta la cadena sql y almacena el resultado el $result\n\t $ii=0; // contador \n\t while ($row=mysqli_fetch_array($result)) {\n\t\t\t$this->listaDeCursos['largo'][$ii]=$row['unidad']; \n\t\t\t$this->listaDeCursos['curso'][$ii]=substr($row['unidad'],0,1); \t\n\t\t\t$this->listaDeCursos['clase'][$ii]=strtoupper(substr($row['unidad'],-1));\n\t\t\t$this->listaDeCursos['nivel'][$ii]=strtoupper(trim(substr($row['unidad'],1,-1)));\n\t\t\t$this->listaDeCursos['alumnado'][$ii]=$this->devuelveListaAlumnos($row['unidad']); \n\t\t\t$this->listaDeCursos['corto'][$ii]=$this->listaDeCursos[\"curso\"][$ii].$this->listaDeCursos[\"nivel\"][$ii].$this->listaDeCursos[\"clase\"][$ii];\n\t\t\t$ii++;\n\t\t\t}\n\t\t\tif (!is_null($this->listaDeCursos)) { // si no lo recupera, el valor por defecto)\n\t\t return $this->listaDeCursos; //envia el valor dado\n\t\t } else {\n\t\t return NULL;\n\t }\n\t mysqli_free_result($result); \n\t mysqli_close($link);\n\t}", "public function listarSocios() {\r\n $sql = \"select j.nombre,j.apellido,j.cedula,j.fechanac, j.porcentaje, m.nombre from juntadirectiva as j, municipio as m \"\r\n\t\t .\" where j.ciudadnac = m.id\";\t\t\r\n $respuesta = $this->object->ejecutar($sql);\r\n $this->construirListadoSocio($respuesta);\r\n }", "public function listarComentariosAceitos(){\n $this->validaAutenticacao();\n $comentario = Container::getModel('Comentarios');\n $comentario->__set('idVitima', $_POST['idVitima']);\n\n echo (json_encode($comentario->getComentariosAprovadosDashboard()));\n }", "public function use_obtener_otros_sucursales(){\n $cuenta = $this->ci->session->userdata('usuario'); \n $suc = $this->ci->session->userdata('sucursal');\n $sucursales = $this->ci->arixkernel->select_all_content_where('sucursal_id serial, numero, nombre','config.v_cuenta_sucursal', array('cuenta_id' => $cuenta, 'sucursal_id !=' => $suc, 'estado' => true));\n return $sucursales;\n }", "public function getListaOcupaciones() {\n \n $listaOcupaciones = array();\n \n $dbAccess = new DBAccess();\n $result = $dbAccess->getSelect(\"SELECT * from ocupacion\");\n\n foreach($result as $row){\n \n $ocupacion = new Ocupacion($row['idocupacion'], $row['idempleado'], $row['fecha_ocupado']);\n array_push($listaOcupaciones, $ocupacion); \n }\n \n return $listaOcupaciones;\n }", "function listadoProyectos(){\n $class=\"\";\n $this->arrayEstatusVisibles = array();\n if($this->session['rol'] == 1)\n $this->arrayEstatusVisibles = array(0,1,2,3,4,5,6,7,8,9,10);\n if ($this->session ['rol'] == 2)\n $this->arrayEstatusVisibles = array (0,1,2,3,4,5,6,7,8,9,10);\n \n if($this->session['rol'] == 3)\n $this->arrayEstatusVisibles = array(5,6,7,8,9,10);\n if($this->session['rol'] == 4)\n $this->arrayEstatusVisibles = array(1,2,3,4,5,6,7,8,9,10);\n \n $no_registros = $this->consultaNoProyectosAvances();\n $this->arrayNotificaciones = $this->notificaciones();\n $arrayDisabled = $this->recuperaPermisos(0,0);\n $trimestreId = $this->obtenTrimestre($arrayDisabled);\n $noTri = $trimestreId;\n if($trimestreId == 1)\n $noTri =\"\";\n \n if($no_registros){\n $this->pages = new Paginador();\n $this->pages->items_total = $no_registros;\n $this->pages->mid_range = 25;\n $this->pages->paginate();\n $resultados = $this->consultaProyectosAvances();\n $this->bufferExcel = $this->generaProyectosExcel();\n }\n $col=6;\n $this->buffer=\"\n <input type='hidden' name='trimestreId' id='trimestreId' value='\".$trimestreId.\"'>\n <div class='panel panel-danger spancing'>\n <div class='panel-heading'><span class='titulosBlanco'>\".str_replace(\"#\",$trimestreId,REPORTETRIMESTRAL).\"</span></div>\n <div class='panel-body'><center><span id='res'></span></center>\".$this->divFiltrosProyectos(1,0,\"\",\"\").\"\n <center>\".$this->regresaLetras().\"</center><br>\";\n if(count($resultados) > 0){\n $arrayAreas = $this->catalogoAreas();\n $arrayOpera = $this->catalogoUnidadesOperativas();\n $this->buffer.=\"\n <table width='95%' class='table tablesorter table-condensed' align='center' id='MyTableActividades'>\n <thead><tr>\n <td class='tdcenter fondotable' width='2%' >\".NO.\"</td>\n <td class='tdcenter fondotable' width='10%' >\".AREA.\"</td>\n <td class='tdcenter fondotable' width='36%' >\".PROYECTOS.\"</td>\n <td class='tdcenter fondotable' width='10%' >\".METASREPORTE.\"</td> \n <td class='tdcenter fondotable' width='10%' >\".FECHAALTA.\"</td>\n <td class='tdcenter fondotable' width='12%' >\".ESTATUSVALIDACION.\" Trimestre \".$trimestreId.\"</td> \n <td clasS='tdcenter fondotable' width='12%' >\".ENVIARCOORDINADOR.\"</td>\";\n if($this->session['rol']>=3 ){\n $this->buffer.=\"<td clasS='tdcenter fondotable' width='10%'>\".MARCAVALIDAR.\"</td>\";\n $col++;\n }\n $this->buffer.=\"</tr></thead><tbody>\";\n $contador=1;\n $varTemporal=\"\";\n if($this->session['page']<=1)\n $contadorRen= 1;\n else\n $contadorRen=$this->session['page']+1; \n \n foreach($resultados as $id => $resul){\n $rand = rand(1,99999999999999);\n $class=\"\";\n if($contador % 2 == 0)\n $class=\"active\";\n $campo = \"estatus_avance_entrega\".$noTri;\n $idEstatus=$resul[$campo]; \n $varTemporal = $resul['id'];\n if($idEstatus == 0){\n $this->arrayNotificaciones[0]['act'] = 1;\n }\n $this->buffer.=\"\n <tr class=' $class alturaComponentesA'> \n <td class='tdcenter'>\".$contador.\"</td>\n <td class='tdcenter'>\n <a class='negro' href='#'\n data-toggle='tooltip' data-placement='bottom'\n title='\".$arrayAreas[$resul['unidadResponsable_id']].\". - Unidad Operativa: \".$arrayOpera[$resul['unidadOperativaId']].\"'>\n &nbsp;\" . $resul['unidadResponsable_id']. \"</a>\n </td> \n <td class='tdleft'>\".$resul['proyecto'].\"</td>\n <td class='tdcenter'>\";\n if($resul['noAcciones'] > 0)\n {\n $this->buffer.=\"\n <a class='negro' href='\".$this->path.\"aplicacion.php?aplicacion=\".$this->session ['aplicacion'].\"&apli_com=\".$this->session ['apli_com'].\"&opc=9&folio=\".$varTemporal.\"'\n data-toggle='tooltip' data-placement='bottom' title='\".TOOLTIPMETAREP.\"' id='\".$varTemporal.\"'>\".$resul['noAcciones'].\"</a>\";\n }\n $this->buffer.=\"</td> \n <td class='tdcenter'>\".substr($resul['fecha_alta'],0,10).\"</td>\n <td class='tdcenter' style='background-color:\".$this->arrayNotificaciones[$idEstatus]['color'].\";color:#000000;'>\";\n if($idEstatus > 2){\n $this->buffer.=\"<a class='negro visualizaComentarios' href='#' onclick='return false;' id='\".$varTemporal.\"'\n data-toggle='tooltip' data-placement='bottom' title='\".TOOLTIPMUESTRACOMENTARIOS.\"'>\n &nbsp;\".$this->arrayNotificaciones[$idEstatus]['nom'].\"\n </a>\";\n }\n else{\n $this->buffer.=$this->arrayNotificaciones[$idEstatus]['nom'];\n }\n $this->buffer.=\"</td><td class='tdcenter'>\";\n //mostramos el checkbox rol 1\n if(($this->session['rol'] == 1 || $this->session['rol'] == 2) && $idEstatus>0 && $idEstatus < 4){\n //if( ($this->arrayNotificaciones[$idEstatus]['act'] == 1) && ($resul['userId'] == $this->session['userId']) ){\n if( ($this->arrayNotificaciones[$idEstatus]['act'] == 1) ){\n if($resul['noAcciones']>0)\n $this->buffer.=\"<input data-toggle='tooltip' data-placement='bottom' title='\".DESMARCAVALIDAR.\"' type='checkbox' name='enviaId' id='\".$varTemporal.\"' class='enviaIdAvance' value='\".$resul['id'].\"'>\";\n }\n }\n //mostramos el checkbox rol 2\n if($this->session['rol'] == 2 && $idEstatus >= 4 && $idEstatus < 7 && $idEstatus != 5){\n if($resul['noAcciones']>0)\n $this->buffer.=\"<input data-toggle='tooltip' data-placement='bottom' title='\".DESMARCAVALIDAR.\"' type='checkbox' name='enviaId' id='\".$varTemporal.\"' class='enviaIdAvance' value='\".$resul['id'].\"'>\";\n }\n //mostramos el checkbox rol 3\n if($this->session['rol'] == 3 && $idEstatus >= 5 && $idEstatus < 10 && $idEstatus != 6 && $idEstatus != 8){\n if($resul['noAcciones']>0)\n if($idEstatus == 5)\n $this->buffer.=$this->pintaComentarioAvance($idEstatus,$resul['id'],$trimestreId);\n else\n $this->buffer.=\"<input data-toggle='tooltip' data-placement='bottom' title='\".DESMARCAVALIDAR.\"' type='checkbox' name='enviaId' id='\".$varTemporal.\"' class='enviaIdAvance' value='\".$resul['id'].\"'>\";\n }\n //mostramos el checkbox rol 4\n if($this->session['rol'] == 4 && $idEstatus >= 6 && $idEstatus <= 10 && $idEstatus != 7){\n if($resul['noAcciones']>0)\n if($idEstatus == 8)\n $this->buffer.=$this->pintaComentarioAvance($idEstatus,$resul['id'],$trimestreId);\n }\n $this->buffer.=\"</td>\";\n \n if ($this->session['rol'] == 3){\n $this->buffer.=\"<td class='tdcenter'>\";\n if($idEstatus == 6 ){\n $this->buffer.=\"<a class='negro enviaEnlacePlaneacion' id='c-\".$varTemporal.\"-0' href='#' data-toggle='tooltip' data-placement='bottom' title='\".TOOLTIPREGRESAPROYECTOPLANEACION.\"'><span class='glyphicon glyphicon-thumbs-down'></span>&nbsp;</a>\";\n }\n $this->buffer.=\"</td>\";\n }\n if ($this->session['rol'] >= 4){\n $this->buffer.=\"<td class='tdcenter'>\";\n if($idEstatus == 9 ){\n $this->buffer.=\"<a class='negro enviaCoordinador' id='p-\".$varTemporal.\"-0' href='#' data-toggle='tooltip' data-placement='bottom' title='\".TOOLTIPREGRESAPROYECTOCOORDINADOR.\"'><span class='glyphicon glyphicon-thumbs-down'></span>&nbsp;</a>\";\n }else{\n if($idEstatus <10 )\n $this->buffer .= \"<input data-toggle='tooltip' data-placement='bottom' title='\" . DESMARCAVALIDAR . \"' type='checkbox' name='enviaId' id='\" . $varTemporal . \"' class='enviaIdAvance' value='\" . $resul ['id'] . \"'>\";\n }\n $this->buffer.=\"</td>\";\n }\n \n $this->buffer.=\"</tr>\";\n $contador++;\n } \n $this->buffer.=\"<tbody><thead><tr>\n <td colspan='\".($col-1).\"' class='tdcenter'>&nbsp;</td>\n <td colspan='2' class='tdcenter'>\".$this->Genera_Archivo($this->bufferExcel,$this->path_sis).\"</td>\n </tr></thead></table>\n <table width='100%'><tr><td class='tdcenter'>\".$this->pages->display_jump_menu().\"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\".$this->pages->display_items_per_page($this->session ['regs']).\"</td></tr></table>\"; \n }\n else{\n $this->buffer.=\"<table class='table table-condensed'><tr><td class='tdcenter'>\".SINREGISTROS.\"</td></tr></table>\";\n }\n $this->buffer.=\"</div></div>\";\n }", "public function getListadoObligacioness() {\n return $this->conexionObligaciones->listaLlaves(\"CARNET\", \"ASC\");\n }", "static function listaClanaka(){\n\t\trequire_once(MODEL_ABS.'DB_DAO/Broker_baze.php');\n\t\trequire_once(MODEL_ABS.'DB_DAO/Clanak.php');\n\t\t\n\t\t$broker=new Broker();\n\t\t$clanak=new Clanak($broker);\n\t\t(isset($_GET['pag'])) ? $pag=$_GET['pag'] : $pag=0;\n\t\t(isset($_GET['korak'])) ? $korak=$_GET['korak'] : $korak=5;\n\t\t\n\t\t$rezultat['clanci']=$clanak->limitClanci($pag,$korak);\n\t\t$br_clanaka=$clanak->brojanjeClanaka();\n\t\t$rezultat['pags']=ceil($br_clanaka/$korak);\n\t\t$rezultat['pag']=$pag;\n\t\t\n\t\treturn $rezultat;\n\t}", "function lista_cuotas($id, $ida, $nivel){\r\n\r\n\t$sql = \"SELECT * FROM cuotas WHERE credito_idcredito = $id ORDER BY idcuotas ASC\";\r\n\t$ej = mysql_query($sql);\r\n\t$cont = 0;\r\n\twhile($dt = mysql_fetch_array($ej)){\r\n\t$cont++;\r\n\r\n\t/*if($dt['estatus'] == 'PENDIENTE'){\r\n\t$boton=\"<a href=\\\"?e=9&ida=\".$ida.\"&idc=\".$dt['idcuotas'].\"\\\" class=\\\"btn btn-primary btn-small\\\" >Procesar pago</a>\";\r\n\t}else{\r\n\t$boton=\"<a href=\\\"?e=9&ida=\".$ida.\"&idcr=\".$dt['idcuotas'].\"\\\" class=\\\"btn btn-danger btn-small\\\" >Reversar pago</a>\";\r\n\t}\r\n\tif($nivel == 'USUARIO'){\r\n\t$celda = \"\";\r\n\t}else{\r\n\t$celda = \"<td>\".$boton.\"</td>\";\r\n\t}*/\r\n\t$amort = $dt['amortizacion'];\r\n\t$inter = $dt['interes'];\r\n\t$capi = $dt['capital'];\r\n\t$var .=\"\r\n\t\t<tr>\r\n\t\t<td>\".$cont.\"</td>\t\r\n\t\t<td>\".round($amort, 2).\"</td>\r\n\t\t<td>\".round($inter, 2).\"</td>\r\n\t\t<td>\".round($capi, 2).\"</td>\r\n\t\t<td>\".$dt['fecha_vence'].\"</td>\r\n\t\t<td>\".$dt['fecha_pago'].\" <a href='#'><i class=\\\"icon-pencil\\\"></i></a></td>\r\n\t\t<td>\".$dt['estatus'].\"</td>\t\t\r\n\t\t</tr>\r\n\t\t\";//\".$celda.\"\r\n\t}\r\n\treturn $var;\r\n\r\n}", "public function listadoCirugiasSinPagar(){\n\t\t$resultado = array();\n\t\t\n\t\t$query = \"SELECT C.idCirugia, C.fecha, DATE_FORMAT(C.hora, '%H:%i') as hora,\n\t\t\n\t\t\t\t\t\tP.nombre AS nombrePaciente,\n\t\t\t\t\t\t\n\t\t\t\t\t\tPP.idPropietario, PP.identificacion, PP.nombre AS nombre, PP.apellido,\n\t\t\t\t\t\t\n\t\t\t\t\t\tU.nombre AS nombreMedico, U.apellido AS apellidoMedico\n\t\t\n\t\t\t\t\t\tFROM tb_cirugias AS C \n\t\t\t\t\t\t\n\t\t\t\t\t\tINNER JOIN tb_mascotas AS P ON P.idMascota = C.idMascota\n\t\t\t\t\t\tINNER JOIN tb_propietarios AS PP ON PP.idPropietario = P.idPropietario\n\t\t\t\t\t\tINNER JOIN tb_usuarios AS U ON U.idUsuario = C.idUsuario\n\t\t\t\t\t\t\n \t\t\t\tWHERE Not C.idCirugia IN (SELECT idTipoDetalle FROM tb_pago_factura_caja_detalle WHERE tipoDetalle = 'Cirugia' AND estado = 'Activo' )\n \t\t\t\torder by C.fecha desc, C.hora \";\n\t\t\n\t\t$conexion = parent::conexionCliente();\n\t\t\n\t\tif($res = $conexion->query($query)){\n \n /* obtener un array asociativo */\n while ($filas = $res->fetch_assoc()) {\n $resultado[] = $filas;\n }\n \n /* liberar el conjunto de resultados */\n $res->free();\n \n }\n\n return $resultado;\t\t\n\t}", "static public function mdlListarCancelaciones($tabla, $item, $valor, $orden, $fechadev1, $fechadev2){\n\n\tif($item != null){\n\n\t}else{\n\t\t$where='fecha_salida>=\"'.$fechadev1.'\" AND fecha_salida<=\"'.$fechadev2.'\" ';\n \n\t\t$where.=' group by cv.num_cancelacion ORDER BY cv.'.$orden.' ASC';\n\t\t//$where.=' ORDER BY '.$orden.' DESC';\n \n\t\t//$stmt = Conexion::conectar()->prepare(\"SELECT * FROM $tabla WHERE \".$where); \n\t\t$stmt = Conexion::conectar()->prepare(\"SELECT cv.`id`, cv.num_cancelacion, cv.`id_cliente`,cli.nombre,cv.`num_salida`,cv.`fecha_salida`, sum(cv.`cantidad`) AS cant, SUM(IF(cv.`es_promo` = 0, cv.`cantidad`*cv.`precio_venta`,0)) AS sinpromo, SUM(IF(cv.`es_promo` = 1, cv.`precio_venta`,0)) AS promo,cv.`ultusuario`,cv.`ultmodificacion` FROM cancela_venta cv\n\t\tINNER JOIN clientes cli ON cli.id=cv.id_cliente\n\t\tWHERE \".$where); \n\n\t\t$stmt -> execute();\n\n\t\treturn $stmt -> fetchAll();\n\n\t}\n\n\t$stmt = null;\n\n}", "public function getListadoCattareas()\r\n {\r\n return $this->conexionCattarea->listaLlaves(\"correlativo\", \"ASC\");\r\n }", "function genera_cotizador($filtros){ \n\n \t$cotiza = new cotizador_detalle;\n \t$cotiza->id_cotizacion = $filtros->id_cotizacion;\n\n \t$productos = $cotiza->detalle_cotizacion($cotiza);\n \t$cotizacion = cotizador::where('id',$filtros->id_cotizacion)->first();\n \t$num_cotizacion = $filtros->id_cotizacion;\n\n \t$estatus = $cotizacion->estatus == '' ? 0 : $cotizacion->estatus;\n\n \t$options = view('cotizador.table',compact('productos','cotizacion','num_cotizacion','estatus'))->render();\n\n \treturn $options;\n }", "function getT_Comentario() {\n $t_comentarios = [];\n $c = new Conexion();\n $resultado = $c->query(\"SELECT * FROM tcomentarios\");\n\n while ($objeto = $resultado->fetch(PDO::FETCH_OBJ)) {\n $t_comentarios[] = $objeto;\n }\n return $t_comentarios;\n}", "public function getForosComentarios(){\n\t\tif($this->get_request_method() != \"GET\") $this->response('', 406);\n\n\t\t//get data sent\n\t\t$ses_id = $_GET['ses_id'];\n\t\t$user = $_GET['user'];\n\t\t$id_tema = $_GET['id_tema'];\n\t\t$regs = $_GET['regs'];\n\t\t$page = $_GET['page'];\n\t\t$inicio = ($page - 1) * $regs;\n\n\t\t// Session validation\n\t\tif ($this->checkSesId($ses_id, $user)){\n\t\t\t// Input validations\n\t\t\tif(trim($user) != ''){\t\t\n\t\t\t\t$foro = new foro();\n\t\t\t\t$filtro_comentarios = \" AND c.id_tema=\".$id_tema.\" AND estado=1 AND id_comentario_id=0\";\n\t\t\t\t$result = $foro->getComentarios($filtro_comentarios.' ORDER BY date_comentario DESC LIMIT '.$inicio.','.$regs); \n\t\t\t\t$this->response($this->json($result), 200);\n\t\t\t}\n\t\t}\n\t\telse{\n\t\t\t$error = array('status' => \"Failed\", \"msg\" => \"Sesion incorrecta\");\n\t\t\t$this->response($this->json($error), 400);\t\t\n\t\t}\n\t}", "public function colaboradores_obsoletos(){\n //where ((B.data_inserida-'$data') && (C.data_inserida-'$data') )>tempo_sem_atualizar\n return $this->db->query(\"select * from colaboradores A inner join competencias_colaboradores AS B on (A.id_colaborador=B.colaboradores_id_colaborador) join instituicao where status_colaborador=0 group by colaboradores_id_colaborador order by B.data_inserida \");\n }", "public static function obtenerCotizacionesTodas()\n { \n $consulta = \"SELECT * FROM cotizaciones ORDER BY num_cotizacion ASC, version ASC\";\n try {\n // Preparar sentencia\n $comando = Database::getInstance()->getDb()->prepare($consulta);\n // Ejecutar sentencia preparada\n $comando->execute();\n\n return $comando->fetchAll(PDO::FETCH_ASSOC);\n\n } catch (PDOException $e) {\n return false;\n }\n }", "public function buscarTodos() {\r\n global $conn;\r\n $qry = $conn->query(\"SELECT * FROM conta\");\r\n $items = array();\r\n while($linha = $qry->fetch()) {\r\n $items[] = new Conta($linha[\"saldo\"], $linha[\"numero\"], $linha[\"cpf\"],$linha[\"cnpj\"]);\r\n }\r\n return $items;\r\n }", "public function consultaCargos() {\n\t\t\treturn $this->entidad->getRepository('\\Entidades\\Expertos\\UsuariosCargo')->findAll();\n\t\t}", "public function listaAnticiposClientes()\n {\n $anticiposAgregados = array();\n foreach($this->session->userdata(\"comprobantes_anticipos\") as $index => $value)\n {\n $anticiposAgregados[] = $index;\n }\n $this->db->where('cliente_id', $_POST['cliente']);\n $this->db->where('comprobante_anticipo', 1);\n $this->db->where('comprobante_anticipo_usado', 0);\n if(count($anticiposAgregados) > 0)\n {\n $this->db->where_not_in('id',$anticiposAgregados);\n }\n $this->db->order_by('id','DESC');\n $query = $this->db->get(\"comprobantes\");\n $rsAnticipos = $query->result();\n return $rsAnticipos;\n }", "public function getComercios(){\n\t\t$sql = \"SELECT ID_comercio, nombre, correo, telefono, responsable, FK_ID_estado_comercio FROM comercio ORDER BY nombre\";\n\t\t$params = array(null);\n\t\treturn Database::getRows($sql, $params);\n\t}", "function getAllCargos(){\n\t\t\tDB_DataObject::debugLevel(0);\n\t\t\t$obj = DB_DataObject::Factory('VenCargo');\n\t\t\t$data=false;\n\t\t\t$obj->find();\n\t\t\t$i=0;\n\t\t\twhile($obj->fetch()){\n\t\t\t\t$data[$i]['idCargo']=$obj->idCargo;\n\t\t\t\t$data[$i]['nombre']=utf8_encode($obj->nombre);\n\t\t\t\t$data[$i]['estado']=$obj->estado;\n\t\t\t\t$data[$i]['fechaMod']=$obj->fechaMod;\n\t\t\t\t$data[$i]['fecha']=$obj->fecha;\t\n\t\t\t\t$i++;\t\t\n\t\t\t}\n\t\t\t$obj->free();\n\t\t\t//printVar($data,'getAllCargos');\n\t\t\treturn $data;\n\t\t}", "function getComentarios(){\n $this->bd->setConsulta(\"select * from comentario\");\n $comentario = array();\n $i=0;\n while ($fila = $this->bd->getFila()){\n $comentario[$i] = new Comentario($fila[\"id\"], $fila[\"descripcion\"],$fila[\"fechacreacion\"],$fila[\"idEntrada\"],$fila[\"idUsuario\"]);\n $i++;\n }\n return $comentario;\n }", "public static function listarTodos($conexion){\n\t\t\t$sql = \"\n\t\t\t\tSELECT\n\t\t\t\t a.id_cancion, a.id_album, b.nombre_album, b.album_cover_url,\n\t\t\t\t b.id_artista, c.nombre_artista,\n\t\t\t\t a.id_idioma, d.nombre_idioma, d.abreviatura_idioma,\n\t\t\t\t a.nombre_cancion,\n\t\t\t\t a.id_genero,\n\t\t\t\t e.nombre_genero,\n\t\t\t\t a.url_audio,\n\t\t\t\t a.reproducciones\n\t\t\t\tFROM tbl_canciones a\n\t\t\t\tINNER JOIN tbl_albumes b\n\t\t\t\tON (a.id_album=b.id_album)\n\t\t\t\tINNER JOIN tbl_artistas c\n\t\t\t\tON (b.id_artista=c.id_artista)\n\t\t\t\tINNER JOIN tbl_idioma d\n\t\t\t\tON (a.id_idioma=d.id_idioma)\n\t\t\t\tINNER JOIN tbl_generos e\n\t\t\t\tON (a.id_genero = e.id_genero)\n\t\t\t\";\n\t\t\t$resultado = $conexion->ejecutarConsulta($sql);\n\t\t\t$canciones=array(); // Renombrar\n\t\t\twhile($cancion=$conexion->obtenerFila($resultado)){\n\t\t\t\t$canciones[]=$cancion;\n\t\t\t}\n\t\t\treturn $canciones;\n\t\t}", "public function getCot_observaciones(){\n return $this->cot_observaciones;\n }", "function buscarEspaciosVistos(){\r\n $i=0;\r\n $espacios_vistos=isset($espacios_vistos)?$espacios_vistos:'';\r\n $espacios=isset($reprobados)?$reprobados:'';\r\n \r\n if(is_array($this->espaciosCursados)){\r\n foreach ($this->espaciosCursados as $espacio) {\r\n $espacios[$i]=$espacio[0];\r\n $i++;\r\n }\r\n }\r\n \r\n if(is_array($espacios)){\r\n $espacios= array_unique($espacios);\r\n if($this->datosEstudiante['IND_CRED']=='S'){\r\n foreach ($espacios as $key => $espacio) {\r\n foreach ($this->espaciosCursados as $cursado) {\r\n if($espacio==$cursado['CODIGO']){\r\n $espacios_vistos[$key]['CODIGO']=$cursado['CODIGO'];\r\n $espacios_vistos[$key]['CREDITOS']=(isset($cursado['CREDITOS'])?$cursado['CREDITOS']:0);\r\n }\r\n }\r\n }\r\n }else{\r\n $espacios_vistos=$espacios;\r\n }\r\n \r\n }\r\n return $espacios_vistos;\r\n }", "function obtenerComentarios($idpincho){\n\t\t$comentario = new Comentarios();\n\t\treturn $comentario->listarPorPincho($idpincho);\n\t}", "public function get_datos_ventas_cobros_contado($fecha,$sucursal){\n\t$conectar= parent::conexion();\n\tparent::set_names();\n \n\t$fecha_corte = $fecha.\"%\";\n\t$sql=\"select c.n_factura,c.fecha_ingreso,c.n_recibo,c.paciente,u.usuario,c.total_factura,c.forma_cobro,c.monto_cobrado,c.saldo_credito,c.abonos_realizados from\ncorte_diario as c inner join usuarios as u on u.id_usuario=c.id_usuario where c.fecha_ingreso like ? and c.abonos_realizados='0' and c.tipo_venta='Contado' AND tipo_ingreso='Venta' and (sucursal_venta=? or sucursal_cobro=?);\";\n\t$sql=$conectar->prepare($sql);\n\t$sql->bindValue(1,$fecha_corte);\n\t$sql->bindValue(2,$sucursal);\n\t$sql->bindValue(3,$sucursal);\n\t$sql->execute();\n\treturn $resultado= $sql->fetchAll(PDO::FETCH_ASSOC);\n}", "public function mostrar(){\n\t\t\t$db=DB::conectar();\n\t\t\t$listarComentarios=[];\n\t\t\t$select=$db->query('SELECT * FROM comentarios');\n\n\t\t\tforeach ($select->fetchAll() as $comentario) {\n\t\t\t\t$myComentario = new Comentario();\n\t\t\t\t$myComentario->setIdproducto($comentario['idproducto']);\t\t\t\t\n\t\t\t\t$myComentario->setIp($comentario['ip']);\n\t\t\t\t$myComentario->setFecha($comentario['fecha']);\n\t\t\t\t$myComentario->setComentario($comentario['comentario']);\n\t\t\t\t$myComentario->setEstrellas($comentario['estrellas']);\n\t\t\t\t$myComentario->setActivo($comentario['activo']);\n\t\t\t\t$myComentario->setEmail($comentario['email']);\n\t\t\t\t$listarComentarios[]=$myComentario;\n\t\t\t\t# code...\n\t\t\t}\n\t\t\treturn $listarComentarios;\n\t\t}", "public function get_all_cajeros()\n { \n $this->parametros = array();\n $this->sp = \"str_consultacajeros\";\n $this->executeSPConsulta();\n\n if (count($this->rows)<=0){\n $this->mensaje=\"No existen niveles economicos en la BD.\";\n array_pop($rol);\n array_push($rol, array(0 => -1, \n 1 => 'Seleccione...',\n 3 => ''));\n\t\t\t\n }else{\n $rol = array();\n\n array_pop($rol);\n array_push($rol, array(0 => -1, \n 1 => 'Seleccione...',\n 3 => ''));\n\t\t\t\n foreach($this->rows as $niveles_economicos){\n array_push($rol, array_values($niveles_economicos));\n }\n\n $this->rows = $rol;\n unset($rol);\n }\n }", "function getListOpcional()\n{\n global $conn;\n /*\n *query da disciplina\n */\n $sqld = \"SELECT\n cat_id,\n cat_titulo\n\n FROM \".TABLE_PREFIX.\"_categoria\n WHERE cat_status=1 AND cat_area='Disciplinas'\n ORDER BY cat_titulo\";\n\n $opc = array();\n if(!$qryd = $conn->prepare($sqld))\n echo divAlert($conn->error, 'error');\n\n else {\n\n $qryd->execute();\n $qryd->bind_result($id, $titulo);\n\n while ($qryd->fetch())\n $opc[$id] = $titulo;\n\n $qryd->close();\n\n\n }\n\n return $opc;\n}", "function listarSolicitudObligacionPago()\r\n {\r\n $this->procedimiento = 'tes.ft_solicitud_obligacion_pago_sel';\r\n $this->transaccion = 'TES_SOOBPG_SEL';\r\n $this->tipo_procedimiento = 'SEL';//tipo de transaccion\r\n\r\n\r\n $this->setParametro('id_funcionario_usu', 'id_funcionario_usu', 'int4');\r\n $this->setParametro('tipo_interfaz', 'tipo_interfaz', 'varchar');\r\n $this->setParametro('historico', 'historico', 'varchar');\r\n\r\n //Definicion de la lista del resultado del query\r\n $this->captura('id_obligacion_pago', 'int4');\r\n $this->captura('id_proveedor', 'int4');\r\n $this->captura('desc_proveedor', 'varchar');\r\n $this->captura('estado', 'varchar');\r\n $this->captura('tipo_obligacion', 'varchar');\r\n $this->captura('id_moneda', 'int4');\r\n $this->captura('moneda', 'varchar');\r\n $this->captura('obs', 'varchar');\r\n $this->captura('porc_retgar', 'numeric');\r\n $this->captura('id_subsistema', 'int4');\r\n $this->captura('nombre_subsistema', 'varchar');\r\n $this->captura('id_funcionario', 'int4');\r\n $this->captura('desc_funcionario1', 'text');\r\n $this->captura('estado_reg', 'varchar');\r\n $this->captura('porc_anticipo', 'numeric');\r\n $this->captura('id_estado_wf', 'int4');\r\n $this->captura('id_depto', 'int4');\r\n $this->captura('nombre_depto', 'varchar');\r\n $this->captura('num_tramite', 'varchar');\r\n $this->captura('id_proceso_wf', 'int4');\r\n $this->captura('fecha_reg', 'timestamp');\r\n $this->captura('id_usuario_reg', 'int4');\r\n $this->captura('fecha_mod', 'timestamp');\r\n $this->captura('id_usuario_mod', 'int4');\r\n $this->captura('usr_reg', 'varchar');\r\n $this->captura('usr_mod', 'varchar');\r\n $this->captura('fecha', 'date');\r\n $this->captura('numero', 'varchar');\r\n $this->captura('tipo_cambio_conv', 'numeric');\r\n $this->captura('id_gestion', 'integer');\r\n $this->captura('comprometido', 'varchar');\r\n $this->captura('nro_cuota_vigente', 'numeric');\r\n $this->captura('tipo_moneda', 'varchar');\r\n $this->captura('total_pago', 'numeric');\r\n $this->captura('pago_variable', 'varchar');\r\n $this->captura('id_depto_conta', 'integer');\r\n $this->captura('total_nro_cuota', 'integer');\r\n $this->captura('fecha_pp_ini', 'date');\r\n $this->captura('rotacion', 'integer');\r\n $this->captura('id_plantilla', 'integer');\r\n $this->captura('desc_plantilla', 'varchar');\r\n $this->captura('ultima_cuota_pp', 'numeric');\r\n $this->captura('ultimo_estado_pp', 'varchar');\r\n $this->captura('tipo_anticipo', 'varchar');\r\n $this->captura('ajuste_anticipo', 'numeric');\r\n $this->captura('ajuste_aplicado', 'numeric');\r\n $this->captura('monto_estimado_sg', 'numeric');\r\n $this->captura('id_obligacion_pago_extendida', 'integer');\r\n $this->captura('desc_contrato', 'text');\r\n $this->captura('id_contrato', 'integer');\r\n $this->captura('obs_presupuestos', 'varchar');\r\n $this->captura('codigo_poa', 'varchar');\r\n $this->captura('obs_poa', 'varchar');\r\n $this->captura('uo_ex', 'varchar');\r\n //Funcionario responsable de el plan de pagos\r\n $this->captura('id_funcionario_responsable', 'integer');\r\n $this->captura('desc_fun_responsable', 'text');\r\n\r\n $this->captura('id_conformidad', 'int4');\r\n $this->captura('conformidad_final', 'text');\r\n $this->captura('fecha_conformidad_final', 'date');\r\n $this->captura('fecha_inicio', 'date');\r\n $this->captura('fecha_fin', 'date');\r\n $this->captura('observaciones', 'varchar');\r\n $this->captura('fecha_certificacion_pres', 'date');\r\n\r\n\r\n //Ejecuta la instruccion\r\n $this->armarConsulta();\r\n $this->ejecutarConsulta();\r\n\r\n //Devuelve la respuesta\r\n return $this->respuesta;\r\n }", "function listarProcesoCompra(){\n\t\t$this->procedimiento='adq.f_proceso_compra_sel';\n\t\t$this->transaccion='ADQ_PROC_SEL';\n\t\t$this->tipo_procedimiento='SEL';//tipo de transaccion\n\t\t\t\t\n\t\t//Definicion de la lista del resultado del query\n\t\t$this->captura('id_proceso_compra','int4');\n\t\t$this->captura('id_depto','int4');\n\t\t$this->captura('num_convocatoria','varchar');\n\t\t$this->captura('id_solicitud','int4');\n\t\t$this->captura('id_estado_wf','int4');\n\t\t$this->captura('fecha_ini_proc','date');\n\t\t$this->captura('obs_proceso','varchar');\n\t\t$this->captura('id_proceso_wf','int4');\n\t\t$this->captura('num_tramite','varchar');\n\t\t$this->captura('codigo_proceso','varchar');\n\t\t$this->captura('estado_reg','varchar');\n\t\t$this->captura('estado','varchar');\n\t\t$this->captura('num_cotizacion','varchar');\n\t\t$this->captura('id_usuario_reg','int4');\n\t\t$this->captura('fecha_reg','timestamp');\n\t\t$this->captura('fecha_mod','timestamp');\n\t\t$this->captura('id_usuario_mod','int4');\n\t\t$this->captura('usr_reg','varchar');\n\t\t$this->captura('usr_mod','varchar');\n\t\t\n\t\t$this->captura('desc_depto','varchar');\n\t\t$this->captura('desc_funcionario','text');\n\t\t$this->captura('desc_solicitud','varchar');\n\t\t$this->captura('desc_moneda','varchar');\n\t\t\n\t\t \n\t\t\n\t\t//Ejecuta la instruccion\n\t\t$this->armarConsulta();\n\t\t$this->ejecutarConsulta();\n\t\t\n\t\t//Devuelve la respuesta\n\t\treturn $this->respuesta;\n\t}", "public function ListarDetallesCompras()\n{\n\tself::SetNames();\n\n\tif($_SESSION['acceso'] == \"administrador\") {\n\n\t\t$sql = \" SELECT * FROM detallecompras LEFT JOIN categorias ON detallecompras.categoria = categorias.codcategoria\";\n\t\tforeach ($this->dbh->query($sql) as $row)\n\t\t{\n\t\t\t$this->p[] = $row;\n\t\t}\n\t\treturn $this->p;\n\t\t$this->dbh=null;\n\t}\n\telse {\n\n\t\t$sql = \" SELECT * FROM detallecompras LEFT JOIN categorias ON detallecompras.categoria = categorias.codcategoria WHERE detallecompras.codigo = \".$_SESSION[\"codigo\"].\"\";\n\t\tforeach ($this->dbh->query($sql) as $row)\n\t\t{\n\t\t\t$this->p[] = $row;\n\t\t}\n\t\treturn $this->p;\n\t\t$this->dbh=null;\n\t}\n}", "function listarSolicitudObligacionPagoSol()\r\n {\r\n $this->procedimiento = 'tes.ft_solicitud_obligacion_pago_sel';\r\n $this->transaccion = 'TES_SOOBPGSOL_SEL';\r\n $this->tipo_procedimiento = 'SEL';//tipo de transaccion\r\n\r\n $this->setParametro('id_funcionario_usu', 'id_funcionario_usu', 'int4');\r\n $this->setParametro('tipo_interfaz', 'tipo_interfaz', 'varchar');\r\n\r\n //Definicion de la lista del resultado del query\r\n $this->captura('id_obligacion_pago', 'int4');\r\n $this->captura('id_proveedor', 'int4');\r\n $this->captura('desc_proveedor', 'varchar');\r\n $this->captura('estado', 'varchar');\r\n $this->captura('tipo_obligacion', 'varchar');\r\n $this->captura('id_moneda', 'int4');\r\n $this->captura('moneda', 'varchar');\r\n $this->captura('obs', 'varchar');\r\n $this->captura('porc_retgar', 'numeric');\r\n $this->captura('id_subsistema', 'int4');\r\n $this->captura('nombre_subsistema', 'varchar');\r\n $this->captura('id_funcionario', 'int4');\r\n $this->captura('desc_funcionario1', 'text');\r\n $this->captura('estado_reg', 'varchar');\r\n $this->captura('porc_anticipo', 'numeric');\r\n $this->captura('id_estado_wf', 'int4');\r\n $this->captura('id_depto', 'int4');\r\n $this->captura('nombre_depto', 'varchar');\r\n $this->captura('num_tramite', 'varchar');\r\n $this->captura('id_proceso_wf', 'int4');\r\n $this->captura('fecha_reg', 'timestamp');\r\n $this->captura('id_usuario_reg', 'int4');\r\n $this->captura('fecha_mod', 'timestamp');\r\n $this->captura('id_usuario_mod', 'int4');\r\n $this->captura('usr_reg', 'varchar');\r\n $this->captura('usr_mod', 'varchar');\r\n $this->captura('fecha', 'date');\r\n $this->captura('numero', 'varchar');\r\n $this->captura('tipo_cambio_conv', 'numeric');\r\n $this->captura('id_gestion', 'integer');\r\n $this->captura('comprometido', 'varchar');\r\n $this->captura('nro_cuota_vigente', 'numeric');\r\n $this->captura('tipo_moneda', 'varchar');\r\n $this->captura('total_pago', 'numeric');\r\n $this->captura('pago_variable', 'varchar');\r\n $this->captura('id_depto_conta', 'integer');\r\n $this->captura('total_nro_cuota', 'integer');\r\n $this->captura('fecha_pp_ini', 'date');\r\n $this->captura('rotacion', 'integer');\r\n $this->captura('id_plantilla', 'integer');\r\n $this->captura('desc_plantilla', 'varchar');\r\n $this->captura('desc_funcionario', 'text');\r\n $this->captura('ultima_cuota_pp', 'numeric');\r\n $this->captura('ultimo_estado_pp', 'varchar');\r\n $this->captura('tipo_anticipo', 'varchar');\r\n $this->captura('ajuste_anticipo', 'numeric');\r\n $this->captura('ajuste_aplicado', 'numeric');\r\n $this->captura('monto_estimado_sg', 'numeric');\r\n $this->captura('id_obligacion_pago_extendida', 'integer');\r\n $this->captura('desc_contrato', 'text');\r\n $this->captura('id_contrato', 'integer');\r\n $this->captura('obs_presupuestos', 'varchar');\r\n $this->captura('uo_ex', 'varchar');\r\n\r\n\r\n //Ejecuta la instruccion\r\n $this->armarConsulta();\r\n $this->ejecutarConsulta();\r\n\r\n //Devuelve la respuesta\r\n return $this->respuesta;\r\n }", "public function listar($inicio = 0, $cantidad = 0, $excepcion = NULL, $condicion = NULL, $idCurso = NULL) {\n global $sql, $configuracion;\n\n /* * * Validar la fila inicial de la consulta ** */\n if (!is_int($inicio) || $inicio < 0) {\n $inicio = 0;\n }\n\n /* * * Validar la cantidad de registros requeridos en la consulta ** */\n if (!is_int($cantidad) || $cantidad <= 0) {\n $cantidad = 0;\n }\n\n /* * * Validar que la condición sea una cadena de texto ** */\n if (!is_string($condicion)) {\n $condicion = '';\n }\n\n /* * * Validar que la excepción sea un arreglo y contenga elementos ** */\n if (isset($excepcion) && is_array($excepcion) && count($excepcion)) {\n $excepcion = implode(',', $excepcion);\n $condicion .= 'ac.id NOT IN (' . $excepcion . ') AND ';\n }\n\n /* * * Definir el orden de presentación de los datos ** */\n if ($this->listaAscendente) {\n $orden = 'ac.fecha_publicacion ASC';\n } else {\n $orden = 'ac.fecha_publicacion DESC';\n }\n\n $tablas = array(\n 'ac' => 'actividades_curso'\n );\n\n $columnas = array(\n 'id' => 'ac.id',\n 'idCurso' => 'ac.id_curso',\n 'idUsuario' => 'ac.id_usuario',\n 'titulo' => 'ac.titulo',\n 'descripcion' => 'ac.descripcion',\n 'fechaPublicacion' => 'UNIX_TIMESTAMP(ac.fecha_publicacion)',\n 'fechaLimite' => 'UNIX_TIMESTAMP(ac.fecha_limite)',\n 'diasRestantes' => 'DATEDIFF(ac.fecha_limite, NOW())'\n );\n\n $condicion .= 'ac.id_curso = \"'.$idCurso.'\"';\n\n if (is_null($this->registros)) {\n $sql->seleccionar($tablas, $columnas, $condicion);\n $this->registros = $sql->filasDevueltas;\n }\n\n $consulta = $sql->seleccionar($tablas, $columnas, $condicion, '', $orden, $inicio, $cantidad);\n\n $lista = array();\n if ($sql->filasDevueltas) {\n\n while ($actividad = $sql->filaEnObjeto($consulta)) {\n $actividad->icono = $configuracion['SERVIDOR']['media'] . $configuracion['RUTAS']['imagenesEstilos'] . 'activity.png';\n $lista[] = $actividad;\n }\n }\n\n return $lista;\n }", "function listarCuentaBancaria(){\n\t\t$this->procedimiento='tes.f_cuenta_bancaria_sel';\n\t\t$this->transaccion='TES_CTABAN_SEL';\n\t\t$this->tipo_procedimiento='SEL';//tipo de transaccion\n\t\t\t\t\n\t\t//Definicion de la lista del resultado del query\n\t\t$this->captura('id_cuenta_bancaria','int4');\n\t\t$this->captura('estado_reg','varchar');\n\t\t$this->captura('fecha_baja','date');\n\t\t$this->captura('nro_cuenta','varchar');\n\t\t$this->captura('fecha_alta','date');\n\t\t$this->captura('id_institucion','int4');\n\t\t$this->captura('nombre_institucion','varchar');\n\t\t$this->captura('doc_id','varchar');\n\t\t$this->captura('fecha_reg','timestamp');\n\t\t$this->captura('id_usuario_reg','int4');\n\t\t$this->captura('fecha_mod','timestamp');\n\t\t$this->captura('id_usuario_mod','int4');\n\t\t$this->captura('usr_reg','varchar');\n\t\t$this->captura('usr_mod','varchar');\n\t\t$this->captura('id_moneda','integer');\n\t\t$this->captura('codigo_moneda','varchar');\n\t\t$this->captura('denominacion','varchar');\n\t\t$this->captura('centro','varchar');\n\t\t\n\t\n\t\t\n\t\t//Ejecuta la instruccion\n\t\t$this->armarConsulta();\n\t\t$this->ejecutarConsulta();\n\t\t\n\t\t//Devuelve la respuesta\n\t\treturn $this->respuesta;\n\t}", "function listarCliente(){\n\t\t$this->procedimiento='rec.ft_cliente_sel';\n\t\t$this->transaccion='REC_CLI_SEL';\n\t\t$this->tipo_procedimiento='SEL';//tipo de transaccion\n\t\t\t\t\n\t\t//Definicion de la lista del resultado del query\n\t\t$this->captura('id_cliente','int4');\n\t\t$this->captura('genero','varchar');\n\t\t$this->captura('ci','varchar');\n\t\t$this->captura('email','varchar');\n\t\t$this->captura('email2','varchar');\n\t\t$this->captura('direccion','varchar');\n\t\t$this->captura('celular','varchar');\n\t\t$this->captura('nombre','varchar');\n\t\t$this->captura('lugar_expedicion','varchar');\n\t\t$this->captura('apellido_paterno','varchar');\n\t\t$this->captura('telefono','varchar');\n\t\t$this->captura('ciudad_residencia','varchar');\n\t\t$this->captura('id_pais_residencia','int4');\n\t\t$this->captura('nacionalidad','varchar');\n\t\t$this->captura('barrio_zona','varchar');\n\t\t$this->captura('estado_reg','varchar');\n\t\t$this->captura('apellido_materno','varchar');\n\t\t$this->captura('id_usuario_ai','int4');\n\t\t$this->captura('fecha_reg','timestamp');\n\t\t$this->captura('usuario_ai','varchar');\n\t\t$this->captura('id_usuario_reg','int4');\n\t\t$this->captura('fecha_mod','timestamp');\n\t\t$this->captura('id_usuario_mod','int4');\n\t\t$this->captura('usr_reg','varchar');\n\t\t$this->captura('usr_mod','varchar');\n\n $this->captura('nombre_completo1','text');\n $this->captura('nombre_completo2','text');\n\t\t$this->captura('pais_residencia','varchar');\n\t\t//$this->captura('nombre','varchar');\n\n\n\n\n\t\t\n\t\t//Ejecuta la instruccion\n\t\t$this->armarConsulta();\n\t\t$this->ejecutarConsulta();\n\t\t\n\t\t//Devuelve la respuesta\n\t\treturn $this->respuesta;\n\t}", "public function listar_productos_carrito() {\n \n try {\n $sql = \"\n select \n p.descripcion,\n i.cantidad,\n i.precio_venta,\n e.importe_total,\n p.id_producto\n from \n al_producto p inner join al_inventario i\n on\n p.id_producto = i.id_producto inner join pedido e\n on\n i.id_pedido = e.id_pedido \n where\n e.id_cliente = '$_SESSION[cliente_id]' and e.estado is null; \n \";\n $sentencia = $this->dblink->prepare($sql);\n $sentencia->execute();\n $resultado = $sentencia->fetchAll(PDO::FETCH_ASSOC);\n return $resultado;\n } catch (Exception $exc) {\n throw $exc;\n }\n }", "public function getComentarios($idAnuncio){ \n /*$query = \"SELECT fc.idUser, fc.idComentario, fc.idAnuncio, fc.comentario, fc.idPadre, fc.fecha, fu.nick, fu2.nick nickPadre\n FROM final_comentario fc INNER JOIN final_usuario fu USING(idUser) LEFT JOIN final_usuario fu2 ON(fc.idPadre = fu2.idUser) \n WHERE idAnuncio = '\".$idAnuncio.\"' ORDER BY fecha ASC\"; */\n \n $query = \"SELECT fc.idAnuncio, fc.idComentario, fc.idUser, fu.nick, fc.comentario, fc.idPadre, fc.fecha, aux2.nick nickPadre\n FROM final_comentario fc INNER JOIN final_usuario fu ON(fc.idUser=fu.idUser) LEFT JOIN\n (SELECT aux.idComentario, fu.nick\n FROM (SELECT fc2.idComentario, fc2.idUser FROM final_comentario fc1 INNER JOIN final_comentario fc2 ON (fc1.idPadre=fc2.idComentario)) aux\n INNER JOIN final_usuario fu ON(aux.idUser=fu.idUser)) aux2 ON (fc.idPadre=aux2.idComentario)\n WHERE fc.idAnuncio = '\".$idAnuncio.\"' ORDER BY fc.fecha ASC\";\n \n return $this->con->action($query); \n }", "function listarServicio(){\r\n\t\t$this->procedimiento='gev.f_tgv_servicio_sel';\r\n\t\t$this->transaccion='tgv_SERVIC_SEL';\r\n\t\t$this->tipo_procedimiento='SEL';//tipo de transaccion\r\n\r\n\t\t$this->setParametro('tipo_interfaz','tipo_interfaz','varchar');\t\r\n\t\t//Definicion de la lista del resultado del query\r\n\t\t$this->captura('id_servicio','int4');\r\n\t\t$this->captura('estado','varchar');\r\n\t\t$this->captura('estado_reg','varchar');\r\n\t\t$this->captura('id_lugar_destino','int4');\r\n\t\t$this->captura('id_ep','int4');\r\n\t\t$this->captura('fecha_asig_fin','date');\r\n\t\t$this->captura('fecha_sol_ini','date');\r\n\t\t$this->captura('descripcion','varchar');\r\n\t\t$this->captura('id_lugar_origen','int4');\r\n\t\t$this->captura('cant_personas','int4');\r\n\t\t$this->captura('fecha_sol_fin','date');\r\n\t\t$this->captura('id_funcionario','int4');\r\n\t\t$this->captura('fecha_asig_ini','date');\r\n\t\t$this->captura('id_usuario_reg','int4');\r\n\t\t$this->captura('fecha_reg','timestamp');\r\n\t\t$this->captura('id_usuario_mod','int4');\r\n\t\t$this->captura('fecha_mod','timestamp');\r\n\t\t$this->captura('usr_reg','varchar');\r\n\t\t$this->captura('usr_mod','varchar');\r\n\t\t$this->captura('desc_funcionario','text');\r\n\t\t$this->captura('desc_lugar_ini','varchar');\r\n\t\t$this->captura('desc_lugar_des','varchar');\r\n\t\t$this->captura('id_funcionario_autoriz','int4');\r\n\t\t$this->captura('observaciones','varchar');\r\n\t\t$this->captura('desc_funcionario_autoriz','text');\r\n\t\t\r\n\t\t//Ejecuta la instruccion\r\n\t\t$this->armarConsulta();\r\n\t\t$this->ejecutarConsulta();\r\n\t\t//echo '--->'.$this->getConsulta(); exit;\r\n\t\t//Devuelve la respuesta\r\n\t\treturn $this->respuesta;\r\n\t}", "public function noticiasActivas(){\r\n\t$objDatos = new clsDatos();\r\n\t$sql=\"select * from noticias where activo='1' order by fecha DESC\";\r\n\t$res = $objDatos->filtroListado($sql);\r\n\treturn $res;\r\n}", "public function ListarComprasPag()\n\t{\n\t\tself::SetNames();\t\t\n\t\t$sql = \" SELECT compras.codcompra, compras.subtotalivasic, compras.subtotalivanoc, compras.ivac, compras.totalivac, compras.descuentoc, compras.totaldescuentoc, compras.totalc, compras.statuscompra, compras.fechavencecredito, compras.fechacompra, proveedores.nomproveedor, SUM(detallecompras.cantcompra) AS articulos FROM (compras INNER JOIN proveedores ON compras.codproveedor = proveedores.codproveedor) INNER JOIN usuarios ON compras.codigo = usuarios.codigo LEFT JOIN detallecompras ON detallecompras.codcompra = compras.codcompra WHERE compras.statuscompra = 'PAGADA' GROUP BY compras.codcompra\";\n foreach ($this->dbh->query($sql) as $row)\n\t\t{\n\t\t\t$this->p[] = $row;\n\t\t}\n\t\treturn $this->p;\n\t\t$this->dbh=null;\t \n}", "protected function armaColeccionZpCarac() {\n $arrayRet = array();\n $dao = new PGDAO();\n $where = $this->strZpTprop();\n if ($where != '') {\n $arrayRet = $this->leeDBArray($dao->execSql($this->COLECCIONZPCARAC . \" where tipoprop in (\" . $where . \")\"));\n } else {\n $arrayRet = $this->leeDBArray($dao->execSql($this->COLECCIONZPCARAC));\n }\n return $arrayRet;\n }", "public function listaChoferes(){\n\n $respuesta = Datos::mdlListaChoferes(\"choferes\");\n $cont =0;\n\n foreach ($respuesta as $row => $item){\n \t$cont ++;\n // if ($item[\"rol\"] == 0) $tipoAcceso = \"Administrator\";\n // if ($item[\"rol\"] == 1 ) $tipoAcceso = \"Usuario\";\n // if ($item[\"rol\"] == 2 ) $tipoAcceso = \"Engineer\";\n // if ($item[\"rol\"] == 3 ) $tipoAcceso = \"Accountant\";\n\n\n echo '<tr>\n <td>'.$cont.'</td>\n <td>'.$item[\"nombre\"].'</td>\n <td>'.$item[\"rfc\"].'</td>\n <td>'.$item[\"ine\"].'</td>\n <td>'.$item[\"licencia\"].'</td>\n <td>'.$item[\"telefono\"].'</td>\n <td>'.$item[\"telefono2\"].'</td>\n <td style=\"text-align: center\">'.$item[\"fechaIngreso\"].'</td>\n <td><a href=\"updtChofer.php?idEditar='.$item[\"idChofer\"].'\"><button class=\"btn btn-warning\">Editar</button></a></td>\n <td><a href=\"listaChoferes.php?idBorrar='.$item[\"idChofer\"].'\" ><button class=\"btn btn-danger\">Borrar</button></a></td>\n </tr>';\n }\n\n }", "public function listaMovimientos()\n {\n $conexion = conexion::conectar();\n $sql = \"SELECT * FROM movimientos WHERE compra_venta ='c' order by id_producto asc;\";\n $stmt = $conexion->prepare($sql);\n $stmt->execute();\n $array = $stmt->fetchAll(PDO::FETCH_ASSOC);\n $stmt = null;\n return $array;\n }", "function get_listado_acc_cent() /// Obtiene un Listado de las acciones centralizadas\r\n{\r\n\t$query=\"SELECT acciones_centralizadas.cod_ac, acciones_centralizadas.denominacion_ac, acciones_centralizadas.id_ac\r\nFROM (acciones_centralizadas INNER JOIN acciones_especificas ON acciones_centralizadas.id_ac = acciones_especificas.id_ac) INNER JOIN un_ejec_locales ON acciones_especificas.id_ae = un_ejec_locales.id_ae\r\nGROUP BY acciones_centralizadas.cod_ac, acciones_centralizadas.denominacion_ac, acciones_centralizadas.id_ac, un_ejec_locales.s_ext\r\nHAVING (((un_ejec_locales.s_ext)='\".$_SESSION['s_ext'].\"'))\r\nORDER BY acciones_centralizadas.cod_ac;\";\r\n\t\r\n\t$resulta=queryDB($query);\r\n\tif (!$resulta){ echo \"ERROR CONSULTANDO BASE DE DATOS\";return false;}\r\n\t$a=array('0'); $b=array('[Seleccione]');\r\n\twhile ($c= pg_fetch_assoc($resulta)) \r\n\t{\r\n\t\tarray_push($a,$c['id_ac']) ; \r\n\t\tarray_push($b,$c['cod_ac'].\" \".$c['denominacion_ac']);\r\n\t}\t\r\n\t$acc_cent_list=array_combine($a,$b);\r\n\treturn $acc_cent_list;\r\n}", "protected function armaColeccionMapeoCarac() {\n $dao = new PGDAO();\n $where = $this->strZpTprop();\n $strSql = $this->COLECCIONMAPEOCARAC . \" WHERE tipoprop in (\" . $where . \");\";\n $arrayRet = $this->leeDBArray($dao->execSql($strSql));\n\treturn $arrayRet;\n }", "function listarObligacioPagoCombos(){\n $this->objParam->defecto('ordenacion','id_obligacion_pago');\n\n $this->objParam->defecto('dir_ordenacion','asc');\n if($this->objParam->getParametro('tipoReporte')=='excel_grid' || $this->objParam->getParametro('tipoReporte')=='pdf_grid'){\n $this->objReporte = new Reporte($this->objParam, $this);\n $this->res = $this->objReporte->generarReporteListado('MODObligacionPago','listarObligacioPagoCombos');\n } else{\n $this->objFunc=$this->create('MODObligacionPago');\n $this->res=$this->objFunc->listarObligacioPagoCombos();\n }\n\n /*if($this->objParam->getParametro('_adicionar')!=''){\n\n $respuesta = $this->res->getDatos();\n\n array_unshift ( $respuesta, array( 'id_proveedor'=>'0',\n 'rotulo_comercial'=>'Todos', 'desc_proveedor'=>'Todos'\n ));\n //\t\tvar_dump($respuesta);\n $this->res->setDatos($respuesta);\n }*/\n\n $this->res->imprimirRespuesta($this->res->generarJson());\n }", "public function getAllContatti() {\r\n $res = Model::getDB()->query(self::$GET_ALL_CONTATTI);\r\n $contatti = array();\r\n if($res){\r\n while ($obj = $res->fetch_assoc()) {\r\n $contatto = new Contatto($obj['valore'], $obj['tipologia'], $obj['utente_matricola']);\r\n $contatto->setId($obj['id']);\r\n $contatti[] = $contatto;\r\n }\r\n }\r\n return $contatti;\r\n }", "function ListaCabeceraFactura() {\n\t$sql = \"SELECT cuentaxcobrar.id, usuario.id, persona.primer_nombre, persona.primer_apellido, persona.cedula,\n\t\t\t\t inmueble.manzana, inmueble.numero_villa FROM cuentaxcobrar\n\t\t\tINNER JOIN usuario ON usuario.id = cuentaxcobrar.usuario_id\n\t\t\tINNER JOIN persona ON persona.id = usuario.persona_id\n\t\t\tINNER JOIN inmueble ON usuario.id = inmueble.id\";\n\n\n\t$db = new conexion();\n\t$result = $db->consulta($sql);\n\t$num = $db->encontradas($result);\n\n\t$respuesta->datos = [];\n\t$respuesta->mensaje = \"\";\n\t$respuesta->codigo = \"\";\n\n\tif ($num != 0) {\n\t\tfor ($i=0; $i < $num; $i++) {\n\t\t\t$respuesta->datos[] = mysql_fetch_array($result);\n\t\t}\n\n\t\t$respuesta->mensaje = \"Ok\";\n\t\t$respuesta->codigo = 1;\n\t} else {\n\t\t$respuesta->mensaje = \"No existen registros de Cabecera Factura!\";\n\t\t$respuesta->codigo = 0;\n\t}\n\n\treturn json_encode($respuesta);\n}", "public function listeDerniereCotation(){\n //$demandes est utilisee a la page d'accueil apres l'authentification\n //donc necessaires pour toutes les fonction qui utilse cette page\n\n $demandes = nonConsult();\n\n $commandes=DB::table('fournisseurs')\n ->join('commandes','fournisseurs.id','=','commandes.fournisseurs_id')\n ->join('cotations', 'cotations.id', '=', 'commandes.cotations_id')\n ->select('fournisseurs.nomSociete','fournisseurs.nomDuContact','fournisseurs.prenomDuContact','fournisseurs.telephoneDuContact',\n 'cotations.codeCotation','commandes.*')\n ->where([\n ['commandes.cotations_id','=',Cotation::max('id')],\n ['commandes.etat','=',1]\n ])\n ->get();\n\n $comm = 0;\n return view('commandes.liste',compact('commandes', 'demandes','comm'));\n }", "public function obtenerCentroCotizacions($count = false){\n if( $count ){\n $sql = \"SELECT count(uid_elemento) FROM \". TABLE_CENTRO_COTIZACION .\" WHERE uid_elemento = {$this->getUID()} AND uid_modulo = {$this->getModuleId()}\";\n return $this->db->query($sql, 0, 0);\n } else {\n $sql = \"SELECT uid_centrocotizacion FROM \". TABLE_CENTRO_COTIZACION .\" WHERE uid_elemento = {$this->getUID()} AND uid_modulo = {$this->getModuleId()}\";\n $items = $this->db->query($sql, \"*\", 0, \"centrocotizacion\");\n return new ArrayObjectList($items);\n }\n }", "public function societeListerTous()\n\t{\n\t\t// votre code ici\n\t\treturn Gestion::lister(\"Societe\");//type array\n\t}", "function get_listado($anio_lectivo)\n\t{\n\t\t$sql_1 = \"(SELECT t_p.id_periodo,\n t_p.fecha_inicio,\n t_p.fecha_fin,\n\t\t\t t_p.anio_lectivo,\n t_c.numero,\n '----' as turno,\n 'Cuatrimestre' as tipo_periodo\n FROM periodo as t_p\n JOIN cuatrimestre t_c ON (t_p.id_periodo=t_c.id_periodo AND t_p.anio_lectivo=$anio_lectivo))\n \n \";\n \n $cuatrimestre=toba::db('gestion_aulas')->consultar($sql_1);\n \n $sql_2=\" \n (SELECT t_p.id_periodo,\n t_p.fecha_inicio,\n t_p.fecha_fin,\n t_p.anio_lectivo,\n t_ef.turno,\n t_ef.numero,\n 'Examen Final' as tipo_periodo\n FROM periodo t_p \n JOIN examen_final t_ef ON (t_p.id_periodo=t_ef.id_periodo AND t_p.anio_lectivo=$anio_lectivo))\";\n \n $examen_final=toba::db('gestion_aulas')->consultar($sql_2);\n \n $sql_3=\"(SELECT t_p.id_periodo,\n t_p.fecha_inicio,\n t_p.fecha_fin,\n t_p.anio_lectivo,\n 'Curso de Ingreso' as tipo_periodo,\n '----' as numero,\n t_ci.facultad as turno\n FROM periodo t_p \n JOIN curso_ingreso t_ci ON (t_p.id_periodo=t_ci.id_periodo AND t_p.anio_lectivo=$anio_lectivo)\n )\";\n \n $curso_ingreso=toba::db('gestion_aulas')->consultar($sql_3);\n \n $this->unificar_periodos(&$cuatrimestre, $examen_final);\n \n $this->unificar_periodos(&$cuatrimestre, $curso_ingreso);\n \n return $cuatrimestre;\n \n }", "public function citas_usuariosCitas(){\n \t\n\t\t\t$resultado = array();\n\t\t\n\t\t\t$query = \" SELECT idUsuario, identificacion, nombre, apellido\n\t\t\t\t\t\tFROM tb_usuarios\";\n\t\t\t\t\t\t\n\t\t\t$conexion = parent::conexionCliente();\n\t\t\t\n\t\t\tif($res = $conexion->query($query)){\n\t \n\t /* obtener un array asociativo */\n\t while ($filas = $res->fetch_assoc()) {\n\t $resultado[] = $filas;\n\t }\n\t \n\t /* liberar el conjunto de resultados */\n\t $res->free();\n\t \n\t }\n\t\n\t return $resultado;\n\t\t\t\n }", "private function cargarActas() {\n $this->aActas = array();\n $res = Funciones::gEjecutarSQL(\"SELECT FECHA,DATE_FORMAT(FECHA,'%d-%m-%Y') AS FECHAISO,COUNT(*) AS PUNTOS FROM ACTAS_PUNTOS GROUP BY FECHA ORDER BY FECHA DESC\");\n while($aRow = $res->fetch(PDO::FETCH_ASSOC)) {\n $this->aActas[$aRow['FECHA']] = array($aRow['FECHAISO'], $aRow['PUNTOS']);\n }\n $res->closeCursor(); \n }", "function buscarContatos($nome) {\n require_once('../modulo/config.php');\n\n //Import do arquivo de função para conectar no BD \n require_once('conexaoMysql.php');\n\n if(!$conex = conexaoMysql())\n {\n echo(\"<script> alert('\".ERRO_CONEX_BD_MYSQL.\"'); </script>\");\n //die; //Finaliza a interpretação da página\n }\n\n $sql = \"select tblContatos.*, tblEstados.sigla from tblContatos, tblEstados where tblContatos.idEstado = tblEstados.idEstado and statusContato = 1 and tblContatos.nome like '%\".$nome.\"%'\";\n\n $select = mysqli_query($conex, $sql);\n \n while($rsContatos = mysqli_fetch_assoc($select)) {\n //varios itens para o json\n $dados[] = array (\n // => - o que alimenta o dado de um array\n 'idContato' => $rsContatos['idContato'],\n 'nome' => $rsContatos['nome'],\n 'celular' => $rsContatos['celular'],\n 'email' => $rsContatos['email'],\n 'idEstado' => $rsContatos['idEstado'],\n 'sigla' => $rsContatos['sigla'],\n 'dataNascimento' => $rsContatos['dataNascimento'],\n 'sexo' => $rsContatos['sexo'],\n 'obs' => $rsContatos['obs'],\n 'foto' => $rsContatos['foto'],\n 'statusContato' => $rsContatos['statusContato']\n\n ); \n } \n\n //faça um header para dados importantes\n // $headerDados = array (\n // 'status' => 'success',\n // 'data' => date('d-m-y'),\n // 'contatos' => $dados\n // );\n if (isset($dados))\n $listContatosJson = convertJson($dados);\n else \n false;\n //verificar se foi gerado um arquivo json\n if (isset($listContatosJson)) \n return $listContatosJson;\n else\n return false;\n }", "function listatpodocubaja(){\n\t\tinclude(\"application/config/conexdb_db2.php\");\n\t\t$codcia=$this->session->userdata('codcia');\n\t\t$sql=\"select DISTINCT(a.YHTIPDOC) AS TIPODOCU,e.EUDSCCOR FROM LIBPRDDAT.MMYHREL0 a INNER JOIN LIBPRDDAT.MMEUREL0 e ON a.YHTIPDOC=e.EUCODELE WHERE a.YHTIPDOC!='' AND e.EUCODTBL='AG' and a.YHSTS='I' AND a.YHCODCIA='\".$codcia.\"' and a.YHFECDOC>='20170101' order by TIPODOCU asc\";\t\t\n\t\t$dato = odbc_exec($dbconect, $sql)or die(\"<p>\" . odbc_errormsg());\n\t\tif (!$dato) {\n\t\t\t$data = FALSE;\n\t\t} else { \n\t\t\t$data = $dato; \n\t\t} \n\t\treturn $data;\n\t\tcerrar_odbc();\n\t}", "public function ListarArqueoCaja()\n{\n\tself::SetNames();\n\t\n\tif($_SESSION[\"acceso\"] == \"cajero\") {\n\n\n $sql = \" select * FROM arqueocaja INNER JOIN cajas ON arqueocaja.codcaja = cajas.codcaja WHERE cajas.codigo = '\".$_SESSION[\"codigo\"].\"'\";\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\n\n\t} else {\n\n\t$sql = \" select * FROM arqueocaja INNER JOIN cajas ON arqueocaja.codcaja = cajas.codcaja\";\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\n\t}\n}", "function listarContatos ($id) {\n require_once('../modulo/config.php');\n\n //Import do arquivo de função para conectar no BD \n require_once('conexaoMysql.php');\n\n if(!$conex = conexaoMysql())\n {\n echo(\"<script> alert('\".ERRO_CONEX_BD_MYSQL.\"'); </script>\");\n //die; //Finaliza a interpretação da página\n }\n\n $sql = \"select tblContatos.*, tblEstados.sigla from tblContatos, tblEstados where tblContatos.idEstado = tblEstados.idEstado and statusContato = 1\";\n \n if ($id > 0) {\n $sql = $sql . \" and tblContatos.idContato = \" . $id;\n }\n\n $sql = $sql . \" order by tblContatos.nome asc\";\n\n $select = mysqli_query($conex, $sql);\n \n while($rsContatos = mysqli_fetch_assoc($select)) {\n //varios itens para o json\n $dados[] = array (\n // => - o que alimenta o dado de um array\n 'idContato' => $rsContatos['idContato'],\n 'nome' => $rsContatos['nome'],\n 'celular' => $rsContatos['celular'],\n 'email' => $rsContatos['email'],\n 'idEstado' => $rsContatos['idEstado'],\n 'sigla' => $rsContatos['sigla'],\n 'dataNascimento' => $rsContatos['dataNascimento'],\n 'sexo' => $rsContatos['sexo'],\n 'obs' => $rsContatos['obs'],\n 'foto' => $rsContatos['foto'],\n 'statusContato' => $rsContatos['statusContato']\n\n ); \n } \n\n //faça um header para dados importantes\n // $headerDados = array (\n // 'status' => 'success',\n // 'data' => date('d-m-y'),\n // 'contatos' => $dados\n // );\n if (isset($dados))\n $listContatosJson = convertJson($dados);\n else \n false;\n //verificar se foi gerado um arquivo json\n if (isset($listContatosJson)) \n return $listContatosJson;\n else\n return false;\n }", "public function listaDelitos(){\n\t $ofen=0;\n\t $indi=0;\n\t $arreglo = array();\n\n if (count($this->getOfeindis())>0){\n $ldelitos= Load::model('ofeindis')->find(\"ordenes_id = \".$this->id,\"order: indiciados_id,ofendidos_id,delitos_id\");\n }\n\n foreach ($ldelitos as $key) { // aqui se escoge a los imputados y victimas que no se repiten\n if($key->ofendidos_id !=$ofen || $key->indiciados_id !=$indi){\n array_push($arreglo,array('idel'=>$key->id,'ofendido'=>$key->getOfendidos(), 'indiciado'=>$key->getIndiciados()));\n }\n $ofen=$key->ofendidos_id;\n $indi=$key->indiciados_id;\n }\n\n for ($i=0; $i <count($arreglo) ; $i++) { // aqui voy metiendo un arreglo de delitos para cada uno\n $delitos=array();\n foreach ($ldelitos as $key) {\n if($key->ofendidos_id==$arreglo[$i]['ofendido']->id && $key->indiciados_id==$arreglo[$i]['indiciado']->id ){\n array_push($delitos,array('delito'=>$key->getDelitos(),'iddeli'=>$key->id,'principal'=>$key->esprincipal)); \n }\n } \n $arreglo[$i]['delitos']=$delitos; \n }\n return $arreglo;\n\n\t\n\t}", "public function listAllCCO( Request $request ) \n {\n\n $ultimoId = $request->get('ultimoId');\n\n $fechaInicio = new \\DateTime();\n $fechaFin = new \\DateTime();\n\n $sectores = $request->get('sectores');\n \n $alertas = $this->alertaDao->listAllCCO( $ultimoId, $fechaInicio , $fechaFin , $sectores);\n //return response( $alertas , 200)->header('Content-Type', 'application/json'); \n \n $arregloAlertas = array();\n foreach( $alertas as $indice => $alerta ){\n\n $cadenasArreglo = array();\n foreach( $alerta->getNegocio()->getCadenas() as $indice => $cadena ){\n $arreglo = array(\n \"id\" => $cadena->getId(),\n \"etiqueta\" => $cadena->getEtiqueta(),\n ); \n $cadenasArreglo[] = $arreglo;\n } \n\n $zonasArreglo = array();\n if( $alerta->getSector() != null ){\n foreach( $alerta->getSector()->getZonas() as $indice => $zona ){ \n $arreglo = array(\n \"id\" => $zona->getId(),\n \"etiqueta\" => $zona->getEtiqueta()\n ); \n $zonasArreglo[] = $arreglo;\n } \n }\n\n $direccionArreglo = array(\n \"colonia\" => $alerta->getNegocio()->getDireccion()->getColonia()->getEtiqueta(),\n \"delegacion\" => $alerta->getNegocio()->getDireccion()->getColonia()->getDelegacion()->getEtiqueta(),\n \"callePrincipal\" => $alerta->getNegocio()->getDireccion()->getCallePrincipal(),\n \"calle1\" => $alerta->getNegocio()->getDireccion()->getCalle1(),\n \"calle2\" => $alerta->getNegocio()->getDireccion()->getCalle2(),\n \"numeroInterior\" => $alerta->getNegocio()->getDireccion()->getNumeroInterior(),\n \"numeroExterior\" => $alerta->getNegocio()->getDireccion()->getNumeroExterior(),\n \"codigoPostal\" => $alerta->getNegocio()->getDireccion()->getCodigoPostal()\n ); \n \n \n $arreglo = array( \n \"id\" => $alerta->getId(), \n \"cadenas\" => $cadenasArreglo, \n \"idNegocio\" => $alerta->getNegocio()->getId(),\n\n \"latitud\" => $alerta->getNegocio()->getLatitud(), \n \"longitud\" => $alerta->getNegocio()->getLongitud(),\n \n \"idNegocio\" => $alerta->getNegocio()->getId(),\n \"fechaAltaNegocio\" => $alerta->getNegocio()->getFechaAlta(), \n \"direccionNegocio\" => $direccionArreglo,\n \"negocio\" => $alerta->getNegocio()->getNombre(),\n\n \"referenciaNegocio\" => $alerta->getNegocio()->getReferencia(),\n \"giroNegocio\" => $alerta->getNegocio()->getGirONegocioGeneral()->getEtiqueta(),\n \"fechaAlta\" => $alerta->getFechaAlta(), \n \"zonas\" => $zonasArreglo, \n \"sector\" => $alerta->getSector() != null ? $alerta->getSector()->getEtiqueta() : \"Ninguno\",\n \"dispositivo\" => $alerta->getDispositivo()->getTipoDispositivo()->getEtiqueta(),\n );\n $arregloAlertas[] = $arreglo;\n }\n return response( $arregloAlertas , 200)->header('Content-Type', 'application/json'); \n \n }", "function buscarEspaciosReprobados($notaAprobatoria) {\r\n \r\n $reprobados=isset($reprobados)?$reprobados:'';\r\n $espacios=isset($reprobados)?$reprobados:'';\r\n \r\n if (is_array($this->espaciosCursados)){\r\n foreach ($this->espaciosCursados as $value) {\r\n if (isset($value['NOTA'])&&($value['NOTA']<$notaAprobatoria||$value['CODIGO_OBSERVACION']==20||$value['CODIGO_OBSERVACION']==23||$value['CODIGO_OBSERVACION']==25)){\r\n if ($value['CODIGO_OBSERVACION']==19||$value['CODIGO_OBSERVACION']==22||$value['CODIGO_OBSERVACION']==24)\r\n {\r\n }else\r\n {\r\n $espacios[]=$value['CODIGO'];\r\n }\r\n }\r\n }\r\n if(is_array($espacios)){\r\n \r\n $espacios= array_unique($espacios);\r\n if($this->datosEstudiante['IND_CRED']=='S'){\r\n \r\n foreach ($espacios as $key => $espacio) {\r\n foreach ($this->espaciosCursados as $cursado) {\r\n if($espacio==$cursado['CODIGO']){\r\n $reprobados[$key]['CODIGO']=$cursado['CODIGO'];\r\n $reprobados[$key]['CREDITOS']=(isset($cursado['CREDITOS'])?$cursado['CREDITOS']:0);\r\n }\r\n }\r\n\r\n }\r\n }else{\r\n $reprobados=$espacios;\r\n }\r\n return $reprobados; \r\n \r\n }else{\r\n return 0; \r\n }\r\n \r\n }\r\n else\r\n {\r\n return 0;\r\n }\r\n }", "function getN_Comentario() {\n $n_comentarios = [];\n $c = new Conexion();\n $resultado = $c->query(\"SELECT * FROM ncomentarios\");\n\n while ($objeto = $resultado->fetch(PDO::FETCH_OBJ)) {\n $n_comentarios[] = $objeto;\n }\n return $n_comentarios;\n}", "static public function ctrverCategorias(){\n $respuesta = DatosCate::mdlverCategorias(\"categorias\");\n //Utilizar un foreach para iterar un array e imprimir la consulta del modelo\n\n foreach($respuesta as $row => $item){\n echo'<tr>\n <td>'.$item[\"nombre\"].'</td>\n <td><a href=\"index.php?action=editarCate&idEditar='.$item[\"id\"].'\" class=\"btn btn-warning btn-circle\"><i class=\"fas fa-exclamation-triangle\"></i></a></td>\n <td><a href=\"index.php?action=categorias&idBorrar='.$item[\"id\"].'\" class=\"btn btn-danger btn-circle\"><i class=\"fas fa-trash\"></i></a></td>\n </tr>';\n }\n }", "public function getCargos()\n {\n return $this->cargos;\n }", "public function obtenerCiclos() {\r\n $ciclo = new Ciclo;\r\n $respuestaObtenerCiclos = $ciclo->obtenerCiclos();\r\n return $respuestaObtenerCiclos;\r\n }", "public function listado_reservaciones_todas(){\n $listado = [];\n #Recorro la jornada....\n $resultados = $this->mongo_db->order_by(array('_id' => 'ASC'))->where(array('eliminado'=>false))->get(\"reservaciones\");\n\n foreach ($resultados as $clave => $valor) {\n //--\n #Verifico que la jornada sea del dia de hoy\n $fecha_hora_inicio = $valor[\"fecha\"]->toDateTime();\n\n $fecha_hora_ini = $fecha_hora_inicio->format('Y-m-d');\n\n $fecha_actual = date('Y-m-d');\n //Solo se muestran las rservaciones de hoy...\n $valores = $valor;\n $valores[\"precio\"] = number_format($valores[\"precio\"],2);\n $valores[\"id_reservaciones\"] = (string)$valor[\"_id\"]->{'$id'};\n $valores[\"id_membresia\"] = $valor[\"id_membresia\"];\n $id_membresia = new MongoDB\\BSON\\ObjectId($valores[\"id_membresia\"]);\n #Recorro la membresia....\n $res_membresia = $this->mongo_db->order_by(array('_id' => 'DESC'))->where(array('eliminado'=>false,'_id'=>$id_membresia))->get(\"membresia\");\n //-------------------------------------------------------------\n //$valores[\"id_grupo_empresarial\"] = $res_membresia[0][\"id_grupo_empresarial\"];\n $valores[\"n_membresia\"] = $res_membresia[0][\"n_membresia\"];\n\n\n $valores[\"identificador_prospecto_cliente\"] = $res_membresia[0][\"identificador_prospecto_cliente\"];\n #Consulto datos personales\n $rfc = $res_membresia[0][\"identificador_prospecto_cliente\"];\n $res_dt = $this->mongo_db->order_by(array('_id' => 'DESC'))->where(array('eliminado'=>false,\"rfc_datos_personales\"=>$rfc))->get(\"datos_personales\");\n \n $valores[\"nombre_datos_personales_cliente\"] = $res_dt[0][\"nombre_datos_personales\"];\n \n if(isset($res_dt[0][\"apellido_p_datos_personales\"])){\n $valores[\"nombre_datos_personales_cliente\"].=\" \".$res_dt[0][\"apellido_p_datos_personales\"];\n }\n\n if(isset($res_dt[0][\"apellido_m_datos_personales\"])){\n $valores[\"nombre_datos_personales_cliente\"].= \" \".$res_dt[0][\"apellido_m_datos_personales\"];\n }\n\n #consulto la sala \n $id_sala = new MongoDB\\BSON\\ObjectId($valores[\"id_servicio_sala\"]);\n $res_sala = $this->mongo_db->order_by(array('_id' => 'DESC'))->where(array('eliminado'=>false,'_id'=>$id_sala))->get(\"servicios\");\n $valores[\"sala\"] = $res_sala[0][\"descripcion\"];\n #Consulto usuario\n $id = new MongoDB\\BSON\\ObjectId($valor[\"auditoria\"][0]->cod_user);\n $res_us = $this->mongo_db->where(array('_id'=>$id))->get('usuario');\n $vector_auditoria = reset($valor[\"auditoria\"]);\n $valores[\"fec_regins\"] = $vector_auditoria->fecha->toDateTime();\n isset($res_us[0][\"correo_usuario\"])?$valores[\"correo_usuario\"] = $res_us[0][\"correo_usuario\"]:$valores[\"correo_usuario\"] =\"\";\n //--\n if($valores[\"hora_ingreso\"]!=\"\"){\n //$fecha_inicio = $valor[\"hora_ingreso\"]->toDateTime();\n $fecha_inicio = new DateTime(date(\"Y-m-d g:i a\",$valor[\"hora_ingreso\"]));\n $valores[\"hora_ingreso\"] = $fecha_inicio;\n \n }else{\n $valores[\"hora_ingreso\"] = \"\";\n }\n //--Hora inicio\n if($valores[\"hora_inicio\"]!=\"\"){\n //$fecha_inicio_h = $valor[\"hora_inicio\"]->toDateTime();\n $fecha_inicio_h = new DateTime(date(\"Y-m-d g:i a\",$valor[\"hora_inicio\"]));\n $valores[\"hora_inicio\"] = $fecha_inicio_h;\n \n }else{\n $valores[\"hora_inicio\"] = \"\";\n }\n //--Hora fin \n if($valores[\"hora_fin\"]!=\"\"){\n //$fecha_fin_h = $valor[\"hora_fin\"]->toDateTime();\n $fecha_fin_h = new DateTime(date(\"Y-m-d g:i a\",$valor[\"hora_fin\"]));\n $valores[\"hora_fin\"] = $fecha_fin_h;\n }else{\n $valores[\"hora_fin\"] = \"\";\n }\n //--\n if($valor[\"hora_salida\"]!='Sin salir'){\n //$fecha_fin = $valor[\"hora_salida\"]->toDateTime();\n $fecha_fin = new DateTime(date(\"Y-m-d g:i a\",$valor[\"hora_salida\"]));\n $valores[\"hora_salida\"] = $fecha_fin;\n }else{\n $valores[\"hora_salida\"] = \"Sin salir\";\n }\n $valores[\"hora_liberada\"] = $valores[\"hora_salida\"];\n $fecha_reservacion = $valor[\"fecha\"]->toDateTime();\n $valores[\"fecha_reservacion\"] = $fecha_reservacion;\n //------------------------------------------------------------\n //$fecha1 = new DateTime($fecha_fin);//fecha inicial\n //$fecha2 = new DateTime($fecha_inicio);//fecha de cierre\n #Calculo de horas contratadas \n $intervalo =$fecha_fin_h->diff($fecha_inicio_h);\n \n if(isset($intervalo)){\n $valores[\"horas_contratadas\"] = $intervalo->format('%H:%i:%s');\n }else{\n $valores[\"horas_contratadas\"] = \"\";\n }\n /*-----------------------------------------------------------------------------*/\n #Calculo de horas consumidas\n if($valores[\"condicion\"]==\"REGISTRADA\"){\n #Si la condicion es registrada: se resta la hora actua a la hora de ingreso\n if($valores[\"hora_ingreso\"]!=\"\"){\n $hoy = new DateTime(\"now\");\n $intervalo2 =$fecha_inicio->diff($hoy);\n $intervaloConsmuidas = $intervalo2;\n if(isset($intervalo2)){\n $valores[\"horas_consumidas\"] = $intervalo2->format('%H:%i:%s');\n }else{\n $valores[\"horas_consumidas\"] = \"\";\n }\n }else{\n $valores[\"horas_consumidas\"] = \"\";\n } \n } if($valores[\"condicion\"]==\"LIBERADA\"){\n #Si la condicione s liberada: se resta la hora salida a la de ingreso\n $intervalo3 =$fecha_fin->diff($fecha_inicio);\n $intervaloConsmuidas = $intervalo3;\n\n if(isset($intervalo3)){\n $valores[\"horas_consumidas\"] = $intervalo3->format('%H:%i:%s');\n }else{\n $valores[\"horas_consumidas\"] = \"\";\n }\n }else if(($valores[\"condicion\"]==\"RESERVADA\")||($valores[\"condicion\"]==\"CANCELADA\")){\n $valores[\"horas_consumidas\"] = \"\";\n }\n //------------------------------------------------------------\n #Horas por consumir\n if(($valores[\"horas_contratadas\"]!=\"\")&&($valores[\"horas_consumidas\"]!=\"\")){\n //var_dump($intervalo<$intervaloConsmuidas);die('');\n \n $horas_uno = new DateTime($valores[\"horas_contratadas\"]);\n $horas_dos = new DateTime($valores[\"horas_consumidas\"]);\n $intervaloDisponibles = $horas_uno->diff($horas_dos);\n $valores[\"horas_disponibles\"] = $intervaloDisponibles->format('%H:%i:%s'); \n if($valores[\"horas_disponibles\"]>$valores[\"horas_contratadas\"]){\n $valores[\"horas_disponibles\"] = \"\";\n }\n }else{\n $valores[\"horas_disponibles\"] = \"\";\n }\n //------------------------------------------------------------\n $listado[] = $valores; \n //--\n\n }\n return $listado;\n }", "function expositor_list(){\n return expositor_novo();\n}", "public function traerDocentesActivos(){\n $docentes = DB::select('SELECT docente.idDocente, CONCAT(docente.apPaterno, \" \",docente.apMaterno,\" \", docente.nombres) as nombre_completo from docente where not exists (select docente_grupo.idDocente from docente_grupo where docente_grupo.idDocente = docente.idDocente) AND docente.estatus = 1 AND docente.tipo <> 1 AND docente.tipo <>4 AND docente.tipo <>5 ORDER BY nombre_completo ASC');\n \n\n return $docentes;\n }", "function listar_producto(){\n\t\tif (isset($_POST['buscar']))\n\t\t\t$_SESSION['buscar']=$_POST['buscar'];\n\t\t\t\n\t\tif (isset($_SESSION['buscar']) && $_SESSION['buscar']!=\"\"){\t\n\t\t\t$this->buscar=$_SESSION['buscar'];\n\t\t\t$sql=\"SELECT * FROM producto, categoria WHERE id_cat=categoria_pro AND\n\t\t\t(nombre_cat LIKE '%' '\".$_SESSION['buscar'].\"' '%' OR \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t\t\tprioridad_pro LIKE '%' '\".$_SESSION['buscar'].\"' '%' OR\n\t\t\tcodigo_pro LIKE '%' '\".$_SESSION['buscar'].\"' '%' OR \n\t\t\tnombre_pro LIKE '%' '\".$_SESSION['buscar'].\"' '%' OR \n\t\t\tmarca_pro LIKE '%' '\".$_SESSION['buscar'].\"' '%' OR \n\t\t\tlimite_pro LIKE '%' '\".$_SESSION['buscar'].\"' '%' OR \n\t\t\tclaves_pro LIKE '%' '\".$_SESSION['buscar'].\"' '%') \n\t\t\tORDER BY disponible_pro, prioridad_pro, categoria_pro ASC\";\n\t\t}else{\n\t\t\t$sql=\"SELECT * FROM producto, categoria WHERE id_cat=categoria_pro ORDER BY disponible_pro, prioridad_pro, categoria_pro ASC\";\n\t\t}\n\t\t$consulta=mysql_query($sql) or die(mysql_error());\n\t\twhile ($resultado = mysql_fetch_array($consulta)){\n\t\t\t$this->mensaje=\"si\";\n\t\t\t$this->suiche=false;\n\t\t\t$this->ruta=\"\";\n\t\t\t$resultado['nombre_cat']=\"\";\n\t\t\t$this->buscar_ruta_nodo($resultado['categoria_pro']);\n\t\t\tfor($i=count($this->ruta)-1;$i>=0;$i--){\n\t\t\t\t$resultado['nombre_cat'].=\" &raquo; \".$this->ruta[$i]['nombre_cat'];\n\t\t\t}\n\t\t\t$this->listado[] = $resultado;\n\t\t}\n\t}", "static function cursadas(){\n\t\t\n\t\t$cs = array();\n\t\t\n\t\t$conn = new Conexion();\n\t\t\n\t\t$sql = 'SELECT id_carrera, materia, anio FROM cursada';\n\t\t\n\t\t$consulta = $conn->prepare($sql);\n\t\t\n\t\t$consulta->setFetchMode(PDO::FETCH_ASSOC);\n\t\t\n\t\ttry{\n\t\t\t\n\t\t\t$consulta->execute();\n\t\t\t\n\t\t\t$results = $consulta->fetchall();\n\t\t\t\n\t\t\tforeach($results as $r){\n\t\t\t\t\n\t\t\t\t$c = Cursada::cursada($r['id_carrera'], $r['materia'], $r['anio']);\n\t\t\t\t\n\t\t\t\tarray_push($cs, $c);\n\t\t\t}\n\t\t\t\n\t\t}catch(PDOException $e){\n\t\t\t\n\t\t}\n\t\t\n\t\treturn $cs;\n\t}", "public static function listaITV($idUsuario, $idTipo = null, $status = 5, $idFaculdade = 1, $idCategoria = null, $idEstrutura = null) {\n\n $cursos = Curso::distinct()->select(\n 'cursos.id',\n 'cursos.titulo as nome_curso',\n 'cursos.idioma',\n 'cursos.slug_curso',\n 'cursos.imagem',\n 'cursos_valor.valor',\n 'cursos_valor.valor_de',\n 'professor.nome as nome_professor',\n 'professor.sobrenome as sobrenome_professor',\n 'fk_cursos_tipo as tipo',\n 'estrutura_curricular_conteudo.data_inicio',\n 'estrutura_curricular_conteudo.ordem',\n 'estrutura_curricular.tipo_liberacao',\n DB::raw('IFNULL(cursos_concluidos.fk_curso, 0) as curso_concluido')\n )\n ->leftJoin('cursos_valor', 'cursos_valor.fk_curso', '=', 'cursos.id')\n ->join('professor', 'professor.id', '=', 'cursos.fk_professor')\n ->join('cursos_faculdades', 'cursos_faculdades.fk_curso', '=', 'cursos.id')\n ->join('cursos_categoria_curso', 'cursos_categoria_curso.fk_curso', '=', 'cursos.id')\n ->join('estrutura_curricular_conteudo', function ($join) {\n\n $join->on('estrutura_curricular_conteudo.fk_conteudo', '=', 'cursos.id');\n $join->on('estrutura_curricular_conteudo.fk_categoria', '=', 'cursos_categoria_curso.fk_curso_categoria');\n\n })\n ->join('estrutura_curricular', 'estrutura_curricular.id', '=', 'estrutura_curricular_conteudo.fk_estrutura')\n ->join('estrutura_curricular_usuario', 'estrutura_curricular_usuario.fk_estrutura', '=', 'estrutura_curricular.id')\n ->leftjoin('cursos_concluidos', function ($join) {\n $join->on('cursos_concluidos.fk_faculdade', '=', 'cursos_faculdades.fk_faculdade');\n $join->on('cursos_concluidos.fk_usuario', '=', 'estrutura_curricular_usuario.fk_usuario');\n $join->on('cursos_concluidos.fk_curso', '=', 'cursos.id');\n //\n })\n ->where('cursos.status', $status)\n ->where('cursos_faculdades.fk_faculdade', $idFaculdade)\n ->where('estrutura_curricular_usuario.fk_usuario', $idUsuario);\n\n if (!empty($idCategoria)) {\n $cursos->where('cursos_categoria_curso.fk_curso_categoria', $idCategoria);\n }\n\n if (!empty($idTipo)) {\n $cursos->where('cursos.fk_cursos_tipo', $idTipo);\n }\n\n if (!empty($idEstrutura)) {\n $cursos->where('estrutura_curricular.id', $idEstrutura);\n }\n\n $cursos->orderBy(DB::raw('TIMEDIFF(`estrutura_curricular_conteudo`.`data_inicio`, now()) >= 0'));\n $cursos->orderBy('estrutura_curricular_conteudo.ordem', 'asc');\n\n $cursos = $cursos->get()->toArray();\n\n return collect($cursos)->unique()->toArray();\n }" ]
[ "0.7589448", "0.71729285", "0.7140789", "0.6982828", "0.68293583", "0.6797797", "0.67859155", "0.6774024", "0.67709565", "0.6734052", "0.66968995", "0.6692716", "0.667764", "0.6638074", "0.6630869", "0.6609392", "0.657137", "0.6559297", "0.6558902", "0.6556457", "0.65415454", "0.65415454", "0.6537954", "0.6520754", "0.6518202", "0.65091443", "0.6481049", "0.647523", "0.64737254", "0.6450094", "0.64485824", "0.64461493", "0.64447993", "0.6438369", "0.643157", "0.6419328", "0.6418292", "0.64131755", "0.6400022", "0.6397715", "0.6393954", "0.63812083", "0.6378866", "0.63371027", "0.63318807", "0.6321061", "0.63169307", "0.62945586", "0.62942", "0.62844074", "0.6276882", "0.6273344", "0.6263559", "0.62594366", "0.62585974", "0.62448645", "0.62211275", "0.6220874", "0.6206157", "0.6171289", "0.6166824", "0.6164767", "0.61631477", "0.61586845", "0.61522484", "0.61466706", "0.614523", "0.6142468", "0.6140036", "0.6137193", "0.61319274", "0.61296993", "0.6124698", "0.6123846", "0.6112716", "0.6109719", "0.61062366", "0.6105852", "0.6102099", "0.6101567", "0.6095591", "0.6092786", "0.60919476", "0.60913694", "0.60909617", "0.6087708", "0.6085994", "0.6084755", "0.6084064", "0.6083976", "0.608329", "0.6082132", "0.6069792", "0.60691905", "0.6065589", "0.60616255", "0.6059837", "0.6055958", "0.6055584", "0.6054398" ]
0.6326585
45
Funcion para obtener el detalle de seguimiento
public function getDetalleSeguimiento($id_cotizacion) { $query = new static; $query = DB::select("SELECT ds.id_detalle_seguimiento, ds.fecha :: Date AS fecha_evento, ds.evento, ds.detalle as descripcion FROM ldci.tb_cotizacion AS c JOIN ldci.tb_flete AS f ON c.id_cotizacion=f.id_cotizacion JOIN ldci.tb_detalle_seguimiento AS ds ON ds.id_flete=f.id_flete WHERE f.id_cotizacion= $id_cotizacion AND ds.estado=1"); return $query; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getDetalle();", "public function findDetalleRecolectado()\r\n\t\t{\r\n\t\t\t$findModel = self::findDetalleRecaudacionModel();\r\n\t\t\treturn $findModel->orderBy([\r\n\t\t\t\t\t\t\t\t\t'lapso' => SORT_ASC,\r\n\t\t\t\t\t\t\t\t\t'fecha_pago' => SORT_ASC,\r\n\t\t\t\t\t\t\t\t\t'codigo' => SORT_ASC,\r\n\t\t\t\t\t\t\t\t])\r\n\t\t\t\t\t\t\t ->asArray()\r\n\t\t\t\t \t\t ->all();\r\n\t\t}", "function consultarDetalles (){\n\t\t$x = $this->pdo->prepare('SELECT * FROM detalles');\n\t\t$x->execute();\n\t\treturn $x->fetchALL(PDO::FETCH_OBJ);\n\t}", "function obtenerDetalles ($codPedido){\n\t\t$x = $this->pdo->prepare('SELECT * FROM detalles where codPedido = ?');\n\t\t$x->execute(array($codPedido));\n\t\treturn $x->fetchALL(PDO::FETCH_OBJ);\n\t}", "function getDetalle()\n {\n if (!isset($this->sdetalle) && !$this->bLoaded) {\n $this->DBCarregar();\n }\n return $this->sdetalle;\n }", "public function obtenerViajesplus();", "public function getIdDetalles()\n {\n $sql = \"SELECT id_detalle FROM detalle_solicitud\";\n $params = array(null);\n return Database::getRows($sql, $params);\n }", "public function getDetalle(){\n\t\treturn $this->detalle;\n\t}", "public function detalhes($id){\n\t\t\n\t\t$dados = array();\n\t\t$r = new Relatorios();\n\t\t$dados['ordem'] = $r->getOrdem($id);\n\t\t$dados['funcionario'] = $r->getFuncionario($dados['ordem']['id_f']);\n\t\t$dados['cliente'] = $r->getCliente($dados['ordem']['id_c']);\n\t\t\n\t\t// var_dump($dados['cliente']);\n\t\t$this->loadTemplate('detalhes', $dados);\n\t}", "public function getDetalle()\n {\n return $this->detalle;\n }", "function GetPeliculasConGenero(){\n //$sentencia = $this->db->prepare(\"SELECT * FROM peliculas INNER JOIN genero ON peliculas.titulo = genero.nombre\");\n $sentenciasad = $this->db->prepare(\"SELECT peliculas.titulo, genero.nombre FROM peliculas INNER JOIN genero ON peliculas.id_genero = genero.id_genero\");\n $sentencias->executing();\n //print_r( $sentencia->fetchAll(PDO::FETCH_OBJ));// vemos que este cargado y con que \n return $sentencia->fetchAll(PDO::FETCH_OBJ);\n }", "public function findPagoDetalleVehiculo()\r\n\t\t{\r\n\t\t\t$codigoPresupuestario = self::getCodigoPresupuestarioVehiculo();\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t// Pagos con periodos mayores a cero\r\n\t\t\t$registers = self::findPagoDetallePeriodoMayorCero($codigoPresupuestario, [3]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Vehiculo periodo mayores a cero'));\r\n\t\t\t}\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t// Pagos con periodos iguales a cero\r\n\t\t\t$registers = self::findPagoDetallePeriodoIgualCero($codigoPresupuestario, [3]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Vehiculo periodo iguales a cero'));\r\n\t\t\t}\r\n\t\t}", "public function selectAllDemande()\n {\n $requete = \"SELECT * FROM \n $this->table p, \".self::TDEMANDEUR.\" d, \".self::TDETPRESTA.\" dp, \".self::TLIEU.\" l, \".self::TCATDEMANDEUR.\" cd\n WHERE p.id_demandeur=d.id AND p.id_lieu=l.id AND dp.id_prestation=p.id AND d.id_cat_demandeur=cd.id limit 10\";\n\n return $this->pdo->query($requete)->fetchAll();\n }", "function getDatosDetalle()\n {\n $nom_tabla = $this->getNomTabla();\n $oDatosCampo = new core\\DatosCampo(array('nom_tabla' => $nom_tabla, 'nom_camp' => 'detalle'));\n $oDatosCampo->setEtiqueta(_(\"detalle\"));\n return $oDatosCampo;\n }", "public function detalles($id)\r\n\t{\r\n\t\t//Detalles del pedido con los datos del trabajador que solicita el producto/servicio\r\n\t\t//Se cargan 4 tablas en la web imagenes, publicaciones, colaborador, comunas.\r\n\t}", "public function getDataRecolectada()\r\n\t\t{\r\n\t\t\treturn $this->_data = self::findDetalleRecolectado();\r\n\t\t}", "public function demandeListeTous()\n\t{\n\t\t// votre code ici\n\t\treturn Gestion::lister(\"Demande\");//type array\n\t}", "public function societeListerTous()\n\t{\n\t\t// votre code ici\n\t\treturn Gestion::lister(\"Societe\");//type array\n\t}", "public function VerDetallesVentas()\n{\n\tself::SetNames();\n\t$sql = \" SELECT * FROM detalleventas LEFT JOIN categorias ON detalleventas.codcategoria = categorias.codcategoria WHERE detalleventas.codventa = ?\";\t\n\t$stmt = $this->dbh->prepare($sql);\n\t$stmt->bindValue(1, trim(base64_decode($_GET[\"codventa\"])));\n\t$stmt->execute();\n\t$num = $stmt->rowCount();\n\n\twhile($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t{\n\t\t\t$this->p[]=$row;\n\t\t}\n\t\treturn $this->p;\n\t\t$this->dbh=null;\n\t}", "public function getAllVisiteurs(){\r\n\t\t$req =\"select * from visiteur where comptable=0\";\r\n\t\t\r\n\t\t$res = PdoGsb::$monPdo->query($req);\r\n\t\t$lesVisiteurs =array();\r\n\t\t$laLigne = $res->fetch();\r\n\t\twhile($laLigne != null)\t{\r\n\t\t\t$selection = $laLigne['id'];\r\n $nom=$laLigne['nom'];\r\n $prenom=$laLigne['prenom'];\r\n\t\t\t$lesVisiteurs[\"$selection\"]=array(\r\n \"id\"=>\"$selection\",\r\n \"nom\"=>\"$nom\",\r\n \"prenom\"=>\"$prenom\"\r\n );\r\n\t\t\t$laLigne = $res->fetch(); \t\t\r\n\t\t}\r\n\t\treturn $lesVisiteurs;\r\n\t}", "public function DetallesVentasPorId()\n{\n\tself::SetNames();\n\t$sql = \" SELECT detalleventas.coddetalleventa, detalleventas.codventa, detalleventas.codcliente as cliente, detalleventas.codproducto, detalleventas.producto, detalleventas.codcategoria, detalleventas.cantventa, detalleventas.precioventa, detalleventas.preciocompra, detalleventas.importe, detalleventas.importe2, detalleventas.fechadetalleventa, categorias.nomcategoria, productos.ivaproducto, productos.existencia, clientes.codcliente, clientes.cedcliente, clientes.nomcliente, usuarios.nombres FROM detalleventas LEFT JOIN categorias ON detalleventas.codcategoria = categorias.codcategoria LEFT JOIN clientes ON detalleventas.codcliente = clientes.codcliente LEFT JOIN productos ON detalleventas.codproducto = productos.codproducto LEFT JOIN usuarios ON detalleventas.codigo = usuarios.codigo WHERE detalleventas.coddetalleventa = ?\";\n\t$stmt = $this->dbh->prepare($sql);\n\t$stmt->execute( array(base64_decode($_GET[\"coddetalleventa\"])) );\n\t$num = $stmt->rowCount();\n\tif($num==0)\n\t{\n\t\techo \"\";\n\t}\n\telse\n\t{\n\t\tif($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t\t{\n\t\t\t\t$this->p[] = $row;\n\t\t\t}\n\t\t\treturn $this->p;\n\t\t\t$this->dbh=null;\n\t\t}\n\t}", "public function devuelve_secciones(){\n \n $sql = \"SELECT * FROM secciones ORDER BY nombre\";\n $resultado = $this -> db -> query($sql); \n return $resultado -> result_array(); // Obtener el array\n }", "static public function visAlle() {\n $alle_stikkord = array();\n\n try {\n $setning = self::$db->prepare(\"SELECT * FROM Stikkord\");\n $setning->execute();\n\n while ($stikkord = $setning->fetchObject('Stikkord') )\n {\n $alle_stikkord[] = $stikkord;\n\n }\n\n }\n catch (Exception $e) {\n print $e->getMessage() . PHP_EOL;\n }\n\n return $alle_stikkord;\n\n }", "function get_demande()\n {\n global $db;\n $req=$db->query(\"SELECT * FROM demande WHERE valid IS NULL AND hpdescription IS NULL AND id='{$_GET['id']}'\");\n $results=array();\n while($rows=$req->fetchObject())\n {\n $results[]=$rows;\n }\n return $results;\n }", "public function findPagoDetalleEspectaculo()\r\n\t\t{\r\n\t\t\t$codigoPresupuestario = self::getCodigoPresupuestarioEspectaculoPublico();\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t// Pagos con periodos iguales a cero\r\n\t\t\t$registers = self::findPagoDetallePeriodoIgualCero($codigoPresupuestario, [6]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Espectaculo Publico'));\r\n\t\t\t}\r\n\t\t}", "public function secteurListerTous()\n\t{\n\t\t// votre code ici\n\t\treturn Gestion::lister(\"Secteur\");//type array\n\t}", "public function get_Docente(){\r\n $conectar=parent::conexion();\r\n parent::set_names();\r\n $sql=\"select * from docente;\";\r\n $sql=$conectar->prepare($sql);\r\n $sql->execute();\r\n return $resultado=$sql->fetchAll(PDO::FETCH_ASSOC);\r\n }", "public function get_AllDetalleproductos() \n {\n $sql=\"select pb.PAR_D_NOMBRE,pa.PAR_D_NOMBRE,p.PRO_D_NOMBRE,p.PRO_E_ESTADOVENTAS from dg_productos p\n INNER JOIN dg_parametros pa on pa.PAR_C_CODIGO=p.PAR_C_CODIGO\n INNER JOIN dg_parametros pb on pb.PAR_C_CODIGO=pa.PAR_C_PADRE;\";\n $res = mysql_query($sql);\n return $res;\n }", "public function obtener_delincuentes()\n {\n // linea que carga la base de datos \n $this->load->database();\n\n // se obtiene el listado de delincuentes y se guarda en la variable $delincuentes\n $delincuentes = $this->db->get('delincuente');\n\n\n // retorna resultado obtenido de la base de datos\n return $delincuentes->result();\n }", "function getDetalleElementosPlus($nodo_id_filtro, $pagina, $orden = 1, $fecha_inicial, $fecha_termino, $isset,$h1, $m1, $h2, $m2, $cuenta_nodos) {\n\t\tif ($isset != 0) {\n\t\t\tglobal $mdb2;\n\t\t\tglobal $log;\n\t\t\tglobal $current_usuario_id;\n\t\t\tglobal $usr;\n\n\t\t\t/* OBTENER LOS DATOS Y PARSEARLO */\n\t\t\t$sql = \"SELECT * FROM reporte.elementosplus_mediciones_filtro_marcado(\".\n\t\t\tpg_escape_string($current_usuario_id).\",\".\n\t\t\tpg_escape_string($this->objetivo_id).\",\".\n\t\t\tpg_escape_string($nodo_id_filtro).\",\".\n\t\t\t(($this->subgrafico_id==1)?100:12).\", \".\n\t\t\tpg_escape_string($pagina).\", '\".\n\t\t\tpg_escape_string($fecha_inicial).\"', '\".\n\t\t\tpg_escape_string($fecha_termino).\"')\";\n\t\t\t\n\t\t\t$res =& $mdb2->query($sql);\n\t\t\tif (MDB2::isError($res)) {\n\t\t\t\t$log->setError($sql, $res->userinfo);\n\t\t\t\texit();\n\t\t\t}\n\n\t\t\t$row = $res->fetchRow();\n\t\t\t$dom = new DomDocument();\n\t\t\t$dom->preserveWhiteSpace = FALSE;\n\t\t\t$dom->loadXML($row['elementosplus_mediciones_filtro_marcado']);\n\t\t\t$xpath = new DOMXpath($dom);\n\t\t\tunset($row[\"elementosplus_mediciones_filtro_marcado\"]);\n\n\t\t\t$mantenimiento = $xpath->query('/atentus/resultados/detalles/detalle')->item(0)->getAttribute('marcado');\n\n\t\t\tif ($mantenimiento == 1) {\n\t\t\t\tif ($cuenta_nodos == 0) {\n\t\t\t\t\treturn $this->__generarContenedorConMantenimiento();\n\t\t\t\t}else{\n\t\t\t\t\treturn \"\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$conf_objetivo = $xpath->query(\"/atentus/resultados/propiedades/objetivos/objetivo\")->item(0);\n\t\t\t$conf_pasos = $xpath->query(\"paso[@visible=1]\", $conf_objetivo);\n\t\t\t$conf_nodo = $xpath->query(\"/atentus/resultados/propiedades/nodos/nodo[@nodo_id=\".$nodo_id_filtro.\"]\")->item(0);\n\t\t\t$tag_mediciones = $xpath->query('//detalles/detalle[@nodo_id='.$nodo_id_filtro.']/detalles/detalle');\n\t\t\t\n\t\t\t/* SI NO HAY DATOS MOSTRAR MENSAJE */\n\t\t\tif ($xpath->query('//datos/dato')->length == 0 and $pagina == 1) {\n\t\t\t\treturn $this->__generarContenedorSinDatos($usr->getNodo($nodo_id_filtro)->nombre);\n\t\t\t}\n\n\t\t\t// TEMPLATE DEL GRAFICO\n\t\t\t$T =& new Template_PHPLIB(($this->extra[\"imprimir\"])?REP_PATH_PRINTTEMPLATES:REP_PATH_TABLETEMPLATES);\n\t\t\t$T->setFile('tpl_tabla', 'elementos_plus_mediciones.tpl');\n\t\t\t$T->setBlock('tpl_tabla', 'BLOQUE_PASOS', 'bloque_pasos');\n\t\t\t$T->setBlock('tpl_tabla', 'BLOQUE_DATOS', 'bloque_datos');\n\n\t\t\t$T->setVar('__item_id', $this->__item_id);\n\t\t\t$T->setVar('__item_id_nuevo', REP_ITEM_ELEMENTOS_PLUS);\n\t\t\t$T->setVar('__item_orden', $this->extra[\"item_orden\"]);\n\n\t\t\t$T->setVar('__monitor_id', $conf_nodo->getAttribute('nodo_id'));\n\t\t\t$T->setVar('__monitor_nombre', $conf_nodo->getAttribute('nombre'));\n\t\t\t$T->setVar('__monitor_orden', $orden);\n\n\t\t\t$linea_monitor = 1;\n\t\t\t$linea = 1;\n\t\t\t$T->setVar('bloque_datos', '');\n\t\t\tforeach ($tag_mediciones as $tag_medicion) {\n\n\t\t\t\t$T->setVar('__class', ($linea_monitor % 2 == 0)?\"celdanegra15\":\"celdanegra10\");\n\t\t\t\t$T->setVar('__fecha', $this->timestamp->getFormatearFecha($tag_medicion->getAttribute('fecha'), \"d-m-Y H:i:s\"));\n\t\t\t\t$T->setVar('__fechaCompleta', $tag_medicion->getAttribute('fecha'));\n\t\t\t\t$T->setVar('__pagina', $pagina);\n\n\t\t\t\t$medicion_error = false;\n\t\t\t\t$T->setVar('bloque_pasos', '');\n\t\t\t\tforeach ($conf_pasos as $conf_paso) {\n\t\t\t\t\t$tag_dato = $xpath->query('datos/dato[@paso_orden='.$conf_paso->getAttribute('paso_orden').']', $tag_medicion)->item(0);\n\n\n\t\t\t\t\tif ($tag_dato == null) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\n\t\t\t\t\t$T->setVar('__print_class', ($linea % 2 == 0)?\"celdaIteracion2\":\"celdaIteracion1\");\n\t\t\t\t\t$T->setVar('__nombrePaso',$conf_paso->getAttribute('nombre'));\n\t\t\t\t\t$T->setVar('__idPaso',$conf_paso->getAttribute('paso_orden'));\n\t\t\t\t\t$T->setVar('__tamanoTotal', number_format(($tag_dato->getAttribute('tamano_total')),0,',','.'));\n\n\t\t\t\t\tif (trim($tag_dato->getAttribute('respuesta')) == '') {\n\t\t\t\t\t\t$T->setVar('__tiempoTotal', 'Error en la descarga');\n\t\t\t\t\t} else {\n\t\t\t\t\t\tpreg_match(\"/(?P<hor>\\d{2}):(?P<min>\\d{2}):(?P<seg>\\d{2}).(?P<mseg>\\d+)/\", $tag_dato->getAttribute('respuesta'), $tiempos);\n\t\t\t\t\t\t$seg = ($tiempos[\"hor\"]*3600)+($tiempos[\"min\"]*60)+($tiempos[\"seg\"]);\n\t\t\t\t\t\t$T->setVar('__tiempoTotal', $seg.','.$tiempos[\"mseg\"]);\n\t\t\t\t\t}\n\n\t\t\t\t\tif ($tag_dato->getAttribute('estado') == \"false\" && trim($tag_dato->getAttribute('respuesta')) != \"\") {\n\t\t\t\t\t\t$T->setVar('__estadoPaso', 'spriteImg spriteImg-elementos_encontrados');\n\t\t\t\t\t\t$T->setVar('__titlePaso', 'Todos los elementos fueron descargados correctamente en este paso');\n\t\t\t\t\t\t$T->setVar('__textoPaso', 'Elementos OK');\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t$T->setVar('__estadoPaso', 'spriteImg spriteImg-elementos_faltantes');\n\t\t\t\t\t\t$T->setVar('__titlePaso', 'Existen elementos que no lograron ser descargados para este paso');\n\t\t\t\t\t\t$T->setVar('__textoPaso', 'Elementos Error');\n\t\t\t\t\t\t$medicion_error = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t$T->parse('bloque_pasos', 'BLOQUE_PASOS', true);\n\t\t\t\t\t$linea++;\n\t\t\t\t}\n\n\t\t\t\tif (!$medicion_error) {\n\t\t\t\t\t$T->setVar('__estado', 'spriteImg spriteImg-elementos_encontrados');\n\t\t\t\t\t$T->setVar('__titleMonitoreo', 'Todos los elementos del monitoreo fueron descargados correctamente');\n\t\t\t\t\t$T->setVar('__textoMonitoreo', 'Elementos OK');\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t$T->setVar('__estado', 'spriteImg spriteImg-elementos_faltantes');\n\t\t\t\t\t$T->setVar('__titleMonitoreo', 'Existen elementos que no fueron descargados en este paso');\n\t\t\t\t\t$T->setVar('__textoMonitoreo', 'Elementos Error');\n\t\t\t\t}\n\n\t\t\t\t$T->parse('bloque_datos', 'BLOQUE_DATOS', true);\n\t\t\t\t$linea_monitor++;\n\t\t\t}\n\n\t\t\t/* FORMATO DE PAGINAS */\n\t\t\t$T->setVar('_h1', $h1);\n\t\t\t$T->setVar('_m1', $m1);\n\t\t\t$T->setVar('_h2', $h2);\n\t\t\t$T->setVar('_m2', $m2);\n\t\t\t$T->setVar('__pagina', $pagina);\n\t\t\t$T->setVar('__pagina_atras', $pagina-1);\n\t\t\t$T->setVar('__pagina_adelante', $pagina+1);\n\t\t\t$T->setVar('__disabled_atras', ($pagina==1)?'disabled':'');\n\t\t\t$T->setVar('__disabled_adelante', ($tag_mediciones->length<12)?'disabled':'');\n\t\t\t$T->setVar('__class_boton_atras', ($pagina==1)?'spriteButton spriteButton-atras_desactivado':'spriteButton spriteButton-atras');\n\t\t\t$T->setVar('__class_boton_adelante', ($tag_mediciones->length<12)?'spriteButton spriteButton-adelante_desactivado':'spriteButton spriteButton-adelante');\n\n\t\t\tif ($tag_mediciones->length == 0 and $pagina != 1) {\n\t\t\t\treturn 0;\n\t\t\t}\n\n\t\t\t$this->tiempo_expiracion = (strtotime($xpath->query(\"//fecha_expiracion\")->item(0)->nodeValue) - strtotime($xpath->query(\"//fecha\")->item(0)->nodeValue));\n\n\t\t\treturn $this->resultado = $T->parse('out', 'tpl_tabla');\n\t\t}\n\t}", "public function listarDeportestodo(){\n $sql = \"SELECT `Sport`.`id` as iddeporte, `Sport`.`nombre` FROM `sporte`.`coaches` AS `Coach` LEFT JOIN `sporte`.`users` AS `User` ON (`Coach`.`user_id` = `User`.`id`) LEFT JOIN `sporte`.`ligas` AS `Liga` ON (`Coach`.`liga_id` = `Liga`.`id`) LEFT JOIN `sporte`.`sports` AS `Sport` ON (`Liga`.`sport_id` = `Sport`.`id`) WHERE 1=1\";\n $sentencia = $this->dblink->prepare($sql);\n $sentencia->execute(); \n return $sentencia->fetchAll(PDO::FETCH_OBJ);\n }", "public function listaDelitos(){\n\t $ofen=0;\n\t $indi=0;\n\t $arreglo = array();\n\n if (count($this->getOfeindis())>0){\n $ldelitos= Load::model('ofeindis')->find(\"ordenes_id = \".$this->id,\"order: indiciados_id,ofendidos_id,delitos_id\");\n }\n\n foreach ($ldelitos as $key) { // aqui se escoge a los imputados y victimas que no se repiten\n if($key->ofendidos_id !=$ofen || $key->indiciados_id !=$indi){\n array_push($arreglo,array('idel'=>$key->id,'ofendido'=>$key->getOfendidos(), 'indiciado'=>$key->getIndiciados()));\n }\n $ofen=$key->ofendidos_id;\n $indi=$key->indiciados_id;\n }\n\n for ($i=0; $i <count($arreglo) ; $i++) { // aqui voy metiendo un arreglo de delitos para cada uno\n $delitos=array();\n foreach ($ldelitos as $key) {\n if($key->ofendidos_id==$arreglo[$i]['ofendido']->id && $key->indiciados_id==$arreglo[$i]['indiciado']->id ){\n array_push($delitos,array('delito'=>$key->getDelitos(),'iddeli'=>$key->id,'principal'=>$key->esprincipal)); \n }\n } \n $arreglo[$i]['delitos']=$delitos; \n }\n return $arreglo;\n\n\t\n\t}", "function listarAnalisisPorqueDet(){\n\t\t$this->procedimiento='gem.ft_analisis_porque_det_sel';\n\t\t$this->transaccion='GM_DET_SEL';\n\t\t$this->tipo_procedimiento='SEL';//tipo de transaccion\n\t\t\n\t\t$this->setParametro('id_analisis_porque','id_analisis_porque','int4');\n\t\t\t\t\n\t\t//Definicion de la lista del resultado del query\n\t\t$this->captura('id_analisis_porque_det','int4');\n\t\t$this->captura('id_analisis_porque','int4');\n\t\t$this->captura('solucion','varchar');\n\t\t$this->captura('estado_reg','varchar');\n\t\t$this->captura('porque','varchar');\n\t\t$this->captura('respuesta','varchar');\n\t\t$this->captura('fecha_reg','timestamp');\n\t\t$this->captura('id_usuario_reg','int4');\n\t\t$this->captura('id_usuario_mod','int4');\n\t\t$this->captura('fecha_mod','timestamp');\n\t\t$this->captura('usr_reg','varchar');\n\t\t$this->captura('usr_mod','varchar');\n\t\t\n\t\t//Ejecuta la instruccion\n\t\t$this->armarConsulta();\n\t\t$this->ejecutarConsulta();\n\t\t\n\t\t//Devuelve la respuesta\n\t\treturn $this->respuesta;\n\t}", "public function getListeVisiteurs(){\n\t\t$req = \"select * from visiteur order by VIS_MATRICULE\";\n\t\t$rs = PdoGsb::$monPdo->query($req);\n\t\t$ligne = $rs->fetchAll();\n\t\treturn $ligne;\n\t}", "function consultarenviodetalles (){\n\t\t$x = $this->pdo->prepare('SELECT * FROM enviodetalles');\n\t\t$x->execute();\n\t\treturn $x->fetchALL(PDO::FETCH_OBJ);\n\t}", "public function findPagoDetalleVario()\r\n\t\t{\r\n\t\t\t$codigoPresupuestario = [\r\n\t\t\t\t'301034900',\r\n\t\t\t\t'301035900',\r\n\t\t\t];\r\n\r\n\t\t\t$impuesto = [\r\n\t\t\t\t5, 8, 9, 10, 11\r\n\t\t\t];\r\n\r\n\t\t\t$registers = self::findPagoDetalleVarioModel($impuesto, $codigoPresupuestario, 'NOT IN');\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Otros conceptos'));\r\n\t\t\t}\r\n\r\n\r\n\t\t\t// Deuda Morora por Tasa.\r\n\t\t\tif ( date('Y-m-d') > date('Y-m-d', strtotime('2014-03-01')) ) {\r\n\t\t\t\t$codigoPresupuestario = ['301035900'];\r\n\t\t\t\t$impuesto = [9];\r\n\r\n\t\t\t\t$registers = self::findPagoDetalleVarioModel($impuesto, $codigoPresupuestario, 'IN');\r\n\t\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\t\tself::errorCargarData(Yii::t('backend', 'Deuda Morosa por Tasa'));\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\r\n\t\t\t// Certificacion y solvencia.\r\n\t\t\t$codigoPresupuestario = ['301034900'];\r\n\t\t\t$impuesto = [4, 5, 6, 7, 8, 9, 10, 11, 12];\t// impuesto > 3\r\n\r\n\t\t\t$registers = self::findPagoDetalleVarioModel($impuesto, $codigoPresupuestario, 'IN');\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Certificacion y Solvencia'));\r\n\t\t\t}\r\n\r\n\t\t}", "function ServicioDetalle($params){\n $id = $params[':ID'];\n $isAdmin = $this->authHelper->isAdmin();\n $servicio = $this->Smodel->getServicioConCategoria($id);\n $this->view->ShowDetalleServicio($servicio,$isAdmin);\n }", "function get_env_rec_facturas_detalle($id_env_rec_facturas='',$id_factura=''){\n\t\t$sQuery=\"SELECT * FROM env_rec_facturas_detalle WHERE 1 = 1\";\n\t\tif($id_env_rec_facturas) {\t$sQuery.=\" AND id_env_rec_facturas = '$id_env_rec_facturas' \";\t}\n\t\t\n\t\t\n\t\t$sQuery.=\" ORDER BY id DESC \";\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 semuaData(){ \n return Mata_Kuliah::find(3)->Mahasiswa()->detach(); //gausah diisi arraynya\n }", "public function findPagoDetalleAseo()\r\n\t\t{\r\n\t\t\t$codigoPresupuestario = self::getCodigoPresupuestarioAseo();\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t// Pagos con periodos mayores a cero\r\n\t\t\t$registers = self::findPagoDetallePeriodoMayorCeroInmueble($codigoPresupuestario, [12]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Aseo periodo mayores a cero'));\r\n\t\t\t}\r\n\r\n\t\t\t//$registers = [];\r\n\t\t\t// Pagos con periodos iguales a cero\r\n\t\t\t// $registers = self::findPagoDetallePeriodoIgualCeroInmueble($codigoPresupuestario, [12]);\r\n\t\t\t// if ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t// \tself::errorCargarData(Yii::t('backend', 'Aseo periodo iguales a cero'));\r\n\t\t\t// }\r\n\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t$registers = self::findPagoDetalleVarioImpuestoModel([12]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Aseo por varios'));\r\n\t\t\t}\r\n\r\n\t\t}", "public function getDataList(){\n return $this->_get(1);\n }", "public function selectAllRegiuniData(){\n $sql = \"SELECT * FROM regiune ORDER BY id DESC\";\n $stmt = $this->db->pdo->prepare($sql);\n $stmt->execute();\n return $stmt->fetchAll(PDO::FETCH_OBJ);\n }", "function getChambreListId(){\n try {\n $sql = 'select id_chambre, numero_chambre from chambre_hospitalisation order by id_chambre desc';\n $resilt = $this->executeRequete($sql)->fetchAll();\n return $resilt;\n //var_dump($resilt);\n } catch (Exception $ex) {\n echo $ex->getMessage();\n }\n }", "public function ListarDetallesCompras()\n{\n\tself::SetNames();\n\n\tif($_SESSION['acceso'] == \"administrador\") {\n\n\t\t$sql = \" SELECT * FROM detallecompras LEFT JOIN categorias ON detallecompras.categoria = categorias.codcategoria\";\n\t\tforeach ($this->dbh->query($sql) as $row)\n\t\t{\n\t\t\t$this->p[] = $row;\n\t\t}\n\t\treturn $this->p;\n\t\t$this->dbh=null;\n\t}\n\telse {\n\n\t\t$sql = \" SELECT * FROM detallecompras LEFT JOIN categorias ON detallecompras.categoria = categorias.codcategoria WHERE detallecompras.codigo = \".$_SESSION[\"codigo\"].\"\";\n\t\tforeach ($this->dbh->query($sql) as $row)\n\t\t{\n\t\t\t$this->p[] = $row;\n\t\t}\n\t\treturn $this->p;\n\t\t$this->dbh=null;\n\t}\n}", "public function getDetalleSol($sol)\r\n\t{\r\n\t\ttry {\r\n\r\n\t\t\t$detalle = array();\t\t\r\n\t\t\t$this->sql = \"\r\n\t\t\t\tSELECT s.*,CONCAT(p.nombre,' ',p.ap_pat,' ',p.ap_mat) AS name_sol, a.nombre AS area FROM solicitudes AS s\r\n\t\t\t\tINNER JOIN personal AS p ON p.id = s.solicitante\r\n\t\t\t\tINNER JOIN area AS a ON a.id = p.area_id\r\n\t\t\t\tWHERE s.id = ?\r\n\t\t\t\";\r\n\t\t\t$this->stmt = $this->pdo->prepare( $this->sql );\r\n\t\t\t$this->stmt->execute(array($sol));\r\n\t\t\t$solicitud = $this->stmt->fetch(PDO::FETCH_OBJ);\r\n\t\t\t$auto = $solicitud->vehiculo;\r\n\r\n\t\t\t#recuperar los datos del vehiculo\r\n\t\t\t$this->sql = \"\r\n\t\t\t\tSELECT v.*,CONCAT(p.nombre,' ',p.ap_pat,' ',p.ap_mat) AS name_reguardatario \r\n\t\t\t\tFROM vehiculos AS v\r\n\t\t\t\tINNER JOIN personal AS p ON p.id=v.resguardatario\r\n\t\t\t\tWHERE v.id = ?\r\n\t\t\t\";\r\n\t\t\t$this->stmt = $this->pdo->prepare( $this->sql );\r\n\t\t\t$this->stmt->execute(array($auto));\r\n\t\t\t$vehiculo = $this->stmt->fetch(PDO::FETCH_ASSOC);\r\n\t\t\t\r\n\t\t\t#recupera las reparaciones \r\n\t\t\t$this->sql = \"\r\n\t\t\t\tSELECT UPPER(c.nombre) AS falla, t.r_social AS taller \r\n\t\t\t\tFROM reparaciones AS r \r\n\t\t\t\tINNER JOIN catalogo_fallas AS c ON c.id = r.falla \r\n\t\t\t\tINNER JOIN talleres AS t ON t.id = r.taller \r\n\t\t\t\tWHERE r.solicitud = ?\r\n\t\t\t\";\r\n\t\t\t$this->stmt = $this->pdo->prepare( $this->sql );\r\n\t\t\t$this->stmt->execute(array($sol));\r\n\t\t\t$reparaciones = $this->stmt->fetchAll(PDO::FETCH_ASSOC);\r\n\r\n\t\t\t#RECUPERAR INFO DE LA SOLICITUD ATENDIDA\r\n\t\t\t$this->sql = \"\r\n\t\t\t\tSELECT *\r\n\t\t\t\tFROM ingreso_taller\r\n\t\t\t\tWHERE solicitud = ?\r\n\t\t\t\";\r\n\t\t\t$this->stmt = $this->pdo->prepare( $this->sql );\r\n\t\t\t$this->stmt->execute(array($sol));\r\n\t\t\t$atendidas = $this->stmt->fetch(PDO::FETCH_ASSOC);\r\n\t\t\t#Recuperar info de las entregas de vehiculos\r\n\t\t\t$this->sql = \"\r\n\t\t\t\tSELECT *\r\n\t\t\t\tFROM entrega_vehiculos\r\n\t\t\t\tWHERE ingreso = ?\r\n\t\t\t\";\r\n\t\t\t$this->stmt = $this->pdo->prepare( $this->sql );\r\n\t\t\t$this->stmt->execute(array($atendidas['id']));\r\n\t\t\t$cuenta_ev = $this->stmt->rowCount();\r\n\t\t\t$e_vehiculo = $this->stmt->fetch(PDO::FETCH_ASSOC);\r\n\r\n\t\t\t#RECUPERAR LOS SINIESTROS \r\n\t\t\t$this->sql = \"\r\n\t\t\t\tSELECT id, aseguradora, f_hechos, f_entrada, f_salida, observaciones, solicitud_id, estatus\r\n\t\t\t\tFROM siniestros\r\n\t\t\t\tWHERE solicitud_id = ?\r\n\t\t\t\";\r\n\t\t\t$this->stmt = $this->pdo->prepare( $this->sql );\r\n\t\t\t$this->stmt->execute(array($sol));\r\n\t\t\t$siniestros = $this->stmt->fetchAll(PDO::FETCH_ASSOC);\r\n\r\n\t\t\tif ( isset($solicitud) && !empty($solicitud) ) {\r\n\t\t\t\t$detalle['solicitud'] \t= $solicitud;\r\n\t\t\t}else{\r\n\t\t\t\t$solicitud = array('estado'=>'empty','message'=>'Sin atender');\r\n\t\t\t\t$detalle['solicitud'] \t= $solicitud;\r\n\t\t\t}\r\n\t\t\tif ( isset($vehiculo) && !empty($vehiculo) ) {\r\n\t\t\t\t$detalle['vehiculo'] \t= $vehiculo;\r\n\t\t\t}else{\r\n\t\t\t\t$vehiculo = array('estado'=>'empty','message'=>'Sin atender');\r\n\t\t\t\t$detalle['vehiculo'] \t= $vehiculo;\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\tif ( isset($atendidas) && !empty($atendidas) ) {\r\n\t\t\t\t$detalle['atendida'] = $atendidas;\r\n\t\t\t}else{\r\n\t\t\t\t$atendidas = array('estado'=>'empty','message'=>'Sin atender');\r\n\t\t\t\t$detalle['atendida'] = $atendidas;\r\n\t\t\t}\r\n\r\n\t\t\tif ( $cuenta_ev > 0 ) {\r\n\t\t\t\t$detalle['e_vehiculo'] = $e_vehiculo;\r\n\t\t\t}else{\r\n\t\t\t\t$e_vehiculo = array('estado'=>'empty','message'=>'Sin atender');\r\n\t\t\t\t$detalle['e_vehiculo'] = $e_vehiculo;\r\n\t\t\t}\r\n\r\n\t\t\tif ( isset($siniestros) && !empty($siniestros) ) {\r\n\t\t\t\t$detalle['siniestro'] = $siniestros;\r\n\t\t\t}else{\r\n\t\t\t\t$siniestros = array('estado'=>'empty','message'=>'Sin siniestros');\r\n\t\t\t\t$detalle['siniestro'] = $siniestros;\r\n\t\t\t}\r\n\t\t\tfor ($i=0; $i < count($reparaciones) ; $i++) { \r\n\t\t\t\t$detalle['reparaciones'][$i] = $reparaciones[$i];\r\n\t\t\t}\r\n\t\t\t#Agregar las garantias \r\n\t\t\t$this->sql = \"\r\n\t\t\t\tSELECT *\r\n\t\t\t\tFROM garantias\r\n\t\t\t\tWHERE solicitud = ?\r\n\t\t\t\";\r\n\t\t\t$this->stmt = $this->pdo->prepare( $this->sql );\r\n\t\t\t$this->stmt->execute(array($sol));\r\n\t\t\t$garantias = $this->stmt->fetchAll(PDO::FETCH_ASSOC);\r\n\t\t\tif ( isset($garantias) && !empty($garantias) ) {\r\n\t\t\t\t$detalle['garantias'] = $garantias;\r\n\t\t\t}else{\r\n\t\t\t\t$garantias = array('estado'=>'empty','message'=>'Sin garantias');\r\n\t\t\t\t$detalle['garantias'] = $garantias;\r\n\t\t\t}\r\n\t\t\t#Agregar las entregas del taller \r\n\t\t\t\r\n\t\t\treturn json_encode($detalle);\r\n\t\t} catch (Exception $e) {\r\n\t\t\treturn json_encode( array('status'=>'error','message'=>$e->getMessage() ) );\r\n\t\t}\r\n\t}", "public function VerDetallesCompras()\n{\n\tself::SetNames();\n\t$sql = \" SELECT * FROM detallecompras LEFT JOIN categorias ON detallecompras.categoria = categorias.codcategoria WHERE detallecompras.codcompra = ?\";\t\n\t$stmt = $this->dbh->prepare($sql);\n\t$stmt->bindValue(1, trim(base64_decode($_GET[\"codcompra\"])));\n\t$stmt->execute();\n\t$num = $stmt->rowCount();\n\n\twhile($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t{\n\t\t$this->p[]=$row;\n\t}\n\treturn $this->p;\n\t$this->dbh=null;\n}", "public function getDetDetails(){\n\t\t$det_id = $this->input->post('det_id');\n\n\t\t$selectable = $this->db->query(\"SELECT * FROM LZ_DEKIT_US_DT WHERE LZ_DEKIT_US_DT_ID = $det_id\")->result_array();\n\t\t$conds = $this->db->query(\"SELECT ID, COND_NAME FROM LZ_ITEM_COND_MT\")->result_array();\n\t\treturn array('selectable'=>$selectable, 'conds'=>$conds);\n\t}", "function get_depar_all()\n {\n $results = array();\n\n $list_user_all = array();\n //Define request\n $req = \"SELECT * FROM departement\";\n\n //request\n $query = $this->db->query($req);\n\n //If the query succeed\n if($query !== FALSE)\n {\n foreach ($query->result() as $row)\n {\n $depar = new Depar_model;\n $depar->define_depar($row->dp_name);\n array_push($results, $depar);\n } \n }\n else\n {\n $results = FALSE;\n }\n\n\n /* Libération du jeu de résultats */\n \n\n return $results;\n }", "function getAllDataDet($id) {\n \n \t$sql = \"call spGetAllpedLineas($id,@out_status);\";\n \t$rs = $this->db->Execute($sql);\n \t$data = $rs->getArray();\n \t$rs->Close();\n \treturn $data;\n \n }", "public function selectMedecin(){\n $bdd=Connexion::getInstance();\n $req=\" select * from utilisateur u ,specialite s,service ser \n WHERE u.idSpecialite=s.idSpecialite and s.idService=ser.idService\n AND idStatus=\".self::NIVEAU_1;\n $rep=$bdd->query($req);\n return $rep->fetchall();\n \n }", "public function gestores(){\n\t\t$gestores = $this->query(\"SELECT id, Nombre, Clave, supervisor FROM gestors AS Gestor WHERE Activo=1\");\n\t\treturn $gestores;\n\t}", "function get_guias_nominadas(){\n\t\t$conect=ms_conect_server();\t\t\n\t\t$sQuery=\"SELECT * FROM nomina_detalle WHERE 1=1 ORDER BY id_guia\";\n\t\t\n\t\t//echo($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);\t\n}", "function getDatosDeGrupoSolidario(){}", "public function gets() {\r\n $query = $this->db->query(\"SELECT o.*, f.fabrica, p.producto, a.articulo, a.posicion, pl.idplano, pl.plano, pl.revision\r\n FROM ((((ots o INNER JOIN fabricas f ON o.idfabrica = f.idfabrica AND o.activo = '1')\r\n INNER JOIN articulos a ON a.idarticulo = o.idarticulo)\r\n INNER JOIN productos p ON a.idproducto = p.idproducto)\r\n LEFT JOIN planos pl ON a.idplano = pl.idplano)\r\n ORDER BY\r\n o.numero_ot DESC\");\r\n \r\n return $query->result_array();\r\n }", "public function getAll(){\n\t\t$tabDemandes = [];\n\t\t$q = $this->pdo->query(\"SELECT * FROM demande\");\n\t\twhile ($donnee = $q->fetch(PDO::FETCH_ASSOC)) {\n\t\t\t$tabDemandes[] = new Demande($donnee);\n\t\t}\n\t\treturn $tabDemandes;\n\t}", "public function productoDetalle($idProducto){\n\t\t\treturn $this->productoDetalleModelo->productoDetalle($idProducto);\n\t\t}", "public function fellows() {\n\t\t$list = array();\n\t\t$db = Db::getInstance();\n\t\t$req = $db->prepare('SELECT IdSeguace FROM Seguaci WHERE IdUtente = :id');\n\t\t$req->execute(array('id' => $this->id()));\n\t\tforeach ($req->fetchAll() as $result) {\n\t\t\t$list[] = $result['IdSeguace'];\n\t\t}\n\t\treturn $list;\n\t}", "public function listadoUnidadmedida(){\n \n\t\t$data= $this->Model_maestras->BuscarUmedida();\n\t\n\t\techo($data); \n\t \n\n\t}", "function prix_objets_devises_disponibles() {\n\t$devises = array();\n\tforeach (prix_lister_devises() as $cle => $valeur) {\n\t\t$devises[$cle] = $valeur['symbole'];\n\t}\n\treturn $devises;\n}", "function consultarenviodetallesCedula (){\n\t\t$x = $this->pdo->prepare('SELECT En.empresa,En.telefono,En.fechaEnvio,Cl.cedula FROM enviodetalles EN INNER JOIN cliente Cl ON En.cedulaCliente = Cl.cedula');\n\t\t$x->execute();\n\t\treturn $x->fetchALL(PDO::FETCH_OBJ);\n\t}", "public function getMedicaments(){\n\t\t$req = \"select * from medicament order by MED_NOMCOMMERCIAL\";\n\t\t$rs = PdoGsb::$monPdo->query($req);\n\t\t$ligne = $rs->fetchAll();\n\t\treturn $ligne;\n\t}", "function Readto()\n {\n $conexion=floopets_BD::Connect();\n $conexion->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);\n\n $consulta=\"SELECT denuncia.*,tipo_denuncia.* FROM tipo_denuncia INNER JOIN denuncia on tipo_denuncia.td_cod_tipo_denuncia=denuncia.td_cod_tipo_denuncia \";\n // $consulta=\"SELECT * FROM citas WHERE Cod_usu=?\";\n $query=$conexion->prepare($consulta);\n $query->execute(array());\n\n\t$resultado=$query->fetchAll(PDO::FETCH_BOTH);\n\n\tfloopets_BD::Disconnect();\n\n\treturn $resultado;\n }", "public function SelecionarServicosPorFilial($dados){\n\n\n $sql=\"select * from view_servico_filial where idFilial=\".$dados->idFilial;\n\n echo $sql;\n\n $conex = new Mysql_db();\n\n $PDO_conex = $conex->Conectar();\n\n $select = $PDO_conex->query($sql);\n\n $cont=0;\n\n while ($rs=$select->fetch(PDO::FETCH_ASSOC)) {\n $listFiliaisServicoServico[] = new servico_filial();\n\n $listFiliaisServicoServico[$cont]->idFilialServico= $rs['idFilialServico'];\n $listFiliaisServicoServico[$cont]->idFilial= $rs['idFilial'];\n $listFiliaisServicoServico[$cont]->nomeFilial= $rs['nomeFilial'];\n $listFiliaisServicoServico[$cont]->idServico= $rs['idServico'];\n $listFiliaisServicoServico[$cont]->nomeServico= $rs['nome'];\n $listFiliaisServicoServico[$cont]->descricao= $rs['descricao'];\n\n $cont+=1;\n\n }\n\n $conex->Desconectar();\n\n if (isset($listFiliaisServico)) {\n return $listFiliaisServico;\n }\n }", "public function possederListerTous()\n\t{\n\t\t// votre code ici\n\t\treturn Gestion::lister(\"Posseder\");//type array\n\t}", "public function getDetalleDeReporteModel($data){\n\t\t//Consulta SQL para traer las horas de los alumnos del grupo seleccionado segun el id de la unidad\n\t\t$stmt = Conexion::conectar()->prepare(\"SELECT al.matricula as matricula, al.nombre as nombre, al.apellidos as apellidos, g.nombre as nombreGrupo, u.nombre as nombreUnidad, a.nombre as nombreActividad, sc.fecha as fecha, sc.hora as hora\nFROM sesion_cai as sc INNER JOIN actividades as a ON sc.id_actividad = a.id\nINNER JOIN unidades as u on u.id = sc.id_unidad\nINNER JOIN alumnos as al on al.id = sc.id_alumno\nINNER JOIN grupos as g on g.id = al.id_grupo\nWHERE sc.id_alumno = :id_alumno and sc.id_unidad = :id_unidad and sc.asistencia = 1\n\n\t\t\t\");\n\t\t//preparacion de parametros\n\t\t$stmt->bindParam(\":id_alumno\", $data['id_alumno']);\n\t\t$stmt->bindParam(\":id_unidad\", $data['id_unidad']);\n\t\t$stmt->execute(); //ejecucion de la consulta\n\t\treturn $stmt->fetchAll(); //se retorna en un array asociativo el resultado de la consulta\n\t\t$stmt->close();\n\t}", "public function getSpecifics() {}", "function Listeconsommation()\n\t{\n\t\t$cnn = getConnexion('tpi-fictif');\n\t\t$i = 0;\n\t\t//Permet de savoir plus facilement si login correct ou pas\n\t\t$consom = [];\n\t\t$stmt = $cnn -> prepare('SELECT `ID`, `Nom`, `Prix` FROM `consommation`');\n\t\t$stmt -> execute();\n\t\t//Remplissange tab 2 dimensions pour avoir les infos qu'on souhaite\n\t\t//Passage en param plus facile\n\t\twhile ($row = $stmt->fetch(PDO::FETCH_OBJ)) {\n\t\t\t$consom[$i][0] = $row->ID;\n\t\t\t$consom[$i][1] = $row->Nom;\n\t\t\t$consom[$i][2] = $row->Prix;\n\t\t\t$i++;\n\t\t}\n\t\tif(!empty($consom))\n\t\t{\n\t\t\treturn $consom;\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t}", "public function getDesarrollos(){\n\t\t$sql = \"SELECT id_desarrollo, mensaje, archivo, id_tipo_desarrollo, nombres, apellidos FROM desarrollo INNER JOIN clientes USING(id_cliente) ORDER BY id_desarrollo\";\n\t\t$params = array(null);\n\t\treturn Database::getRows($sql, $params);\n\t}", "public function detalleorden($db, $numeroordenpago){\n $query_detalleorden = \"SELECT d.codigoconcepto,d.valorconcepto,o.codigoperiodo,o.codigoestudiante \".\n \" FROM ordenpago o,detalleordenpago d \".\n \" WHERE o.numeroordenpago = '\".$numeroordenpago.\"' \".\n \" AND o.numeroordenpago = d.numeroordenpago \".\n \" AND d.codigotipodetalleordenpago = '2'\";\n $detalleorden = $db->GetAll($query_detalleorden);\n return $detalleorden;\n }", "public function getdepositorDeatils() {\n $select = $this->select()\n ->from(array('wr' => 'withdrawal_request'))\n ->setIntegrityCheck(false)\n ->join(array('u' => 'users'), 'u.user_id = wr.user_id', array(\"u.user_name\"))\n ->where('wr.status =?', '1');\n\n $result = $this->getAdapter()->fetchAll($select);\n if ($result) :\n return $result;\n endif;\n }", "public function listar()\n {\n return $this->request('GET', 'unidadesmedida');\n }", "public function tampilDS()\n\t{\n\t\treturn $this->db->get('daftar_sewa_reklame');\n\t}", "public function listerDemandes() {\n $q = $this->db->prepare('SELECT * FROM DemandeMain WHERE proj_id = :id AND datetime < NOW() - INTERVAL 30 SECOND LIMIT 1');\n $q->bindValue(':id', $this->id, PDO::PARAM_INT);\n $q->execute();\n $row = $q->fetch();\n if(!empty($row)) {\n $this->donnerMain($row['ut_id']);\n $this->deleteDemande($row['ut_id']);\n }\n \n // Then, removing old requests\n $q = $this->db->prepare('DELETE FROM DemandeMain WHERE proj_id = :id AND datetime < NOW() - INTERVAL 30 SECOND');\n $q->bindValue(':id', $this->id, PDO::PARAM_INT);\n $q->execute();\n \n // Now listing current requests\n $q = $this->db->prepare('SELECT * FROM DemandeMain WHERE proj_id = :id');\n $q->bindValue(':id', $this->id, PDO::PARAM_INT);\n $q->execute();\n \n $demandes = array();\n foreach ($q->fetchAll() as $qdemande) {\n $membre = Utilisateur::getM($this->db, intval($qdemande['ut_id']));\n $demande = array($membre,$qdemande['datetime']);\n $demandes[] = $membre;\n }\n return $demandes;\n }", "public function getAll(){\n \n // 1. Establece la conexion con la base de datos y trae todos los generos\n $query = $this->getDb()->prepare(\" SELECT * FROM genero\");\n $query-> execute(); \n return $query->fetchAll(PDO::FETCH_OBJ);\n }", "public function detalhe($objeto) {\n \n $sql = \"\n SELECT \n r.idReserva,\n t.nome AS turmaNome,\n s.predio,\n s.andar,\n s.numero,\n r.data,\n r.hora,\n d.nome AS DisciplinaNome,\n c.nome AS cursoNome,\n r.obs\n FROM \n reservas r\n INNER JOIN\n pessoas p\n ON\n p.idPessoa = r.idPessoa\n INNER JOIN\n turmas t\n ON\n t.idTurma = r.idTurma\n INNER JOIN\n salas s\n ON\n s.idSala = r.idSala\n INNER JOIN\n disciplinas d\n ON\n d.idDisciplina = t.idDisciplina\n INNER JOIN\n cursos c\n ON\n c.idCurso = d.idCurso\n WHERE\n r.idPessoa = '$objeto->idPessoa' and\n r.idReserva\t= '$objeto->idReserva'\n \";\n $query = $this->query->setQuery($sql);\n return $query;\n\n $query = $this->query->setQuery($sql);\n return $query;\n }", "function getEstadisticaDetallado() {\n\t\tglobal $mdb2;\n\t\tglobal $log;\n\t\tglobal $current_usuario_id;\n\t\tglobal $usr;\n\n\t\t# Variables para eventos especiales marcados por el cliente codigo 9.\n\t\t$event = new Event;\n\t\t$usr = new Usuario($current_usuario_id);\n\t\t$usr->__Usuario();\n\t\t$graficoSvg = new GraficoSVG();\n\n\n\t\t$timeZoneId = $usr->zona_horaria_id;\n\t\t$arrTime = Utiles::getNameZoneHor($timeZoneId); \t\t\n\t\t$timeZone = $arrTime[$timeZoneId];\n\t\t$tieneEvento = 'false';\n\t\t$arrayDateStart = array();\t\t\n\t\t$nameFunction = 'EstadisticaDet';\n\t\t$data = null;\n\t\t$ids = null;\n\n\t\t/* TEMPLATE DEL GRAFICO */\n\t\t$T =& new Template_PHPLIB(($this->extra[\"imprimir\"])?REP_PATH_PRINTTEMPLATES:REP_PATH_TABLETEMPLATES);\n\t\t$T->setFile('tpl_tabla', 'comparativo_resumen.tpl');\n\t\t$T->setBlock('tpl_tabla', 'BLOQUE_TITULO_HORARIOS', 'bloque_titulo_horarios');\n\t\t$T->setBlock('tpl_tabla', 'ES_PRIMERO_MONITOR', 'es_primero_monitor');\n\t\t$T->setBlock('tpl_tabla', 'ES_PRIMERO_TOTAL', 'es_primero_total');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_PASOS', 'lista_pasos');\n\t\t$T->setBlock('tpl_tabla', 'BLOQUE_TABLA', 'bloque_tabla');\n\n\t\t$T->setVar('__item_orden', $this->extra[\"item_orden\"]);\n\t\t# Variables para mantenimiento.\n\t\t$T->setVar('__path_jquery_ui', REP_PATH_JQUERY_UI);\n\t\n\t\t$horarios = array($usr->getHorario($this->horario_id));\n\t\tif ($this->horario_id != 0) {\n\t\t\t$horarios[] = $usr->getHorario(0);\n\t\t}\n\n\t\t$orden = 1;\n\t\t$T->setVar('bloque_titulo_horarios', '');\n\t\tforeach ($horarios as $horario) {\n\n\t\t\t/* OBTENER LOS DATOS Y PARSEARLO */\n\t\t\t$sql = \"SELECT * FROM reporte.comparativo_resumen_parcial(\".\n\t\t\t\t\tpg_escape_string($current_usuario_id).\",\".\n\t\t\t\t\tpg_escape_string($this->objetivo_id).\", \".\n\t\t\t\t\tpg_escape_string($horario->horario_id).\",' \".\n\t\t\t\t\tpg_escape_string($this->timestamp->getInicioPeriodo()).\"', '\".\n\t\t\t\t\tpg_escape_string($this->timestamp->getTerminoPeriodo()).\"')\";\n\t\t\t$res =& $mdb2->query($sql);\n// \t\t\tprint($sql);\n\t\t\tif (MDB2::isError($res)) {\n\t\t\t\t$log->setError($sql, $res->userinfo);\n\t\t\t\texit();\n\t\t\t}\n\n\t\t\t$row = $res->fetchRow();\n\t\t\t$dom = new DomDocument();\n\t\t\t$dom->preserveWhiteSpace = false;\n\t\t\t$dom->loadXML($row[\"comparativo_resumen_parcial\"]);\n\t\t\t$xpath = new DOMXpath($dom);\n\t\t\tunset($row[\"comparativo_resumen_parcial\"]);\n\n\t\t\tif ($xpath->query('//detalle[@paso_orden]/estadisticas/estadistica')->length == 0) {\n\t\t\t\t$this->resultado = $this->__generarContenedorSinDatos();\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t$conf_objetivo = $xpath->query('/atentus/resultados/propiedades/objetivos/objetivo')->item(0);\n\t\t\t$conf_pasos = $xpath->query(\"paso[@visible=1]\", $conf_objetivo);\n\t\t\t$conf_nodos = $xpath->query('//nodos/nodo');\n\n\t\t\tif(count($horarios) > 1) {\n\t\t\t\t$T->setVar('__item_horario', $this->extra[\"item_orden\"]);\n\t\t\t\t$T->setVar('__horario_orden', $orden);\n\t\t\t\t$T->setVar('__horario_nombre',$horario->nombre);\n\t\t\t\t$T->parse('bloque_titulo_horarios', 'BLOQUE_TITULO_HORARIOS', false);\n\t\t\t}\n\n\t\t\t\n\t\t\t# Obtención de los eventos especiales marcados por el cliente\n\t\t\tforeach ($xpath->query(\"/atentus/resultados/detalles_marcado/detalle/marcado\") as $tag_marcado) {\n\t\t\t$ids = $ids.','.$tag_marcado->getAttribute('mantenimiento_id');\n\t\t\t$marcado = true;\n\t\t\t}\t\t\n\t\t\t\n\t\t\t# Verifica que exista marcado evento cliente.\n\t\t\tif ($marcado == true) {\n\n\t\t\t\t$dataMant = $event->getData(substr($ids, 1), $timeZone);\n\t\t\t\t$character = array(\"{\", \"}\");\n\t\t\t\t$objetives = explode(',',str_replace($character,\"\",($dataMant[0]['objetivo_id'])));\n\t\t\t\t$tieneEvento = 'true';\n\t\t\t\t$encode = json_encode($dataMant);\n\t\t\t\t$nodoId = (string)0;\n\t\t\t\t$T->setVar('__tiene_evento', $tieneEvento);\n\t\t\t\t$T->setVar('__name', $nameFunction);\n\n\t\t\t}\n\n\t\t\t/* LISTA DE MONITORES */\n\t\t\t$linea = 1;\n\t\t\t$T->setVar('lista_pasos', '');\n\t\t\tforeach($conf_nodos as $conf_nodo) {\n\t\t\t\t$primero = true;\n\t\t\t\t$tag_nodo = $xpath->query('//detalle[@nodo_id='.$conf_nodo->getAttribute('nodo_id').']/estadisticas/estadistica')->item(0);\n\n\t\t\t\t/* LISTA DE PASOS */\n\t\t\t\tforeach($conf_pasos as $conf_paso) {\n\t\t\t\t\t$tag_dato = $xpath->query('//detalle[@nodo_id='.$conf_nodo->getAttribute('nodo_id').']/detalles/detalle[@paso_orden='.$conf_paso->getAttribute('paso_orden').']/estadisticas/estadistica')->item(0);\n\t\t\t\t\tif($tag_dato != null) {\n\t\t\t\t\t\t$T->setVar('__print_class', ($linea % 2 == 0)?\"celdaIteracion2\":\"celdaIteracion1\");\n\t\t\t\t\t\t$T->setVar('__class', ($linea % 2 == 0)?\"celdanegra15\":\"celdanegra10\");\n\n\t\t\t\t\t\t$T->setVar('es_primero_monitor', '');\n\t\t\t\t\t\t$T->setVar('es_primero_total', '');\n\t\t\t\t\t\tif ($primero) {\n\t\t\t\t\t\t\t$T->setVar('__monitor_nombre', $conf_nodo->getAttribute('nombre'));\n\t\t\t\t\t\t\t$T->setVar('__monitor_rowspan', $conf_pasos->length);\n\t\t\t\t\t\t\t$T->setVar('__monitor_total_monitoreo', $tag_nodo->getAttribute('cantidad'));\n\t\t\t\t\t\t\t$T->parse('es_primero_monitor', 'ES_PRIMERO_MONITOR', false);\n\t\t\t\t\t\t\t$T->parse('es_primero_total', 'ES_PRIMERO_TOTAL', false);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t$T->setVar('__paso_nombre', $conf_paso->getAttribute(\"nombre\"));\n\t\t\t\t\t\t$T->setVar('__paso_minimo', number_format($tag_dato->getAttribute('tiempo_min'), 3, ',', ''));\n\t\t\t\t\t\t$T->setVar('__paso_maximo', number_format($tag_dato->getAttribute('tiempo_max'), 3, ',', ''));\n\t\t\t\t\t\t$T->setVar('__paso_promedio', number_format($tag_dato->getAttribute('tiempo_prom'), 3, ',', ''));\n\t\t\t\t\t\t$T->setVar('__paso_uptime', number_format($tag_dato->getAttribute('uptime'), 3, ',', ''));\n\t\t\t\t\t\t$T->setVar('__paso_downtime', number_format($tag_dato->getAttribute('downtime'), 3, ',', ''));\n\t\t\t\t\t\t$T->setVar('__paso_no_monitoreo', number_format($tag_dato->getAttribute('sin_monitoreo'), 3, ',', ''));\n\t\t\t\t\t\t$T->setVar('__paso_evento_especial', number_format($tag_dato->getAttribute('marcado_cliente'), 3, ',', ''));\n\n\t\t\t\t\t\t$T->parse('lista_pasos', 'LISTA_PASOS', true);\n\t\t\t\t\t\t$primero = false;\n\t\t\t\t\t\t$linea++;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t$T->parse('bloque_tabla', 'BLOQUE_TABLA', true);\n\t\t\t$orden++;\n\t\t}\n\t\t$this->tiempo_expiracion = (strtotime($xpath->query(\"//fecha_expiracion\")->item(0)->nodeValue) - strtotime($xpath->query(\"//fecha\")->item(0)->nodeValue));\n\t\t$this->resultado = $T->parse('out', 'tpl_tabla');\n\n\t\t# Agrega el acordeon cuando existan eventos.\n\t\tif (count($dataMant)>0){\n\t\t\t$this->resultado.= $graficoSvg->getAccordion($encode,$nameFunction);\n\t\t}\n\t\treturn $this->resultado;\n\t}", "public function VerDetallesKardexProducto()\n\t\t{\n\t\t\tself::SetNames();\n\t\t\t$sql =\"SELECT kardexproductos.codproducto, kardexproductos.codresponsable, kardexproductos.movimiento, kardexproductos.entradas, kardexproductos.salidas, kardexproductos.stockactual, kardexproductos.preciom, kardexproductos.costototal, kardexproductos.documento, kardexproductos.fechakardex, proveedores.nomproveedor as proveedor, clientes.nomcliente as clientes FROM (productos LEFT JOIN kardexproductos ON productos.codproducto=kardexproductos.codproducto) LEFT JOIN proveedores ON proveedores.codproveedor=kardexproductos.codresponsable LEFT JOIN clientes ON clientes.codcliente=kardexproductos.codresponsable WHERE kardexproductos.codproducto = ?\";\n\t\t\t$stmt = $this->dbh->prepare($sql);\n\t\t\t$stmt->execute( array(base64_decode($_GET[\"codproducto\"])) );\n\t\t\t$num = $stmt->rowCount();\n\n\t\t\twhile($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t\t\t{\n\t\t\t\t\t$this->p[]=$row;\n\t\t\t\t}\n\t\t\t\treturn $this->p;\n\t\t\t\t$this->dbh=null;\n\t\t\t}", "public function buscarDetalle($id, $subcat){\n\t\t$conexion = $GLOBALS['conexion'];\t\t\n\t\t$query=\"SELECT * FROM persona WHERE id='$id'\";\n\t\t$enlace=$conexion->query($query);\n\t\twhile($fila=$conexion->fetch_array($enlace)){\n\t\t\t$xml = $fila['xml'];\n\t\t}\n\t\t$data['xml'] = $xml;\n\t\treturn $data;\n\t}", "public function getAllRespTec(){\n\t\t$sql = \"SELECT * FROM responsavel_tecnico;\";\n\t\treturn $this->Model->getData($sql);\n\t}", "function getById($dato=null){\n $id=$dato[0];\n $alumno=$this->model->getById($id);\n\n session_start();\n $_SESSION['id_Alumno']=$alumno->id;\n\n //renderizando la vista de detalles\n $this->view->alumno=$alumno;\n $this->view->render('alumno/detalle');\n }", "public function buscarMotivosDetalhado() {\r\n\r\n $retorno = array();\r\n\r\n $sql = \"\r\n SELECT\r\n mdroid,\r\n mdrdescricao\r\n FROM\r\n motivo_detalhado_reclamacao\r\n WHERE\r\n mdrdt_exclusao IS NULL\r\n ORDER BY\r\n mdrdescricao\";\r\n\r\n if (!$rs = pg_query($this->conn, $sql)) {\r\n throw new ErrorException(self::MENSAGEM_ERRO_PROCESSAMENTO);\r\n }\r\n\r\n while ($row = pg_fetch_object($rs)) {\r\n $retorno[] = $row;\r\n }\r\n\r\n return $retorno;\r\n }", "function get_openstaandeDossiers_namen() {\n $result = $this->db->query(\"SELECT * from islp.view_openstaande_dossiers_hitparade order by opsteller \");\n if (!$result) {\n $this->error(\"Check query in get_openstaandeDossiers_namen in klasse functioneelBeheer_model\");\n }\n while ($row = $result->fetch_assoc()) {\n $rows[] = $row;\n }\n return $rows;\n }", "public function getDetalleCheques()\n\t{\n\t\t// should not be searched.\n\n\t\t$criteria=new CDbCriteria;\n\n\t\t$criteria->compare('id',$this->id);\n\t\t$criteria->compare('fecha',$this->fecha,true);\n\t\t$criteria->compare('pesificadorId',$this->pesificadorId);\n $criteria->compare('montoAcreditar',$this->montoAcreditar);\n $criteria->compare('montoGastos',$this->montoGastos);\n\t\t$criteria->compare('sucursalId',$this->sucursalId);\n $criteria->compare('estado',$this->estado);\n\t\t$criteria->compare('userStamp',$this->userStamp,true);\n\t\t$criteria->compare('timeStamp',$this->timeStamp,true);\n\n\t\treturn new CActiveDataProvider($this, array(\n\t\t\t'criteria'=>$criteria,\n\t\t));\n\t}", "public function DetallesComprasPorId()\n\t{\n\t\tif(base64_decode($_GET['tipoentrada'])==\"PRODUCTO\"){\n\n\t\t\tself::SetNames();\n\t\t\t$sql = \" SELECT * FROM detallecompras LEFT JOIN categorias ON detallecompras.categoria = categorias.codcategoria LEFT JOIN productos ON detallecompras.codproducto = productos.codproducto WHERE detallecompras.coddetallecompra = ?\";\n\t\t\t$stmt = $this->dbh->prepare($sql);\n\t\t\t$stmt->execute( array(base64_decode($_GET[\"coddetallecompra\"])) );\n\t\t\t$num = $stmt->rowCount();\n\t\t\tif($num==0)\n\t\t\t{\n\t\t\t\techo \"\";\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tif($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t\t\t{\n\t\t\t\t\t$this->p[] = $row;\n\t\t\t\t}\n\t\t\t\treturn $this->p;\n\t\t\t\t$this->dbh=null;\n\t\t\t}\n\t\t} else {\n\n\t\t\t$sql = \" SELECT * FROM detallecompras LEFT JOIN ingredientes ON detallecompras.codproducto = ingredientes.codingrediente WHERE detallecompras.coddetallecompra = ?\";\n\t\t\t$stmt = $this->dbh->prepare($sql);\n\t\t\t$stmt->execute( array(base64_decode($_GET[\"coddetallecompra\"])) );\n\t\t\t$num = $stmt->rowCount();\n\t\t\tif($num==0)\n\t\t\t{\n\t\t\t\techo \"\";\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tif($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t\t\t{\n\t\t\t\t\t$this->p[] = $row;\n\t\t\t\t}\n\t\t\t\treturn $this->p;\n\t\t\t\t$this->dbh=null;\n\t\t\t}\n\n\t\t}\n\t}", "public function getRecenzenti(){\n $sth = $this->db->prepare(\"SELECT * FROM UCTY\n WHERE prava LIKE 'recenzent'\");\n $sth->execute();\n $data = $sth->fetchAll();\n return $data;\n }", "function GETDataKelas_All(){\r\n\r\n // Perintah Get Data Kelas\r\n return $this->MKelas->GET();\r\n }", "public function getDetail();", "function showprodetail($iddm){\n $ssp = \"select * from sp_free_hot where idsp = \".$iddm;\n $ssp.= \" order by idsp asc\";\n\n // code show danhmuc cố định\n $conn = getConnection();\n $stmt = $conn->prepare($ssp);\n $stmt->execute();\n $stmt->setFetchMode(PDO::FETCH_ASSOC);\n return $stmt->fetchAll(); // nguyen 1 danh sach ferchAll\n }", "public function getChoisirVisiteur() //cette fonction permet au comptable de choisir un visiteur\n {\n $requetePrepare = PdoGSB::$monPdo->prepare(\n 'SELECT *'\n . 'FROM visiteur'\n //. 'ORDER BY nom'\n );\n $requetePrepare->execute();\n return $requetePrepare->fetchAll();\n\n }", "public function getDiagnosaformItems()\n {\n return Yii::app()->db->createCommand('SELECT diagnosa_id, diagnosa_nama FROM diagnosa_m WHERE diagnosa_aktif=TRUE')->queryAll();\n }", "public function DetalleProductosPorId()\n\t{\n\t\tself::SetNames();\n\t\t$sql = \" SELECT * FROM productos INNER JOIN categorias ON productos.codcategoria = categorias.codcategoria LEFT JOIN proveedores ON productos.codproveedor=proveedores.codproveedor WHERE productos.codproducto = ?\";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->execute( array(base64_decode($_GET[\"codproducto\"])) );\n\t\t$num = $stmt->rowCount();\n\t\tif($num==0)\n\t\t{\n\t\t\techo \"\";\n\t\t}\n\t\telse\n\t\t{\n\t\t\tif($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t\t\t{\n\t\t\t\t\t$this->p[] = $row;\n\t\t\t\t}\n\t\t\t\treturn $this->p;\n\t\t\t\t$this->dbh=null;\n\t\t\t}\n\t\t}", "public static function TraerTodoLosCds()\n\t{\n\t\t$objetoAccesoDato = AccesoDatos::dameUnObjetoAcceso(); \n\t\t$consulta =$objetoAccesoDato->RetornarConsulta(\"select id, titel as titulo, interpret as cantante, jahr as año from cds\");\n\t\t$consulta->execute();\t\t\t\n\t\treturn $consulta->fetchAll(PDO::FETCH_CLASS, \"CD\");\t\t\n\t}", "public function getRealContenidos() {\r\n// FROM contenidos c1 \r\n// JOIN contenidos c2 ON c1.padre=c2.id \r\n// JOIN contenidos c3 ON c2.padre=c3.id \r\n// ORDER BY c1.nombre ASC';\r\n\t\t\t\t$sql = 'SELECT c1.* \r\n FROM contenidos c1 \r\n WHERE padre = 0 \r\n ORDER BY c1.nombre ASC';\r\n \r\n return $this->getList(new SqlQuery($sql));\r\n \r\n }", "function get_diensten() {\n $result = $this->db->query(\"SELECT distinct dienst from islp.view_openstaande_dossiers order by dienst\");\n if (!$result) {\n $this->error(\"Check query in get_diensten in klasse functioneelBeheer_model\");\n }\n while ($row = $result->fetch_assoc()) {\n if (empty($row['dienst'])) {\n $row['dienst'] = '_geen dienst';\n }\n $rows[] = $row;\n }\n return $rows;\n }", "public function detalleEnvio(){\n \n $model = new EnvioModel();\n $detalle = new DetalleModel();\n\n $idEnvio = trim($_REQUEST['id']);\n \n $model->env_id=$idEnvio;\n $envio = $model->getDetalle();\n\n $detalle->det_id = $idEnvio;\n $detalles = $detalle->getDetalle($idEnvio);\n\n $respuesta = [\n 'envio'=>$envio,\n 'detalles' => $detalles\n ];\n $data = ['datos'=> $respuesta];\n\t\treturn view('envio/EnviosDetalle',$data);\n }", "function ListeUtilisateurs(){\r\n\t\t$conn = mysqli_connect(\"localhost\", \"root\", \"\", \"bddfinale\");\r\n\t\t$requete=\"SELECT Pseudo FROM allinformations\";\r\n\t\t$ligne= mysqli_query($conn, $requete);\r\n\t\t$n = mysqli_num_rows($ligne);\r\n\t\t$Tab =array();\t\r\n\t\tif ($n > 0) {\r\n\t\t\twhile ($TabLigne = mysqli_fetch_assoc($ligne)) { \r\n\t\t\t\t$Tab[] = $TabLigne[\"Pseudo\"];\r\n\t\t\t} \r\n\t\t}\t\t\r\n\t\treturn $Tab;\r\n\t\tmysqli_close($conn);\r\n\t\t}", "function getDemandesOfUser($idUser){\r\n $connectService = new ConnectionBDD();\r\n\t $connect = $connectService->connect();\r\n $userResult = mysql_query(\"select login from Utilisateur where id_user = \" . $idUser);\r\n if(mysql_num_rows($userResult) == 0){\r\n mysql_close();\r\n throw new Exception(\"Utilisateur inconnu\");\r\n }\r\n $userPath = \"../v2.0/espace/\" . mysql_result($userResult,0,0) . \"/uploaded/\";\r\n $q = \"select ID_PHOTO_TO_DOWNLOAD,PATH_PHOTO,DATE_DEMANDE, STATUS from DemandePhoto \"\r\n . \" where ID_USER = \" . $idUser . \" order by STATUS,DATE_DEMANDE\";\r\n\t $result = mysql_query($q);\r\n\t $demandes = array();\r\n\t while(($row = mysql_fetch_row($result))!=null){\r\n\t \t$d = new Demande($row[0],$row[1]);\r\n $path = $userPath . \"/\" . substr($row[1],strrpos($row[1],\"/\")+1);\r\n $d->setPathHD($path);\r\n\t \t$d->setStatus($row[3]);\r\n\t \t$demandes[sizeof($demandes)] = $d;\r\n\t }\r\n mysql_close();\r\n return $demandes;\r\n }", "public function listDemarcaciones()\n {\n $list_demarcaciones = \\common\\models\\autenticacion\\Demarcaciones::find()->all();\n\n return $list_demarcaciones;\n }", "function get_puestos(){\r\n\r\n $salida=array();\r\n if($this->controlador()->dep('datos')->tabla('cargo')->esta_cargada()){\r\n $datos = $this->controlador()->dep('datos')->tabla('cargo')->get();\r\n //recupera el nodo al que pertenece el cargo\r\n $id_nodo=$this->controlador()->dep('datos')->tabla('cargo')->get_nodo($datos['id_cargo']); \r\n if($id_nodo<>0){\r\n $salida=$this->controlador()->dep('datos')->tabla('puesto')->get_puestos($id_nodo);\r\n }\r\n }\r\n return $salida;\r\n }", "public function consultarDetalleCirugia($idCirugia){\n\t\t\n\t\t\n\t\t$resultado = array();\n\t\t\n\t\t$conexion = parent::conexionCliente();\n\t\t\n\t\t$query = \"SELECT \n\t\t\t\t\t PDC.idPanelCirugiaDiagnostico, PDC.nombre, PDC.precio\n\t\t\t\t\tFROM\n\t\t\t\t\t tb_panelesCirugiaDiagnosticos AS PDC\n\t\t\t\t\t INNER JOIN\n\t\t\t\t\t tb_diagnosticosCirugias AS DC ON DC.idPanelCirugiaDiagnostico = PDC.idPanelCirugiaDiagnostico\n\t\t\t\t\tWHERE\n\t\t\t\t\t DC.idCirugia = '$idCirugia'\";\n\t\t\n\t\t\t\n\t\tif($res = $conexion->query($query)){\n\t\t\t\n\t\t\twhile ($filas = $res->fetch_assoc()) {\n\t\t\t\t\t\t\t\n\t\t\t\t$resultado[] = $filas;\n\t\t\t\t\t\n\t\t\t}//fin while\n\t\t\t\n\t\t\t/* liberar el conjunto de resultados */\n\t\t\t$res->free();\n\t\t\t\n\t\t}//fin if\n\t\t\n\t\treturn $resultado;\t\t\n\t\t\n\t}" ]
[ "0.75706446", "0.6766317", "0.676306", "0.6670843", "0.6616994", "0.6480164", "0.64022785", "0.6396824", "0.63166064", "0.6307184", "0.62255883", "0.6199601", "0.6192451", "0.6179826", "0.61608446", "0.61008936", "0.60871816", "0.60735637", "0.6069813", "0.60557556", "0.6047218", "0.60319746", "0.60316247", "0.60078317", "0.60074353", "0.6004952", "0.60005236", "0.59617954", "0.595782", "0.5957476", "0.59548867", "0.5946162", "0.59011835", "0.58867615", "0.5886013", "0.58826715", "0.5876536", "0.58641475", "0.5861127", "0.58595955", "0.5852956", "0.5851758", "0.58484226", "0.5833045", "0.5813026", "0.5809644", "0.5798719", "0.5789985", "0.57780504", "0.5769603", "0.5761247", "0.57471764", "0.57417107", "0.5732391", "0.5730523", "0.5729694", "0.5726402", "0.57216823", "0.5721626", "0.57191163", "0.57136846", "0.57085055", "0.57071656", "0.57066876", "0.5698869", "0.5697757", "0.5696758", "0.5693373", "0.5692961", "0.5688198", "0.5681851", "0.56601816", "0.56597495", "0.56582147", "0.56573373", "0.56561625", "0.5653799", "0.5651354", "0.5640137", "0.5639203", "0.56345314", "0.56340986", "0.56243885", "0.56222504", "0.5618065", "0.5616416", "0.5612331", "0.5611949", "0.56106037", "0.5608074", "0.5602681", "0.56024337", "0.5599335", "0.55988926", "0.5594212", "0.5588572", "0.5584939", "0.557416", "0.55687606", "0.55677813" ]
0.58818287
36
Funcion para guardar el detalle de rastreo de la cotizacion
public function guardarRastreo($id_flete, $fecha, $evento, $descripcion, $id_detalle_seguimiento, $id_session) { DB::beginTransaction(); for ($i = 0; $i < count($fecha); $i++) { if ($id_detalle_seguimiento[$i] == null) { $query_detalle_seguimiento = new static; $query_detalle_seguimiento = DB::insert('INSERT INTO ldci.tb_detalle_seguimiento( fecha, evento, detalle, estado, id_flete, usuario_grabacion, fecha_grabacion) VALUES (?, ?, ?, ?, ?, ?, now())', [$fecha[$i], $evento[$i], $descripcion[$i], 1, $id_flete, $id_session]); if (!$query_detalle_seguimiento) { DB::rollBack(); return collect([ 'mensaje' => 'Hubo un error al guardar el detalle de rastreo', 'error' => true ]); } } else { $query_detalle_seguimiento_p = new static; $query_detalle_seguimiento_p = DB::Update("UPDATE ldci.tb_detalle_seguimiento SET fecha=?, evento=?, detalle=?, usuario_modificacion=?, fecha_modificacion=now() WHERE id_detalle_seguimiento=?", [$fecha[$i], $evento[$i], $descripcion[$i], $id_session, $id_detalle_seguimiento[$i]]); if (!$query_detalle_seguimiento_p) { DB::rollBack(); return collect([ 'mensaje' => 'Hubo un error al guardar el detalle de rastreo', 'error' => true ]); } } } DB::commit(); return collect([ 'mensaje' => 'Detalle Rastreo guardada con exito', 'error' => false ]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function guardarReclamo()\n\t\t{\n\t\t}", "function guardarDetalle($detalle){\n\n\t\t$post['_put_movimientointerno_detalle'] = $detalle;\n\t\tlog_message('DEBUG','#TRAZA|TRAZ-COMP-ALMACEN|MOVIMIENTODEPOSITOSRECEP|guardarDetalle($detalle) $post: >> '.json_encode($post));\n\t\t$url = AJST.'/services/asp/ALMDataService/movimientoInterno/detalle';\n\t\t$aux = $this->rest->callAPI(\"PUT\", $url, $post);\n\t\t$aux = json_decode($aux[\"status\"]);\n\t\treturn $aux;\n\t}", "public function guardarRastreoSImagen($id_flete, $tblRastreo, $id_session)\n {\n DB::beginTransaction();\n foreach ($tblRastreo as $evento) {\n if ($evento->Id_detalle_seguimiento == null) {\n $query_detalle_seguimiento = new static;\n $query_detalle_seguimiento = DB::insert('INSERT INTO ldci.tb_detalle_seguimiento(\n fecha, evento, detalle, estado, id_flete, usuario_grabacion, fecha_grabacion)\n VALUES (?, ?, ?, ?, ?, ?, now())', [$evento->Fecha, $evento->Evento, $evento->Descripcion, 1, $id_flete, $id_session]);\n\n if (!$query_detalle_seguimiento) {\n DB::rollBack();\n return collect([\n 'mensaje' => 'Hubo un error al guardar el detalle de rastreo',\n 'error' => true\n ]);\n }\n } else {\n $query_detalle_seguimiento_p = new static;\n $query_detalle_seguimiento_p = DB::Update(\"UPDATE ldci.tb_detalle_seguimiento SET\n fecha=?, evento=?, detalle=?, usuario_modificacion=?, fecha_modificacion=now()\n WHERE id_detalle_seguimiento=?\", [$evento->Fecha, $evento->Evento, $evento->Descripcion, $id_session, $evento->Id_detalle_seguimiento]);\n\n if (!$query_detalle_seguimiento_p) {\n DB::rollBack();\n return collect([\n 'mensaje' => 'Hubo un error al guardar el detalle de rastreo',\n 'error' => true\n ]);\n }\n }\n }\n DB::commit();\n return collect([\n 'mensaje' => 'Detalle Rastreo guardada con exito',\n 'error' => false\n ]);\n }", "public function findPagoDetalleEspectaculo()\r\n\t\t{\r\n\t\t\t$codigoPresupuestario = self::getCodigoPresupuestarioEspectaculoPublico();\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t// Pagos con periodos iguales a cero\r\n\t\t\t$registers = self::findPagoDetallePeriodoIgualCero($codigoPresupuestario, [6]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Espectaculo Publico'));\r\n\t\t\t}\r\n\t\t}", "function getDetalleRegistros($monitor_id, $pagina, $orden = 1) {\n\t\tglobal $mdb2;\n\t\tglobal $log;\n\t\tglobal $current_usuario_id;\n\n\t\t/* OBTENER LOS DATOS Y PARSEARLO */\n\t\t$sql = \"SELECT * FROM reporte.registros(\".\n\t\t\t\tpg_escape_string($current_usuario_id).\", \".\n\t\t\t\tpg_escape_string($this->objetivo_id).\", \".\n\t\t\t\tpg_escape_string($monitor_id).\", \".\n\t\t\t\tpg_escape_string($this->horario_id).\", '\".\n\t\t\t\tpg_escape_string($this->timestamp->getInicioPeriodo()).\"','\".\n\t\t\t\tpg_escape_string($this->timestamp->getTerminoPeriodo()).\"',\".\n\t\t\t\t(($this->extra[\"imprimir\"])?100:12).\", \".\n\t\t\t\tpg_escape_string($pagina).\")\";\n//\t\tprint($sql);\n\n\t\t$res =& $mdb2->query($sql);\n\t\tif (MDB2::isError($res)) {\n\t\t\t$log->setError($sql, $res->userinfo);\n\t\t\texit();\n\t\t}\n\n\t\t$row = $res->fetchRow();\n\t\t$dom = new DomDocument();\n\t\t$dom->preserveWhiteSpace = FALSE;\n\t\t$dom->loadXML($row['registros']);\n\t\t$xpath = new DOMXpath($dom);\n\t\tunset($row[\"registros\"]);\n\n\t\t$conf_objetivo = $xpath->query('/atentus/resultados/propiedades/objetivos/objetivo')->item(0);\n\t\t$conf_nodo = $xpath->query(\"/atentus/resultados/propiedades/nodos/nodo[@nodo_id=$monitor_id]\")->item(0);\n\n\t\t/* SI NO HAY DATOS MOSTRAR MENSAJE */\n\t\tif (!$xpath->query('//datos/dato')->length and $pagina == 1) {\n\t\t\treturn $this->__generarContenedorSinDatos($conf_nodo->getAttribute('nombre'));\n\t\t}\n\n\t\t/* TEMPLATE DEL GRAFICO */\n\t\t$T =& new Template_PHPLIB(($this->extra[\"imprimir\"])?REP_PATH_PRINTTEMPLATES:REP_PATH_TABLETEMPLATES);\n\t\t$T->setFile('tpl_tabla', 'registros_mediciones.tpl');\n\t\t$T->setBlock('tpl_tabla', 'TIENE_MOSTRAR_DETALLES', 'tiene_mostrar_detalles');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_NOMBRES', 'lista_nombres');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_TIPOS', 'lista_tipos');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_PRIORIDAD', 'lista_prioridad');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_RESPUESTAS', 'lista_respuestas');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_REGISTROS', 'lista_registros');\n\n\t\t$T->setVar('__item_id', $this->__item_id);\n\t\t$T->setVar('__item_orden', $this->extra[\"item_orden\"]);\n\n\t\t$T->setVar('__monitor_id', $conf_nodo->getAttribute('nodo_id'));\n\t\t$T->setVar('__monitor_nombre', $conf_nodo->getAttribute('nombre'));\n\t\t$T->setVar('__monitor_orden', $orden);\n\n\t\t$tag_datos = $xpath->query('//detalles/detalle[@nodo_id='.$conf_nodo->getAttribute('nodo_id').']/datos/dato');\n\n\t\t/* LISTA DE REGISTROS DEL MONITOR */\n\t\t$linea = 1;\n\t\t$T->setVar('lista_registros', '');\n\t\tforeach ($tag_datos as $tag_dato) {\n\t\t\t$conf_codigo =$xpath->query(\"/atentus/resultados/propiedades/codigos/codigo[@codigo_id=\".$tag_dato->getAttribute('codigo_id').\"]\")->item(0);\n\t\t\t$tag_registros = $xpath->query('registros/registro', $tag_dato);\n\n\t\t\t$T->setVar('__print_class', ($linea % 2 == 0)?\"celdaIteracion2\":\"celdaIteracion1\");\n\t\t\t$T->setVar('__class', ($linea % 2 == 0)?\"celdanegra15\":\"celdanegra10\");\n\t\t\t$T->setVar('__registro_fecha', $this->timestamp->getFormatearFecha($tag_dato->getAttribute('fecha_inicio'), \"d-m-Y H:i:s\"));\n\t\t\t$T->setVar('__registro_duracion', Utiles::formatDuracion($tag_dato->getAttribute('duracion'), 0));\n\t\t\t$T->setVar('__registro_estado_color', $conf_codigo->getAttribute('color'));\n\t\t\t$T->setVar('__registro_estado_icono', REP_PATH_SPRITE_CODIGO.substr($conf_codigo->getAttribute('icono'), 0, -4));\n\t\t\t$T->setVar('__registro_estado_nombre', $conf_codigo->getAttribute('nombre'));\n\t\t\t$T->setVar('__registro_servidor', $tag_dato->getAttribute('servidor'));\t// A - MX - SOA\n\t\t\t$T->setVar('__registro_primario', $tag_dato->getAttribute('dns_primario'));\t\t// SOA\n\t\t\t$T->setVar('__registro_serial', $tag_dato->getAttribute('serial'));\t\t// SOA\n\t\t\t$T->setVar('__registro_email', $tag_dato->getAttribute('email'));\t\t// DETALLES SOA\n\t\t\t$T->setVar('__registro_refresh', $tag_dato->getAttribute('refresh'));\t// DETALLES SOA\n\t\t\t$T->setVar('__registro_retry', $tag_dato->getAttribute('retry'));\t\t// DETALLES SOA\n\t\t\t$T->setVar('__registro_expire', $tag_dato->getAttribute('expire'));\t\t// DETALLES SOA\n\t\t\t$T->setVar('__registro_minimum', $tag_dato->getAttribute('minimum'));\t// DETALLES SOA\n\n\t\t\t$T->setVar('lista_nombres', '');\n\t\t\tforeach ($tag_registros as $tag_registro) {\n\t\t\t\t$T->setVar('__registro_nombre', ($tag_registro->getAttribute('nombre'))?$tag_registro->getAttribute('nombre'):''); // A\n\t\t\t\t$T->parse('lista_nombres', 'LISTA_NOMBRES', true);\n\t\t\t}\n\t\t\t$T->setVar('lista_tipos', '');\n\t\t\tforeach ($tag_registros as $tag_registro) {\n\t\t\t\t$T->setVar('__registro_tipo', $tag_registro->getAttribute('tipo')?$tag_registro->getAttribute('tipo'):''); // A\n\t\t\t\t$T->parse('lista_tipos', 'LISTA_TIPOS', true);\n\t\t\t}\n\t\t\t$T->setVar('lista_prioridad','');\n\t\t\tforeach ($tag_registros as $tag_registro) {\n\t\t\t\t$T->setVar('__registro_prioridad', ($tag_registro->getAttribute('prioridad'))?$tag_registro->getAttribute('prioridad'):''); // MX\n\t\t\t\t$T->parse('lista_prioridad','LISTA_PRIORIDAD',true);\n\t\t\t}\n\t\t\t$T->setVar('lista_respuestas', '');\n\t\t\tforeach ($tag_registros as $tag_registro) {\n\t\t\t\t$T->setVar('__registro_respuesta', ($tag_registro->getAttribute('respuesta'))?$tag_registro->getAttribute('respuesta'):''); // MX - CHAOS\n\t\t\t\t$T->parse('lista_respuestas', 'LISTA_RESPUESTAS', true);\n\t\t\t}\n\n\t\t\t$T->parse('lista_registros', 'LISTA_REGISTROS', true);\n\t\t\t$linea++;\n\t\t}\n\n\t\t/* FORMATO DE PAGINAS */\n\t\t$T->setVar('__pagina', $pagina);\n\t\t$T->setVar('__pagina_atras', $pagina-1);\n\t\t$T->setVar('__pagina_adelante', $pagina+1);\n\t\t$T->setVar('__disabled_atras', ($pagina==1)?'disabled':'');\n\t\t$T->setVar('__disabled_adelante', (($tag_datos->length<12) ? 'disabled':''));\n\t\t$T->setVar('__class_boton_atras', ($pagina==1)?'spriteButton spriteButton-atras_desactivado':'spriteButton spriteButton-atras');\n\t\t$T->setVar('__class_boton_adelante', (($tag_datos->length<12)?'spriteButton spriteButton-adelante_desactivado':'spriteButton spriteButton-adelante'));\n\n\n\t\tif ($tag_datos->length == 0 and $pagina != 1) {\n\t\t\treturn 0;\n\t\t}\n\n\t\t$T->setVar('tiene_mostrar_detalles', '');\n\n\t\t$tag_subtipo = strtolower( $xpath->query(\"/atentus/resultados/subtipo\")->item(0)->nodeValue );\n\t\tif ($tag_subtipo == \"dns_a\") {\n\t\t\t$T->setVar('__tiene_primario', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_serial', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_detalles', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_prioridad', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_respuestas', 'style=\"display:none;\"');\n\t\t}\n\t\telseif ($tag_subtipo == \"dns_mx\") {\n\t\t\t$T->setVar('__tiene_primario', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_serial', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_detalles', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_nombres', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_tipos', 'style=\"display:none;\"');\n\t\t}\n\t\telseif ($tag_subtipo == \"dns_soa\") {\n\t\t\t$T->setVar('__mostrar', ($_REQUEST[\"mostrar_detalles\"])?0:1);\n\t\t\t$T->setVar('__mostrar_actual', ($_REQUEST[\"mostrar_detalles\"])?1:0);\n\t\t\t$T->setVar('__tiene_detalles', ($_REQUEST[\"mostrar_detalles\"])?'':'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_primario', ($_REQUEST[\"mostrar_detalles\"])?'style=\"display:none;\"':'');\n\t\t\t$T->setVar('__tiene_serial', ($_REQUEST[\"mostrar_detalles\"])?'style=\"display:none;\"':'');\n\t\t\t$T->parse('tiene_mostrar_detalles', 'TIENE_MOSTRAR_DETALLES', false);\n\n\t\t\t$T->setVar('__tiene_nombres', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_tipos', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_prioridad', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_respuestas', 'style=\"display:none;\"');\n\t\t}\n\t\telse {\n\t\t\t$T->setVar('__tiene_servidor', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_primario', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_serial', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_detalles', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_nombres', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_tipos', 'style=\"display:none;\"');\n\t\t\t$T->setVar('__tiene_prioridad', 'style=\"display:none;\"');\n\t\t}\n\n\t\t$this->tiempo_expiracion = (strtotime($xpath->query(\"//fecha_expiracion\")->item(0)->nodeValue) - strtotime($xpath->query(\"//fecha\")->item(0)->nodeValue));\n\n\t\treturn $T->parse('out', 'tpl_tabla');\n\t}", "function guardar_receta($objeto){\n\t// Anti hack\n\t\tforeach ($objeto as $key => $value) {\n\t\t\t$datos[$key]=$this->escapalog($value);\n\t\t}\n\n\t// Guarda la receta y regresa el ID\n\t\t$sql=\"\tINSERT INTO\n\t\t\t\t\tcom_recetas\n\t\t\t\t\t\t(id, nombre, precio, ganancia, ids_insumos, ids_insumos_preparados, preparacion)\n\t\t\t\tVALUES\n\t\t\t\t\t(\".$datos['id_receta'].\", '\".$datos['nombre'].\"',\".$datos['precio_venta'].\",\n\t\t\t\t\t\t\".$datos['margen_ganancia'].\",\n\t\t\t\t\t\t'\".$datos['ids'].\"','\".$datos['ids_preparados'].\"','\".$datos['preparacion'].\"'\n\t\t\t\t\t)\";\n\t\t// return $sql;\n\t\t$result =$this->insert_id($sql);\n\n\t// Guarda la actividad\n\t\t$fecha=date('Y-m-d H:i:s');\n\n\t\t$texto = ($datos['tipo']==1) ? 'receta' : 'insumo preparado' ;\n\t// Valida que exista el empleado si no agrega un cero como id\n\t\t$usuario = (!empty($_SESSION['accelog_idempleado'])) ?$_SESSION['accelog_idempleado'] : 0 ;\n\t\t$sql=\"\tINSERT INTO\n\t\t\t\t\tcom_actividades\n\t\t\t\t\t\t(id, empleado, accion, fecha)\n\t\t\t\tVALUES\n\t\t\t\t\t('',\".$usuario.\",'Agrega \".$texto.\"', '\".$fecha.\"')\";\n\t\t$actividad=$this->query($sql);\n\n\t\treturn $result;\n\t}", "static function rimuoviserie(){\n if(!CUtente::verificalogin())header('Location: /Progetto/Utente/homepagedef');\n else{\n session_start();\n if(!isset($_SESSION['location'])) header('Location: /Progetto/Utente/homepagedef');\n else{\n if(stripos($_SESSION['location'],'Watchlist')!==false && $_SERVER['REQUEST_METHOD'] == \"POST\"){\n $watch=$_POST[\"watchlist\"];\n $serie=$_POST[\"serie\"];\n\n if(FPersistentManager::existCorr($watch,$serie))\n FPersistentManager::deleteCorrispondenze($watch,$serie);\n }\n\n header('Location: /Progetto'.$_SESSION['location']);\n\n }\n //header('Location: /Progetto/Utente/homepagedef');\n\n }\n }", "public function guardar_nuevos() {\n $recursos_a_guardar = array();\n $recursos_chequeados = Input::post('check');\n $descripciones = Input::post('descripcion');\n $activos = Input::post('activo');\n if ($recursos_chequeados) {\n foreach ($recursos_chequeados as $valor) {\n if (empty($descripciones[$valor])) {\n Flash::error('Existen Recursos Seleccionados que no tienen especificada una Descripción');\n return FALSE;\n }\n $data = null;\n $data = $this->recursos_nuevos[$valor];\n $data['descripcion'] = $descripciones[$valor];\n $data['activo'] = $activos[$valor];\n $recursos_a_guardar[] = $data;\n }\n } else {\n return FALSE;\n }\n $this->begin();\n foreach ($recursos_a_guardar as $e) {\n if (!$this->save($e)) {\n $this->rollback();\n return FALSE;\n }\n }\n $this->commit();\n return TRUE;\n }", "public function findPagoDetalleVehiculo()\r\n\t\t{\r\n\t\t\t$codigoPresupuestario = self::getCodigoPresupuestarioVehiculo();\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t// Pagos con periodos mayores a cero\r\n\t\t\t$registers = self::findPagoDetallePeriodoMayorCero($codigoPresupuestario, [3]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Vehiculo periodo mayores a cero'));\r\n\t\t\t}\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t// Pagos con periodos iguales a cero\r\n\t\t\t$registers = self::findPagoDetallePeriodoIgualCero($codigoPresupuestario, [3]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Vehiculo periodo iguales a cero'));\r\n\t\t\t}\r\n\t\t}", "public function detallesrieesgo($_Tipo_persona,$_fecha_tipo,$_IDEmpresa_buscada){\n\t\tif($this->session->userdata('logueado')){\n\t\t\tif($this->session->userdata('IDEmpresa')){\n\t\t\t\t$IDEmpresa=$this->session->userdata('IDEmpresa');\n\t\t\t}else{\n\t\t\t\t$IDEmpresa=$datos->IDEmpresa;\n\t\t\t}\n\t\t\t$n[\"notif\"]=$this->Model_Notificaciones->NumNot($IDEmpresa);\n\t\t\t$this->load->view('head/head_profile',$n);\n\n\t\t}else{\n\t\t\t$this->load->view('head/head');\n\t\t}\n\t\t$date[\"tip\"]=$_Tipo_persona;\n\t\t$date[\"Fecha\"]=$_fecha_tipo;\n\t\t$date[\"perfilbuscado\"]=true;\n\t\t$date[\"datosperfil\"]=$this->Model_Empresa->datosempresa($_IDEmpresa_buscada);\n\t\t$date[\"rec\"]=json_encode($this->Model_Riesgo->detalles($_Tipo_persona,$_fecha_tipo,$_IDEmpresa_buscada));\n\t\t$this->load->view(\"views/newvista/detallesriesgo\",$date);\n\t\t$this->load->view('footer');\n\t}", "function getEstadisticaDetallado() {\n\t\tglobal $mdb2;\n\t\tglobal $log;\n\t\tglobal $current_usuario_id;\n\t\tglobal $usr;\n\n\t\t# Variables para eventos especiales marcados por el cliente codigo 9.\n\t\t$event = new Event;\n\t\t$usr = new Usuario($current_usuario_id);\n\t\t$usr->__Usuario();\n\t\t$graficoSvg = new GraficoSVG();\n\n\n\t\t$timeZoneId = $usr->zona_horaria_id;\n\t\t$arrTime = Utiles::getNameZoneHor($timeZoneId); \t\t\n\t\t$timeZone = $arrTime[$timeZoneId];\n\t\t$tieneEvento = 'false';\n\t\t$arrayDateStart = array();\t\t\n\t\t$nameFunction = 'EstadisticaDet';\n\t\t$data = null;\n\t\t$ids = null;\n\n\t\t/* TEMPLATE DEL GRAFICO */\n\t\t$T =& new Template_PHPLIB(($this->extra[\"imprimir\"])?REP_PATH_PRINTTEMPLATES:REP_PATH_TABLETEMPLATES);\n\t\t$T->setFile('tpl_tabla', 'comparativo_resumen.tpl');\n\t\t$T->setBlock('tpl_tabla', 'BLOQUE_TITULO_HORARIOS', 'bloque_titulo_horarios');\n\t\t$T->setBlock('tpl_tabla', 'ES_PRIMERO_MONITOR', 'es_primero_monitor');\n\t\t$T->setBlock('tpl_tabla', 'ES_PRIMERO_TOTAL', 'es_primero_total');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_PASOS', 'lista_pasos');\n\t\t$T->setBlock('tpl_tabla', 'BLOQUE_TABLA', 'bloque_tabla');\n\n\t\t$T->setVar('__item_orden', $this->extra[\"item_orden\"]);\n\t\t# Variables para mantenimiento.\n\t\t$T->setVar('__path_jquery_ui', REP_PATH_JQUERY_UI);\n\t\n\t\t$horarios = array($usr->getHorario($this->horario_id));\n\t\tif ($this->horario_id != 0) {\n\t\t\t$horarios[] = $usr->getHorario(0);\n\t\t}\n\n\t\t$orden = 1;\n\t\t$T->setVar('bloque_titulo_horarios', '');\n\t\tforeach ($horarios as $horario) {\n\n\t\t\t/* OBTENER LOS DATOS Y PARSEARLO */\n\t\t\t$sql = \"SELECT * FROM reporte.comparativo_resumen_parcial(\".\n\t\t\t\t\tpg_escape_string($current_usuario_id).\",\".\n\t\t\t\t\tpg_escape_string($this->objetivo_id).\", \".\n\t\t\t\t\tpg_escape_string($horario->horario_id).\",' \".\n\t\t\t\t\tpg_escape_string($this->timestamp->getInicioPeriodo()).\"', '\".\n\t\t\t\t\tpg_escape_string($this->timestamp->getTerminoPeriodo()).\"')\";\n\t\t\t$res =& $mdb2->query($sql);\n// \t\t\tprint($sql);\n\t\t\tif (MDB2::isError($res)) {\n\t\t\t\t$log->setError($sql, $res->userinfo);\n\t\t\t\texit();\n\t\t\t}\n\n\t\t\t$row = $res->fetchRow();\n\t\t\t$dom = new DomDocument();\n\t\t\t$dom->preserveWhiteSpace = false;\n\t\t\t$dom->loadXML($row[\"comparativo_resumen_parcial\"]);\n\t\t\t$xpath = new DOMXpath($dom);\n\t\t\tunset($row[\"comparativo_resumen_parcial\"]);\n\n\t\t\tif ($xpath->query('//detalle[@paso_orden]/estadisticas/estadistica')->length == 0) {\n\t\t\t\t$this->resultado = $this->__generarContenedorSinDatos();\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t$conf_objetivo = $xpath->query('/atentus/resultados/propiedades/objetivos/objetivo')->item(0);\n\t\t\t$conf_pasos = $xpath->query(\"paso[@visible=1]\", $conf_objetivo);\n\t\t\t$conf_nodos = $xpath->query('//nodos/nodo');\n\n\t\t\tif(count($horarios) > 1) {\n\t\t\t\t$T->setVar('__item_horario', $this->extra[\"item_orden\"]);\n\t\t\t\t$T->setVar('__horario_orden', $orden);\n\t\t\t\t$T->setVar('__horario_nombre',$horario->nombre);\n\t\t\t\t$T->parse('bloque_titulo_horarios', 'BLOQUE_TITULO_HORARIOS', false);\n\t\t\t}\n\n\t\t\t\n\t\t\t# Obtención de los eventos especiales marcados por el cliente\n\t\t\tforeach ($xpath->query(\"/atentus/resultados/detalles_marcado/detalle/marcado\") as $tag_marcado) {\n\t\t\t$ids = $ids.','.$tag_marcado->getAttribute('mantenimiento_id');\n\t\t\t$marcado = true;\n\t\t\t}\t\t\n\t\t\t\n\t\t\t# Verifica que exista marcado evento cliente.\n\t\t\tif ($marcado == true) {\n\n\t\t\t\t$dataMant = $event->getData(substr($ids, 1), $timeZone);\n\t\t\t\t$character = array(\"{\", \"}\");\n\t\t\t\t$objetives = explode(',',str_replace($character,\"\",($dataMant[0]['objetivo_id'])));\n\t\t\t\t$tieneEvento = 'true';\n\t\t\t\t$encode = json_encode($dataMant);\n\t\t\t\t$nodoId = (string)0;\n\t\t\t\t$T->setVar('__tiene_evento', $tieneEvento);\n\t\t\t\t$T->setVar('__name', $nameFunction);\n\n\t\t\t}\n\n\t\t\t/* LISTA DE MONITORES */\n\t\t\t$linea = 1;\n\t\t\t$T->setVar('lista_pasos', '');\n\t\t\tforeach($conf_nodos as $conf_nodo) {\n\t\t\t\t$primero = true;\n\t\t\t\t$tag_nodo = $xpath->query('//detalle[@nodo_id='.$conf_nodo->getAttribute('nodo_id').']/estadisticas/estadistica')->item(0);\n\n\t\t\t\t/* LISTA DE PASOS */\n\t\t\t\tforeach($conf_pasos as $conf_paso) {\n\t\t\t\t\t$tag_dato = $xpath->query('//detalle[@nodo_id='.$conf_nodo->getAttribute('nodo_id').']/detalles/detalle[@paso_orden='.$conf_paso->getAttribute('paso_orden').']/estadisticas/estadistica')->item(0);\n\t\t\t\t\tif($tag_dato != null) {\n\t\t\t\t\t\t$T->setVar('__print_class', ($linea % 2 == 0)?\"celdaIteracion2\":\"celdaIteracion1\");\n\t\t\t\t\t\t$T->setVar('__class', ($linea % 2 == 0)?\"celdanegra15\":\"celdanegra10\");\n\n\t\t\t\t\t\t$T->setVar('es_primero_monitor', '');\n\t\t\t\t\t\t$T->setVar('es_primero_total', '');\n\t\t\t\t\t\tif ($primero) {\n\t\t\t\t\t\t\t$T->setVar('__monitor_nombre', $conf_nodo->getAttribute('nombre'));\n\t\t\t\t\t\t\t$T->setVar('__monitor_rowspan', $conf_pasos->length);\n\t\t\t\t\t\t\t$T->setVar('__monitor_total_monitoreo', $tag_nodo->getAttribute('cantidad'));\n\t\t\t\t\t\t\t$T->parse('es_primero_monitor', 'ES_PRIMERO_MONITOR', false);\n\t\t\t\t\t\t\t$T->parse('es_primero_total', 'ES_PRIMERO_TOTAL', false);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t$T->setVar('__paso_nombre', $conf_paso->getAttribute(\"nombre\"));\n\t\t\t\t\t\t$T->setVar('__paso_minimo', number_format($tag_dato->getAttribute('tiempo_min'), 3, ',', ''));\n\t\t\t\t\t\t$T->setVar('__paso_maximo', number_format($tag_dato->getAttribute('tiempo_max'), 3, ',', ''));\n\t\t\t\t\t\t$T->setVar('__paso_promedio', number_format($tag_dato->getAttribute('tiempo_prom'), 3, ',', ''));\n\t\t\t\t\t\t$T->setVar('__paso_uptime', number_format($tag_dato->getAttribute('uptime'), 3, ',', ''));\n\t\t\t\t\t\t$T->setVar('__paso_downtime', number_format($tag_dato->getAttribute('downtime'), 3, ',', ''));\n\t\t\t\t\t\t$T->setVar('__paso_no_monitoreo', number_format($tag_dato->getAttribute('sin_monitoreo'), 3, ',', ''));\n\t\t\t\t\t\t$T->setVar('__paso_evento_especial', number_format($tag_dato->getAttribute('marcado_cliente'), 3, ',', ''));\n\n\t\t\t\t\t\t$T->parse('lista_pasos', 'LISTA_PASOS', true);\n\t\t\t\t\t\t$primero = false;\n\t\t\t\t\t\t$linea++;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t$T->parse('bloque_tabla', 'BLOQUE_TABLA', true);\n\t\t\t$orden++;\n\t\t}\n\t\t$this->tiempo_expiracion = (strtotime($xpath->query(\"//fecha_expiracion\")->item(0)->nodeValue) - strtotime($xpath->query(\"//fecha\")->item(0)->nodeValue));\n\t\t$this->resultado = $T->parse('out', 'tpl_tabla');\n\n\t\t# Agrega el acordeon cuando existan eventos.\n\t\tif (count($dataMant)>0){\n\t\t\t$this->resultado.= $graficoSvg->getAccordion($encode,$nameFunction);\n\t\t}\n\t\treturn $this->resultado;\n\t}", "private function aprobarDetalleSolicitud()\r\n {\r\n $result = false;\r\n $idGenerado = 0;\r\n // modelo de InscripcionSucursal.\r\n $modelInscripcion = self::findInscripcionSucursal();\r\n if ( $modelInscripcion !== null ) {\r\n if ( $modelInscripcion['id_contribuyente'] == $this->_model->id_contribuyente ) {\r\n $result = self::updateSolicitudInscripcion($modelInscripcion);\r\n if ( $result ) {\r\n $idGenerado = self::crearContribuyente($modelInscripcion);\r\n if ( $idGenerado > 0 ) {\r\n $result = true;\r\n } else {\r\n $result = false;\r\n }\r\n }\r\n } else {\r\n self::setErrors(Yii::t('backend', 'Error in the ID of taxpayer'));\r\n }\r\n } else {\r\n self::setErrors(Yii::t('backend', 'Request not find'));\r\n }\r\n\r\n return $result;\r\n }", "public function acessarRelatorios(){\n\n }", "public function getRegraLancamento($iCodigoDocumento, $iCodigoLancamento, ILancamentoAuxiliar $oLancamentoAuxiliar) {\n\n $iAno = db_getsession(\"DB_anousu\");\n $sChaveRegistryLancamentos = \"{iCodigoDocumento}{$iCodigoLancamento}\";\n $aDadosTransacao = array();\n\n if (!$aDadosTransacao = DBRegistry::get($sChaveRegistryLancamentos)) {\n\n $oDaoTransacao = db_utils::getDao('contranslr');\n $sWhere = \" c45_coddoc = {$iCodigoDocumento}\";\n $sWhere .= \" and c45_anousu = {$iAno}\";\n $sWhere .= \" and c46_seqtranslan = {$iCodigoLancamento}\";\n\n $sSqlTransacao = $oDaoTransacao->sql_query(null, \"*\", 'c47_compara asc', $sWhere);\n $rsTransacao = $oDaoTransacao->sql_record($sSqlTransacao);\n if ($oDaoTransacao->numrows > 0) {\n\n $aDadosTransacao = db_utils::getCollectionByRecord($rsTransacao);\n DBRegistry::add($sChaveRegistryLancamentos, $aDadosTransacao);\n }\n }\n\n $aTransacoes = array();\n foreach ($aDadosTransacao as $oDadosTransacao) {\n\n switch ($oDadosTransacao->c46_ordem) {\n\n case 1:\n\n if ($oDadosTransacao->c47_compara == 4 ) {\n\n if ($oDadosTransacao->c47_ref == $oLancamentoAuxiliar->getCodigoContaOrcamento()) {\n\n $iContaCredito = $oDadosTransacao->c47_credito;\n $iContaDebito = $oLancamentoAuxiliar->getContaDebito();\n if ($oLancamentoAuxiliar->isEstorno()) {\n\n $iContaDebito = $oDadosTransacao->c47_debito;\n $iContaCredito = $oLancamentoAuxiliar->getContaCredito();\n }\n $oRegraLancamentoContabil = new RegraLancamentoContabil();\n $oRegraLancamentoContabil->setContaCredito($iContaCredito);\n $oRegraLancamentoContabil->setContaDebito($iContaDebito);\n $aTransacoes[] = $oRegraLancamentoContabil;\n }\n } else {\n\n $oRegraLancamentoContabil = new RegraLancamentoContabil();\n $oRegraLancamentoContabil->setContaCredito($oLancamentoAuxiliar->getContaCredito());\n $oRegraLancamentoContabil->setContaDebito($oLancamentoAuxiliar->getContaDebito());\n $aTransacoes[] = $oRegraLancamentoContabil;\n }\n break;\n\n case 2:\n\n if(count($aDadosTransacao) == 1) {\n\n $aTransacoes[] = new RegraLancamentoContabil($oDadosTransacao->c47_seqtranslr);\n break;\n }\n\n $oReceitaContabil = ReceitaContabilRepository::getReceitaByCodigo($oLancamentoAuxiliar->getCodigoReceita(), $iAno);\n $sEstrutural = substr($oReceitaContabil->getContaOrcamento()->getEstrutural(), 0, 3);\n\n if ($oDadosTransacao->c47_compara == RegraLancamentoContabil::COMPARA_CP_IGUAL) {\n\n if ($sEstrutural == \"917\" && $oReceitaContabil->getCaracteristicaPeculiar() == $oDadosTransacao->c47_ref) {\n return new RegraLancamentoContabil($oDadosTransacao->c47_seqtranslr);\n } else if ($sEstrutural[0] == \"9\" && $oReceitaContabil->getCaracteristicaPeculiar() == $oDadosTransacao->c47_ref) {\n return new RegraLancamentoContabil($oDadosTransacao->c47_seqtranslr);\n }\n }\n\n if ($oDadosTransacao->c47_compara == RegraLancamentoContabil::COMPARA_CP_DIFERENTE) {\n\n if ($sEstrutural[0] == \"9\" && ($oReceitaContabil->getCaracteristicaPeculiar() != $oDadosTransacao->c47_ref)) {\n return new RegraLancamentoContabil($oDadosTransacao->c47_seqtranslr);\n }\n }\n\n if ($sEstrutural[0] != \"9\" && $oDadosTransacao->c47_compara == 0) {\n return new RegraLancamentoContabil($oDadosTransacao->c47_seqtranslr);\n }\n\n break;\n\n default:\n\n $oEventoContabilLancamento = EventoContabilLancamentoRepository::getEventoByCodigo($oDadosTransacao->c46_seqtranslan);\n if (count($oEventoContabilLancamento->getRegrasLancamento()) > 1) {\n\n $sMensagemException = \"Mais de uma conta débito/crédito configurada para o \";\n $sMensagemException .= \"lançamento [{$iCodigoLancamento}] de ordem {$oDadosTransacao->c46_ordem}.\";\n throw new BusinessException($sMensagemException);\n }\n $aTransacoes[] = new RegraLancamentoContabil($oDadosTransacao->c47_seqtranslr);\n\n }\n }\n\n if (count($aTransacoes) > 1) {\n\n $sMensagemException = \"Mais de uma conta débito/crédito Encontradas para \";\n $sMensagemException .= \"lançamento [{$iCodigoLancamento}] do documento {$iCodigoDocumento}.\";\n throw new BusinessException($sMensagemException);\n }\n\n /**\n * Nao encontrou regra de lancamento para o documento\n */\n if (count($aTransacoes) == 0) {\n return false;\n }\n\n return $aTransacoes[0];\n }", "function RellenarDesarrolloReunion()\r\n {\r\n $i = 1;\r\n\r\n foreach ($this->eventos as $evento)\r\n {\r\n if (Doctrine_Core::getTable('SAF_EVENTO_CONVOCATORIA')->getEventoConvocatoria($evento, $this->convocatoria)->getStatus() == 'analizado')\r\n {\r\n $this->AddPage();\r\n\r\n if ($i == 1)\r\n {\r\n $i++;\r\n $this->Imprimir('DESARROLLO DE LA REUNIÓN', 10, 12, 18);\r\n }\r\n\r\n $this->RellenarDescripcionDelEvento($evento);\r\n\r\n $this->RellenarFotosDelEvento($evento);\r\n\r\n $this->RellenarRazonesDelEvento($evento);\r\n\r\n $varios = Doctrine_Core::getTable('SAF_VARIO')->findByIdEvento($evento->getID());\r\n\r\n $this->RellenarBitacoraDelEvento($varios);\r\n\r\n $this->RellenarAccionesYRecomendacionesDelEvento($varios);\r\n\r\n $this->RellenarCompromisosDelEvento($varios);\r\n }\r\n }\r\n }", "public function findDetalleRecolectado()\r\n\t\t{\r\n\t\t\t$findModel = self::findDetalleRecaudacionModel();\r\n\t\t\treturn $findModel->orderBy([\r\n\t\t\t\t\t\t\t\t\t'lapso' => SORT_ASC,\r\n\t\t\t\t\t\t\t\t\t'fecha_pago' => SORT_ASC,\r\n\t\t\t\t\t\t\t\t\t'codigo' => SORT_ASC,\r\n\t\t\t\t\t\t\t\t])\r\n\t\t\t\t\t\t\t ->asArray()\r\n\t\t\t\t \t\t ->all();\r\n\t\t}", "private function guardarConsultaRecaudacion($registers)\r\n\t\t{\r\n\t\t\tself::setConexion();\r\n\t\t\t$this->_conn->open();\r\n\t\t\t$this->_transaccion = $this->_conn->beginTransaction();\r\n\r\n\t\t\t// Lo siguiente retorna un arreglo de los taributos de la entidad \"recaudacion-detallada\"\r\n\t\t\t// [\r\n\t\t\t// \t\t[0] => attribute0,\r\n\t\t\t// \t\t[1] => attribute1,\r\n\t\t\t// \t\t.\r\n\t\t\t// \t\t.\r\n\t\t\t// \t\t[N] => attributeN,\r\n\t\t\t// \t]\r\n\t\t\t$attributes = $this->attributes();\r\n\t\t\t$tabla = $this->tableName();\r\n\t\t\t$result = $this->_conexion->guardarLoteRegistros($this->_conn, $tabla, $attributes, $registers);\r\n\t\t\tif ( $result ) {\r\n\t\t\t\t$this->_transaccion->commit();\r\n\t\t\t} else {\r\n\t\t\t\t$this->_transaccion->rollBack();\r\n\t\t\t}\r\n\t\t\t$this->_conn->close();\r\n\t\t\treturn $result;\r\n\t\t}", "function getRegistros() {\n\t\tif (isset($this->extra[\"monitor_id\"]) and isset($this->extra[\"pagina\"])) {\n\t\t\t$this->resultado = $this->getDetalleRegistros($this->extra[\"monitor_id\"], $this->extra[\"pagina\"]);\n\t\t\treturn;\n\t\t}\n\n\t\tglobal $mdb2;\n\t\tglobal $log;\n\t\tglobal $current_usuario_id;\n\n\t\t/* OBTENER LOS DATOS Y PARSEARLO */\n\t\t$sql = \"SELECT unnest(_nodos_id) AS nodo_id FROM _nodos_id(\".\n\t\t\t pg_escape_string($current_usuario_id).\", \".\n\t\t\t pg_escape_string($this->objetivo_id).\", '\".\n\t\t\t pg_escape_string($this->timestamp->getInicioPeriodo()).\"','\".\n\t\t\t pg_escape_string($this->timestamp->getTerminoPeriodo()).\"')\";\n\t\t//print($sql);\n\t\t$res =& $mdb2->query($sql);\n\t\tif (MDB2::isError($res)) {\n\t\t\t$log->setError($sql, $res->userinfo);\n\t\t\texit();\n\t\t}\n\t\t$monitor_ids = array();\n\t\twhile($row = $res->fetchRow()) {\n\t\t\t$monitor_ids[] = $row[\"nodo_id\"];\n\t\t}\n\n\t\t/* SI NO HAY DATOS MOSTRAR MENSAJE */\n\t\tif (count($monitor_ids) == 0) {\n\t\t\t$this->resultado = $this->__generarContenedorSinDatos();\n\t\t\treturn;\n\t\t}\n\n\t\t/* TEMPLATE DEL GRAFICO */\n\t\t$T =& new Template_PHPLIB(REP_PATH_TABLETEMPLATES);\n\t\t$T->setFile('tpl_tabla', 'contenedor_tabla.tpl');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_CONTENEDORES', 'lista_contenedores');\n\n\t\t/* LISTA DE MONITORES */\n\t\t$orden = 1;\n\t\tforeach ($monitor_ids as $monitor_id) {\n\t\t\t$T->setVar('__contenido_id', 'reg_'.$monitor_id);\n\t\t\t$T->setVar('__contenido_tabla', $this->getDetalleRegistros($monitor_id, 1, $orden));\n\t\t\t$T->parse('lista_contenedores', 'LISTA_CONTENEDORES', true);\n\t\t\t$orden++;\n\t\t}\n\n\t\t$this->resultado = $T->parse('out', 'tpl_tabla');\n\t}", "function finalizar_1(){\n if (isset($_GET['id'])) {\n $id = $_GET['id']; \n finalizar();\n global $treinamento;\n $treinamento = find('treinamentos', $id);\n }\n}", "public function findPagoDetalleMontoNegativo()\r\n\t\t{\r\n\t\t\t$registers = self::findPagoDetalleMontoNegativoModel();\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Montos Negativos'));\r\n\t\t\t}\r\n\t\t}", "public function findPagoDetalleAseo()\r\n\t\t{\r\n\t\t\t$codigoPresupuestario = self::getCodigoPresupuestarioAseo();\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t// Pagos con periodos mayores a cero\r\n\t\t\t$registers = self::findPagoDetallePeriodoMayorCeroInmueble($codigoPresupuestario, [12]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Aseo periodo mayores a cero'));\r\n\t\t\t}\r\n\r\n\t\t\t//$registers = [];\r\n\t\t\t// Pagos con periodos iguales a cero\r\n\t\t\t// $registers = self::findPagoDetallePeriodoIgualCeroInmueble($codigoPresupuestario, [12]);\r\n\t\t\t// if ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t// \tself::errorCargarData(Yii::t('backend', 'Aseo periodo iguales a cero'));\r\n\t\t\t// }\r\n\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t$registers = self::findPagoDetalleVarioImpuestoModel([12]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Aseo por varios'));\r\n\t\t\t}\r\n\r\n\t\t}", "public function listado_reservaciones(){\n $listado = [];\n #Recorro la jornada....\n $resultados = $this->mongo_db->order_by(array('_id' => 'DESC'))->where(array('eliminado'=>false))->get(\"reservaciones\");\n\n foreach ($resultados as $clave => $valor) {\n \n //--\n #Verifico que la jornada sea del dia de hoy\n $fecha_hora_inicio = $valor[\"fecha\"]->toDateTime();\n\n $fecha_hora_ini = $fecha_hora_inicio->format('Y-m-d');\n\n $fecha_actual = date('Y-m-d');\n\n //var_dump($fecha_actual);die('');\n //Solo se muestran las rservaciones de hoy...\n if($fecha_hora_ini==$fecha_actual){\n $valores = $valor;\n\n $valores[\"id_reservaciones\"] = (string)$valor[\"_id\"]->{'$id'};\n $valores[\"precio\"] = number_format($valores[\"precio\"],2);\n $valores[\"id_membresia\"] = $valor[\"id_membresia\"];\n $id_membresia = new MongoDB\\BSON\\ObjectId($valores[\"id_membresia\"]);\n #Recorro la membresia....\n $res_membresia = $this->mongo_db->order_by(array('_id' => 'DESC'))->where(array('eliminado'=>false,'_id'=>$id_membresia))->get(\"membresia\");\n //-------------------------------------------------------------\n //$valores[\"id_grupo_empresarial\"] = $res_membresia[0][\"id_grupo_empresarial\"];\n $valores[\"n_membresia\"] = $res_membresia[0][\"n_membresia\"];\n\n $valores[\"identificador_prospecto_cliente\"] = $res_membresia[0][\"identificador_prospecto_cliente\"];\n #Consulto datos personales\n $rfc = $res_membresia[0][\"identificador_prospecto_cliente\"];\n $res_dt = $this->mongo_db->order_by(array('_id' => 'DESC'))->where(array('eliminado'=>false,\"rfc_datos_personales\"=>$rfc))->get(\"datos_personales\");\n \n $valores[\"nombre_datos_personales_cliente\"] = $res_dt[0][\"nombre_datos_personales\"];\n \n if(isset($res_dt[0][\"apellido_p_datos_personales\"])){\n $valores[\"nombre_datos_personales_cliente\"].=\" \".$res_dt[0][\"apellido_p_datos_personales\"];\n }\n\n if(isset($res_dt[0][\"apellido_m_datos_personales\"])){\n $valores[\"nombre_datos_personales_cliente\"].= \" \".$res_dt[0][\"apellido_m_datos_personales\"];\n }\n\n #consulto la sala \n $id_sala = new MongoDB\\BSON\\ObjectId($valores[\"id_servicio_sala\"]);\n $res_sala = $this->mongo_db->order_by(array('_id' => 'DESC'))->where(array('eliminado'=>false,'_id'=>$id_sala))->get(\"servicios\");\n $valores[\"sala\"] = $res_sala[0][\"descripcion\"];\n #Consulto usuario\n $id = new MongoDB\\BSON\\ObjectId($valor[\"auditoria\"][0]->cod_user);\n $res_us = $this->mongo_db->where(array('_id'=>$id))->get('usuario');\n $vector_auditoria = reset($valor[\"auditoria\"]);\n $valores[\"fec_regins\"] = $vector_auditoria->fecha->toDateTime();\n $valores[\"correo_usuario\"] = $res_us[0][\"correo_usuario\"];\n //--\n if($valores[\"hora_ingreso\"]!=\"\"){\n //$fecha_inicio = $valor[\"hora_ingreso\"]->toDateTime();\n $fecha_inicio = new DateTime(date(\"Y-m-d g:i a\",$valor[\"hora_ingreso\"]));\n $valores[\"hora_ingreso\"] = $fecha_inicio;\n \n }else{\n $valores[\"hora_ingreso\"] = \"\";\n }\n //--Hora inicio\n if($valores[\"hora_inicio\"]!=\"\"){\n //$fecha_inicio_h = $valor[\"hora_inicio\"]->toDateTime();\n $fecha_inicio_h = new DateTime(date(\"Y-m-d g:i a\",$valor[\"hora_inicio\"]));\n $valores[\"hora_inicio\"] = $fecha_inicio_h;\n \n }else{\n $valores[\"hora_inicio\"] = \"\";\n }\n //--Hora fin \n if($valores[\"hora_fin\"]!=\"\"){\n //$fecha_fin_h = $valor[\"hora_fin\"]->toDateTime();\n $fecha_fin_h = new DateTime(date(\"Y-m-d g:i a\" ,$valor[\"hora_fin\"]));\n $valores[\"hora_fin\"] = $fecha_fin_h;\n }else{\n $valores[\"hora_fin\"] = \"\";\n }\n //--\n if($valor[\"hora_salida\"]!='Sin salir'){\n //$fecha_fin = $valor[\"hora_salida\"]->toDateTime();\n $fecha_fin = new DateTime(date(\"Y-m-d g:i a\",$valor[\"hora_salida\"]));\n $valores[\"hora_salida\"] = $fecha_fin;\n }else{\n $valores[\"hora_salida\"] = \"Sin salir\";\n }\n $valores[\"hora_liberada\"] = $valores[\"hora_salida\"];\n $fecha_reservacion = $valor[\"fecha\"]->toDateTime();\n $valores[\"fecha_reservacion\"] = $fecha_reservacion;\n //------------------------------------------------------------\n //$fecha1 = new DateTime($fecha_fin);//fecha inicial\n //$fecha2 = new DateTime($fecha_inicio);//fecha de cierre\n #Calculo de horas contratadas \n $intervalo =$fecha_fin_h->diff($fecha_inicio_h);\n \n if(isset($intervalo)){\n $valores[\"horas_contratadas\"] = $intervalo->format('%H:%i:%s');\n }else{\n $valores[\"horas_contratadas\"] = \"\";\n }\n /*-----------------------------------------------------------------------------*/\n #Calculo de horas consumidas\n if($valores[\"condicion\"]==\"REGISTRADA\"){\n #Si la condicion es registrada: se resta la hora actual a la hora de ingreso\n if($valores[\"hora_ingreso\"]!=\"\"){\n $hoy = new DateTime(\"now\");\n $intervalo2 =$fecha_inicio->diff($hoy);\n $intervaloConsmuidas = $intervalo2;\n if(isset($intervalo2)){\n $valores[\"horas_consumidas\"] = $intervalo2->format('%H:%i:%s');\n }else{\n $valores[\"horas_consumidas\"] = \"\";\n }\n #LAs horas consumidas 2 es la direfencia desde la hora de inicio hasta la hora actual....\n //--Calculo la hora consumida con relacion a la hora de inicio\n $intervalo9 =$fecha_inicio_h->diff($hoy);\n $intervaloConsmuidas2 = $intervalo9;\n if(isset($intervalo9)){\n $valores[\"horas_consumidas2\"] = $intervalo9->format('%H:%i:%s');\n }else{\n $valores[\"horas_consumidas2\"] = \"\";\n }\n //----------\n }else{\n $valores[\"horas_consumidas\"] = \"\";\n $valores[\"horas_consumidas2\"] = \"\";\n } \n } if($valores[\"condicion\"]==\"LIBERADA\"){\n #Si la condicione s liberada: se resta la hora salida a la de ingreso\n $intervalo3 =$fecha_fin->diff($fecha_inicio);\n $intervaloConsmuidas = $intervalo3;\n\n if(isset($intervalo3)){\n $valores[\"horas_consumidas\"] = $intervalo3->format('%H:%i:%s');\n }else{\n $valores[\"horas_consumidas\"] = \"\";\n }\n #LAs horas consumidas 2 es la direfencia desde la hora de inicio hasta la hora actual....\n //--Calculo la hora consumida con relacion a la hora de inicio\n $intervalo10 =$fecha_fin->diff($fecha_inicio_h);\n $intervaloConsmuidas2 = $intervalo10;\n if(isset($intervalo10)){\n $valores[\"horas_consumidas2\"] = $intervalo10->format('%H:%i:%s');\n }else{\n $valores[\"horas_consumidas2\"] = \"\";\n }\n }else if(($valores[\"condicion\"]==\"RESERVADA\")||($valores[\"condicion\"]==\"CANCELADA\")){\n $valores[\"horas_consumidas\"] = \"\";\n $valores[\"horas_consumidas2\"] = \"\";\n }\n //------------------------------------------------------------\n #Horas por consumir\n if(($valores[\"horas_contratadas\"]!=\"\")&&($valores[\"horas_consumidas2\"]!=\"\")){\n //var_dump($intervalo<$intervaloConsmuidas);die('');\n\n $horas_uno = new DateTime($valores[\"horas_contratadas\"]);\n $horas_dos = new DateTime($valores[\"horas_consumidas2\"]);\n #Verifico si se excede\n if($horas_dos>$horas_uno){\n $valores[\"horas_disponibles\"] = \"\";\n }else{\n //----------------------------------------------------------------\n $intervaloDisponibles = $horas_uno->diff($horas_dos);\n $valores[\"horas_disponibles\"] = $intervaloDisponibles->format('%H:%i:%s'); \n /*if($valores[\"horas_disponibles\"]>$valores[\"horas_contratadas\"]){\n $valores[\"horas_disponibles\"] = \"\";\n }*/\n //---------------------------------------------------------------\n }\n \n }else{\n $valores[\"horas_disponibles\"] = \"\";\n }\n //------------------------------------------------------------\n ///xxx\n\n //-------------------------------------------------------------\n # \n $listado[] = $valores;\n }\n //--\n\n }\n return $listado;\n }", "public function traer_reserva_guardada($id){\n\n$pdo = new conectar();\n\n$pdo = $pdo->conexion();\n\n$array_reserva = array();\n\n$contador=0;\n\n$query=\"select * from reservas where reserva_id=:id_reserva\";\n\n$resultado=$pdo->prepare($query);\n\n$resultado->execute(array(\":id_reserva\"=>$id));\n\nwhile($registro = $resultado->fetch(PDO::FETCH_ASSOC)){\n\n$reserva = new objeto_reserva();\n\n$reserva->set_reserva_id($registro['reserva_id']);\n$reserva->set_habitacion_id($registro['habitacion_id']);\n$reserva->set_cliente_id($registro['cliente_id']);\n$reserva->set_fecha_ingreso($registro['fecha_ingreso']);\n$reserva->set_fecha_salida($registro['fecha_salida']);\n$reserva->set_valor($registro['valor']);\n$reserva->set_estado($registro['estado']);\n$reserva->set_observacion($registro['observacion']);\n\n$array_reserva[$contador] = $reserva;\n$contador++;\n\n}\n\nreturn $array_reserva;\n\n}", "function delMercancia($arregloDatos) {\n $unaReversion = new Levante();\n $unaReversion->reversarRetiroUbicaciones($arregloDatos);\n $this->controlarTransaccion($arregloDatos);\n $this->datos->delMercancia($arregloDatos);\n $arregloDatos[plantilla] = 'levanteCuerpoRetiro.html';\n $arregloDatos[thisFunction] = 'getCuerpoRetiro';\n $this->pantalla->setFuncion($arregloDatos,$this->datos);\n }", "private function guardarVista()\n {\n $request = FrontController::getInstance()->getRequest();\n\n //solo guarda el ultimo requestUri si fue una ruta que el router pudo procesar\n //de lo contrario si alguien pone una ruta del tipo www.mipagina.com/asdkjaskjdASDSss se guardaria\n //por mas que luego se termine en una pagina 404 es preferible que se redireccione por defecto segun perfil.\n if($request->getActionName() != 'redireccion404'){\n $this->historial->request_uri = $request->getRequestUri();\n }\n\n //luego guardo la informacion del nuevo request en el historial\n $this->historial->modulo = $request->getModuleName();\n $this->historial->controlador = $request->getControllerName();\n $this->historial->accion = $request->getActionName();\n\n //Por ultimo guardo los parametros que acompañaban a este request.\n //NOTA IMPORTANTE:\n //Cuando se hace un getParam($key) al request, internamente se fija en los parametros de clase y en los $_GET y $_POST del request\n //Al pasar todos los parametros a sesion a traves de getParams() se unen TODOS los parametros:\n //Los internos (Zend los llama userland parameters) + los $_GET + los $_POST. Todos en un solo array (tienen prioridad los internos).\n //En ultima instancia, para el metodo cliente que ejecute getParam($key) en el request luego de una redireccion sera transparente\n //y no habra diferencia. La diferencia es solo interna, cuando se haga una redireccion al ultimo request guardado en sesion\n //los parametros seran todos internos (cuando posiblemente en el request original algunos fueran de $_GET o $_POST). Very tricky uh?\n //$this->historial->params = array();\n //borro los parametros de codigo de error y de mensaje antiguamente usados porque estarian desactualizados\n //luego de una posible redireccion\n $request->setParam('codigoError', null)\n ->setParam('msgInfo', null)\n ->setParam('msgError', null)\n ->setParam('msgCorrecto', null);\n //guardo los parametros en el historial\n $this->historial->params = $request->getParams();\n\n return $this;\n }", "public function GuardarRotacionesMasivasEstudiante($arrayRotacionEstudiante){\n global $userid,$db;\n //print_r($arrayRotacionEstudiante);\n /////cadena de exclusion de alumnos en agregado\n \n $cont=0;\n $cant_alumnosregistrados=0;\n $alumnosexcluidos=\"\";\n $a_vectt['detalles']=\"ERROR\";\n if(isset($arrayRotacionEstudiante[\"regidestudiantes\"])&&(count($arrayRotacionEstudiante[\"regidestudiantes\"])>0)){\n $cant_alumnosregistrados=count($arrayRotacionEstudiante[\"regidestudiantes\"]);\n $alumnosexcluidos=\" AND est.idestudiantegeneral NOT IN(\";\n foreach($arrayRotacionEstudiante[\"regidestudiantes\"] as $itemidalumno){\n if($cont==0)\n $cad=$itemidalumno;\n else\n $cad=$cad.\",\".$itemidalumno;\n $cont++;\n } \n $alumnosexcluidos.=$cad.\")\"; \n }\n \n \n $max_idrotacionesantinsert= &$db->GetRow(\"SELECT max(RotacionEstudianteid)as maximoid FROM RotacionEstudiantes;\");\n ///////fin de generacion de cadena\n if(isset($arrayRotacionEstudiante[\"idsubgrupo\"])&&($arrayRotacionEstudiante[\"idsubgrupo\"]!=\"\")){\n $selectinsert=\"SELECT est.idestudiantegeneral,\n '\".$arrayRotacionEstudiante[\"codmateria\"].\"' AS codigomateria,\n '\".$arrayRotacionEstudiante[\"idconvenio\"].\"' aS idsiq_convenio,\n '\".$arrayRotacionEstudiante[\"idubicacion\"].\"' AS IdUbicacionInstitucion ,\n '\".$arrayRotacionEstudiante[\"idservicio\"].\"' AS ServicioRotacionId,\n '\".$arrayRotacionEstudiante[\"fechaingreso\"].\"' AS FechaIngreso,\n '\".$arrayRotacionEstudiante[\"fechaegreso\"].\"' AS FechaEgreso,\n '100' AS codigoestado,\n '\".$arrayRotacionEstudiante[\"usuariocreacion\"].\"' AS UsuarioCreacion,\n NOW() AS FechaCreacion,\n '\".$arrayRotacionEstudiante[\"idedorotacion\"].\"' AS EstadoRotacionId,\n '\".$arrayRotacionEstudiante[\"codperiodo\"].\"' AS codigoperiodo,\n '\".$arrayRotacionEstudiante[\"codcarrera\"].\"' AS codigocarrera,\n '\".$arrayRotacionEstudiante[\"diasrotacion\"].\"' AS TotalDias\n FROM\n SubgruposEstudiantes AS subest\n INNER JOIN estudiantegeneral AS est ON subest.idestudiantegeneral = est.idestudiantegeneral\n WHERE\n subest.SubgrupoId = '\".$arrayRotacionEstudiante[\"idsubgrupo\"].\"'\n \".$alumnosexcluidos.\" \";\n }else{\n $selectinsert=\"SELECT est.idestudiantegeneral,\n '\".$arrayRotacionEstudiante[\"codmateria\"].\"' AS codigomateria,\n '\".$arrayRotacionEstudiante[\"idconvenio\"].\"' aS idsiq_convenio,\n '\".$arrayRotacionEstudiante[\"idubicacion\"].\"' AS IdUbicacionInstitucion ,\n '\".$arrayRotacionEstudiante[\"idservicio\"].\"' AS ServicioRotacionId,\n '\".$arrayRotacionEstudiante[\"fechaingreso\"].\"' AS FechaIngreso,\n '\".$arrayRotacionEstudiante[\"fechaegreso\"].\"' AS FechaEgreso,\n '100' AS codigoestado,\n '\".$arrayRotacionEstudiante[\"usuariocreacion\"].\"' AS UsuarioCreacion,\n NOW() AS FechaCreacion,\n '\".$arrayRotacionEstudiante[\"idedorotacion\"].\"' AS EstadoRotacionId,\n '\".$arrayRotacionEstudiante[\"codperiodo\"].\"' AS codigoperiodo,\n '\".$arrayRotacionEstudiante[\"codcarrera\"].\"' AS codigocarrera,\n '\".$arrayRotacionEstudiante[\"diasrotacion\"].\"' AS TotalDias\n FROM\n \tdetalleprematricula AS d\n INNER JOIN prematricula AS p ON p.idprematricula = d.idprematricula\n INNER JOIN estudiante AS e ON e.codigoestudiante = p.codigoestudiante\n INNER JOIN estudiantegeneral AS est ON e.idestudiantegeneral = est.idestudiantegeneral\n WHERE\n \t(\n \t\tp.codigoestadoprematricula LIKE '1%'\n \t\tOR p.codigoestadoprematricula LIKE '4%'\n \t)\n AND (\n \td.codigoestadodetalleprematricula LIKE '1%'\n \tOR d.codigoestadodetalleprematricula LIKE '3%'\n )\n AND d.idgrupo = '\".$arrayRotacionEstudiante[\"idgrupo\"].\"'\n AND p.codigoperiodo = '\".$arrayRotacionEstudiante[\"codperiodo\"].\"'\n \".$alumnosexcluidos.\" \";\n \n \n }\n \n \n $SQL_NuevaRotacionEstudiante = \"INSERT INTO RotacionEstudiantes (idestudiantegeneral,\n \tcodigomateria,\n idsiq_convenio,\n IdUbicacionInstitucion,\n ServicioRotacionId,\n FechaIngreso,\n FechaEgreso,\n codigoestado,\n UsuarioCreacion,\n FechaCreacion,\n EstadoRotacionId,\n codigoperiodo,\n codigocarrera,\n TotalDias) \".$selectinsert.\";\";\n \n //echo $SQL_NuevaRotacionEstudiante;exit;\n if($NuevaRotacionEstudiante=&$db->Execute($SQL_NuevaRotacionEstudiante)===false){\n\t\t\t\t$a_vectt['val'] = 'FALSE';\n $a_vectt['detalles'] = 'ERROR '.$SQL_NuevaRotacionEstudiante;\n\t\t}else{\n $ultimoidguardado=$db->Insert_ID();\n $camposafectados=0;\n ////maximo id post insert\n $max_idrotacionespostinsert= &$db->GetRow(\"SELECT max(RotacionEstudianteid)as maximoid FROM RotacionEstudiantes;\");\n ///\n $camposafectados=(intval($max_idrotacionespostinsert[0])-intval($ultimoidguardado)+1);\n if($cant_alumnosregistrados!=$arrayRotacionEstudiante[\"totalalumnos\"]){\n if($camposafectados==$arrayRotacionEstudiante[\"totalalumnos\"]){\n $a_vectt['detalles']=\"se agregaron todos los registros\"; \n $a_vectt['total_add']=$arrayRotacionEstudiante[\"totalalumnos\"]; \n }else{\n $a_vectt['detalles']=\"Se agregaron \".$camposafectados.\" de \".$arrayRotacionEstudiante[\"totalalumnos\"].\" estudiantes,hay estudiantes con rotacion en ese rango de fechas\";\n $a_vectt['total_add']=$camposafectados; \n } \n \n \n }else{\n $a_vectt['detalles']=\"No se agregaron estudiantes,Todos los estudiantes de esta agrupacion tienen rotaciones en ese rango de fechas\";\n $a_vectt['total_add']=0;\n }\n \n\t\t $a_vectt['val'] = 'NO_Existe';\n $a_vectt['descrip'] = 'Se registro Exitosamente';\n }\n //print_r($a_vectt);exit;\n return $a_vectt; \n }", "function detalleResumen($where='',$grupo='',$ord='') {\n\t\tif ($this->con->conectar() == true) {\n\t\t\t$Sql = \" SELECT \n\t\t\t\t\t\tliquidacion.cajahorroId,\n\t\t\t\t\t\tliquidacion.cajahorroDesde,\n\t\t\t\t\t\tliquidacion.cajahorroHasta,\n\t\t\t\t\t\tliquidacion.cajahorroFechaestatus,\n\t\t\t\t\t\tliquidacion.cajahorroEstatus,\n\t\t\t\t\t\tliquidacion.cajahorroPorcentaje,\n\t\t\t\t\t\tliquidacion.cajahorroCantidad,\n\t\t\t\t\t\tSUM(detalle_ahorro.detahorroMonto) AS cajahorroMonto,\n\t\t\t\t\t\torganismo.organismoId,\n\t\t\t\t\t\torganismo.organismoDescripcion\n\t\t\t\t\tFROM liquidacion \n\t\t\t\t\t\tINNER JOIN detalle_ahorro ON liquidacion.cajahorroId = detalle_ahorro.detahorroCajahorroId\n\t\t\t\t\t\tINNER JOIN trabajador ON detalle_ahorro.detahorroTrabCedula = trabajador.trabCedula\n\t\t\t\t\t\tINNER JOIN organismo ON organismo.organismoId = trabajador.trabOrganismoId\n\t\t\t\t\t$where $grupo $ord \";\n\t\t\t$this->resultado= mysql_query($Sql);\n\t\t\treturn true;\n\t\t}\n\t}", "static public function mdlGuardarIngresoDetalle($tabla, $datos){\n\t\t\n\t\t$num_elementos = 0;\n\n\t\twhile ($num_elementos < count($datos[\"idarticulo\"])){\n\n\n\t\t\t$stmt = Conexion::conectar()->prepare(\"INSERT INTO $tabla(idingreso, idarticulo, cantidad, precio_compra, precio_venta) VALUES (:idingreso, :idarticulo, :cantidad, :precio_compra, :precio_venta)\");\n\n\t\t\t$stmt->bindParam(\":idingreso\", $datos[\"idingreso\"], PDO::PARAM_INT);\n\t\t\t$stmt->bindParam(\":idarticulo\", $datos[\"idarticulo\"][$num_elementos], PDO::PARAM_INT);\n\t\t\t$stmt->bindParam(\":cantidad\", $datos[\"cantidad\"][$num_elementos], PDO::PARAM_INT);\n\t\t\t$stmt->bindParam(\":precio_compra\", $datos[\"precio_compra\"][$num_elementos], PDO::PARAM_INT);\n\t\t\t$stmt->bindParam(\":precio_venta\", $datos[\"precio_venta\"][$num_elementos], PDO::PARAM_INT);\n\n\t\t\t$stmt->execute();\n\n\t\t\t$num_elementos++;\n\n\t\t\t\n\n\t\t}\n\t\treturn 1;\n\t}", "function restablecer()\n {\n $this->_datos = null;\n $this->_errores = array();\n }", "public function listado_reservaciones_todas(){\n $listado = [];\n #Recorro la jornada....\n $resultados = $this->mongo_db->order_by(array('_id' => 'ASC'))->where(array('eliminado'=>false))->get(\"reservaciones\");\n\n foreach ($resultados as $clave => $valor) {\n //--\n #Verifico que la jornada sea del dia de hoy\n $fecha_hora_inicio = $valor[\"fecha\"]->toDateTime();\n\n $fecha_hora_ini = $fecha_hora_inicio->format('Y-m-d');\n\n $fecha_actual = date('Y-m-d');\n //Solo se muestran las rservaciones de hoy...\n $valores = $valor;\n $valores[\"precio\"] = number_format($valores[\"precio\"],2);\n $valores[\"id_reservaciones\"] = (string)$valor[\"_id\"]->{'$id'};\n $valores[\"id_membresia\"] = $valor[\"id_membresia\"];\n $id_membresia = new MongoDB\\BSON\\ObjectId($valores[\"id_membresia\"]);\n #Recorro la membresia....\n $res_membresia = $this->mongo_db->order_by(array('_id' => 'DESC'))->where(array('eliminado'=>false,'_id'=>$id_membresia))->get(\"membresia\");\n //-------------------------------------------------------------\n //$valores[\"id_grupo_empresarial\"] = $res_membresia[0][\"id_grupo_empresarial\"];\n $valores[\"n_membresia\"] = $res_membresia[0][\"n_membresia\"];\n\n\n $valores[\"identificador_prospecto_cliente\"] = $res_membresia[0][\"identificador_prospecto_cliente\"];\n #Consulto datos personales\n $rfc = $res_membresia[0][\"identificador_prospecto_cliente\"];\n $res_dt = $this->mongo_db->order_by(array('_id' => 'DESC'))->where(array('eliminado'=>false,\"rfc_datos_personales\"=>$rfc))->get(\"datos_personales\");\n \n $valores[\"nombre_datos_personales_cliente\"] = $res_dt[0][\"nombre_datos_personales\"];\n \n if(isset($res_dt[0][\"apellido_p_datos_personales\"])){\n $valores[\"nombre_datos_personales_cliente\"].=\" \".$res_dt[0][\"apellido_p_datos_personales\"];\n }\n\n if(isset($res_dt[0][\"apellido_m_datos_personales\"])){\n $valores[\"nombre_datos_personales_cliente\"].= \" \".$res_dt[0][\"apellido_m_datos_personales\"];\n }\n\n #consulto la sala \n $id_sala = new MongoDB\\BSON\\ObjectId($valores[\"id_servicio_sala\"]);\n $res_sala = $this->mongo_db->order_by(array('_id' => 'DESC'))->where(array('eliminado'=>false,'_id'=>$id_sala))->get(\"servicios\");\n $valores[\"sala\"] = $res_sala[0][\"descripcion\"];\n #Consulto usuario\n $id = new MongoDB\\BSON\\ObjectId($valor[\"auditoria\"][0]->cod_user);\n $res_us = $this->mongo_db->where(array('_id'=>$id))->get('usuario');\n $vector_auditoria = reset($valor[\"auditoria\"]);\n $valores[\"fec_regins\"] = $vector_auditoria->fecha->toDateTime();\n isset($res_us[0][\"correo_usuario\"])?$valores[\"correo_usuario\"] = $res_us[0][\"correo_usuario\"]:$valores[\"correo_usuario\"] =\"\";\n //--\n if($valores[\"hora_ingreso\"]!=\"\"){\n //$fecha_inicio = $valor[\"hora_ingreso\"]->toDateTime();\n $fecha_inicio = new DateTime(date(\"Y-m-d g:i a\",$valor[\"hora_ingreso\"]));\n $valores[\"hora_ingreso\"] = $fecha_inicio;\n \n }else{\n $valores[\"hora_ingreso\"] = \"\";\n }\n //--Hora inicio\n if($valores[\"hora_inicio\"]!=\"\"){\n //$fecha_inicio_h = $valor[\"hora_inicio\"]->toDateTime();\n $fecha_inicio_h = new DateTime(date(\"Y-m-d g:i a\",$valor[\"hora_inicio\"]));\n $valores[\"hora_inicio\"] = $fecha_inicio_h;\n \n }else{\n $valores[\"hora_inicio\"] = \"\";\n }\n //--Hora fin \n if($valores[\"hora_fin\"]!=\"\"){\n //$fecha_fin_h = $valor[\"hora_fin\"]->toDateTime();\n $fecha_fin_h = new DateTime(date(\"Y-m-d g:i a\",$valor[\"hora_fin\"]));\n $valores[\"hora_fin\"] = $fecha_fin_h;\n }else{\n $valores[\"hora_fin\"] = \"\";\n }\n //--\n if($valor[\"hora_salida\"]!='Sin salir'){\n //$fecha_fin = $valor[\"hora_salida\"]->toDateTime();\n $fecha_fin = new DateTime(date(\"Y-m-d g:i a\",$valor[\"hora_salida\"]));\n $valores[\"hora_salida\"] = $fecha_fin;\n }else{\n $valores[\"hora_salida\"] = \"Sin salir\";\n }\n $valores[\"hora_liberada\"] = $valores[\"hora_salida\"];\n $fecha_reservacion = $valor[\"fecha\"]->toDateTime();\n $valores[\"fecha_reservacion\"] = $fecha_reservacion;\n //------------------------------------------------------------\n //$fecha1 = new DateTime($fecha_fin);//fecha inicial\n //$fecha2 = new DateTime($fecha_inicio);//fecha de cierre\n #Calculo de horas contratadas \n $intervalo =$fecha_fin_h->diff($fecha_inicio_h);\n \n if(isset($intervalo)){\n $valores[\"horas_contratadas\"] = $intervalo->format('%H:%i:%s');\n }else{\n $valores[\"horas_contratadas\"] = \"\";\n }\n /*-----------------------------------------------------------------------------*/\n #Calculo de horas consumidas\n if($valores[\"condicion\"]==\"REGISTRADA\"){\n #Si la condicion es registrada: se resta la hora actua a la hora de ingreso\n if($valores[\"hora_ingreso\"]!=\"\"){\n $hoy = new DateTime(\"now\");\n $intervalo2 =$fecha_inicio->diff($hoy);\n $intervaloConsmuidas = $intervalo2;\n if(isset($intervalo2)){\n $valores[\"horas_consumidas\"] = $intervalo2->format('%H:%i:%s');\n }else{\n $valores[\"horas_consumidas\"] = \"\";\n }\n }else{\n $valores[\"horas_consumidas\"] = \"\";\n } \n } if($valores[\"condicion\"]==\"LIBERADA\"){\n #Si la condicione s liberada: se resta la hora salida a la de ingreso\n $intervalo3 =$fecha_fin->diff($fecha_inicio);\n $intervaloConsmuidas = $intervalo3;\n\n if(isset($intervalo3)){\n $valores[\"horas_consumidas\"] = $intervalo3->format('%H:%i:%s');\n }else{\n $valores[\"horas_consumidas\"] = \"\";\n }\n }else if(($valores[\"condicion\"]==\"RESERVADA\")||($valores[\"condicion\"]==\"CANCELADA\")){\n $valores[\"horas_consumidas\"] = \"\";\n }\n //------------------------------------------------------------\n #Horas por consumir\n if(($valores[\"horas_contratadas\"]!=\"\")&&($valores[\"horas_consumidas\"]!=\"\")){\n //var_dump($intervalo<$intervaloConsmuidas);die('');\n \n $horas_uno = new DateTime($valores[\"horas_contratadas\"]);\n $horas_dos = new DateTime($valores[\"horas_consumidas\"]);\n $intervaloDisponibles = $horas_uno->diff($horas_dos);\n $valores[\"horas_disponibles\"] = $intervaloDisponibles->format('%H:%i:%s'); \n if($valores[\"horas_disponibles\"]>$valores[\"horas_contratadas\"]){\n $valores[\"horas_disponibles\"] = \"\";\n }\n }else{\n $valores[\"horas_disponibles\"] = \"\";\n }\n //------------------------------------------------------------\n $listado[] = $valores; \n //--\n\n }\n return $listado;\n }", "function getDetalleElementosPlus($nodo_id_filtro, $pagina, $orden = 1, $fecha_inicial, $fecha_termino, $isset,$h1, $m1, $h2, $m2, $cuenta_nodos) {\n\t\tif ($isset != 0) {\n\t\t\tglobal $mdb2;\n\t\t\tglobal $log;\n\t\t\tglobal $current_usuario_id;\n\t\t\tglobal $usr;\n\n\t\t\t/* OBTENER LOS DATOS Y PARSEARLO */\n\t\t\t$sql = \"SELECT * FROM reporte.elementosplus_mediciones_filtro_marcado(\".\n\t\t\tpg_escape_string($current_usuario_id).\",\".\n\t\t\tpg_escape_string($this->objetivo_id).\",\".\n\t\t\tpg_escape_string($nodo_id_filtro).\",\".\n\t\t\t(($this->subgrafico_id==1)?100:12).\", \".\n\t\t\tpg_escape_string($pagina).\", '\".\n\t\t\tpg_escape_string($fecha_inicial).\"', '\".\n\t\t\tpg_escape_string($fecha_termino).\"')\";\n\t\t\t\n\t\t\t$res =& $mdb2->query($sql);\n\t\t\tif (MDB2::isError($res)) {\n\t\t\t\t$log->setError($sql, $res->userinfo);\n\t\t\t\texit();\n\t\t\t}\n\n\t\t\t$row = $res->fetchRow();\n\t\t\t$dom = new DomDocument();\n\t\t\t$dom->preserveWhiteSpace = FALSE;\n\t\t\t$dom->loadXML($row['elementosplus_mediciones_filtro_marcado']);\n\t\t\t$xpath = new DOMXpath($dom);\n\t\t\tunset($row[\"elementosplus_mediciones_filtro_marcado\"]);\n\n\t\t\t$mantenimiento = $xpath->query('/atentus/resultados/detalles/detalle')->item(0)->getAttribute('marcado');\n\n\t\t\tif ($mantenimiento == 1) {\n\t\t\t\tif ($cuenta_nodos == 0) {\n\t\t\t\t\treturn $this->__generarContenedorConMantenimiento();\n\t\t\t\t}else{\n\t\t\t\t\treturn \"\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$conf_objetivo = $xpath->query(\"/atentus/resultados/propiedades/objetivos/objetivo\")->item(0);\n\t\t\t$conf_pasos = $xpath->query(\"paso[@visible=1]\", $conf_objetivo);\n\t\t\t$conf_nodo = $xpath->query(\"/atentus/resultados/propiedades/nodos/nodo[@nodo_id=\".$nodo_id_filtro.\"]\")->item(0);\n\t\t\t$tag_mediciones = $xpath->query('//detalles/detalle[@nodo_id='.$nodo_id_filtro.']/detalles/detalle');\n\t\t\t\n\t\t\t/* SI NO HAY DATOS MOSTRAR MENSAJE */\n\t\t\tif ($xpath->query('//datos/dato')->length == 0 and $pagina == 1) {\n\t\t\t\treturn $this->__generarContenedorSinDatos($usr->getNodo($nodo_id_filtro)->nombre);\n\t\t\t}\n\n\t\t\t// TEMPLATE DEL GRAFICO\n\t\t\t$T =& new Template_PHPLIB(($this->extra[\"imprimir\"])?REP_PATH_PRINTTEMPLATES:REP_PATH_TABLETEMPLATES);\n\t\t\t$T->setFile('tpl_tabla', 'elementos_plus_mediciones.tpl');\n\t\t\t$T->setBlock('tpl_tabla', 'BLOQUE_PASOS', 'bloque_pasos');\n\t\t\t$T->setBlock('tpl_tabla', 'BLOQUE_DATOS', 'bloque_datos');\n\n\t\t\t$T->setVar('__item_id', $this->__item_id);\n\t\t\t$T->setVar('__item_id_nuevo', REP_ITEM_ELEMENTOS_PLUS);\n\t\t\t$T->setVar('__item_orden', $this->extra[\"item_orden\"]);\n\n\t\t\t$T->setVar('__monitor_id', $conf_nodo->getAttribute('nodo_id'));\n\t\t\t$T->setVar('__monitor_nombre', $conf_nodo->getAttribute('nombre'));\n\t\t\t$T->setVar('__monitor_orden', $orden);\n\n\t\t\t$linea_monitor = 1;\n\t\t\t$linea = 1;\n\t\t\t$T->setVar('bloque_datos', '');\n\t\t\tforeach ($tag_mediciones as $tag_medicion) {\n\n\t\t\t\t$T->setVar('__class', ($linea_monitor % 2 == 0)?\"celdanegra15\":\"celdanegra10\");\n\t\t\t\t$T->setVar('__fecha', $this->timestamp->getFormatearFecha($tag_medicion->getAttribute('fecha'), \"d-m-Y H:i:s\"));\n\t\t\t\t$T->setVar('__fechaCompleta', $tag_medicion->getAttribute('fecha'));\n\t\t\t\t$T->setVar('__pagina', $pagina);\n\n\t\t\t\t$medicion_error = false;\n\t\t\t\t$T->setVar('bloque_pasos', '');\n\t\t\t\tforeach ($conf_pasos as $conf_paso) {\n\t\t\t\t\t$tag_dato = $xpath->query('datos/dato[@paso_orden='.$conf_paso->getAttribute('paso_orden').']', $tag_medicion)->item(0);\n\n\n\t\t\t\t\tif ($tag_dato == null) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\n\t\t\t\t\t$T->setVar('__print_class', ($linea % 2 == 0)?\"celdaIteracion2\":\"celdaIteracion1\");\n\t\t\t\t\t$T->setVar('__nombrePaso',$conf_paso->getAttribute('nombre'));\n\t\t\t\t\t$T->setVar('__idPaso',$conf_paso->getAttribute('paso_orden'));\n\t\t\t\t\t$T->setVar('__tamanoTotal', number_format(($tag_dato->getAttribute('tamano_total')),0,',','.'));\n\n\t\t\t\t\tif (trim($tag_dato->getAttribute('respuesta')) == '') {\n\t\t\t\t\t\t$T->setVar('__tiempoTotal', 'Error en la descarga');\n\t\t\t\t\t} else {\n\t\t\t\t\t\tpreg_match(\"/(?P<hor>\\d{2}):(?P<min>\\d{2}):(?P<seg>\\d{2}).(?P<mseg>\\d+)/\", $tag_dato->getAttribute('respuesta'), $tiempos);\n\t\t\t\t\t\t$seg = ($tiempos[\"hor\"]*3600)+($tiempos[\"min\"]*60)+($tiempos[\"seg\"]);\n\t\t\t\t\t\t$T->setVar('__tiempoTotal', $seg.','.$tiempos[\"mseg\"]);\n\t\t\t\t\t}\n\n\t\t\t\t\tif ($tag_dato->getAttribute('estado') == \"false\" && trim($tag_dato->getAttribute('respuesta')) != \"\") {\n\t\t\t\t\t\t$T->setVar('__estadoPaso', 'spriteImg spriteImg-elementos_encontrados');\n\t\t\t\t\t\t$T->setVar('__titlePaso', 'Todos los elementos fueron descargados correctamente en este paso');\n\t\t\t\t\t\t$T->setVar('__textoPaso', 'Elementos OK');\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t$T->setVar('__estadoPaso', 'spriteImg spriteImg-elementos_faltantes');\n\t\t\t\t\t\t$T->setVar('__titlePaso', 'Existen elementos que no lograron ser descargados para este paso');\n\t\t\t\t\t\t$T->setVar('__textoPaso', 'Elementos Error');\n\t\t\t\t\t\t$medicion_error = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t$T->parse('bloque_pasos', 'BLOQUE_PASOS', true);\n\t\t\t\t\t$linea++;\n\t\t\t\t}\n\n\t\t\t\tif (!$medicion_error) {\n\t\t\t\t\t$T->setVar('__estado', 'spriteImg spriteImg-elementos_encontrados');\n\t\t\t\t\t$T->setVar('__titleMonitoreo', 'Todos los elementos del monitoreo fueron descargados correctamente');\n\t\t\t\t\t$T->setVar('__textoMonitoreo', 'Elementos OK');\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t$T->setVar('__estado', 'spriteImg spriteImg-elementos_faltantes');\n\t\t\t\t\t$T->setVar('__titleMonitoreo', 'Existen elementos que no fueron descargados en este paso');\n\t\t\t\t\t$T->setVar('__textoMonitoreo', 'Elementos Error');\n\t\t\t\t}\n\n\t\t\t\t$T->parse('bloque_datos', 'BLOQUE_DATOS', true);\n\t\t\t\t$linea_monitor++;\n\t\t\t}\n\n\t\t\t/* FORMATO DE PAGINAS */\n\t\t\t$T->setVar('_h1', $h1);\n\t\t\t$T->setVar('_m1', $m1);\n\t\t\t$T->setVar('_h2', $h2);\n\t\t\t$T->setVar('_m2', $m2);\n\t\t\t$T->setVar('__pagina', $pagina);\n\t\t\t$T->setVar('__pagina_atras', $pagina-1);\n\t\t\t$T->setVar('__pagina_adelante', $pagina+1);\n\t\t\t$T->setVar('__disabled_atras', ($pagina==1)?'disabled':'');\n\t\t\t$T->setVar('__disabled_adelante', ($tag_mediciones->length<12)?'disabled':'');\n\t\t\t$T->setVar('__class_boton_atras', ($pagina==1)?'spriteButton spriteButton-atras_desactivado':'spriteButton spriteButton-atras');\n\t\t\t$T->setVar('__class_boton_adelante', ($tag_mediciones->length<12)?'spriteButton spriteButton-adelante_desactivado':'spriteButton spriteButton-adelante');\n\n\t\t\tif ($tag_mediciones->length == 0 and $pagina != 1) {\n\t\t\t\treturn 0;\n\t\t\t}\n\n\t\t\t$this->tiempo_expiracion = (strtotime($xpath->query(\"//fecha_expiracion\")->item(0)->nodeValue) - strtotime($xpath->query(\"//fecha\")->item(0)->nodeValue));\n\n\t\t\treturn $this->resultado = $T->parse('out', 'tpl_tabla');\n\t\t}\n\t}", "public function rifaiVetrine()\n\t\t{\n\t\t\tif( ($listaVetrine = array_keys($this->vetrine)) )\n\t\t\t\tforeach ($listaVetrine as $nomeVetrina)\n\t\t\t\t\tunset($this->vetrine[$nomeVetrina]['lastMod']);\n\t\t\t\n\t\t\t$this->salvaStatoInsiemeVetrine();\n\t\t}", "function borrar ($arrayLineas,$id,$foto){\n $valorRetornado=false; \n foreach ($arrayLineas as $key => $value) {\n $auxArray= (array)$value; \n if($auxArray){\n if($auxArray[\"patente\"] === $id){\n var_dump($foto[\"name\"]);\n var_dump($auxArray[\"foto\"]);\n if($foto[\"name\"] !== $auxArray[\"foto\"] ){\n var_dump(\"./imagenes/\".$auxArray[\"foto\"]);\n //cambia de directorio la imagen vieja a backUpFotos, pero no la conserva.\n //rename(\"./imagenes/\".$auxArray[\"foto\"], './backUpFotos/'.$auxArray[\"patente\"].$auxArray[\"foto\"]);\n //cambia de directorio la imagen vieja a backUpFotos, pero la conserva en ambos directorios.\n copy(\"./imagenes/\".$auxArray[\"foto\"], './backUpFotos/'.$auxArray[\"patente\"].$auxArray[\"foto\"]);\n }\n unset($arrayLineas[$key]);\n $valorRetornado=true;\n break;\n }\n } \n } \n if($valorRetornado){\n echo(\"Se Removio: \".$id.\"\\n\\n\");\n }\n else{\n echo('No se encontro'.\"\\n\\n\");\n $arrayLineas=null;\n } \n return $arrayLineas;\n}", "public function guardarDetalleFacturaFactura($idFactura, $id, $tipoDetalle, $valorBruto, $descuento, $cantidad, $idSucursal){\n\t\t\n\t\t\n\t\t$idFactura \t\t\t\t\t\t= parent::escaparQueryBDCliente($idFactura);\n\t\t$id \t\t\t\t\t\t\t= parent::escaparQueryBDCliente($id);\n\t\t$tipoDetalle \t\t\t\t\t= parent::escaparQueryBDCliente($tipoDetalle);\n\t\t$valorBruto \t\t\t\t\t= parent::escaparQueryBDCliente($valorBruto);\n\t\t$descuento \t\t\t\t\t\t= parent::escaparQueryBDCliente($descuento);\n\t\t$cantidad \t\t\t\t\t\t= parent::escaparQueryBDCliente($cantidad);\n\t\t\n\t\t$resultado = \"\";\n\t\t\n\t\t$conexion = parent::conexionCliente();\n\t\t\n\t\t$query = \"SELECT idPagoFacturaCaja \n\t\t\t\t\tFROM tb_pago_factura_caja\n\t\t\t\t\t\n\t\t\t\t\tWHERE tipoElemento = 'Factura' AND idTipoElemento = '$idFactura'\";\n\t\t\n\t\tif($res = $conexion->query($query)){\n\t\t\t\n\t\t\twhile ($filas = $res->fetch_assoc()) {\n\t\t\t\t\t\t\t\n\t\t\t\t$resultado = $filas['idPagoFacturaCaja'];\n\t\t\t\t\t\n\t\t\t}//fin while\n\t\t\t\n\t\t\t/* liberar el conjunto de resultados */\n\t\t\t$res->free();\n\t\t\t\n\t\t}//fin if\n\t\t\n\t\t\n\t\t$query2 = \"INSERT INTO tb_pago_factura_caja_detalle (tipoDetalle, idTipoDetalle, valorUnitario, descuento, cantidad, idPagoFacturaCaja, estado, idSucursal)\n\t\t\t\t\t\t\t\tVALUES ('$tipoDetalle', '$id', '$valorBruto', '$descuento', '$cantidad', '$resultado', 'Activo', '$idSucursal')\";\n\t\t\n\t\t$res2 = $conexion->query($query2);\n\t\t\n\t\t//saber si es un producto para decontar cantidad\n\t\tif($tipoDetalle == \"Producto\"){\n\t\t\t\n\t\t\t$query3 = \"UPDATE tb_productos_sucursal SET cantidad = cantidad - '$cantidad' WHERE idSucursal = '$idSucursal' AND idProducto = '$id'\";\n\t\t\t\n\t\t\t$res3 = $conexion->query($query3);\n\t\t\t\n\t\t}//fin si es un producto para descontar cantidad de la sucursal\n\t\t\n\t\t\n\t}", "public function listaDelitos(){\n\t $ofen=0;\n\t $indi=0;\n\t $arreglo = array();\n\n if (count($this->getOfeindis())>0){\n $ldelitos= Load::model('ofeindis')->find(\"ordenes_id = \".$this->id,\"order: indiciados_id,ofendidos_id,delitos_id\");\n }\n\n foreach ($ldelitos as $key) { // aqui se escoge a los imputados y victimas que no se repiten\n if($key->ofendidos_id !=$ofen || $key->indiciados_id !=$indi){\n array_push($arreglo,array('idel'=>$key->id,'ofendido'=>$key->getOfendidos(), 'indiciado'=>$key->getIndiciados()));\n }\n $ofen=$key->ofendidos_id;\n $indi=$key->indiciados_id;\n }\n\n for ($i=0; $i <count($arreglo) ; $i++) { // aqui voy metiendo un arreglo de delitos para cada uno\n $delitos=array();\n foreach ($ldelitos as $key) {\n if($key->ofendidos_id==$arreglo[$i]['ofendido']->id && $key->indiciados_id==$arreglo[$i]['indiciado']->id ){\n array_push($delitos,array('delito'=>$key->getDelitos(),'iddeli'=>$key->id,'principal'=>$key->esprincipal)); \n }\n } \n $arreglo[$i]['delitos']=$delitos; \n }\n return $arreglo;\n\n\t\n\t}", "public function findPagoDetalleActividadEconomica()\r\n\t\t{\r\n\t\t\t$codigoPresupuestario = self::getCodigoPresupuestarioActividadEconomica();\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t// Pagos con periodos mayores a cero\r\n\t\t\t$registers = self::findPagoDetallePeriodoMayorCero($codigoPresupuestario, [1]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Actividad Economica periodo mayores a cero'));\r\n\t\t\t}\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t// Pagos con periodos iguales a cero\r\n\t\t\t$registers = self::findPagoDetallePeriodoIgualCero($codigoPresupuestario, [1]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Actividad Economica periodo iguales a cero'));\r\n\t\t\t}\r\n\r\n\t\t}", "protected function loeschen()\n\t{\n\t\t$db = new Datenbank();\n\t\treturn $db->loeschen(\" DELETE FROM rezepte_zutaten WHERE rezepte_nr = '$this->rezepte_nr'\");\n\t}", "public function __sleep() {\n $this->arra_sauv['int_my_position'] = $this->int_my_position;\n $this->arra_sauv['int_last_id'] = $this->int_last_id;\n $this->arra_sauv['int_root_position'] = $this->int_root_position;\n $this->arra_sauv['int_num_tree'] = $this->int_num_tree;\n $this->arra_sauv['arra_node_to_delete']= $this->arra_node_to_delete;\n $nbr=count($this->arra_tree);\n //for($i=0;$i<$nbr;$i++)\n foreach($this->arra_tree as $key=>$arra_data)\n {\n $arra_temp[$key]['my_id']=$arra_data['my_id'];\n $arra_temp[$key]['id_parent']=$arra_data['id_parent'];\n $arra_temp[$key]['label']=$arra_data['label'];\n $arra_temp[$key]['hierarchy_level']=$arra_data['hierarchy_level'];\n $arra_temp[$key]['state']=$arra_data['state']; \n }\n $this->arra_sauv['arra_tree']=$arra_temp;\n return array('arra_sauv');\n }", "public function armado() {\n $validacion = new Seguridad_UsuarioValidacion();\n $validacion = $validacion->consultaElemento();\n\n // creo una matriz con los campos de los componentes de la pagina\n $componentes = Consultas_MatrizObtenerDeComponenteTablaYParametros::armado('todos');\n\n $datos_tabla = Consultas_ObtenerTablaNombreTipo::armado($_GET['id_tabla']);\n $tabla_tipo = $datos_tabla['tipo'];\n \n // borro del los atributos del usuario si tiene oculto algun componente de la tabla\n Armado_DesplegableOcultos::eliminarComponenteOcultoTodos($_GET['id_tabla']);\n\n // elimino los componentes con sus propias herramientas\n if (is_array($componentes)) {\n foreach ($componentes as $id => $dcp) {\n\n // llama al componente para eliminarlo\n $llamado_componente = Generales_LlamadoAComponentesYTraduccion::armar('ComponenteBaja', '', '', $dcp, $dcp['cp_nombre'], $dcp['cp_id']);\n\n // si el objeto anterior devuelve true\n if ($llamado_componente == true) {\n\n // elimina la columna si la tabla es tipo 'registro' o crea el registro para\n // cargar el valor de la variable\n if ($tabla_tipo == 'registros') {\n\n // elimino el campo de la tabla\n Consultas_CampoEliminar::armado(__FILE__, __LINE__, $dcp['tb_prefijo'] . '_' . $dcp['tb_nombre'], $dcp['tb_campo']);\n } elseif ($tabla_tipo == 'variables') {\n\n // elimino el campo de la tabla\n Consultas_RegistroEliminar::armado(__FILE__, __LINE__, $dcp['tb_nombre'], 'variables', $dcp['tb_campo']);\n }\n }\n\n // condiciones para eliminar los registros que definen al componente\n // elimino el componente de 'kirke_componente'\n Consultas_RegistroEliminar::armado(__FILE__, __LINE__, 'kirke_componente', 'id_componente', $dcp['cp_id']);\n\n // elimino el componente de 'kirke_componente_parametro'\n Consultas_RegistroEliminar::armado(__FILE__, __LINE__, 'kirke_componente_parametro', 'id_componente', $dcp['cp_id']);\n }\n }\n\n // Consulta nombre de tabla y nombre de campo\n $datos_tabla = Consultas_ObtenerTablaNombreTipo::armado();\n $tabla_nombre = $datos_tabla['prefijo'] . '_' . $datos_tabla['nombre'];\n\n // elimino el campo de la tabla\n Consultas_TablaEliminar::armado(__FILE__, __LINE__, $tabla_nombre);\n\n if (($tabla_tipo == 'menu') || $tabla_tipo == 'tabuladores') {\n\n Consultas_TablaEliminar::armado(__FILE__, __LINE__, $tabla_nombre . '_trd');\n Consultas_TablaEliminar::armado(__FILE__, __LINE__, $tabla_nombre . '_rel');\n\n $consulta = new Bases_RegistroEliminar(__FILE__, __LINE__);\n $consulta->tabla('kirke_tabla');\n $consulta->condiciones('', 'kirke_tabla', 'id_tabla_prefijo', 'iguales', '', '', $datos_tabla['id_prefijo']);\n $consulta->condiciones('y', 'kirke_tabla', 'tabla_nombre', 'iguales', '', '', $datos_tabla['nombre'] . '_trd');\n $consulta->condiciones('y', 'kirke_tabla', 'tipo', 'iguales', '', '', $tabla_tipo . '_trd');\n //$consulta->verConsulta();\n $consulta->realizarConsulta();\n\n $consulta = new Bases_RegistroEliminar(__FILE__, __LINE__);\n $consulta->tabla('kirke_tabla');\n $consulta->condiciones('', 'kirke_tabla', 'id_tabla_prefijo', 'iguales', '', '', $datos_tabla['id_prefijo']);\n $consulta->condiciones('y', 'kirke_tabla', 'tabla_nombre', 'iguales', '', '', $datos_tabla['nombre'] . '_rel');\n $consulta->condiciones('y', 'kirke_tabla', 'tipo', 'iguales', '', '', $tabla_tipo . '_rel');\n //$consulta->verConsulta();\n $consulta->realizarConsulta();\n\n if ($tabla_tipo == 'tabuladores') {\n \n Consultas_TablaEliminar::armado(__FILE__, __LINE__, $tabla_nombre . '_prd');\n\n $consulta = new Bases_RegistroEliminar(__FILE__, __LINE__);\n $consulta->tabla('kirke_tabla');\n $consulta->condiciones('', 'kirke_tabla', 'id_tabla_prefijo', 'iguales', '', '', $datos_tabla['id_prefijo']);\n $consulta->condiciones('y', 'kirke_tabla', 'tabla_nombre', 'iguales', '', '', $datos_tabla['nombre'] . '_prd');\n $consulta->condiciones('y', 'kirke_tabla', 'tipo', 'iguales', '', '', $tabla_tipo . '_prd');\n //$consulta->verConsulta();\n $consulta->realizarConsulta();\n \n $consulta = new Bases_RegistroConsulta(__FILE__, __LINE__);\n $consulta->tablas('kirke_tabla_parametro');\n $consulta->campos('kirke_tabla_parametro', 'valor');\n $consulta->condiciones('', 'kirke_tabla_parametro', 'parametro', 'iguales', '', '', 'cp_id');\n $consulta->condiciones('y', 'kirke_tabla_parametro', 'id_tabla', 'iguales', '', '', $_GET['id_tabla']);\n //$consulta->verConsulta();\n $parametros_tabla = $consulta->realizarConsulta();\n\n // condiciones para eliminar los registros que definen al componente necesario para que se puedan cargar los tabuladores\n // elimino el componente de 'kirke_componente'\n Consultas_RegistroEliminar::armado(__FILE__, __LINE__, 'kirke_componente', 'id_componente', $parametros_tabla[0]['valor']);\n\n // elimino el componente de 'kirke_componente_parametro'\n Consultas_RegistroEliminar::armado(__FILE__, __LINE__, 'kirke_componente_parametro', 'id_componente', $parametros_tabla[0]['valor']);\n }\n }\n\n // eliminacion de los roles relacionados con la pagina\n Consultas_RollDetalle::RegistroEliminar(__FILE__, __LINE__, $_GET['id_tabla']);\n\n // condiciones para la eliminacion de los nombres de los links del menu\n $matriz_link_nombre = Consultas_MenuLink::RegistroConsultaIdTabla(__FILE__, __LINE__, $_GET['id_tabla']);\n\n // elimino los nombres de los links\n if (is_array($matriz_link_nombre)) {\n foreach ($matriz_link_nombre as $id => $value) {\n Consultas_RegistroEliminar::armado(__FILE__, __LINE__, 'kirke_menu_link_nombre', 'id_menu_link', $value['id_menu_link']);\n }\n }\n\n // condiciones para la eliminacion\n // elimino los links de la pagina\n Consultas_MenuLink::RegistroEliminar(__FILE__, __LINE__, $_GET['id_tabla']);\n\n // elimino los nombres de la pagina\n Consultas_RegistroEliminar::armado(__FILE__, __LINE__, 'kirke_tabla_nombre_idioma', 'id_tabla', $_GET['id_tabla']);\n\n // elimino los parametros de la pagina\n Consultas_RegistroEliminar::armado(__FILE__, __LINE__, 'kirke_tabla_parametro', 'id_tabla', $_GET['id_tabla']);\n\n // elimino la pagina\n Consultas_Tabla::RegistroEliminar(__FILE__, __LINE__, $_GET['id_tabla']);\n \n if (Inicio::confVars('generar_log') == 's') {\n $this->_cargaLog();\n }\n\n // la redireccion va al final\n $armado_botonera = new Armado_Botonera();\n\n $parametros = array('kk_generar' => '0', 'accion' => '30', 'id_tabla' => $_GET['id_tabla']);\n $armado_botonera->armar('redirigir', $parametros);\n }", "public function findPagoDetallePropaganda()\r\n\t\t{\r\n\t\t\t$codigoPresupuestario = self::getCodigoPresupuestarioPropagandaComercial();\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t// Pagos con periodos iguales a cero\r\n\t\t\t$registers = self::findPagoDetallePeriodoIgualCero($codigoPresupuestario, [4]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Propaganda comercial'));\r\n\t\t\t}\r\n\t\t}", "function fProcesaCartera(){\n global $db, $cla, $agPar, $igNumChq, $igSecue, $ogDet;\n $igSecue++;\n foreach($ogDet as $k => $r) {\n\t\t$alDet = fIniDetalle();\n\t\t$alDet[\"det_codcuenta\"]\t= $r->det_codcuenta;\n\t\t$alDet[\"det_glosa\"] \t= substr($agPar[\"com_Concepto\"],0, 40);\n\t\t$alDet['det_idauxiliar']= $r->det_idauxiliar;\n\t\t$alDet[\"det_numcheque\"]\t= $r->det_numdocum; \t\t\t// es el numero de documento\n\t\t$alDet[\"det_feccheque\"]\t= $agPar[\"com_FechCheq\"];\n\t\t$alDet['det_valcredito']= $r->txt_pago * $cla->cla_indicador; // segun el signo del indicador, se aplica como DB/CR al grabar\n\t\t$alDet['det_valdebito']\t= 0;\n\t\t$alDet['det_secuencia']\t= $igSecue++;\n\t\tif(fGetParam(\"pAppDbg\",0)){\n\t\t\techo\"<br>---registro:----\";\n\t\t\tprint_r($r);\n\t\t\techo\"<br>---arreglo:-----\";\n\t\t\tprint_r($alDet);\n\t\t}\n\t\tfInsdetalleCont($db, $alDet);\n\t}\n}", "function actualizarDetalles (){\n\t\t$x = $this->pdo->prepare('UPDATE detalles SET estado = ?\n\t\t\tWHERE detalles = ?');\n\t\t$x-> execute(array($this->estado,$this->detalles));\n\t\treturn $x;\n\t}", "public function findPagoDetalleInmuebleUrbano()\r\n\t\t{\r\n\t\t\t$codigoPresupuestario = self::getCodigoPresupuestarioInmuebleUrbano();\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t// Pagos con periodos mayores a cero\r\n\t\t\t$registers = self::findPagoDetallePeriodoMayorCeroInmueble($codigoPresupuestario, [2]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Inmuebles Urbanos periodo mayores a cero'));\r\n\t\t\t}\r\n\r\n\t\t\t// $registers = [];\r\n\t\t\t// // Pagos con periodos iguales a cero\r\n\t\t\t// $registers = self::findPagoDetallePeriodoIgualCeroInmueble($codigoPresupuestario, [2]);\r\n\t\t\t// if ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t// \tself::errorCargarData(Yii::t('backend', 'Inmuebles Urbanos periodo iguales a cero'));\r\n\t\t\t// }\r\n\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t$registers = self::findPagoDetalleVarioImpuestoModel([2]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Inmuebles Urbanos por varios'));\r\n\t\t\t}\r\n\r\n\t\t}", "public function getRegraLancamento($iCodigoDocumento, $iCodigoLancamento, ILancamentoAuxiliar $oLancamentoAuxiliar) {\n\n \t$oGrupo = $oLancamentoAuxiliar->getMaterial()->getGrupo();\n \t \t\n \tif(!isset($oGrupo)){\n \t\t$sMsgErro = \"Grupo não configurado para material - \";\n \t\t$sMsgErro .= \"{$oLancamentoAuxiliar->getMaterial()->getcodMater()}. \";\n \t\tthrow new BusinessException($sMsgErro);\n \t}\n \t\n $oPlanoContaVPD = $oLancamentoAuxiliar->getMaterial()->getGrupo()->getContaVPD();\n $iContaCredito = $oPlanoContaVPD->getReduzido();\n $iContaDebito = $oLancamentoAuxiliar->getMaterial()->getGrupo()->getContaAtivo()->getReduzido();\n $iEstruturalVPD = substr($oPlanoContaVPD->getEstrutural(), 0, 1);\n\n if (empty($iContaCredito) ||\n $iContaCredito == $iContaDebito ||\n $iEstruturalVPD <> 3) {\n\n $sMsgErro = \"Conta VPD (Variação Patrimonial Diminutiva) não configurada para o grupo \";\n $sMsgErro .= \"{$oLancamentoAuxiliar->getMaterial()->getGrupo()->getCodigo()} - \";\n $sMsgErro .= \"{$oLancamentoAuxiliar->getMaterial()->getGrupo()->getDescricao()}.\";\n \tthrow new BusinessException($sMsgErro);\n }\n\n $oRegraLancamentoContabil = new RegraLancamentoContabil();\n $oRegraLancamentoContabil->setContaCredito($iContaCredito);\n $oRegraLancamentoContabil->setContaDebito($iContaDebito);\n\n if ($oLancamentoAuxiliar->isSaida()) {\n \t\n \t$oRegraLancamentoContabil->setContaCredito($iContaDebito);\n \t$oRegraLancamentoContabil->setContaDebito($iContaCredito);\n }\n\n return $oRegraLancamentoContabil;\n }", "function eliminarAnalisisPorqueDet(){\n\t\t$this->procedimiento='gem.ft_analisis_porque_det_ime';\n\t\t$this->transaccion='GM_DET_ELI';\n\t\t$this->tipo_procedimiento='IME';\n\t\t\t\t\n\t\t//Define los parametros para la funcion\n\t\t$this->setParametro('id_analisis_porque_det','id_analisis_porque_det','int4');\n\n\t\t//Ejecuta la instruccion\n\t\t$this->armarConsulta();\n\t\t$this->ejecutarConsulta();\n\n\t\t//Devuelve la respuesta\n\t\treturn $this->respuesta;\n\t}", "public function unidadReceptoraReal($correspondencia_id) {\n \n // BUSCAR UNIDADES DE RECEPTORES ESTABLECIDOS\n $unidades_receptoras = array();\n $unidad_recibe_id = '';\n $receptores_establecidos = Doctrine::getTable('Correspondencia_Receptor')->findByCorrespondenciaIdAndEstablecido($correspondencia_id, 'S');\n foreach ($receptores_establecidos as $receptor_establecido) {\n $unidades_receptoras[] = $receptor_establecido->getUnidadId();\n if($receptor_establecido->getFuncionarioId() == $this->getUser()->getAttribute('funcionario_id')){\n // SI EL FUNCIONARIO LOGUEADO ES ESTABLECIDO COMO RECEPTOR SE SELECCIONA LA UNIDAD POR LA CUAL RECIBE\n $unidad_recibe_id = $receptor_establecido->getUnidadId();\n }\n }\n \n if($unidad_recibe_id==''){\n // EN CASO DE NO ENCONTRAR LA UNIDAD, BUSCAR SI LE FUE ASIGANADA LA CORRESPONDENCIA COMO UNA TAREA\n $receptor_asignado = Doctrine::getTable('Correspondencia_Receptor')->findOneByCorrespondenciaIdAndFuncionarioIdAndEstablecido($correspondencia_id, $this->getUser()->getAttribute('funcionario_id'), 'A');\n\n if($receptor_asignado){\n $unidad_recibe_id = $receptor_asignado->getUnidadId();\n }\n }\n \n if($unidad_recibe_id==''){\n // BUSCAR LAS UNIDADES A LA QUE PERTENECE EL FUNCIONARIO CON PERMISO DE LEER\n $unidades_receptoras = array_unique($unidades_receptoras);\n \n $funcionario_unidades_leer = Doctrine::getTable('Correspondencia_FuncionarioUnidad')->funcionarioAutorizado($this->getUser()->getAttribute('funcionario_id'),'leer');\n\n foreach($funcionario_unidades_leer as $unidad_leer) {\n if(array_search($unidad_leer->getAutorizadaUnidadId(), $unidades_receptoras)>=0){\n $unidad_recibe_id = $unidad_leer->getAutorizadaUnidadId();\n }\n }\n }\n \n return $unidad_recibe_id;\n }", "function listar_directorios_ruta($ruta, $vlpadre){\n if (is_dir($ruta)) { \n if ($dh = opendir($ruta)) { \n\t\t$tmstmp = time();\n\t\t $rutabase = \"../docs/\".$_POST[\"idcliente\"].\"/\";\n\t\tmkdir($rutabase, 0777); \n\t\t \n while (($file = readdir($dh)) !== false) { \n //esta l�nea la utilizar�amos si queremos listar todo lo que hay en el directorio \n //mostrar�a tanto archivos como directorios \n //echo \"<br>Nombre de archivo: $file : Es un: \" . filetype($ruta . $file); \n if (is_dir($ruta . $file) && $file!=\".\" && $file!=\"..\"){ \n //solo si el archivo es un directorio, distinto que \".\" y \"..\" \n echo \"<br>Directorio: \".$ruta.\" --\".$file; \n\t\t\t\t$carpeta = creacarpetacliente($_POST[\"idcliente\"], substr($ruta,2).$file, $vlpadre );\n\t\t\t\t//print \"<br>EL Id de carpeta es: \".$carpeta;\n\t\t\t\t//exit;\n\t\t\t\tmkdir($rutabase.$carpeta, 0777);\n listar_directorios_ruta($ruta . $file . \"/\", $carpeta); \n } elseif($file!=\".\" && $file!=\"..\" && $file!=\"cmasivo.php\" && $file!=\"proceso.php\"){\n\t\t\t$arrfile =split(\"/\",substr($ruta,1).$file );\n\t\t\t\t$totarr = count($arrfile)-1;\n\n\t\t\t\t$tamano= filesize($rutabase.$vlpadre.\"/\".$arrfile[$totarr]);\n\t\t\t\tcopy($ruta.$file , $rutabase.$vlpadre.\"/\".$arrfile[$totarr] );\n\t\t\t\t echo \"<br>Copiar y subir a BD Archivo: $ruta$file\".\" -- \".$rutabase.$vlpadre.\"/\".$arrfile[$totarr];\n\t\t\t\t$pathtofile = $_POST[\"idcliente\"].\"/\".$vlpadre.\"/\".$arrfile[$totarr];\n\t\t\t\tinsertaarchivobd($_POST[\"idcliente\"], substr($ruta,1).$file, $pathtofile, $vlpadre, $tamano );\n\t\t\t\t\n\t\t\t}\n } \n closedir($dh); \n } \n }else \n echo \"<br>No es ruta valida\"; \n}", "public function borrarRelacionPara( $elemento, $usuario ){\n $estat = null;\n\n if( $elemento instanceof empresa || is_numeric($elemento) ){\n\n if( $elemento instanceof empresa ){\n\n //Al borrar una relacion debemos borrar las asignaciones...\n $agrupamientos = $this->obtenerAgrupamientosPropios();\n\n\n foreach($agrupamientos as $i => $agrupamiento){\n // Necesitamos contratas, empleados y maquinas, para quitarle los agrupadores\n $contratas = $elemento->obtenerEmpresasInferiores(null, false, $usuario, 2);\n $contratas[] = $elemento;\n\n\n foreach( $contratas as $contrata ){\n $agrupadores = $agrupamiento->obtenerAgrupadoresAsignados($contrata);\n\n if( count($agrupadores) ){\n $contrata->quitarAgrupadores( elemento::getCollectionIds($agrupadores), $usuario);\n }\n\n $empleados = $contrata->obtenerEmpleados(null, false, $usuario);\n foreach ($empleados as $empleado) {\n $agrupadores = $agrupamiento->obtenerAgrupadoresAsignados($empleado);\n if( count($agrupadores) ){\n $empleado->quitarAgrupadores( elemento::getCollectionIds($agrupadores), $usuario);\n }\n }\n\n $maquinas = $contrata->obtenerMaquinas(null, false, $usuario);\n foreach ($maquinas as $maquina) {\n $agrupadores = $agrupamiento->obtenerAgrupadoresAsignados($maquina);\n if( count($agrupadores) ){\n $maquina->quitarAgrupadores( elemento::getCollectionIds($agrupadores), $usuario);\n }\n }\n }\n }\n\n }\n\n $empresa = ( is_numeric($elemento) ) ? $elemento : $elemento->getUID();\n $estat = $this->eliminarRelacion($this->tabla.\"_relacion\", \"uid_empresa_inferior\", $empresa, \"uid_empresa_superior\");\n } elseif ( $elemento instanceof empleado ){\n $empleado = $elemento->getUID();\n $estat = $this->eliminarRelacion(TABLE_EMPLEADO.\"_empresa\", \"uid_empleado\", $empleado, \"uid_empresa\");\n } elseif ( $elemento instanceof maquina ){\n $maquina = $elemento->getUID();\n $estat = $this->eliminarRelacion(TABLE_MAQUINA.\"_empresa\", \"uid_maquina\", $maquina, \"uid_empresa\");\n }\n\n if( !$estat ){ return false; }\n // Al eliminar una empresa de otra, se deben actualizar las solicitudes.. las de los elemenotos\n // inferiores las dejamos en cola para no ralentizar...\n // $elemento->actualizarSolicitudDocumentos();\n return $estat;\n }", "private function iniciarRecolectarData()\r\n\t\t{\r\n\t\t\tself::findPagoDetalleActividadEconomica();\r\n\t\t\tself::findPagoDetalleInmuebleUrbano();\r\n\t\t\tself::findPagoDetalleVehiculo();\r\n\t\t\tself::findPagoDetalleAseo();\r\n\t\t\tself::findPagoDetallePropaganda();\r\n\t\t\tself::findPagoDetalleEspectaculo();\r\n\t\t\tself::findPagoDetalleApuesta();\r\n\t\t\tself::findPagoDetalleVario();\r\n\t\t\tself::findPagoDetalleMontoNegativo();\r\n\t\t\tself::ajustarDataReporte();\r\n\t\t}", "public function guardar(){\n \n $_vectorpost=$this->_vcapitulo;\n $_programadas=[1,3,4,5,6,7,8,2,11,15,26];\n \n if(!empty($this->_relaciones)){\n \n $_vpasspregunta=explode(\"%%\",$this->_relaciones);\n \n /*Iniciando Transaccion*/\n $_transaction = Yii::$app->db->beginTransaction();\n try {\n foreach($_vpasspregunta as $_clguardar){\n\n /*Aqui se debe ir la funcion segun el tipo de pregunta\n * la variable $_clguardar es un string que trae\n * name_input ::: id_pregunta ::: id_tpregunta ::: id_respuesta\n * cada funcion de guardar por tipo se denomina gr_tipo...\n */\n\n $_ldata=explode(\":::\",$_clguardar);\n\n //Recogiendo codigos SQL\n //Se envia a la funcion de acuerdo al tipo\n // @name_input \"0\"\n // @id_pregunta \n // @id_tpregunta\n // @id_respuesta ==========================//\n \n /*Asociando Respuesta*/\n $_nameq = 'rpta'.$_ldata[0];\n \n \n \n if(!empty($_ldata[2]) and in_array($_ldata[2], $_programadas) === TRUE and isset($_vectorpost['Detcapitulo'][$_nameq])){\n \n \n //Yii::trace(\"Llegan tipos de preguntas \".$_ldata[2].\" Para idpregunta \".$_ldata[1],\"DEBUG\");\n /*Recogiendo Id_respuesta si existe*/ \n $_idrespuesta=(!empty($_ldata[3]))? $_ldata[3]:'';\n $id_pregunta= $_ldata[1];\n $this->_idcapitulo = $_ldata[4];\n \n \n /*Armando Trama SQL segun el tipo de pregunta*/\n $_valor = $_vectorpost['Detcapitulo'][$_nameq];\n \n //Yii::trace(\"que respuestas llegan \".$_valor,\"DEBUG\");\n \n if(isset($this->_agrupadas[$id_pregunta])){\n \n /*1) Buscando si existe una respuesta asociada a la agrupacion*/\n $idrpta_2a = Yii::$app->db->createCommand(\n 'SELECT id_respuesta FROM fd_respuesta\n LEFT JOIN fd_pregunta ON fd_pregunta.id_pregunta = fd_respuesta.id_pregunta\n WHERE fd_pregunta.id_agrupacion= :agrupacion \n and fd_respuesta.id_conjunto_pregunta= :idconjprta \n and fd_respuesta.id_conjunto_respuesta= :idconjrpta\n and fd_respuesta.id_capitulo= :idcapitulo\n and fd_respuesta.id_formato = :idformato\n and fd_respuesta.id_version = :idversion ')\n ->bindValues([\n ':idconjrpta' => $this->_idconjrpta,\n ':idcapitulo' =>$this->_idcapitulo,\n ':idformato' =>$this->_idformato,\n ':idconjprta' => $this->_idconjprta,\n ':idversion' =>$this->_idversion, \n ':agrupacion' =>$this->_agrupadas[$id_pregunta],\n ])->queryOne();\n \n $_idrespuesta = $idrpta_2a['id_respuesta'];\n \n /*2) Si existe respuesta asociada se envia como _idrespuesta*/\n \n $v_rpta= $this->{\"gr_tipo2a\"}($_idrespuesta,$_valor,$id_pregunta); //Preguntas tipo 2 agrupadas\n $_ldata[1]= $v_rpta[2];\n \n }else{\n \n //Averiguando si la pregunta es tipo multiple y si la respuesta es null si es asi \n //Salta a la siguiente pregunta\n if(!empty($this->multiples[$id_pregunta]) and empty($_valor)){\n continue;\n }else if(!empty($this->multiples[$id_pregunta]) and !is_null($_valor)){\n $_idrespuesta=''; \n } \n \n /*Si la pregunta es tipo 3 se averigua si la respuesta es tipo especifique*/\n $_otros=null;\n if($_ldata[2]=='3' and isset($_vectorpost['Detcapitulo']['otros_'.$_ldata[0]])){\n \n $_otros = $_vectorpost['Detcapitulo']['otros_'.$_ldata[0]];\n $v_rpta= $this->{\"gr_tipo\".$_ldata[2]}($_idrespuesta,$_valor,$_otros);\n \n }else{\n \n if($_ldata[2]==11 and isset($this->_tipo11[$_nameq])){\n $_valor=count($this->_tipo11[$_nameq]);\n $v_rpta= $this->{\"gr_tipo\".$_ldata[2]}($_idrespuesta,$_valor);\n }else if ($_ldata[2]!=11 and !isset($this->_tipo11[$_nameq])){\n $v_rpta= $this->{\"gr_tipo\".$_ldata[2]}($_idrespuesta,$_valor,$_otros,$id_pregunta);\n }else{\n continue;\n } \n }\n } \n \n /*Asignando valor == null*/\n $v_rpta[1]=(!isset($v_rpta[1]))? NULL:$v_rpta[1];\n \n \n /*Generado comando SQL*/\n if(!empty($v_rpta[0])){\n \n if(empty($this->_idjunta))$this->_idjunta=0;\n if(is_null($_otros)){ \n \n if (strpos($v_rpta[0], ';') !== false) {\n $sep_qu = explode(\";\", $v_rpta[0]);\n \n Yii::$app->db->createCommand($sep_qu[0])\n ->bindValues([\n ':valor' => $v_rpta[1],\n ':idconjrpta' => $this->_idconjrpta,\n ':idpregunta' => $_ldata[1],\n ':idtpregunta' => $_ldata[2],\n ':idcapitulo' =>$this->_idcapitulo,\n ':idformato' =>$this->_idformato,\n ':idconjprta' => $this->_idconjprta,\n ':idversion' =>$this->_idversion,\n ':idjunta' =>$this->_idjunta,\n ])->execute();\n \n Yii::$app->db->createCommand($sep_qu[1])\n ->bindValues([\n ':valor' => $v_rpta[1],\n ])->execute();\n \n \n }\n else\n {\n Yii::$app->db->createCommand($v_rpta[0])\n ->bindValues([\n ':valor' => $v_rpta[1],\n ':idconjrpta' => $this->_idconjrpta,\n ':idpregunta' => $_ldata[1],\n ':idtpregunta' => $_ldata[2],\n ':idcapitulo' =>$this->_idcapitulo,\n ':idformato' =>$this->_idformato,\n ':idconjprta' => $this->_idconjprta,\n ':idversion' =>$this->_idversion,\n ':idjunta' =>$this->_idjunta,\n ])->execute();\n }\n \n \n }else{ \n Yii::$app->db->createCommand($v_rpta[0])\n ->bindValues([\n ':valor' => $v_rpta[1],\n ':idconjrpta' => $this->_idconjrpta,\n ':idpregunta' => $_ldata[1],\n ':idtpregunta' => $_ldata[2],\n ':idcapitulo' =>$this->_idcapitulo,\n ':idformato' =>$this->_idformato,\n ':idconjprta' => $this->_idconjprta,\n ':idversion' =>$this->_idversion,\n ':idjunta' =>$this->_idjunta,\n ':otros' =>$_otros, \n ])->execute();\n }\n\n /*Se averigua con que id quedo guardada la respuesta si es tipo 11 -> guarda en SOP SOPORTE*/\n if($_ldata[2]=='11' and !empty($this->_tipo11[$_nameq])){\n\n $id_rpta = Yii::$app->db->createCommand(\n 'SELECT id_respuesta FROM fd_respuesta '\n . 'WHERE id_pregunta = :_prta'\n . ' and fd_respuesta.id_conjunto_pregunta= :idconjprta \n and fd_respuesta.id_conjunto_respuesta= :idconjrpta\n and fd_respuesta.id_capitulo= :idcapitulo\n and fd_respuesta.id_formato = :idformato\n and fd_respuesta.id_version = :idversion' )\n ->bindValues([\n ':_prta' => $_ldata[1], \n ':idconjrpta' => $this->_idconjrpta,\n ':idcapitulo' =>$this->_idcapitulo,\n ':idformato' =>$this->_idformato,\n ':idconjprta' => $this->_idconjprta,\n ':idversion' =>$this->_idversion, \n ])->queryOne();\n\n\n foreach($this->_tipo11[$_nameq] as $_cltp11){\n\n $_vctp11=explode(\":::\",$_cltp11);\n $_namefile = $_vctp11[0].\".\".$_vctp11[2];\n\n $_sqlSOP=\"INSERT INTO sop_soportes ([[ruta_soporte]],[[titulo_soporte]],[[tamanio_soportes]],[[id_respuesta]]) VALUES (:ruta, :titulo, :tamanio, :_idrpta)\";\n\n Yii::$app->db->createCommand($_sqlSOP)\n ->bindValues([\n ':ruta' => $_vctp11[1],\n ':titulo' => $_namefile,\n ':tamanio' => $_vctp11[3],\n ':_idrpta' => $id_rpta[\"id_respuesta\"],\n ])->execute();\n\n }\n \n }\n /*Fin guardando en SOP_SOPORTES para tipo 11*/\n \n } \n }\n\n }\n \n \n \n $_transaction->commit();\n \n }catch (\\Exception $e) {\n $_transaction->rollBack();\n throw $e;\n return FALSE;\n } catch (\\Throwable $e) {\n $_transaction->rollBack();\n throw $e;\n return FALSE;\n } \n \n }\n return TRUE;\n }", "function corpoRelatorio($oPdf, $oFiltros, $oTurma) {\n\n $oPdf->SetXY($oFiltros->iPosicaoX, $oFiltros->iPosicaoY);\n $iAlunosImpressos = 0;\n\n /**\n * Pegamos a data atual para calcular a data de nascimento do aluno\n */\n $dtAtual = date(\"Y-m-d\");\n\n foreach ($oFiltros->aAlunosPorPagina as $oMatricula) {\n\n /**\n * Caso situacao seja troca de turma, nao apresentamos no relatorio\n */\n if ($oMatricula->getSituacao() == 'TROCA DE TURMA') {\n continue;\n }\n\n /**\n * Valida quebra de pagina\n */\n if ($oPdf->GetY() > $oFiltros->iAlturaMaxima) {\n\n $oPdf->AddPage(\"L\");\n cabecalhoRelatorio($oPdf, $oFiltros, $oTurma);\n rodapeRelatorio($oPdf, $oFiltros, $oTurma);\n $iAlunosImpressos = 0;\n }\n\n /**\n * Verificamos se trata-se de um aluno repetente\n */\n $sSituacao = 'NOVO';\n if (($oMatricula->getTipo() == 'R' && $oMatricula->getResultadoFinalAnterior() == 'R')) {\n $sSituacao = 'REPETENTE';\n }\n\n $oData = $oMatricula->getAluno()->getIdadeNaData($dtAtual);\n $oDataNascimento = new DBDate($oMatricula->getAluno()->getDataNascimento());\n $sDataNascimento = $oDataNascimento->convertTo(DBDate::DATA_PTBR);\n\n $oFiltros->sEvadido = '';\n $oFiltros->sTransferido = '';\n\n /**\n * Verificamos se o aluno foi transferido ou evadido, e buscamos o mes para apresentar no relatorio\n */\n if ($oMatricula->getSituacao() == 'TRANSFERIDO FORA' || $oMatricula->getSituacao() == 'TRANSFERIDO REDE') {\n $oFiltros->sEvadido = db_mes($oMatricula->getDataEncerramento()->getMes(), 2);\n } else if ($oMatricula->getSituacao() == 'EVADIDO') {\n $oFiltros->sTransferido = db_mes($oMatricula->getDataEncerramento()->getMes(), 2);\n }\n\n $oPdf->SetFont('arial', '', 6);\n $oPdf->Cell($oFiltros->iColunaNumero, $oFiltros->iAlturaLinhaPadrao, $oMatricula->getNumeroOrdemAluno(), 1, 0, \"C\");\n $oPdf->Cell($oFiltros->iColunaAluno, $oFiltros->iAlturaLinhaPadrao, $oMatricula->getAluno()->getNome(), 1, 0, \"L\");\n $oPdf->Cell($oFiltros->iColunaSexo, $oFiltros->iAlturaLinhaPadrao, $oMatricula->getAluno()->getSexo(), 1, 0, \"C\");\n $oPdf->Cell($oFiltros->iColunaDataNascimento, $oFiltros->iAlturaLinhaPadrao, $sDataNascimento, 1, 0, \"C\");\n $oPdf->Cell($oFiltros->iColunaIdadeMeses, $oFiltros->iAlturaLinhaPadrao, \"{$oData->anos} / {$oData->meses}\", 1, 0, \"C\");\n\n switch ($oFiltros->sTipoModelo) {\n\n /**\n * 1 - Matricula Inicial\n * 2 - Demais Cursos\n */\n case (\"12\"):\n\n $sPreEscola = 'NÃO';\n if ($oMatricula->getAluno()->temPreEscolaNaRede()) {\n $sPreEscola = 'SIM';\n }\n\n $oPdf->Cell($oFiltros->iColunaSituacaoMatricula, $oFiltros->iAlturaLinhaPadrao, $sSituacao, 1, 0, \"C\");\n if ($oFiltros->iPreEscola == 2) {\n $oPdf->Cell($oFiltros->iColunaPreEscola, $oFiltros->iAlturaLinhaPadrao, $sPreEscola, 1, 0, \"C\");\n }\n break;\n\n /**\n * 2 - Matricula Final\n * 1 - Educacao Infantil\n */\n case (\"21\"):\n\n preencheColunasMatriculaFinal($oPdf, $oFiltros, $oMatricula);\n break;\n\n /**\n * 2 - Matricula Final\n * 2 - Demais Cursos\n */\n case (\"22\"):\n\n $oPdf->Cell($oFiltros->iColunaSituacaoMatricula, $oFiltros->iAlturaLinhaPadrao, $sSituacao, 1, 0, \"C\");\n preencheColunasMatriculaFinal($oPdf, $oFiltros, $oMatricula);\n break;\n }\n\n $oPdf->Cell($oFiltros->iColunaCorRaca, $oFiltros->iAlturaLinhaPadrao, $oMatricula->getAluno()->getRaca(), 1, 1, \"C\");\n $iAlunosImpressos++;\n }\n}", "function crea_ruta_punto($itm,$r){\n\t \n\n global $db,$dbf,$fecha_con_formato,$cp,$cpno, $existe_punto_detalle;\n $cuenta_puntos=0;\n\t$cuenta_puntos_no = 0;\n\t$otra_ban = 0;\n\t$bandera =0;\n \n\t\t\t\t$usuario = \"SELECT COD_OBJECT_MAP FROM SAVL_G_PRIN WHERE ITEM_NUMBER = '\".$itm.\"'\";\n\t\t\t $query_user = $db->sqlQuery($usuario);\n\t\t\t\t$row_user = $db->sqlFetchArray($query_user);\n\t\t\t\t$count_user = $db->sqlEnumRows($query_user);\t \t \n\t\t\t\t\t\t\t \n\t\t\t\t\tif($count_user > 0)\t{\t\t\n\t\t\t\t \n \t\t\t\t\t$punto = \"SELECT COD_OBJECT_MAP FROM SAVL_ROUTES_DETAIL WHERE COD_OBJECT_MAP =\".$row_user['COD_OBJECT_MAP'];\n \t\t\t $query_punto = $db->sqlQuery($punto);\n \t\t\t\t $count_punto = $db->sqlEnumRows($query_punto);\n\t\t\t\t \n \t\t\t\t if($count_punto>0){\n \t\t\t\t\t\t // $existe_punto = $existe_punto +1;\n \t\t\t\t echo \"ya existe el geopunto en routes_detail, se guardara este mismo geopunto con otra ruta...\";\n\t\t\t\t\t\t\t\t\t\t\t$otra_ban = 1;\n \t\t\t\t\t\t }\n\t\t\t\t \n \t\t\t\t //if($count_punto==0){\n \t\t\t\t\t\t\t $data_2 = Array(\n\t\t\t\t\t\t\t\t\t\t\t\t\t'ID_ROUTE' => $r,\n\t\t\t\t\t\t\t\t\t\t\t\t\t'COD_OBJECT_MAP' => $row_user['COD_OBJECT_MAP'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t'CREATE_DATE' => $fecha_con_formato\n\t\t\t\t\t\t\t\t\t\t\t\t );\n \t\t\t\tif($dbf-> insertDB($data_2,'SAVL_ROUTES_DETAIL',false) == true){\n \t\t\t\t\t\t\t\t\t $bandera = 1;\n \t\t\t\t\t\t\t\t\t echo 1;\t\t\n }\telse{\n echo 0;\t\n }\t\n \t\t\t // }else{\n \t\t\t\t\t //\t\t$bandera = 0;\n \t\t\t\t\t //}\n\t\t\t\t \n\t\t\t\t }\n\n\t\t\tif($bandera ==1){\n\t\t\t $cp = $cp +1;\n\t\t\t}else{\n\t\t\t $cpno = $cpno +1;\n\t\t\t}\t\t\t\t\t\t\t\n\t\t\t\t\t \n\t\t\tif($otra_ban ==1){\n\t\t\t $existe_punto_detalle = $existe_punto_detalle +1;\n\t\t\t} \n \n }", "public function eliminarDetalle_monitor( $condiciones ) {\r\n \t$r = $this->pdo->_delete('c011t_Detalle_monitor', $condiciones);\r\n\treturn $r;\r\n }", "function getRelaciones() {\r\n //arreglo relacion de tablas\r\n //---------------------------->DEPARTAMENTO(OPERADOR)\r\n //---------------------------->TEMA(TIPO)\r\n\t\t$relacion_tablas['documento_tema']['dti_id']['tabla']='documento_tipo';\r\n\t\t$relacion_tablas['documento_tema']['dti_id']['campo']='dti_id';\r\n\t\t$relacion_tablas['documento_tema']['dti_id']['remplazo']='dti_nombre';\r\n\t\t//---------------------------->TEMA(TIPO)\r\n\r\n\t\t//---------------------------->SUBTEMA(TEMA)\r\n\t\t$relacion_tablas['documento_subtema']['dot_id']['tabla']='documento_tema';\r\n\t\t$relacion_tablas['documento_subtema']['dot_id']['campo']='dot_id';\r\n\t\t$relacion_tablas['documento_subtema']['dot_id']['remplazo']='dot_nombre';\r\n //---------------------------->SUBTEMA(TEMA)\r\n\r\n //---------------------------->DOCUMENTO(OPERADOR)\r\n $relacion_tablas['documento_actor']['ope_id']['tabla']='operador';\r\n\t\t$relacion_tablas['documento_actor']['ope_id']['campo']='ope_id';\r\n\t\t$relacion_tablas['documento_actor']['ope_id']['remplazo']='ope_nombre';\r\n //---------------------------->DOCUMENTO(TIPO DE ACTOR)\r\n $relacion_tablas['documento_actor']['dta_id']['tabla']='documento_tipo_actor';\r\n\t\t$relacion_tablas['documento_actor']['dta_id']['campo']='dta_id';\r\n\t\t$relacion_tablas['documento_actor']['dta_id']['remplazo']='dta_nombre';\r\n //----------------------------<DOCUMENTO\r\n\r\n\t\t//---------------------------->DEPARTAMENTO(OPERADOR)\r\n\t\t$relacion_tablas['departamento']['ope_id']['tabla']='operador';\r\n\t\t$relacion_tablas['departamento']['ope_id']['campo']='ope_id';\r\n\t\t$relacion_tablas['departamento']['ope_id']['remplazo']='ope_nombre';\r\n\t\t//---------------------------->DEPARTAMENTO(OPERADOR)\r\n\r\n\t\t//---------------------------->DEPARTAMENTO(REGION)\r\n\t\t$relacion_tablas['departamento']['dpr_id']['tabla']='departamento_region';\r\n\t\t$relacion_tablas['departamento']['dpr_id']['campo']='dpr_id';\r\n\t\t$relacion_tablas['departamento']['dpr_id']['remplazo']='dpr_nombre';\r\n //---------------------------->DEPARTAMENTO(REGION)\r\n\r\n\t\t//---------------------------->MUNICIPIO(DEPARTAMENTO)\r\n\t\t$relacion_tablas['municipio']['dep_id']['tabla']='departamento';\r\n\t\t$relacion_tablas['municipio']['dep_id']['campo']='dep_id';\r\n\t\t$relacion_tablas['municipio']['dep_id']['remplazo']='dep_nombre';\r\n //---------------------------->MUNICIPIO(DEPARTAMENTO)\r\n\r\n return $relacion_tablas;\r\n }", "public function guardarDetallePagoExamen($idFactura, $factura_idExamen, $idListadoExamen, $valorBruto, $descuento, $idSucursal){\n\t\t\n\t\t$idFactura \t\t\t\t\t\t= parent::escaparQueryBDCliente($idFactura);\n\t\t$factura_idExamen \t\t\t\t= parent::escaparQueryBDCliente($factura_idExamen);\n\t\t$idListadoExamen \t\t\t\t= parent::escaparQueryBDCliente($idListadoExamen);\n\t\t$valorBruto \t\t\t\t\t= parent::escaparQueryBDCliente($valorBruto);\n\t\t$descuento \t\t\t\t\t\t= parent::escaparQueryBDCliente($descuento);\n\t\t\n\t\t$resultado = \"\";\n\t\t\n\t\t$conexion = parent::conexionCliente();\n\t\t\n\t\t$query = \"SELECT idPagoFacturaCaja \n\t\t\t\t\tFROM tb_pago_factura_caja\n\t\t\t\t\t\n\t\t\t\t\tWHERE tipoElemento = 'Factura' AND idTipoElemento = '$idFactura'\";\n\t\t\n\t\tif($res = $conexion->query($query)){\n\t\t\t\n\t\t\twhile ($filas = $res->fetch_assoc()) {\n\t\t\t\t\t\t\t\n\t\t\t\t$resultado = $filas['idPagoFacturaCaja'];\n\t\t\t\t\t\n\t\t\t}//fin while\n\t\t\t\n\t\t\t/* liberar el conjunto de resultados */\n\t\t\t$res->free();\n\t\t\t\n\t\t}//fin if\n\t\t\n\t\t\n\t\t$query2 = \"INSERT INTO tb_pago_factura_caja_detalle (tipoDetalle, idTipoDetalle, tipoSubDetalle, idTipoSubDetalle, valorUnitario, descuento, cantidad, idPagoFacturaCaja, estado, idSucursal)\n\t\t\t\t\t\t\t\tVALUES ('Examen', '$factura_idExamen', 'DetalleExamen', '$idListadoExamen', '$valorBruto', '$descuento', '1', '$resultado', 'Activo', '$idSucursal')\";\n\t\t\n\t\t$res2 = $conexion->query($query2);\n\t\t\n\t\t\n\t}", "public function exito($compra_id = null)\n\t{\n\t\tif ( ! $this->Auth->user() )\n\t\t{\n\t\t\t$this->redirect('/');\n\t\t}\n\n\t\t/**\n\t\t * Comprueba que la compra exista\n\t\t */\n\t\tif ( $compra_id && ! $this->Reserva->DetalleCompra->Compra->exists($compra_id) )\n\t\t{\n\t\t\t$this->redirect('/');\n\t\t}\n\n\t\t/**\n\t\t * Si viene desde webpay, debe informar ID\n\t\t */\n\t\tif ( $this->request->is('post') )\n\t\t{\n\t\t\tif ( empty($this->request->data['TBK_ORDEN_COMPRA']) || ! $this->Reserva->DetalleCompra->Compra->exists($this->request->data['TBK_ORDEN_COMPRA']) )\n\t\t\t{\n\t\t\t\t$this->redirect(array('action' => 'add'));\n\t\t\t}\n\t\t\t$compra_id\t\t= $this->request->data['TBK_ORDEN_COMPRA'];\n\t\t}\n\n\t\t/**\n\t\t * Obtiene el detalle completo de la compra\n\t\t */\n\t\t$compra\t\t\t= $this->Reserva->DetalleCompra->Compra->find('first', array(\n\t\t\t'conditions'\t\t=> array('Compra.id' => $compra_id),\n\t\t\t'contain'\t\t\t=> array(\n\t\t\t\t'Usuario',\n\t\t\t\t'DetalleCompra'\t\t=> array('Producto', 'Reserva'),\n\t\t\t\t'EstadoCompra',\n\t\t\t\t'Direccion'\t\t\t=> array('Comuna' => array('Region')),\n\t\t\t)\n\t\t));\n\n\t\t/**\n\t\t * Comprueba que la compra sea reserva y pertenezca al usuario logeado\n\t\t */\n\t\tif ( ! $compra || ! $compra['Compra']['reserva'] || $compra['Compra']['usuario_id'] != $this->Auth->user('id') )\n\t\t{\n\t\t\t$this->redirect('/');\n\t\t}\n\n\t\t$compra['Compra']['tipo_pago']\t\t= TransbankComponent::tipoPago($compra['Compra']['tbk_tipo_pago']);\n\t\t$compra['Compra']['tipo_cuota']\t\t= TransbankComponent::tipoCuota($compra['Compra']['tbk_tipo_pago']);\n\n\t\t$reservas_id\t= array_unique(Hash::extract($compra, 'DetalleCompra.{n}.reserva_id'));\n\t\t$reservas\t\t= $this->Reserva->find('all', array(\n\t\t\t'conditions'\t\t=> array('Reserva.id' => $reservas_id)\n\t\t));\n\n\t\tforeach ( $reservas as &$reserva )\n\t\t{\n\t\t\t$total\t= 0;\n\t\t\tforeach ( $compra['DetalleCompra'] as $producto )\n\t\t\t{\n\t\t\t\tif ( $producto['Reserva']['id'] == $reserva['Reserva']['id'] )\n\t\t\t\t{\n\t\t\t\t\t$total\t+= $producto['cantidad'];\n\t\t\t\t}\n\t\t\t}\n\t\t\t$reserva['Reserva']['reserva']\t= (bool) $total;\n\t\t}\n\n\t\t/**\n\t\t * Limpia la sesion\n\t\t */\n\t\t$this->Carro->vaciar();\n\t\t$this->Session->delete('Flujo.Reserva');\n\t\t$this->Session->delete('Flujo.Carro');\n\n\t\t/**\n\t\t * Camino de migas\n\t\t */\n\t\tBreadcrumbComponent::add('Reserva de uniformes', array('action' => 'add'));\n\t\tBreadcrumbComponent::add('Reserva exitosa');\n\t\t$this->set('title', 'Reserva exitosa');\n\n\t\t$this->set(compact('compra', 'reservas'));\n\t}", "function revisaNuevo($data2, $compra, $inve){\n foreach ($data2 as $min1) {\n $art=$min1->CVE_ART;\n $mov=$min1->NUM_MOV;\n $this->query=\"SELECT count(num_mov) as movimientos FROM MINVE06 WHERE CVE_ART = '$art' and num_mov < $mov \";\n $res=$this->EjecutaQuerySimple();\n $rowM=ibase_fetch_object($res);\n $movs=$rowM->MOVIMIENTOS;\n if($movs == 0){\n $this->query=\"UPDATE MINVE06 SET COSTO_PROM_INI = 0, COSTO_PROM_fin = 0 WHERE NUM_MOV = $mov\";\n $this->queryActualiza();\n }\n\n $this->query=\"SELECT first 1 * FROM MINVE06 WHERE REFER = '$compra' \n AND CVE_ART = '$inve' \n and costeado_ff is null \n ORDER BY NUM_MOV ASC \";\n $res=$this->EjecutaQuerySimple();\n while ($tsarray=ibase_fetch_object($res)){\n $data3[]=$tsarray;\n }\n }\n return $data3;\n }", "public function GestorReglasNegocios() {\n $this->gestorAccesoDatos = new GestorAccesoDatos();\n }", "static public function ctrCrearRecursos(){\n if (isset($_POST[\"nuevorubro\"])) {\n if (preg_match('/^[a-zA-Z0-9ñÑáéíóúÁÉÍÓÚ ]+$/', $_POST[\"nuevorubro\"]) &&\n preg_match('/^[a-zA-Z0-9ñÑáéíóúÁÉÍÓÚ ]+$/', $_POST[\"nuevoconcepto\"]) &&\n preg_match('/^[a-zA-Z0-9ñÑáéíóúÁÉÍÓÚ ]+$/', $_POST[\"nuevovalor_rubro\"]) &&\n preg_match('/^[a-zA-Z0-9ñÑáéíóúÁÉÍÓÚ ]+$/', $_POST[\"nuevovalor_proyecto\"]) &&\n preg_match('/^[a-zA-Z0-9ñÑáéíóúÁÉÍÓÚ ]+$/', $_POST[\"nuevoid_proyecto\"])){\n\n $recursos = \"recursos\"; \n \n $datos = array(\"rubro\" => $_POST[\"nuevorubro\"],\n \"concepto\" => $_POST[\"nuevoconcepto\"],\n \"valor_rubro\" => $_POST[\"nuevovalor_rubro\"],\n \"valor_proyecto\" => $_POST[\"nuevovalor_proyecto\"],\n \"id_proyecto\" => $_POST[\"nuevoid_proyecto\"]);\n $respuesta = ModeloRecurso::mdlIngresarRecursos($recursos, $datos);\n\n if ($respuesta == \"ok\") {\n echo '<script>\n\t\t\t\t\tswal({\n\n\t\t\t\t\t\ttype: \"success\",\n\t\t\t\t\t\ttitle: \"¡El recurso ha sido guardado correctamente!\",\n\t\t\t\t\t\tshowConfirmButton: true,\n\t\t\t\t\t\tconfirmButtonText: \"Cerrar\"\n\n\t\t\t\t\t}).then(function(result){\n\n\t\t\t\t\t\tif(result.value){\n\t\t\t\t\t\t\n\t\t\t\t\t\t\twindow.location = \"recurso\";\n\n\t\t\t\t\t\t}\n\n });\n \n\t\t\t\t\t</script>';\n }\n }else{\n echo '<script>\n\n\t\t\t\t\tswal({\n\n\t\t\t\t\t\ttype: \"error\",\n\t\t\t\t\t\ttitle: \"¡El recurso no puede ir vacío o llevar caracteres especiales!\",\n\t\t\t\t\t\tshowConfirmButton: true,\n\t\t\t\t\t\tconfirmButtonText: \"Cerrar\"\n\n\t\t\t\t\t}).then(function(result){\n\n\t\t\t\t\t\tif(result.value){\n\t\t\t\t\t\t\n\t\t\t\t\t\t\twindow.location = \"recurso\";\n\n\t\t\t\t\t\t}\n\n\t\t\t\t\t});\n\n\t\t\t\t</script>';\n }\n }\n }", "function cinotif_trouver_objet_courrier_et_destinataire($id_courrier, $id_auteur=0, $id_abonne=0) {\n\t$return = array('objet'=>'','id_objet'=>0);\n\t$id_courrier = intval($id_courrier);\n\t$id_auteur = intval($id_auteur);\n\t$id_abonne = intval($id_abonne);\n\t$evenement_recherche = 0;\n\n\tif ($id_courrier>0 AND ($id_auteur OR $id_abonne)) {\n\t\t\n\t\t// contenu notifie\n\t\t$quoi = '';\n\t\t$objet = '';\n\t\t$id_objet = 0;\n\t\t$row = sql_fetsel('*', 'spip_cinotif_courriers', 'id_courrier='.$id_courrier);\n\t\tif ($row) {\n\t\t\t$quoi = $row['quoi'];\n\t\t\t$objet = $row['objet'];\n\t\t\t$id_objet = intval($row['id_objet']);\n\t\t\t$parent = $row['parent'];\n\t\t\t$id_parent = intval($row['id_parent']);\n\t\t}\n\n\t\t// article\n\t\tif ($parent=='article'){\n\t\t\t$evenement_recherche = cinotif_evenement_recherche($id_auteur,$id_abonne,$quoi,$parent,array($id_parent));\n\t\t\t\n\t\t\tif (!$evenement_recherche) {\n\t\t\t\t$t = sql_fetsel(\"id_rubrique\", \"spip_articles\", \"id_article=\".$id_parent);\n\t\t\t\t$id_parent = $t['id_rubrique'];\n\t\t\t\t$parent = 'rubrique';\n\t\t\t}\n\t\t}\t\t\t\n\n\t\t// rubrique\n\t\tif ($parent=='rubrique'){\n\t\t\t$ascendance = cinotif_ascendance($id_parent);\n\t\t\t$evenement_recherche = cinotif_evenement_recherche($id_auteur,$id_abonne,$quoi,$parent,$ascendance);\n\t\t\t\n\t\t\t// cas particulier ou on s'abonne a un article a l'evenement modification d'article\n\t\t\tif (!$evenement_recherche AND $quoi=='articlemodifie')\n\t\t\t\t$evenement_recherche = cinotif_evenement_recherche($id_auteur,$id_abonne,$quoi,$objet,array($id_objet));\n\t\t}\n\t\t\n\t\t// site\n\t\tif (!$evenement_recherche) {\n\t\t\t$evenement_recherche = cinotif_evenement_recherche($id_auteur,$id_abonne,$quoi,'site',array());\n\t\t}\n\t\tif ($evenement_recherche) {\n\t\t\t$row = sql_fetsel('*', 'spip_cinotif_evenements', \"id_evenement=\".$evenement_recherche);\n\t\t\t$return = array('objet'=>$row['objet'],'id_objet'=>$row['id_objet']);\n\t\t}\n\t}\n\t\n\treturn $return;\n}", "function guardarParcelaIndividual($idCalle,$r){\n $parcela = new Parcela();\n\n //Asignamos los atributos a la parcela/panteon\n $parcela->numero = $r->input(\"numero\");\n $parcela->tamanyo = $r->input(\"tam_ind\");\n $parcela->GC_CALLE_id = $idCalle;\n $parcela->save();\n\n //Comprobamos si hemos insertado tramadas en la parcela individual\n $tramadasParcela = $r->input(\"tramadas_parcela\");\n\n if($tramadasParcela > 0){\n\n //asignamos las tramadas a la parcela\n for($i = 1; $i <= $tramadasParcela ; $i++)\n {\n //Creamos un objeto tramada\n $tramada = new Tramada();\n\n //obtemos los parámetros del objeto request\n $numNichos = $r->input(\"tramada\". $i .\"_ind\");\n\n //Asignamos las propiedades del objeto\n $tramada->tramada = $i;\n $tramada->nichos = $numNichos;\n $tramada->GC_PARCELA_id = $parcela->id;\n $tramada->save();\n\n //Guardamos los x nichos de la tramada $i\n $this->guardarNichos($tramadasParcela * $numNichos,$tramada->id,$i,$tramadasParcela,2);\n }\n }\n }", "public function store($id)\n {\n\n $sub_rota_1 = new Sub_rota();\n $sub_rota_2 = new Sub_rota();\n $cidade = Cidade::findorfail($id);\n $rota = Rotas::findorfail($cidade->id_rota);\n $sub_rota_1->fill([\n 'id_rotas' => $cidade->id_rota,\n 'id_cidade1' => 0,\n 'id_cidade2' => $cidade->id,\n 'origem' => $rota->origem,\n 'destino' =>$cidade->cidade,\n 'hora_saida' => $rota->hora_de_saida,\n 'duracao_minutos' => intval($cidade->hora_de_saida) - intval($rota->hora_de_saida)\n ]);\n $sub_rota_2->fill([\n 'id_rotas' => $cidade->id_rota,\n 'id_cidade1' => $cidade->id,\n 'id_cidade2' => 0,\n 'origem' => $cidade->cidade,\n 'destino' =>$rota->destino,\n 'hora_saida' => $cidade->hora_de_saida,\n 'duracao_minutos' => (intval($rota->hora_de_saida) + intval($rota->duracao_minutos)) - intval($cidade->hora_de_saida) \n ]);\n $sub_rota_1->save();\n $sub_rota_2->save();\n $cidades = Cidade::where('id_rota',$cidade->id_rota)->get();\n foreach ($cidades as $item) {\n if($item->id != $cidade->id) {\n $sub_rota = new Sub_rota();\n if($item->hora_de_saida > $cidade->hora_de_saida) {\n $sub_rota->fill([\n 'id_rotas' => $cidade->id_rota,\n 'id_cidade1' => $cidade->id,\n 'id_cidade2' => $item->id,\n 'origem' => $cidade->cidade,\n 'destino' =>$item->cidade,\n 'hora_saida' => $cidade->hora_de_saida,\n 'duracao_minutos' => intval($item->hora_de_saida) - intval($cidade->hora_de_saida)\n ]);\n }\n else {\n $sub_rota->fill([\n 'id_rotas' => $cidade->id_rota,\n 'id_cidade1' => $item->id,\n 'id_cidade2' => $cidade->id,\n 'origem' => $item->cidade,\n 'destino' =>$cidade->cidade,\n 'hora_saida' => $item->hora_de_saida,\n 'duracao_minutos' => intval($cidade->hora_de_saida) - intval($item->hora_de_saida)\n ]);\n }\n $sub_rota->save();\n }\n }\n return redirect()->route('rota.index');\n }", "static public function mdlGuardarDetalleIngreso($tabla,$datos){\n\n\t\t$sql=\"INSERT INTO $tabla (\n\t\t\t\t\t\t\t\t\t\t\ttipo,\n\t\t\t\t\t\t\t\t\t\t\tdocumento,\n\t\t\t\t\t\t\t\t\t\t\ttaller,\n\t\t\t\t\t\t\t\t\t\t\tfecha,\n\t\t\t\t\t\t\t\t\t\t\tarticulo,\n\t\t\t\t\t\t\t\t\t\t\tcantidad,\n\t\t\t\t\t\t\t\t\t\t\talmacen,\n\t\t\t\t\t\t\t\t\t\t\tidcierre\n\t\t\t\t\t\t\t\t\t\t) \n\t\t\t\t\t\t\t\t\t\tVALUES\n\t\t\t\t\t\t\t\t\t\t\t(\n\t\t\t\t\t\t\t\t\t\t\t:tipo,\n\t\t\t\t\t\t\t\t\t\t\t:documento,\n\t\t\t\t\t\t\t\t\t\t\t:taller,\n\t\t\t\t\t\t\t\t\t\t\t:fecha,\n\t\t\t\t\t\t\t\t\t\t\t:articulo,\n\t\t\t\t\t\t\t\t\t\t\t:cantidad,\n\t\t\t\t\t\t\t\t\t\t\t:almacen,\n\t\t\t\t\t\t\t\t\t\t\t:idcierre\n\t\t\t\t\t\t\t\t\t\t\t)\";\n\n\t\t$stmt=Conexion::conectar()->prepare($sql);\n\n $stmt->bindParam(\":tipo\",$datos[\"tipo\"],PDO::PARAM_STR);\n\t\t$stmt->bindParam(\":documento\",$datos[\"documento\"],PDO::PARAM_STR);\n\t\t$stmt->bindParam(\":taller\",$datos[\"taller\"],PDO::PARAM_STR);\n $stmt->bindParam(\":fecha\",$datos[\"fecha\"],PDO::PARAM_STR);\n\t\t$stmt->bindParam(\":articulo\",$datos[\"articulo\"],PDO::PARAM_STR);\n\t\t$stmt->bindParam(\":cantidad\",$datos[\"cantidad\"],PDO::PARAM_INT);\n\t\t$stmt->bindParam(\":almacen\",$datos[\"almacen\"],PDO::PARAM_STR);\n\t\t$stmt->bindParam(\":idcierre\",$datos[\"idcierre\"],PDO::PARAM_INT);\n\n\n\t\tif($stmt->execute()){\n\n\t\t\treturn \"ok\";\n\n\t\t}else{\n\n\t\t\treturn \"error\";\n\n\t\t}\n\n\t\t$stmt=null;\n\t}", "function getRegistrosPlus() {\n\t\tif (isset($this->extra[\"monitor_id\"]) and isset($this->extra[\"pagina\"])) {\n\t\t\t$this->resultado = $this->getDetalleRegistrosPlus($this->extra[\"monitor_id\"], $this->extra[\"pagina\"]);\n\t\t\treturn;\n\t\t}\n\n\t\tglobal $mdb2;\n\t\tglobal $log;\n\t\tglobal $current_usuario_id;\n\n\t\t/* OBTENER LOS DATOS Y PARSEARLO */\n\t\t$sql = \"SELECT foo.nodo_id FROM (\".\n\t\t\t \"SELECT DISTINCT unnest(_nodos_id) AS nodo_id FROM _nodos_id(\".\n\t\t\t\tpg_escape_string($current_usuario_id).\",\".\n\t\t\t\tpg_escape_string($this->objetivo_id).\",'\".\n\t\t\t\tpg_escape_string($this->timestamp->getInicioPeriodo()).\"','\".\n\t\t\t\tpg_escape_string($this->timestamp->getTerminoPeriodo()).\"')) AS foo, nodo n \".\n\t\t\t \"WHERE foo.nodo_id=n.nodo_id ORDER BY orden\";\n\n\t\t$res =& $mdb2->query($sql);\n\t\tif (MDB2::isError($res)) {\n\t\t\t$log->setError($sql, $res->userinfo);\n\t\t\texit();\n\t\t}\n\n\t\t$monitor_ids = array();\n\t\twhile ($row = $res->fetchRow()) {\n\t\t\t$monitor_ids[] = $row[\"nodo_id\"];\n\t\t}\n\n\t\t/* SI NO HAY DATOS MOSTRAR MENSAJE */\n\t\tif (count($monitor_ids) == 0) {\n\t\t\t$this->resultado = $this->__generarContenedorSinDatos();\n\t\t\treturn;\n\t\t}\n\n\t\t/* TEMPLATE DEL GRAFICO */\n\t\t$T =& new Template_PHPLIB(REP_PATH_TABLETEMPLATES);\n\t\t$T->setFile('tpl_tabla', 'contenedor_tabla.tpl');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_CONTENEDORES', 'lista_contenedores');\n\n\t\t/* LISTA DE MONITORES */\n\t\t$orden = 1;\n\t\tforeach ($monitor_ids as $monitor_id) {\n\t\t\t$T->setVar('__contenido_id', 'regplus_'.$monitor_id);\n\t\t\t$T->setVar('__contenido_tabla', $this->getDetalleRegistrosPlus($monitor_id, 1, $orden));\n\t\t\t$T->parse('lista_contenedores', 'LISTA_CONTENEDORES', true);\n\t\t}\n\n\t\t$this->resultado = $T->parse('out', 'tpl_tabla');\n\t}", "public function Detalle()\n {\n $this->vista = 2;\n //formeamos las fechas de inicio y fin\n $fi = Carbon::parse($this->fecha_ini)->format('Y-m-d').' 00:00:00';\n $ff = Carbon::parse($this->fecha_fin)->format('Y-m-d').' 23:59:59';\n //si no se selecciono ningin paciente emitimos un mensaje de error;\n if($this->pacienteselected == 0)\n\t\t{\n $this->emit('msg-error', 'Seleccione un paciente');\n }else {\n //buscamos al paciente\n $paciente = Paciente::where('id',$this->pacienteselected)->get();\n //iteramos para asignar a las variables declaradas\n foreach ($paciente as $p) {\n $this->nombre = $p->name.' '.$p->last_name;\n $this->ci = $p->nro_ci;\n $this->edad = Carbon::parse($p->date_nac)->age;\n }\t\n //buscamos las solicitudes del paciente en dichas fechas\n $this->solicitudes = Solicitud::where('pacient',$this->pacienteselected)->whereBetween('created_at',[$fi,$ff])->get();\n //Sacamos el total de ingresos por pacient\n $this->total = Solicitud::where('pacient',$this->pacienteselected)->whereBetween('created_at',[$fi,$ff])->sum('pago');\n //sacamos la solicitud y su detalle agrupando por id solicitud, nombre de examen, precio\n $this->detalleSolicitud = Solicitud::with([\"solicitud_details\" => function($q){\n $q->leftjoin('examenes','examenes.id','solicitud_details.exam');\n $q->select('solicitud_details.solicitud','examenes.name','solicitud_details.price');\n $q->groupBy('solicitud_details.solicitud','examenes.name','solicitud_details.price');\n }])->where('pacient',$this->pacienteselected)\n ->whereBetween('solicitudes.created_at',[$fi,$ff])\n ->get();\n \n }\n }", "public static function verTrimestre(){\n\n $trim=Conexion::conectar('localhost','proyecto','root','');\n $trimestre=$trim->prepare(\"SELECT * FROM trimestre\");\n $trimestre->execute();\n\n return $trimestre;\n }", "public function istorijaRezultata() {\n $rModel = new RezultatModel();\n $igrac = $this->session->get('igrac');\n $rezultati = $rModel->nadji_rezultateigraca($igrac['idKI']);\n $this->prikaz(\"mod_istorijarezultata\", ['rezultati' => $rezultati]);\n }", "public function iniciarReporteDetalle()\r\n\t\t{\r\n\t\t\t$rangoValido = New RangoFechaValido($this->_fecha_desde, $this->_fecha_hasta);\r\n\t\t\tif ( $rangoValido->rangoValido() ) {\r\n\t\t\t\tif ( self::iniciarRecolectarData() ) {\r\n\t\t\t\t\t// Realizo un select completo con la informacion de la recoleccion de los datos.\r\n\t\t\t\t\t//return $this->_data;\r\n\t\t\t\t} else {\r\n\t\t\t\t\tself::setError(Yii::t('backend', 'Error al intentar recolectar la data para el reporte'));\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\tself::setError(Yii::t('backend', 'Rango de fecha no validos'));\r\n\t\t\t}\r\n\t\t}", "public function obtenerLayoutParcialValidar($id){\n $layout_parcial = LayoutParcial::find($id);\n\n $detalles = array();\n if($layout_parcial->campos_con_diferencia != null){\n\n foreach($layout_parcial->detalles as $detalle){//COMIENZO FOREACH POR DETALLE\n $linea = new \\stdClass();\n $maquina= Maquina::find($detalle->id_maquina);\n $detalle_aux = $detalle->campos_con_diferencia->where('entidad', 'maquina');\n\n //variable auxiliar, si existio diferncia en el campo en cuestion\n $aux = $detalle_aux->where('columna', 'nro_admin');\n if($aux->count() == 1){\n foreach ($aux as $cd) {\n $linea->nro_admin = ['correcto' => false, 'valor' => $cd->valor, 'valor_antiguo' => $maquina->nro_admin];\n }\n }else{\n $linea->nro_admin = ['correcto' => true, 'valor' => $maquina->nro_admin, 'valor_antiguo' => ''];\n }\n\n $aux = $detalle_aux->where('columna' , 'nro_isla');\n if($aux->count() == 1){\n foreach ($aux as $cd) {\n $linea->nro_isla = ['correcto' => false, 'valor' => $cd->valor, 'valor_antiguo' => $maquina->isla->nro_isla];\n }\n }else{\n $linea->nro_isla = ['correcto' => true, 'valor' => $maquina->isla->nro_isla, 'valor_antiguo' => ''];\n }\n\n $aux = $detalle_aux->where('columna', 'marca');\n if($aux->count() == 1){\n foreach ($aux as $cd) {\n $linea->marca = ['correcto' => false, 'valor' => $cd->valor, 'valor_antiguo' => $maquina->marca];\n }\n }else{\n $linea->marca = ['correcto' => true, 'valor' => $maquina->marca, 'valor_antiguo' => ''];\n }\n\n $aux = $detalle_aux->where('columna', 'nombre_juego');\n if($aux->count() == 1){\n foreach ($aux as $cd) {\n $linea->juego = ['correcto' => false, 'valor' => $cd->valor, 'valor_antiguo' => $maquina->juego_activo->nombre_juego];\n }\n }else{\n $linea->juego = ['correcto' => true, 'valor' => $maquina->juego_activo->nombre_juego, 'valor_antiguo' => ''];\n }\n\n if($maquina->id_pack!=null){\n $pack=PackJuego::find($maquina->id_pack);\n $linea->tiene_pack_bandera=true;\n $juegos_pack_habilitados=array();\n foreach($maquina->juegos as $j){\n if($j->pivot->habilitado!=0){\n array_push( $juegos_pack_habilitados,$j);\n }\n }\n $linea->juegos_pack=$juegos_pack_habilitados;\n }else{\n $linea->tiene_pack_bandera=false;\n }\n\n $aux = $detalle_aux->where('columna', 'nro_serie');\n if($aux->count() == 1){\n foreach ($aux as $cd) {\n $linea->nro_serie = ['correcto' => false, 'valor' => $cd->valor, 'valor_antiguo' => $maquina->nro_serie];\n }\n }else{\n $linea->nro_serie = ['correcto' => true, 'valor' => $maquina->nro_serie, 'valor_antiguo' => ''];\n }\n\n $linea->id_maquina = $maquina->id_maquina;\n\n $linea->denominacion = $detalle->denominacion;\n $linea->porcentaje_dev = $detalle->porcentaje_devolucion;\n $linea->no_toma = (($detalle->denominacion == null && $detalle->porcentaje_devolucion == null) ? true : false);\n\n //sigue misma logica que para la configuracion de la maquina\n\n $linea->progresivo = $this->obtenerDetallesProgresivo($maquina , $detalle);\n\n $linea->niveles = $this->obtenerDetallesNivelesProgresivo($maquina , $detalle);\n\n\n $detalles[] = $linea;\n }//FIN FOREACH POR DETALLE\n }else {\n\n foreach($layout_parcial->detalles as $detalle){\n $linea = new \\stdClass();\n $maquina= Maquina::find($detalle->id_maquina);\n //si no hubo diferencia mando todo;\n\n $linea->nro_admin = ['correcto' => true, 'valor' => $maquina->nro_admin, 'valor_antiguo' => ''];\n\n $linea->nro_isla = ['correcto' => true, 'valor' => $maquina->isla->nro_isla, 'valor_antiguo' => ''];\n\n $linea->marca = ['correcto' => true, 'valor' => $maquina->marca, 'valor_antiguo' => ''];\n\n $linea->juego = ['correcto' => true, 'valor' => $maquina->juego_activo->nombre_juego, 'valor_antiguo' => ''];\n\n $linea->nro_serie = ['correcto' => true, 'valor' => $maquina->nro_serie, 'valor_antiguo' => ''];\n\n $linea->progresivo = $this->obtenerDetallesProgresivo($maquina , null);\n\n $linea->niveles = $this->obtenerDetallesNivelesProgresivo($maquina , null);\n }\n\n }\n\n\n return ['layout_parcial' => $layout_parcial,\n 'casino' => $layout_parcial->sector->casino->nombre,\n 'id_casino' => $layout_parcial->sector->casino->id_casino,\n 'sector' => $layout_parcial->sector->descripcion,\n 'detalles' => $detalles,\n 'usuario_cargador' => $layout_parcial->usuario_cargador,\n 'usuario_fiscalizador' => $layout_parcial->usuario_fiscalizador,\n ];\n }", "function eliminaRuta()\r\n\t{\r\n\t\t$query = \"DELETE FROM \" . self::TABLA . \" WHERE IdRuta = \".$this->IdRuta.\";\";\r\n\t\treturn parent::eliminaRegistro( $query);\r\n\t}", "public function MantenimientoTDetalleTour($iddetalle,$idreserva,$idtour,$idguia,$idagencia,$tipo,$precio,$consulta){\n\t if($consulta==\"I\"){\n\t\t$sql = \" INSERT INTO TDETALLETOUR VALUES ( NULL,'\".$idreserva.\"','\".$idtour.\"','\".$idguia.\"','\".$idagencia.\"','\".$tipo.\"','\".$precio.\"','1' )\";\n\t }else\n\t if($consulta==\"A\"){\n\t\t //DELETE FROM `tdetalletour` WHERE `tdetalletour`.`iddetalle` = 2 LIMIT 1;\n\t\t $sql = \" UPDATE TDETALLETOUR SET A=0 WHERE iddetalle= \".$iddetalle;\n\t\t echo(\"DATO ELIMINADO ...\");\n\t\t }\n\t\t mysql_query($sql);\n\t\t}", "public function buscarEstudianteActa() {\n\n $sql = \"SELECT\n D.tipodocumento, D.nombrecortodocumento, EG.numerodocumento, EG.idestudiantegeneral,\n EG.nombresestudiantegeneral, EG.apellidosestudiantegeneral, EG.expedidodocumento, C.codigocarrera\n FROM \n estudiantegeneral EG\n INNER JOIN estudiante E ON ( E.idestudiantegeneral = EG.idestudiantegeneral )\n INNER JOIN documento D ON ( D.tipodocumento = EG.tipodocumento )\n INNER JOIN carrera C ON ( C.codigocarrera = E.codigocarrera )\n WHERE \n E.codigoestudiante = ?\n AND E.codigoestudiante NOT IN ( \n SELECT \n DC.EstudianteId\n FROM \n DetalleAcuerdoActa DC\n WHERE \n CodigoEstado = 100)\";\n\n $this->persistencia->crearSentenciaSQL($sql);\n $this->persistencia->setParametro(0, $this->getCodigoEstudiante(), false);\n\n $this->persistencia->ejecutarConsulta();\n if ($this->persistencia->getNext()) {\n $this->setIdEstudiante($this->persistencia->getParametro(\"idestudiantegeneral\"));\n $this->setNumeroDocumento($this->persistencia->getParametro(\"numerodocumento\"));\n $this->setNombreEstudiante($this->persistencia->getParametro(\"nombresestudiantegeneral\"));\n $this->setApellidoEstudiante($this->persistencia->getParametro(\"apellidosestudiantegeneral\"));\n $this->setExpedicion($this->persistencia->getParametro(\"expedidodocumento\"));\n\n $tipoDocumento = new TipoDocumento(null);\n $tipoDocumento->setIniciales($this->persistencia->getParametro(\"tipodocumento\"));\n $tipoDocumento->setDescripcion($this->persistencia->getParametro(\"nombrecortodocumento\"));\n\n $fechaGrado = new FechaGrado(null);\n $carrera = new Carrera(null);\n\n $carrera->setCodigoCarrera($this->persistencia->getParametro(\"codigocarrera\"));\n $fechaGrado->setCarrera($carrera);\n $this->setTipoDocumento($tipoDocumento);\n $this->setFechaGrado($fechaGrado);\n }\n\n $this->persistencia->freeResult();\n }", "function rodapeRelatorio($oPdf, $oFiltros, $oTurma) {\n\n $oPdf->SetFont('arial', '', 7);\n $oPdf->SetXY(10, 190);\n\n $sMunicipioData = \"{$oTurma->getEscola()->getMunicipio()}, \".date(\"d\", db_getsession(\"DB_datausu\")).\" de \";\n $sMunicipioData .= ucfirst(db_mes(date(\"m\", db_getsession(\"DB_datausu\")))).\" de \".date(\"Y\", db_getsession(\"DB_datausu\")).\".\";\n $oPdf->Cell($oFiltros->iLarguraMaxima, $oFiltros->iAlturaLinhaPadrao, $sMunicipioData, 0, 1, \"C\");\n\n /**\n * Buscamos as informacoes referentes ao diretor e percorremos os dados\n */\n $sDiretor = '';\n if (!empty($oFiltros->iDiretor)) {\n\n $aDiretor = $oTurma->getEscola()->getDiretor($oFiltros->iDiretor);\n foreach ($aDiretor as $oDiretor) {\n\n $sDiretor = ucwords(strtolower($oDiretor->sNome));\n $sFuncaoAto = \"Diretor\";\n\n if (!empty($oDiretor->sAtoLegal) && !empty($oDiretor->iNumero)) {\n $sFuncaoAto .= \" - \".ucwords(strtolower($oDiretor->sAtoLegal)).\" - Nº: {$oDiretor->iNumero}\";\n }\n }\n $oPdf->Ln(4);\n $oPdf->Cell($oFiltros->iLarguraMaxima, 3, $sDiretor, 0, 1, \"C\");\n $oPdf->Cell($oFiltros->iLarguraMaxima, 3, $sFuncaoAto, 0, 1, \"C\");\n }\n}", "function guardarCabecera($cabecera){\n\n\t\t$post['_put_movimientointerno'] = $cabecera;\n\t\tlog_message('DEBUG','#TRAZA|TRAZ-COMP-ALMACEN|MOVIMIENTODEPOSITOSRECEP|guardarCabecera($cabecera) $post: >> '.json_encode($post));\n\t\t$url = AJST.'/services/asp/ALMDataService/movimientoInterno';\n\t\t$aux = $this->rest->callAPI(\"PUT\", $url, $post);\n\t\t$aux =json_decode($aux[\"status\"]);\n\t\treturn $aux;\n\t}", "public function guardarFraccionar()\n {\n log_message('DEBUG','#TRAZA | #TRAZ-PROD-TRAZASOFT | ETAPA | guardarFraccionar()');\n //////////// PARA CREAR EL NUEVO BATCH ///////////////////\n // $datosCab['lote_id'] = 'FRACCIONAMIENTO';\n $datosCab['lote_id'] =$this->input->post('lote_id');\n $datosCab['arti_id'] = (string) 0;\n $datosCab['prov_id'] = (string) PROVEEDOR_INTERNO;\n $datosCab['batch_id_padre'] = (string) 0;\n $datosCab['cantidad'] = (string) $this->input->post('cant_total_desc');\n $datosCab['cantidad_padre'] = (string) 0;\n $datosCab['num_orden_prod'] = (string) $this->input->post('ordProduccion');\n $datosCab['reci_id'] = $this->input->post('recipiente');\n $datosCab['etap_id'] = $this->input->post('idetapa');\n $datosCab['usuario_app'] = userNick();\n $datosCab['empr_id'] = (string) empresa();\n $datosCab['forzar_agregar'] = $this->input->post('forzar');\n $datosCab['fec_vencimiento'] = FEC_VEN;\n $datosCab['fec_iniciado'] = (string) date(\"d-m-Y\",strtotime($this->input->post('fecha')));\n $datosCab['recu_id'] = (string) 0;\n $datosCab['tipo_recurso'] = \"\";\n\n #FLEIVA\n $datosCab['batch_id'] = \"0\";\n $datosCab['planificado'] = \"false\";\n $data['_post_lote'] = $datosCab;\n // guardo recursos materiales (origen)\n $productos = $this->input->post('productos');\n //guarda batch nuevo (tabla lotes)\n $respServ = $this->Etapas->SetNuevoBatch($data);\n\n if (!$respServ['status']) {\n echo json_encode($respServ);\n return;\n }\n\n $batch_id = $respServ['data']->respuesta->resultado;\n //////////// PARA GUARDAR EN RECURSOS LOTES ///////////////////\n $i = 0;\n foreach ($productos as $key => $prod) {\n $p = json_decode($prod);\n $recurso_id = $this->Etapas->getRecursoId($p->arti_id);\n $arrRec['batch_id'] = (string) $batch_id;\n $arrRec['recu_id'] = (string) $recurso_id;\n $arrRec['usuario'] = userNick();\n $arrRec['empr_id'] = (string) empresa();\n $arrRec['cantidad'] = (string) $p->cantidad; // cantidad a descontar en stock\n $arrRec['tipo'] = MATERIA_PRIMA;\n $arrRec['empa_id'] = (string) $p->empaque;\n $arrRec['empa_cantidad'] = (string) $p->cantidad; // cantidad del empaque\n $recu['_post_recurso'][$i] = (object) $arrRec;\n $i++;\n }\n // batch para guardar\n $arrayRecursos['_post_recurso_lote_batch_req'] = $recu;\n $respArtic = $this->Etapas->setRecursosLotesMat($arrayRecursos);\n\n /////////////////////// PEDIDO DE MATERIALES //////////////////////////\n if (($batch_id != \"BATCH_NO_CREADO\") || ($batch_id != \"RECI_NO_VACIO\")) {\n ////////////// INSERTAR CABECERA NOTA PEDIDO ///\n $arrayPost['fecha'] = $this->input->post('fecha');\n $arrayPost['empr_id'] = (string) empresa();\n $arrayPost['batch_id'] = (string) $batch_id;\n $cab['_post_notapedido'] = $arrayPost;\n $response = $this->Etapas->setCabeceraNP($cab);\n $pema_id = $response->nota_id->pedido_id;\n\n //Esto se debe cambiar por fórmulas\n // $envases = array();\n //////////// PARA CREAR EL BATCH PARA EL BATCH REQUEST //////////\n if ($pema_id) {\n $x = 0;\n foreach ($productos as $key => $prod) {\n $p = json_decode($prod);\n $det['pema_id'] = (string) $pema_id;\n $det['arti_id'] = (string) $p->arti_id;\n $det['cantidad'] = (string) $p->cantidad;\n $det['cantidad_receta'] = (string) $p->cantidad_receta;\n $det['empaque'] = $p->empaque ? $p->empaque : \"\";\n $det['receta'] = \"\";//coloco la receta vacio porque es una empaque asosiado a una receta\n $detalle['_post_pedidos_detalle_conreceta'][] = $det;\n $x++;\n }\n $arrayDeta['_post_pedidos_detalle_conreceta_batch_req'] = $detalle;\n $respDetalle = $this->Etapas->setDetaPedidoconReceta($arrayDeta);\n //$respDetalle = $this->Etapas->setDetaNP($arrayDeta);\n\n // $rsp = $this->pedidoEnvases($envases);\n\n if ($respDetalle < 300) {\n /////// LANZAR EL PROCESO DE BONITA DE PEDIDO\n $contract = [\n 'pIdPedidoMaterial' => $pema_id,\n ];\n $rsp = $this->bpm->lanzarProceso(BPM_PROCESS_ID_PEDIDOS_NORMALES, $contract);\n if ($rsp['status']) {\n $case_id = strval($rsp['data']['caseId']);\n $this->load->model(ALM . 'Notapedidos');\n $this->Notapedidos->setCaseId($pema_id, $case_id);\n $rsp['batch_id'] = $batch_id; \n // AVANZA PROCESO A TAREA SIGUIENTE\n if (PLANIF_AVANZA_TAREA) {\n\n $this->aceptarPedidoMateriales($case_id);\n\n }\n\n }\n echo json_encode($rsp);\n } else {\n echo (\"Error en generacion de Detalle Pedido Materiales\");\n }\n } else {\n echo (\"Error en generacion de Cabecera Pedido Materiales\");\n }\n }\n }", "public function EliminarDetallesCompras()\n{\n\tif($_SESSION['acceso'] == \"administrador\") {\n\n\t\tself::SetNames();\n\t\t$sql = \" select * from detallecompras where codcompra = ? \";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->execute( array(base64_decode($_GET[\"codcompra\"])) );\n\t\t$num = $stmt->rowCount();\n\t\tif($num > 1)\n\t\t{\n\n\t\t\t$sql = \" delete from detallecompras where coddetallecompra = ? \";\n\t\t\t$stmt = $this->dbh->prepare($sql);\n\t\t\t$stmt->bindParam(1,$coddetallecompra);\n\t\t\t$coddetallecompra = base64_decode($_GET[\"coddetallecompra\"]);\n\t\t\t$stmt->execute();\n\n################ VERIFICAMOS SI EL TIPO DE ENTRADA ES UN INGREDINTE ###################\n\tif($_POST['tipoentrada']==\"INGREDIENTE\"){\n\n\t\t$sql2 = \"select cantingrediente from ingredientes where cantingrediente = ?\";\n\t\t$stmt = $this->dbh->prepare($sql2);\n\t\t$stmt->execute( array(base64_decode($_GET[\"codproducto\"])));\n\t\t$num = $stmt->rowCount();\n\n\t\tif($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t{\n\t\t\t$p[] = $row;\n\t\t}\n\t\t$existenciadb = $p[0][\"cantingrediente\"];\n\n###################### REALIZAMOS LA ELIMINACION DEL PRODUCTO EN KARDEX ############################\n\t\t$sql = \" delete from kardexingredientes where codprocesoing = ? and codingrediente = ?\";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->bindParam(1,$codcompra);\n\t\t$stmt->bindParam(2,$codproducto);\n\t\t$codcompra = strip_tags(base64_decode($_GET[\"codcompra\"]));\n\t\t$codproducto = strip_tags(base64_decode($_GET[\"codproducto\"]));\n\t\t$stmt->execute();\n\n###################### ACTUALIZAMOS LOS DATOS DEL PRODUCTO EN ALMACEN ############################\n\t\t$sql = \" update ingredientes set \"\n\t\t.\" cantingrediente = ? \"\n\t\t.\" where \"\n\t\t.\" codingrediente = ?;\n\t\t\";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->bindParam(1, $existencia);\n\t\t$stmt->bindParam(2, $codproducto);\n\t\t$cantcompra = strip_tags(base64_decode($_GET[\"cantcompra\"]));\n\t\t$codproducto = strip_tags(base64_decode($_GET[\"codproducto\"]));\n\t\t$existencia = $existenciadb - $cantcompra;\n\t\t$stmt->execute();\n\n################ VERIFICAMOS SI EL TIPO DE ENTRADA ES UN PRODUCTO ###################\n\t\t\t} else {\n\n\t\t$sql2 = \"select existencia from productos where codproducto = ?\";\n\t\t$stmt = $this->dbh->prepare($sql2);\n\t\t$stmt->execute( array(base64_decode($_GET[\"codproducto\"])));\n\t\t$num = $stmt->rowCount();\n\n\t\tif($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t{\n\t\t\t$p[] = $row;\n\t\t}\n\t\t$existenciadb = $p[0][\"existencia\"];\n\n###################### REALIZAMOS LA ELIMINACION DEL PRODUCTO EN KARDEX ############################\n\t\t$sql = \" delete from kardexproductos where codproceso = ? and codproducto = ?\";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->bindParam(1,$codcompra);\n\t\t$stmt->bindParam(2,$codproducto);\n\t\t$codcompra = strip_tags(base64_decode($_GET[\"codcompra\"]));\n\t\t$codproducto = strip_tags(base64_decode($_GET[\"codproducto\"]));\n\t\t$stmt->execute();\n\n###################### ACTUALIZAMOS LOS DATOS DEL PRODUCTO EN ALMACEN ############################\n\t\t$sql = \" update productos set \"\n\t\t.\" existencia = ? \"\n\t\t.\" where \"\n\t\t.\" codproducto = ?;\n\t\t\";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->bindParam(1, $existencia);\n\t\t$stmt->bindParam(2, $codproducto);\n\t\t$cantcompra = strip_tags(base64_decode($_GET[\"cantcompra\"]));\n\t\t$codproducto = strip_tags(base64_decode($_GET[\"codproducto\"]));\n\t\t$existencia = $existenciadb - $cantcompra;\n\t\t$stmt->execute();\n\n\t\t\t}\n\n\t\t$sql4 = \"select * from compras where codcompra = ? \";\n\t\t$stmt = $this->dbh->prepare($sql4);\n\t\t$stmt->execute( array(base64_decode($_GET[\"codcompra\"])));\n\t\t$num = $stmt->rowCount();\n\n\t\t\tif($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t\t{\n\t\t\t\t$paea[] = $row;\n\t\t\t}\n\t\t$subtotalivasic = $paea[0][\"subtotalivasic\"];\n\t\t$subtotalivanoc = $paea[0][\"subtotalivanoc\"];\n\t\t$iva = $paea[0][\"ivac\"]/100;\n\t\t$descuento = $paea[0][\"descuentoc\"]/100;\n\t\t$totalivac = $paea[0][\"totalivac\"];\n\t\t$totaldescuentoc = $paea[0][\"totaldescuentoc\"];\n\n\t$sql3 = \"select sum(importecompra) as importe from detallecompras where codcompra = ? and ivaproductoc = 'SI'\";\n $stmt = $this->dbh->prepare($sql3);\n $stmt->execute( array(base64_decode($_GET[\"codcompra\"])));\n $num = $stmt->rowCount();\n \n if($rowp = $stmt->fetch())\n {\n $p[] = $rowp;\n }\n $importeivasi = ($rowp[\"importe\"]== \"\" ? \"0\" : $rowp[\"importe\"]);\n\n$sql5 = \"select sum(importecompra) as importe from detallecompras where codcompra = ? and ivaproductoc = 'NO'\";\n $stmt = $this->dbh->prepare($sql5);\n $stmt->execute( array(base64_decode($_GET[\"codcompra\"])));\n $num = $stmt->rowCount();\n \n if($roww = $stmt->fetch())\n {\n $pw[] = $roww;\n }\n $importeivano = ($roww[\"importe\"]== \"\" ? \"0\" : $roww[\"importe\"]);\n\n if(base64_decode($_GET[\"ivaproductoc\"])==\"SI\"){\t\n\t\n\t\t$sql = \" update compras set \"\n\t\t\t .\" subtotalivasic = ?, \"\n\t\t\t .\" totalivac = ?, \"\n\t\t\t .\" totaldescuentoc = ?, \"\n\t\t\t .\" totalc= ? \"\n\t\t\t .\" where \"\n\t\t\t .\" codcompra = ?;\n\t\t\t \";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->bindParam(1, $subtotal);\n\t\t$stmt->bindParam(2, $totaliva);\n\t\t$stmt->bindParam(3, $totaldescuentoc);\n\t\t$stmt->bindParam(4, $total);\n\t\t$stmt->bindParam(5, $codcompra);\n\t\t\n\t\t$subtotal= strip_tags($importeivasi);\n $totaliva= rount($subtotal*$iva,2);\n\t\t$tot= rount($subtotal+$subtotalivanoc+$totaliva,2);\n\t\t$totaldescuentoc= rount($tot*$descuento,2);\n\t\t$total= rount($tot-$totaldescuentoc,2);\n\t\t$codcompra = strip_tags(base64_decode($_GET[\"codcompra\"]));\n\t\t$stmt->execute();\n\t\t\n\t\t } else {\n\t\t\n\t\t$sql = \" update compras set \"\n\t\t\t .\" subtotalivanoc = ?, \"\n\t\t\t .\" totaldescuentoc = ?, \"\n\t\t\t .\" totalc= ? \"\n\t\t\t .\" where \"\n\t\t\t .\" codcompra = ?;\n\t\t\t \";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->bindParam(1, $subtotal);\n\t\t$stmt->bindParam(2, $totaldescuentoc);\n\t\t$stmt->bindParam(3, $total);\n\t\t$stmt->bindParam(4, $codcompra);\n\t\t\n\t\t$subtotal= strip_tags($importeivano);\n\t\t$tot= rount($subtotal+$subtotalivasic+$totalivac,2);\n\t\t$totaldescuentoc= rount($tot*$descuento,2);\n\t\t$total= rount($tot-$totaldescuentoc,2);\n\t\t$codcompra = strip_tags(base64_decode($_GET[\"codcompra\"]));\n\t\t$stmt->execute();\t\t\n\t\t }\t\t\t\t\t\n\n\t\theader(\"Location: detallescompras?mesage=2\");\n\t\texit;\n\n\t\t}\n\t\telse\n\t\t{\n\n################ VERIFICAMOS SI EL TIPO DE ENTRADA ES UN INGREDINTE ###################\n\tif($_POST['tipoentrada']==\"INGREDIENTE\"){\n\n\t\t$sql2 = \"select cantingrediente from ingredientes where cantingrediente = ?\";\n\t\t$stmt = $this->dbh->prepare($sql2);\n\t\t$stmt->execute( array(base64_decode($_GET[\"codproducto\"])));\n\t\t$num = $stmt->rowCount();\n\n\t\tif($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t{\n\t\t\t$p[] = $row;\n\t\t}\n\t\t$existenciadb = $p[0][\"cantingrediente\"];\n\n###################### ACTUALIZAMOS LOS DATOS DEL PRODUCTO EN ALMACEN ############################\n\t\t$sql = \" update ingredientes set \"\n\t\t.\" cantingrediente = ? \"\n\t\t.\" where \"\n\t\t.\" codingrediente = ?;\n\t\t\";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->bindParam(1, $existencia);\n\t\t$stmt->bindParam(2, $codproducto);\n\t\t$cantcompra = strip_tags(base64_decode($_GET[\"cantcompra\"]));\n\t\t$codproducto = strip_tags(base64_decode($_GET[\"codproducto\"]));\n\t\t$existencia = $existenciadb - $cantcompra;\n\t\t$stmt->execute();\n\n###################### REALIZAMOS LA ELIMINACION DEL PRODUCTO EN KARDEX ############################\n\t\t$sql = \" delete from kardexingredientes where codprocesoing = ? and codingrediente = ?\";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->bindParam(1,$codcompra);\n\t\t$stmt->bindParam(2,$codproducto);\n\t\t$codcompra = strip_tags(base64_decode($_GET[\"codcompra\"]));\n\t\t$codproducto = strip_tags(base64_decode($_GET[\"codproducto\"]));\n\t\t$stmt->execute();\n\n################ VERIFICAMOS SI EL TIPO DE ENTRADA ES UN PRODUCTO ###################\n\t\t\t} else {\n\n###################### ACTUALIZAMOS LOS DATOS DEL PRODUCTO EN ALMACEN ############################\n\t\t$sql2 = \"select existencia from productos where codproducto = ?\";\n\t\t$stmt = $this->dbh->prepare($sql2);\n\t\t$stmt->execute( array(base64_decode($_GET[\"codproducto\"])));\n\t\t$num = $stmt->rowCount();\n\n\t\tif($row = $stmt->fetch(PDO::FETCH_ASSOC))\n\t\t{\n\t\t\t$p[] = $row;\n\t\t}\n\t\t$existenciadb = $p[0][\"existencia\"];\n\n\t\t$sql = \" update productos set \"\n\t\t.\" existencia = ? \"\n\t\t.\" where \"\n\t\t.\" codproducto = ?;\n\t\t\";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->bindParam(1, $existencia);\n\t\t$stmt->bindParam(2, $codproducto);\n\t\t$cantcompra = strip_tags(base64_decode($_GET[\"cantcompra\"]));\n\t\t$codproducto = strip_tags(base64_decode($_GET[\"codproducto\"]));\n\t\t$existencia = $existenciadb - $cantcompra;\n\t\t$stmt->execute();\n\n###################### REALIZAMOS LA ELIMINACION DEL PRODUCTO EN KARDEX ############################\n\t\t$sql = \" delete from kardexproductos where codproceso = ? and codproducto = ?\";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->bindParam(1,$codcompra);\n\t\t$stmt->bindParam(2,$codproducto);\n\t\t$codcompra = strip_tags(base64_decode($_GET[\"codcompra\"]));\n\t\t$codproducto = strip_tags(base64_decode($_GET[\"codproducto\"]));\n\t\t$stmt->execute();\n\n\t\t$sql = \" delete from compras where codcompra = ?\";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->bindParam(1,$codcompra);\n\t\t$codcompra = base64_decode($_GET[\"codcompra\"]);\n\t\t$stmt->execute();\n\n\t\t$sql = \" delete from detallecompras where coddetallecompra = ? \";\n\t\t$stmt = $this->dbh->prepare($sql);\n\t\t$stmt->bindParam(1,$coddetallecompra);\n\t\t$coddetallecompra = base64_decode($_GET[\"coddetallecompra\"]);\n\t\t$stmt->execute();\n\n\t\t\t}\n\n\t\t\theader(\"Location: detallescompras?mesage=2\");\n\t\t\texit;\n\t\t}\n\t}\n\telse\n\t{\n\t\theader(\"Location: detallescompras?mesage=3\");\n\t\texit;\n\t}\n}", "public function create_detalle($id_contrato,$id_chk,$tipo,$edr,$tipo_chk,$origen)\n {\n $imgReserva = DB::table('chkinmueblefoto')\n ->where('id_chk', '=', $id_chk)\n ->where('tipo_chk', '=', $tipo_chk)\n ->whereNotNull('nombre')\n ->get();\n\n if($tipo == 'Propietario')\n {\n $Checklist = DB::table('adm_contratofinal as cf')\n ->leftjoin('cap_publicaciones as p', 'cf.id_publicacion' , '=', 'p.id' )\n ->leftjoin('inmuebles as i', 'p.id_inmueble', '=', 'i.id')\n ->leftjoin('comunas as co', 'i.id_comuna', '=', 'co.comuna_id')\n ->where('cf.id', '=', $id_contrato)\n ->select(DB::raw('p.id, i.direccion,i.numero,i.departamento,i.id as id_inmueble,co.comuna_nombre as comuna'))\n ->first(); \n\n }\n else\n {\n $Checklist = DB::table('adm_contratofinalarr as cf')\n ->leftjoin('arrendatarios as p', 'cf.id_publicacion' , '=', 'p.id' )\n ->leftjoin('inmuebles as i', 'p.id_inmueble', '=', 'i.id')\n ->leftjoin('comunas as co', 'i.id_comuna', '=', 'co.comuna_id')\n ->where('cf.id', '=', $id_contrato)\n ->select(DB::raw('i.direccion,i.numero,i.departamento,i.id as id_inmueble,co.comuna_nombre as comuna'))\n ->first(); \n }\n\n\n $listadoCheckList = DB::table('checklist')\n ->where('estado', '=', 1)->get(); \n\n $NombreTipoCheckList = DB::table('checklist')\n ->where('id', '=', $tipo_chk)->first(); \n\n $NombreCheckList = DB::table('chkinmueblefoto')\n ->where('id_chk', '=', $id_chk)\n ->where('tipo_chk', '=', $tipo_chk)\n ->orderBy('id','desc')\n ->first();\n\n \n return view('checklist.create_detalle',compact('origen','NombreCheckList','NombreTipoCheckList','deta_check','listadoCheckList','imgReserva','Checklist','vacio','tipo','id_contrato','id_chk','edr','tipo_chk')); \n }", "function DelRubrique($idRub) {\r\n\t\t\r\n\t\t$gra = new Granulat($idRub,$this->siteSrc,false);\r\n\t\t$time_start = microtime(true);\t\t\r\n\t\t//$this->trace = true;\r\n\t\t//if($this->trace)\r\n\t\t\techo \"<label f='DelRubrique' idRub='\".$idRub.\"' value=\\\"Synchro:DelRubrique\".$gra->titre.\"\\\" />\\n\";\r\n\t\t\r\n\t\t$rsArt = $gra->GetArticleInfo();\r\n\t\twhile($rArt = mysql_fetch_assoc($rsArt)) {\r\n\t\t\t$this->SupprimerArticle($rArt[\"id_article\"]);\r\n\t\t}\r\n\t\t\t\r\n\t\t$this->DelMotsRubriques($idRub) ;\r\n\t\t$this->DelDocumentsRubriques($idRub);\r\n\t\t\r\n\t\t$RubEnfants = $gra->GetEnfants(false);\r\n\t\tif($RubEnfants){\r\n\t\t\tif($this->trace)\r\n\t\t\t\techo \"<Synchro f='DelRubrique' recursif='true' >\\n\";\r\n\t\t\tforeach($RubEnfants as $rub){\r\n\t\t\t\t$this->DelRubrique($rub->id);\r\n\t\t\t}\r\n\t\t\tif($this->trace)\r\n\t\t\t\techo \"<Synchro f='DelRubrique' recursif='true' >\\n\";\r\n\t\t}\r\n\t\t\r\n\t\t$sql = \"DELETE \r\n\t\t\t\tFROM spip_rubriques \r\n\t\t\t\tWHERE id_rubrique = \".$idRub;\r\n\t\t//echo $sql.\"<br/>\";\r\n\t\t$DB = new mysql($this->siteSrc->infos[\"SQL_HOST\"], $this->siteSrc->infos[\"SQL_LOGIN\"], $this->siteSrc->infos[\"SQL_PWD\"], $this->siteSrc->infos[\"SQL_DB\"]);\r\n\t\t$req = $DB->query($sql);\r\n\t\t$DB->close();\r\n\t\t\r\n\t\t$time_end = microtime(true);\r\n\t\t$time = $time_end - $time_start;\r\n\t\t//if($this->trace)\r\n\t\t\techo \"<label f='DelRubrique' idRub='\".$idRub.\"' value=\\\"Synchro:DelRubrique:\".$gra->titre.\" FIN en $time s\\\" />\\n\";\r\n\t\t\t//echo \"<Synchro f='DelRubrique' fin='$time' idRub='\".$idRub.\"' titre=\\\"\".$gra->titre.\"\\\" />\\n\";\r\n\t\t\t\r\n\t}", "function consultarUna(){\n try {\n $IDREQ=$this->objRequerimiento->getIDREQ();\t\n $objControlConexion = new ControlConexion();\n $objControlConexion->abrirBd();\n $comandoSql = \"select FKAREA from Requerimiento where IDREQ = '\".$IDREQ.\"' \";\n $rs = $objControlConexion->ejecutarSelect($comandoSql);\n $registro = $rs->fetch_array(MYSQLI_BOTH);\n ($registro!=null)?$id = $registro[\"FKAREA\"]:$id = \"undefine\";\n $this->objRequerimiento->setID($id);\n $objControlConexion->cerrarBd();\n return $this->objRequerimiento;\n } catch(PDOException $e) {\n echo \"Error: \" . $e->getMessage();\n }\n }", "public function Guardar()\n \t{\n if(!$this->id)\n {\n\n \n \t\tif(empty($this->fv_error_message))\n \t\t{\n\n $this->account_id = $this->account_id?$this->account->id:$this->fv_account_id;\n $this->name =$this->fv_name;\n\n $this->number_branch= $this->fv_number_branch;\n $this->address2 = $this->fv_address2;\n $this->address1 = $this->fv_address1;\n $this->work_phone = $this->fv_workphone;\n $this->city = $this->fv_city;\n $this->state = $this->fv_state;\n $this->deadline = $this->fv_deadline;\n $this->key_dosage = $this->fv_key_dossage;\n $this->economic_activity = $this->fv_economic_activity;\n $this->number_process = $this->fv_number_process;\n $this->number_autho = $this->fv_nummber_autho;\n \n $this->law = $this->fv_law;\n $this->type_third = $this->getType_thrird();\n $this->invoice_number_counter = 1;\n $this->save();\n\n foreach ($this->fv_type_documents_branch as $documento) {\n # code...\n $tipo = new TypeDocumentBranch();\n $tipo->branch_id = $this->id;\n $tipo->type_document_id = $documento;\n $tipo->save();\n }\n\n \t\t\t$this->fv_error_message = \"Registro Existoso\";\n \t\t\treturn true;\n \t}\n }\n $this->fv_error_message = $this->fv_error_message . ' Sucursal '.ERROR_DUPLICADO .'<br>' ;\n\t\treturn false;\n \t}", "public function findPagoDetalleApuesta()\r\n\t\t{\r\n\t\t\t$codigoPresupuestario = self::getCodigoPresupuestarioApuestaLicita();\r\n\r\n\t\t\t$registers = [];\r\n\t\t\t// Pagos con periodos iguales a cero\r\n\t\t\t$registers = self::findPagoDetallePeriodoIgualCero($codigoPresupuestario, [7]);\r\n\t\t\tif ( !self::guardarConsultaRecaudacion($registers) ) {\r\n\t\t\t\tself::errorCargarData(Yii::t('backend', 'Apuesta Licitas'));\r\n\t\t\t}\r\n\t\t}", "private function grabarVotos() {\n $bOK = TRUE;\n $fec = $this->fecha;\n $vot = $this->votacion; \n $aVo = $this->votos; // array('apar'=>array('asis','vota','pres','res1','res2','res3','res4')\n \n // Primero borra todos los votos anteriores, despues graba los nuevos votos.\n if (Funciones::gEjecutarSQL(\"DELETE FROM VOTOS WHERE FECHA='$fec' AND NUMVOT='$vot'\")) {\n foreach ($aVo as $apa => $aDat) {\n $asis = $aDat[0];\n $vota = $aDat[1];\n $pres = $aDat[2];\n $res1 = $aDat[3];\n $res2 = $aDat[4];\n $res3 = $aDat[5];\n $res4 = $aDat[6];\n $b = Funciones::gEjecutarSQL(\"INSERT INTO VOTOS (FECHA,NUMVOT,CODAPAR,ASISTE,VOTA,PRESENTE,RESULTADO1,RESULTADO2,RESULTADO3,RESULTADO4) VALUES ('$fec','$vot','$apa','$asis','$vota','$pres','$res1','$res2','$res3','$res4')\");\n $bOK = (!$b) ? FALSE : $bOK;\n }\n // Recarga los datos.\n $this->cargarVotacion($fec, $vot);\n }\n return $bOK;\n }", "public function accionPerfilRestaurante(){\n // (si es que hay alguno logueado)\n $sw = false;\n $codRole = 0;\n \n if(Sistema::app()->Acceso()->hayUsuario()){\n $sw = true;\n \n $nick = Sistema::app()->Acceso()->getNick();\n $codRole = Sistema::app()->ACL()->getUsuarioRole($nick);\n \n }\n \n // Si el usuario que intenta acceder es un artista, administrador\n // o simplemente no hay usuario validado, lo mando a una página de\n // error. Los restaurantes tienen el rol 6\n if(!$sw || $codRole != 6){\n Sistema::app()->paginaError(403, \"No tiene permiso para acceder a esta página.\");\n exit();\n }\n \n // Una vez comprobado que está accediendo un restaurante, procedo a\n // obtener los datos del restaurante\n $res = new Restaurantes();\n \n // El nick del usuario es el correo electrónico. Es un valor\n // único, por lo que puedo buscar el restaurante por\n // su dirección de correo\n if(!$res->buscarPor([\"where\"=>\"correo='$nick'\"])){\n \n Sistema::app()->paginaError(300,\"Ha habido un problema al encontrar tu perfil.\");\n return;\n \n }\n \n $imagenAntigua = $res->imagen;\n $nombre=$res->getNombre();\n \n // Si se modifican los datos del restaurante, esta variable\n // pasará a true para notificar a la vista\n $resModificado = false;\n if (isset($_POST[$nombre]))\n {\n $hayImagen = true;\n // Si ha subido una nueva imagen, recojo su nombre\n if($_FILES[$nombre][\"name\"][\"imagen\"]!=\"\"){\n $_POST[$nombre][\"imagen\"] = $_FILES[$nombre][\"name\"][\"imagen\"];\n }\n else{\n $hayImagen = false;\n $_POST[\"nombre\"][\"imagen\"] = $res->imagen;\n }\n \n // El coreo es una clave foránea, así que tengo\n // que cambiar el correo en la tabla ACLUsuarios\n Sistema::app()->ACL()->setNick($nick, $_POST[\"nombre\"][\"correo\"]);\n \n $res->setValores($_POST[$nombre]);\n \n if ($res->validar())\n {\n // Si se ha guardado correctamente, actualizo la imagen de perfil\n // e inicio sesión con el nuevo correo automáticamente\n if ($res->guardar()){\n $resModificado = true;\n if($hayImagen){\n // Obtengo la carpeta destino de la imagen\n $carpetaDestino = $_SERVER['DOCUMENT_ROOT'].\"/imagenes/restaurantes/\";\n // Elimino la imagen antigua\n unlink($carpetaDestino.$imagenAntigua);\n \n // Y guardo la nueva\n move_uploaded_file($_FILES['nombre']['tmp_name']['imagen'], $carpetaDestino.$_POST[\"nombre\"][\"imagen\"]);\n }\n Sistema::app()->Acceso()->registrarUsuario(\n $_POST[\"nombre\"][\"correo\"],\n mb_strtolower($res->nombre),\n 0,\n 0,\n [0,0,0,0,0,1,1,1,1,1]);\n }\n \n }\n }\n \n $this->dibujaVista(\"perfilRestaurante\",\n [\"res\"=>$res, \"resModificado\"=>$resModificado],\n \"Perfil\");\n \n }", "public function GuardandoRotaciones($arraydatos){\n global $userid,$db;\n //$arraydatos[\"idrotacion\"]=$this->GuardarNuevaRotacion($arraydatos);\n $a_vectt=$this->GuardarNuevaRotacionEstudiante($arraydatos); \n return $a_vectt;\n }", "public function generaReemplazo(){\n\t\tif( $this->idTipoInhabilidad->reemplazo ){\n\t\t\t//Valida si inhabilidad solicita fecha inicio\n\t\t\tif( $this->idTipoInhabilidad->fecha_inicio ){\n\t\t\t\t//Valida fecha inicio igual a hoy\n\t\t\t\tif( strtotime($this->fecha_inicio) == strtotime(date(\"Y-m-d\")) ){\n\t\t\t\t\t$casos = Trazabilidad::model()->findAllByAttributes(array(\"user_asign\"=>$this->usuario, \"estado\"=>\"1\"));\n\t\t\t\t\tif($casos){\n\t\t\t\t\t\tforeach ($casos as $traza){\n\t\t\t\t\t\t\t$modelAusente = new AusenteTrazabilidad;\n\t\t\t\t\t\t\t$modelAusente->usuario = $this->usuario;\n\t\t\t \t\t$modelAusente->id_trazabilidad = $traza->id;\n\t\t\t \t\tif($modelAusente->save()){\n\t\t\t \t\t\t$traza->user_asign = $this->reemplazo;\n\t\t\t \t\t\t$traza->update();\n\t\t\t \t\t}\n\t\t\t \t\t$observacion_traza = new ObservacionesTrazabilidad;\n\t\t\t \t\t$observacion_traza->id_trazabilidad = $traza->id;\n\t\t\t \t\t$observacion_traza->observacion = \"Caso reasignado por inhabilidad de usuario\";\n\t\t\t \t\t$observacion_traza->usuario = Yii::app()->user->usuario;\n\t\t\t \t\t$observacion_traza->na = $traza->na;\n\t\t\t \t\t$observacion_traza->save();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\t\t\t\n\t\t\t}else if(empty($this->idTipoInhabilidad->fecha_inicio) && $this->id_tipo_inhabilidad == \"4\"){\n\t\t\t\t$casos = Trazabilidad::model()->findAllByAttributes(array(\"user_asign\"=>$this->usuario, \"estado\"=>\"1\"));\n\t\t\t\tif($casos){\n\t\t\t\t\tforeach ($casos as $traza){\n\t\t\t\t\t\t$modelAusente = new AusenteTrazabilidad;\n\t\t\t\t\t\t$modelAusente->usuario = $this->usuario;\n\t\t \t\t$modelAusente->id_trazabilidad = $traza->id;\n\t\t \t\tif($modelAusente->save()){\n\t\t \t\t\t$traza->user_asign = $this->reemplazo;\n\t\t \t\t\t$traza->update();\n\t\t \t\t}\n\t\t \t\t$observacion_traza = new ObservacionesTrazabilidad;\n\t\t \t\t$observacion_traza->id_trazabilidad = $traza->id;\n\t\t \t\t$observacion_traza->observacion = \"Caso reasignado por inhabilidad de usuario\";\n\t\t \t\t$observacion_traza->usuario = Yii::app()->user->usuario;\n\t\t \t\t$observacion_traza->na = $traza->na;\n\t\t \t\t$observacion_traza->save();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "public function detalle_proyecto($id){\n $contVisita = Proyecto::find($id);\n $contVisita->visitas =$contVisita->visitas+1;\n $contVisita->save();\n $proyecto=DB::table('proyectos')->join('estados','proyectos.estado_id','estados.id')\n ->join('ciudades','proyectos.ciudad_id','ciudades.id')\n ->select('proyectos.*','estados.nombre as nombre_estado','ciudades.nombre as nombre_ciudad')\n ->where('proyectos.id',$id)\n ->first();\n\n $imagenes=MediaProyecto::where('proyecto_id',$id)->get();\n\n $inmueblesProyectos=InmuebleProyecto::join('tipoinmuebleproyectos','inmuebleproyectos.tipoinmueble_id','tipoinmuebleproyectos.id')\n ->where('proyecto_id',$id)\n ->select('inmuebleproyectos.*','tipoinmuebleproyectos.nombre')\n ->get();\n\n $proyectos=DB::table('proyectos')->Join('mediaproyectos','proyectos.id','mediaproyectos.proyecto_id')\n ->join('ciudades','proyectos.ciudad_id','ciudades.id')\n ->select('mediaproyectos.nombre as nombre_imagen','mediaproyectos.proyecto_id','mediaproyectos.id as id_imagen','proyectos.*','ciudades.nombre as nombre_ciudad')\n ->where('mediaproyectos.vista',1)\n ->where('destacado',1)\n ->inRandomOrder()\n ->get()\n ->take(3);\n\n $inmuebles=DB::table('medias')->Join('propiedades','medias.propiedad_id','propiedades.id')\n ->join('tipoinmueble','propiedades.tipo_inmueble','tipoinmueble.id')\n ->join('ciudades','propiedades.ciudad_id','ciudades.id')\n ->select('medias.nombre as nombre_imagen','medias.propiedad_id','medias.id as id_imagen','propiedades.*','ciudades.nombre as nombreCiudad','tipoinmueble.nombre as nombreInmueble')\n ->where('medias.vista',1)\n ->where('propiedades.estatus',1)\n ->inRandomOrder()\n ->get()\n ->take(3);\n return view('detalle_proyecto',compact('proyectos','inmuebles','proyecto','imagenes','inmueblesProyectos'));\n }", "public function guardar() {\n\t\t$registro ['vehiculo_id'] = $_POST ['vehiculo_id'];\n\t\t$registro ['usuario_registro'] = $_SESSION['SESSION_USER']['id'];\n\t\t$registro ['numero_ingreso'] = $numero = $_POST ['numero_ingreso'];\n\t\t$registro ['fecha'] = $_POST ['fecha_registro'];\n\t\t$registro ['fecha_registro'] = date('Y-m-d');\n\t\t$tipo = $registro ['tipo'] = $_POST ['tipo'];\n\t\t$modelVehiculo = new VehiculoModelo();\n\t\t$vehiculo = $modelVehiculo->obtenerVehiculo($_POST ['vehiculo_id']);\n\t\t\n\t\t$model = new RegistroModelo();\n\t\ttry {\n\t\t\t$datos = $model->guardarRegistro($registro);\n\t\t\t\n\t\t\tif(($tipo < 4)||($tipo > 8)){ // kilometros\n\t\t\t\t$numero = $numero - $vehiculo['medida_uso'];\n\t\t\t\t\t\n\t\t\t}\n\t\t\t$vehiculo['medida_uso'] = $vehiculo['medida_uso'] + $numero;\n\t\t\t$modelVehiculo->guardarVehiculo($vehiculo);\n\t\t\t\t\n\t\t\t$planes = $model->obtenerPlanesbyTipoVehiculo($vehiculo['tipo_vehiculo_id']);\n\t\t\t$modelVehiculoPlan = new VehiculoPlanModelo();\n\t\t\t\n\n\t\t\tforeach ($planes as $plan) {\n\t\t\t\t$planVehiculo = $model->obtenerVehiculoPlanbyPlanVehiculo($plan['id'], $_POST ['vehiculo_id']);\t\n\n\t\t\t\tif($planVehiculo['id']>0){\n\t\t\t\t\t$numeroInt = $planVehiculo['numero_operacion'] + $numero;\n\t\t\t\t} else {\n\t\t\t\t\t$planVehiculo['fecha_inicio'] = date('Y-m-d');\n\t\t\t\t\t$planVehiculo['vehiculo_id'] = $_POST ['vehiculo_id'];\n\t\t\t\t\t$planVehiculo['plan_mantenimiento_id'] = $plan['id'];\t\n\t\t\t\t\t$numeroInt = $numero;\n\t\t\t\t}\n\t\t\t\t$planVehiculo['fecha_registro'] = date('Y-m-d');\n\t\t\t\t$planVehiculo['numero_operacion'] = $numeroInt;\n\n\t\t\t\t$vpid = $modelVehiculoPlan->guardarVehiculoPlan($planVehiculo);\t\n\n\t\t\t\tif($vpid==0){\n\t\t\t\t\t$vpid = $planVehiculo['id'];\n\t\t\t\t}\n\t\t\t\tif($planVehiculo['numero_operacion'] >= ($plan['unidad_numero']-$plan['alerta_numero'])){\n\t\t\t\t\t$modelOrdenPlan = new OrdenPlanModelo();\n\t\t\t\t\t$ordenPlan = $modelOrdenPlan->obtenerOrdenPlan($vpid, $plan['tecnico_id']);\n\t\t\t\t\t\n\t\t\t\t\tif(count($ordenPlan) == 0){\n\t\t\t\t\t\t$ordenPlan['vehiculo_plan_id'] = $vpid;\n\t\t\t\t\t\t$ordenPlan['fecha_emision'] = date('Y-m-d');\n\t\t\t\t\t\t$ordenPlan['tecnico_asignado'] = $plan['tecnico_id'];\n\n\t\t\t\t\t\t$modelOrdenPlan->guardarOrdenPlan($ordenPlan);\n\t\t\t\t\t}\n\t\t\t\t}\t\n\t\t\t}\n\n\t\t\t$_SESSION ['message'] = \"Datos almacenados correctamente.\";\n\t\t\t//envio email\n\t\t\t/*\n\t\t\t\tif(SENDEMAIL){\n\t\t\t\t$datos = $model->getNovedadById($_POST ['id']);\n\t\t\t\t$email = new Email();\n\t\t\t\t$email->sendNotificacionTecnico($datos->nombres .' '.$datos->apellidos, $datos->email, $datos->maquina, \"http://\" . $_SERVER['HTTP_HOST'] . PATH_BASE);\n\t\t\t\t} */\n\t\t\t\t\n\t\t} catch ( Exception $e ) {\n\t\t\t$_SESSION ['message'] = $e->getMessage ();\n\t\t}\n\t\theader ( \"Location: ../ingreso/\" );\n\t}", "public function TipoResiduoReglasNegocios() {\n $this->tipoResiduoAccesoDatos = new TipoResiduoAccesoDatos();\n }", "public function TraerCiudadRiesgo(){\n $sentencia = $this->db->prepare(\"SELECT *FROM ciudad WHERE zona_riesgo=1 \" ); \n $sentencia->execute(); // ejecuta -\n $query= $sentencia->fetchAll(PDO::FETCH_OBJ); // obtiene la respuesta\n return $query;\n }", "static public function ctrEliminarVenta(){\n\n\t\tif(isset($_GET[\"idVenta\"])){\n\n\t\t\t$tabla = \"ventas\";\n\n\t\t\t$item = \"id\";\n\t\t\t$valor = $_GET[\"idVenta\"];\n\n\t\t\t$traerVenta = ModeloVentas::mdlMostrarVentas($tabla, $item, $valor);\n\n\t\t\t/*=============================================\n\t\t\tACTUALIZAR FECHA ÚLTIMA COMPRA\n\t\t\t=============================================*/\n\n\t\t\t$tablaClientes = \"clientes\";\n\n\t\t\t$itemVentas = null;\n\t\t\t$valorVentas = null;\n\n\t\t\t$traerVentas = ModeloVentas::mdlEliminarVenta($tabla, $itemVentas, $valorVentas);\n\n\t\t\t$guardarFechas = array();\n\n\t\t\tforeach ($traerVentas as $key => $value) {\n\t\t\t\t\n\t\t\t\tif($value[\"id_cliente\"] == $traerVenta[\"id_cliente\"]){\n\n\t\t\t\t\tarray_push($guardarFechas, $value[\"fecha\"]);\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tif(count($guardarFechas) > 1){\n\n\t\t\t\tif($traerVenta[\"fecha\"] > $guardarFechas[count($guardarFechas)-2]){\n\n\t\t\t\t\t$item = \"ultima_compra\";\n\t\t\t\t\t$valor = $guardarFechas[count($guardarFechas)-2];\n\t\t\t\t\t$valorIdCliente = $traerVenta[\"id_cliente\"];\n\n\t\t\t\t\t$comprasCliente = ModeloClientes::mdlActualizarCliente($tablaClientes, $item, $valor, $valorIdCliente);\n\n\t\t\t\t}else{\n\n\t\t\t\t\t$item = \"ultima_compra\";\n\t\t\t\t\t$valor = $guardarFechas[count($guardarFechas)-1];\n\t\t\t\t\t$valorIdCliente = $traerVenta[\"id_cliente\"];\n\n\t\t\t\t\t$comprasCliente = ModeloClientes::mdlActualizarCliente($tablaClientes, $item, $valor, $valorIdCliente);\n\n\t\t\t\t}\n\n\n\t\t\t}else{\n\n\t\t\t\t$item = \"ultima_compra\";\n\t\t\t\t$valor = \"0000-00-00 00:00:00\";\n\t\t\t\t$valorIdCliente = $traerVenta[\"id_cliente\"];\n\n\t\t\t\t$comprasCliente = ModeloClientes::mdlActualizarCliente($tablaClientes, $item, $valor, $valorIdCliente);\n\n\t\t\t}\n\n\t\t\t/*=============================================\n\t\t\tFORMATEAR TABLA DE PRODUCTOS Y LA DE CLIENTES\n\t\t\t=============================================*/\n\n\t\t\t$productos = json_decode($traerVenta[\"productos\"], true);\n\n\t\t\t$totalProductosComprados = array();\n\n\t\t\tforeach ($productos as $key => $value) {\n\n\t\t\t\tarray_push($totalProductosComprados, $value[\"cantidad\"]);\n\t\t\t\t\n\t\t\t\t$tablaProductos = \"productos\";\n\n\t\t\t\t$item = \"id\";\n\t\t\t\t$valor = $value[\"id\"];\n\t\t\t\t$orden = \"id\";\n\n\t\t\t\t$traerProducto = ModeloProductos::mdlMostrarProductos($tablaProductos, $item, $valor, $orden);\n\n\t\t\t\t$item1a = \"ventas\";\n\t\t\t\t$valor1a = $traerProducto[\"ventas\"] - $value[\"cantidad\"];\n\n\t\t\t\t$nuevasVentas = ModeloProductos::mdlActualizarProducto($tablaProductos, $item1a, $valor1a, $valor);\n\n\t\t\t\t$item1b = \"stock\";\n\t\t\t\t$valor1b = $value[\"cantidad\"] + $traerProducto[\"stock\"];\n\n\t\t\t\t$nuevoStock = ModeloProductos::mdlActualizarProducto($tablaProductos, $item1b, $valor1b, $valor);\n\n\t\t\t}\n\n\t\t\t$tablaClientes = \"clientes\";\n\n\t\t\t$itemCliente = \"id\";\n\t\t\t$valorCliente = $traerVenta[\"id_cliente\"];\n\n\t\t\t$traerCliente = ModeloClientes::mdlMostrarClientes($tablaClientes, $itemCliente, $valorCliente);\n\n\t\t\t$item1a = \"compras\";\n\t\t\t$valor1a = $traerCliente[\"compras\"] - array_sum($totalProductosComprados);\n\n\t\t\t$comprasCliente = ModeloClientes::mdlActualizarCliente($tablaClientes, $item1a, $valor1a, $valorCliente);\n\n\t\t\t/*=============================================\n\t\t\tELIMINAR VENTA\n\t\t\t=============================================*/\n\n\t\t\t$respuesta = ModeloVentas::mdlEliminarVenta($tabla, $_GET[\"idVenta\"]);\n\n\t\t\tif($respuesta == \"ok\"){\n\n\t\t\t\techo'<script>\n\n\t\t\t\tswal({\n\t\t\t\t\t type: \"success\",\n\t\t\t\t\t title: \"La venta ha sido borrada correctamente\",\n\t\t\t\t\t showConfirmButton: true,\n\t\t\t\t\t confirmButtonText: \"Cerrar\"\n\t\t\t\t\t }).then(function(result){\n\t\t\t\t\t\t\t\tif (result.value) {\n\n\t\t\t\t\t\t\t\twindow.location = \"ventas\";\n\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t})\n\n\t\t\t\t</script>';\n\n\t\t\t}\t\t\n\t\t}\n\n\t}", "function getDetalleEventosScreenshotElementos($monitor_id, $pagina, $isSemaforo, $orden = 1) {\n\t\tglobal $mdb2;\n\t\tglobal $log;\n\t\tglobal $current_usuario_id;\n\t\tglobal $data;\n\t\tglobal $marcado;\n\t\tglobal $usr;\n\t\t$objetivo = new ConfigObjetivo($this->objetivo_id);\n\t\t$servicio_id = $objetivo->getServicio()->servicio_id;\n\n\t\t$arrayDateStart =array();\n\t\t/* OBTENER LOS DATOS Y PARSEARLO */\n\t\t$sql = \"SELECT * FROM reporte.eventos(\".pg_escape_string($current_usuario_id).\", \".pg_escape_string($this->objetivo_id).\", \".pg_escape_string($monitor_id).\", \".'0'.\",'\".pg_escape_string($this->timestamp->getInicioPeriodo()).\"','\".pg_escape_string($this->timestamp->getTerminoPeriodo()).\"', 6, \".pg_escape_string($pagina).\")\";\n\t\t//print($sql);\n\t\t$res =& $mdb2->query($sql);\n\t\tif (MDB2::isError($res)) {\n\t\t\t$log->setError($sql, $res->userinfo);\n\t\t\texit();\n\t\t}\n\t\t$row= $res->fetchRow();\n\t\t$dom = new DomDocument();\n\t\t$dom->preserveWhiteSpace = FALSE;\n\t\t$dom->loadXML($row['eventos']);\n\t\t$xpath = new DOMXpath($dom);\n\t\t$conf_objetivo = $xpath->query(\"/atentus/resultados/propiedades/objetivos/objetivo\")->item(0);\n\t\t$conf_pasos = $xpath->query(\"paso[@visible=1]\", $conf_objetivo);\n\t\t$conf_nodo = $xpath->query(\"/atentus/resultados/propiedades/nodos/nodo[@nodo_id=$monitor_id]\")->item(0);\n\t\t$cuenta_monitor = $xpath->query(\"/atentus/resultados/propiedades/objetivos/objetivo/relacion\")->length;\n\t\t$conf_validador_pag= intval($xpath->query(\"/atentus/resultados/parametros\")->item(0)->getAttribute(\"validador_pagina\"));\n\n\n\t\t/* SI NO HAY DATOS MOSTRAR MENSAJE */\n\t\tif (\n\t\t\t(!$conf_pasos->length) or\n\t\t\t($xpath->query(\"//datos/dato\")->length == 0 and $pagina == 1) or \n\t\t\t($xpath->query(\"//nodos/nodo[@nodo_id=$monitor_id]\")->length == 0)\n\t\t) {\n\t\t\treturn $this->__generarContenedorSinDatos(($xpath->query(\"//nodos/nodo[@nodo_id=$monitor_id]\")->length == 0)?'':$xpath->query(\"//nodos/nodo[@nodo_id=$monitor_id]\")->item(0)->getAttribute('nombre'));\n\t\t}\n\n\t\t/* TEMPLATE DEL GRAFICO */\n\t\t$T =& new Template_PHPLIB(($this->extra[\"imprimir\"])?REP_PATH_PRINTTEMPLATES:REP_PATH_TABLETEMPLATES);\n\t\t$T->setFile('tpl_tabla', 'eventos_especiales.tpl');\n\t\t\n\t\t$T->setBlock('tpl_tabla', 'BLOQUE_PATRON', 'bloque_patron');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_EVENTOS_PATRONES', 'lista_eventos_patrones');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_EVENTOS_DURACION', 'lista_eventos_duracion');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_EVENTOS_BOTON', 'lista_eventos_boton');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_EVENTOS', 'lista_eventos');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_EVENTOS_INICIO', 'lista_eventos_inicio');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_PASOS_EVENTOS', 'lista_pasos_eventos');\n\t\t$T->setBlock('tpl_tabla', 'LISTA_PASOS', 'lista_pasos');\n\n\t\t$T->setVar('__item_id', $this->__item_id);\n\t\t$T->setVar('__item_orden', $this->extra[\"item_orden\"]);\n\t\t$T->setVar('__objetivo_nombre', $conf_objetivo->getAttribute('nombre'));\n\t\t$T->setVar('__monitor_id', $conf_nodo->getAttribute(\"nodo_id\"));\n\t\t$T->setVar('__monitor_nombre', $conf_nodo->getAttribute(\"nombre\"));\n\t\t$T->setVar('__monitor_orden', $orden);\n\t\t$monitores[]= $conf_nodo->getAttribute(\"nombre\");\n\t\t\n\t\t/* LISTA DE PASOS */\n\t\t$tooltip_id = 0;\n\t\t$cnt = 0;\n\t\t$linea = 1;\n\t\t$id = 0;\n\n\t\t$T->setVar('lista_pasos', '');\n\t\t$T->setVar('lista_pasos_eventos', '');\n\t\t$conf_monitor = $xpath->query(\"/atentus/resultados/propiedades/objetivos/objetivo/relacion[@nodo=\".$monitor_id.\"]\")->item(0);\n\t\t$id_monitor=$conf_monitor->getAttribute(\"monitor\");\n\t\t$array_dato= array();\n\t\tforeach ($conf_pasos as $conf_paso) {\n\t\t\n\t\t\t// MARCAR PASO DESDE DISPONIBILIDAD\n\t\t\tif(isset($this->extra['paso_id']) and $this->extra['paso_id'] == $conf_paso->getAttribute('paso_orden')) {\n\t\t\t\t$T->setVar('__estiloPaso', 'celdanegra10');\n\t\t\t}\n\t\t\telse {\n\t\t\t\t$T->setVar('__estiloPaso', 'celdanegra20');\n\t\t\t}\n\t\t\t$T->setVar('__id_paso_evento', $conf_paso->getAttribute('paso_orden'));\n\t\t\t$T->setVar('__paso_id', $conf_paso->getAttribute('paso_orden'));\n\t\t\t$T->setVar('__eventos_paso', substr($conf_paso->getAttribute('nombre'),0,30));\n\t\t\t$T->setVar('__paso_nombre', substr($conf_paso->getAttribute('nombre'),0,30));\n\t\t\t$T->setVar('__paso_nombre_completo', $conf_paso->getAttribute('nombre'));\n\t\t\t$T->setVar('lista_eventos_duracion', '');\n\t\t\t$T->setVar('lista_eventos_inicio', '');\n\t\t\t$T->setVar('lista_eventos', '');\n\n\n\t\t\t$tag_datos = $xpath->query(\"/atentus/resultados/detalles/detalle/detalles/detalle/detalles/detalle[@paso_orden=\".$conf_paso->getAttribute('paso_orden').\"]/datos/dato\");\n\n\t\t\t/* LISTA DE EVENTOS DEL PASO */\n\t\t\tforeach ($tag_datos as $tag_dato) {\n\t\t\t\t\n\t\t\t\t$T->setVar('lista_eventos_patrones','');\n\t\t\t\tif(!isset($array_dato[$tag_dato->getAttribute('fecha')])){\n\t\t\t\t\t$array_dato[$tag_dato->getAttribute('fecha')];\n\t\t\t\t\t$array_dato[$tag_dato->getAttribute('fecha')]['fecha_inicio']=$tag_dato->getAttribute('fecha');\n\t\t\t\t\t$array_dato[$tag_dato->getAttribute('fecha')]['fecha_termino']=$tag_dato->getAttribute('fecha_termino');\n\t\t\t\t\t$array_dato[$tag_dato->getAttribute('fecha')]['hora_inicio_tz']=$tag_dato->getAttribute('hora_inicio_tz');\n\t\t\t\t\t$array_dato[$tag_dato->getAttribute('fecha')]['hora_termino_tz']=$tag_dato->getAttribute('hora_termino_tz');\n\t\t\t\t\t$array_dato[$tag_dato->getAttribute('fecha')]['codigo_id']=$tag_dato->getAttribute('codigo_id');\n\t\t\t\t}\n\t\t\t\t$arr_codigos = explode(\",\", $tag_dato->getAttribute('codigo_id'));\n\t\t\t\t$paso=$conf_paso->getAttribute('paso_orden');\n\t\t\t\t\n\t\t\t\t$coma=',';\n\t\t\t\t$array_dato[$tag_dato->getAttribute('fecha')]['pasos'] .= $paso.$coma;\n\t\t\t\t\n\t\t\t\t/* SI TIENE MAS DE UN PATRON */\n\t\t\t\tforeach ($arr_codigos as $codigo_orden => $codigo_id) {\n\t\t\t\t\t$conf_codigo = $xpath->query(\"/atentus/resultados/propiedades/codigos/codigo[@codigo_id=\".$codigo_id.\"]\")->item(0);\n\n\t\t\t\t\tif ($this->subgrafico_id != 1) {\n\t\t\t\t\t\t$T->setVar('bloque_patron', '');\n\n\t\t\t\t\t\t$conf_patron = $xpath->query(\"patron[@orden=\".$codigo_orden.\"]\", $conf_paso)->item(0);\n\t\t\t\t\t\tif ($conf_patron != null) {\n\t\t\t\t\t\t\t$T->setVar('__patron', $conf_patron->getAttribute('nombre'));\n\t\t\t\t\t\t\t$T->parse('bloque_patron', 'BLOQUE_PATRON', false);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ($conf_codigo == null) {\n\t\t\t\t\t\t$T->setVar('__evento_nombre', \"Codigo Desconocido\");\n\t\t\t\t\t\t$T->setVar('__evento_descripcion', \"Codigo Desconocido\");\n\t\t\t\t\t\t$T->setVar('__evento_color', \"c4c4c4\");\n\t\t\t\t\t\t$T->setVar('__evento_icono', \"sprite sprite-desconocido\");\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t$T->setVar('__evento_nombre', $conf_codigo->getAttribute('nombre'));\n\t\t\t\t\t\t$T->setVar('__evento_descripcion', $conf_codigo->getAttribute('descripcion'));\n\t\t\t\t\t\t$T->setVar('__evento_color', $conf_codigo->getAttribute('color'));\n\t\t\t\t\t\t$T->setVar('__evento_icono', REP_PATH_SPRITE_CODIGO.substr($conf_codigo->getAttribute('icono'), 0, -4));\n\t\t\t\t\t\t$T->setVar('__id',(string)$id.substr($conf_codigo->getAttribute('icono'), 0, -4));\n\t\t\t\t\t\t$id++;\n\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t$T->setVar('__evento_tooltip_id', $tooltip_id);\n\t\t\t\t\t$T->parse('lista_eventos_patrones', 'LISTA_EVENTOS_PATRONES', true);\n\t\t\t\t\t$tooltip_id++;\n\t\t\t\t}\n\t\t\t\t$evento_inicio = date('d-m-Y H:i:s', strtotime($tag_dato->getAttribute('fecha')));\n\t\t\t\tif (in_array($evento_inicio, $arrayDateStart)) {\n\t\t\t\t echo \"Existe \";\n\t\t\t\t}\n\t\t\t\t$T->setVar('__evento_duracion', Utiles::formatDuracion($tag_dato->getAttribute('duracion')));\n\t\t\t\t$T->setVar('__evento_duracion_print', Utiles::formatDuracion($tag_dato->getAttribute('duracion'), 0));\n\t\t\t\t$T->setVar('__evento_inicio', $evento_inicio);\n\t\t\t\t$T->setVar('__print_class', ($linea % 2 == 0)?\"celdaIteracion2\":\"celdaIteracion1\");\n\t\t\t\t\n\t\t\t\t// MARCAR FECHA DESDE DISPONIBILIDAD\n\t\t\t\tif(isset($this->extra['fecha_monitoreo']) and strtotime($this->extra['fecha_monitoreo']) == strtotime($tag_dato->getAttribute('fecha'))) {\n\t\t\t\t\t$T->setVar('__evento_style', 'celdanegra10');\n\t\t\t\t}else{\n\t\t\t\t\t$T->setVar('__evento_style', 'celdanegra40');\n\t\t\t\t}\n\t\t\t\t$T->parse('lista_eventos_inicio', 'LISTA_EVENTOS_INICIO', true);\n\t\t\t\t$T->parse('lista_eventos', 'LISTA_EVENTOS', true);\n\t\t\t\t$T->parse('lista_eventos_duracion', 'LISTA_EVENTOS_DURACION', true);\n\t\t\t\t$linea++;\n\t\t\t}\n\t\t\t$T->setVar('__obj', $this->objetivo_id);\n\t\t\t$T->parse('lista_pasos_eventos','LISTA_PASOS_EVENTOS',true);\n\t\t\t$T->parse('lista_pasos','LISTA_PASOS',true);\n\t\t}\n\t\t$T->setVar('lista_eventos_boton', '');\n\t\t$cont=0;\n\t\t$T->setVar('__array_dato', $array_dato);\n\t\tif($servicio_id==700){\n\t\t\t$servicio_id='mobile';\n\t\t}elseif ($servicio_id==290) {\n\t\t\t$servicio_id='meta';\n\t\t}else{\n\t\t\t$servicio_id='screenshot';\n\t\t}\n\t\tforeach ($array_dato as $key => $value) {\n\t\t\t$cont++;\n\t\t\t$date_inicio=($value['hora_inicio_tz']);\n\t\t\t$date_inicio_utc=explode(' ', $date_inicio);\n\t\t\t$fecha_inicio_utc=$date_inicio_utc[0].'T'.$date_inicio_utc[1];\n\t\t\t$date_termino=($value['hora_termino_tz']);\n\t\t\t$date_termino_utc=explode(' ', $date_termino);\n\t\t\t$array_date_termino=explode(':',$date_termino_utc[1]);\n\t\t\t$hour_date_termino=$array_date_termino[0];\n\t\t\t$minute_date_termino=$array_date_termino[1];\n\t\t\t$array_seg_termino=explode('+',$array_date_termino[2]);\n\t\t\t$seg_termino_utc=intval($array_seg_termino[0])-1;\n\t\t\tif($seg_termino_utc<0){\n\t\t\t\t$seg_termino_utc='00';\n\t\t\t}\n\t\t\tif($seg_termino_utc==59){\n\t\t\t\t$seg_termino_utc='00';\n\t\t\t}\n\t\t\tif($seg_termino_utc<10){\n\t\t\t\t$seg_termino_utc='0'.$seg_termino_utc;\n\t\t\t}\n\t\t\t$fecha_termino_utc=$date_termino_utc[0].'T'.$hour_date_termino.':'.$minute_date_termino.':'.$seg_termino_utc;\n\t\t\t$T->setVar('__contador', $cont);\n\t\t\t$T->setVar('__value', $value);\n\t\t\t$T->setVar('__evento_cdn', $value['pasos']);\n\t\t\t$T->setVar('__hora_inicio_tz',$fecha_inicio_utc);\n\t\t\t$T->setVar('__hora_termino_tz',$fecha_termino_utc);\n\t\t\t$T->setVar('__evento_inicio_fecha',$value['fecha_inicio']);\n\t\t\t$T->setVar('__evento_termino_fecha',$value['fecha_termino']);\n\t\t\t$T->setVar('__codigo_id',$value['codigo_id']);\n\t\t\t$T->setVar('__id_monitor', $id_monitor);\n\t\t\t$T->setVar('__nombre_nodo', $conf_nodo->getAttribute(\"nombre\"));\n\t\t\t$T->setvar('__servicio', $servicio_id);\n\t\t\t$cnt++;\n\t\t\t$T->parse('lista_eventos_boton', 'LISTA_EVENTOS_BOTON', true);\n\t\t}\n\t\t/* FORMATO DE PAGINAS */\n\t\t$T->setVar('__pagina', $pagina);\n\t\t$T->setVar('__pagina_atras', $pagina-1);\n\t\t$T->setVar('__pagina_adelante', $pagina+1);\n\t\t$T->setVar('__disabled_atras', ($pagina==1)?'disabled':'');\n\t\t$T->setVar('__disabled_adelante', ($conf_validador_pag==0)?'disabled':'');\n\t\t$T->setVar('__class_boton_atras', ($pagina==1)?'spriteButton spriteButton-atras_desactivado':'spriteButton spriteButton-atras');\n\t\t$T->setVar('__class_boton_adelante', ($conf_validador_pag==0)?'spriteButton spriteButton-adelante_desactivado':'spriteButton spriteButton-adelante');\n\n\t\t$this->tiempo_expiracion = (strtotime($xpath->query(\"//fecha_expiracion\")->item(0)->nodeValue) - strtotime($xpath->query(\"//fecha\")->item(0)->nodeValue));\n\t\t\n\t\t$this->resultado = $T->parse('out', 'tpl_tabla');\n\n\t\t/**\n\t\t *Solamente crea el accordeon si este es consultado a travez de reportes online cuando es por semaforo *se crea en getEventos().\n\t\t**/\n\t\tif ($isSemaforo == 2){\n\t\t $graficoSvg = new GraficoSVG();\n\t\t $T->setVar('__tiene_evento', true);\n\t\t\tif ($data != null){\n\t\t\t\tif($data != 'null')\n\t\t\t\t\t$this->resultado.= $graficoSvg->getAccordion($data,'accordionEvento');\n\t\t\t}\n\t\t}\n\t\treturn $this->resultado;\n\t}", "function guardar()\n\t{\t\t\n\t\tif ($this->activo) {\n\t\t\t$this->guardar_en_archivo($this->get_nombre_archivo());\n\t\t}\n\t}", "public function v_cambiar_detalles(){\n\t\tif($this -> e_fragmento === '' && $this -> e_personaje === '' && $this -> e_tarea === '' && $this -> e_leyenda === '' && $this -> e_id === ''){\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}", "static public function mdlGuardarDetalleCompra($datos) {\r\n\r\n $sql = \"INSERT INTO detalle_compra(id_compra, id_insumo, cantidad, precio) VALUES (:id_compra, :id_insumo, :cantidad, :precio)\";\r\n\r\n $stmt = Conexion::conectar()->prepare($sql);\r\n\r\n $stmt->bindParam(\":id_compra\", $datos[\"id_compra\"], PDO::PARAM_INT);\r\n $stmt->bindParam(\":id_insumo\", $datos[\"id_insumo\"], PDO::PARAM_INT);\r\n $stmt->bindParam(\":cantidad\", $datos[\"cantidad\"], PDO::PARAM_STR);\r\n $stmt->bindParam(\":precio\", $datos[\"precio\"], PDO::PARAM_STR);\r\n\r\n\r\n if ($stmt->execute()) {\r\n\r\n return \"ok\";\r\n\r\n } else {\r\n\r\n return \"error\";\r\n\r\n }\r\n\r\n }", "public function solicitudesRecibidas(Request $request,$filtro){\n //datos para el filtrado\n $nombre = $request->get('nombre');\n $id_carrera = $request->get('carrera_id');\n $numc = $request->get('numc');\n $roleid = $request->get('role_id');\n\n $visto = ($request->get('visto')) ? true :null;\n \n $id_carreras=UserCarrera::where('identificador',usuario()->identificador)->pluck('carrera_id');\n $carreras = Carrera::whereIn('id',$id_carreras)->get();\n //toma los id de carreras de las cuales tiene permiso\n if(!$id_carrera){\n $id_carrera = $id_carreras;\n }else{\n $id_carrera = array($id_carrera);\n }\n $respuesta = ($filtro == 'pendientes') ? '=' : '!='; \n $permisod = UserAdscripcion::where('identificador','=',usuario()->identificador)->pluck('adscripcion_id');\n $permisod = Adscripcion::whereIn('id',$permisod)->orWhere('tipo','administrativo')->pluck('id');\n\n\n //solicitudes de estudiantes y docentes que no han sido revisadas\n $solicitudes = Solicitud::join('users','solicituds.identificador','=','users.identificador')\n ->leftJoin('recomendacions','solicituds.id','=','recomendacions.id_solicitud')\n ->leftJoin('observaciones',function($join){\n $join->on('observaciones.solicitud_id', '=', 'solicituds.id')\n ->where('observaciones.identificador', '=', usuario()->identificador);\n })\n ->select('solicituds.*','observaciones.voto','observaciones.descripcion','observaciones.visto')\n ->where('recomendacions.respuesta',$respuesta,null)\n ->where(function ($query) use ($id_carrera,$permisod){\n $query->where('solicituds.enviadocoor','=',true)\n ->whereIn('users.carrera_id', $id_carrera)\n ->orWhere(function ($query) use ($permisod){\n $query->where('solicituds.enviado','=',true)\n ->whereIn('users.adscripcion_id',$permisod);});})\n ->whereHas('user', function($query) use ($nombre,$numc,$roleid) {\n $query->nombre($nombre)\n ->identificador($numc)\n ->role($roleid);})\n ->when($filtro == 'pendientes', function($query) use ($visto){\n $query->where('observaciones.visto',$visto);\n })\n ->paginate(5);\n $reuniones = Calendario::whereDate('start','<=',hoy())->orderBy('start','desc')->pluck('start'); \n if($filtro == 'finalizadas'){\n //si se filtran las solicitudes por finalizadas(vistas en reunion) se retorna la vista\n return view('jefe.solicitudesTerminadas',compact('solicitudes','carreras','reuniones'));\n }else{\n if(!$request->get('visto')){\n //si las solicitudes se filtran por recibidas(nuevas solicitudes) y que no han sido vistas\n //se hace un conteo esas solicitudes pendientes para notificar al usuario por si quedan solicitudes pendientes por revisar\n Notificacion::where([['identificador','=',usuario()->identificador],['tipo','=','solicitud']])->update(['num' => $solicitudes->total()]);\n }\n return view('jefe.solicitudesRecibidas',compact('solicitudes','carreras','reuniones'));\n }\n}", "static public function ctrEliminarVenta(){\n\n\t\tif(isset($_GET[\"idVenta\"])){\n\n\t\t\t$tabla = \"ventas\";\n\n\t\t\t$item = \"id\";\n\t\t\t$valor = $_GET[\"idVenta\"];\n\n\t\t\t$traerVenta = ModeloVentas::mdlMostrarVentas($tabla, $item, $valor);\n\n\t\t\t/*=============================================\n\t\t\tACTUALIZAR FECHA ÚLTIMA COMPRA\n\t\t\t=============================================*/\n\n\t\t\t$tablaClientes = \"clientes\";\n\n\t\t\t$itemVentas = null;\n\t\t\t$valorVentas = null;\n\n\t\t\t$traerVentas = ModeloVentas::mdlMostrarVentas($tabla, $itemVentas, $valorVentas);\n\n\t\t\t$guardarFechas = array();\n\n\t\t\tforeach ($traerVentas as $key => $value) {\n\t\t\t\t\n\t\t\t\tif($value[\"id_cliente\"] == $traerVenta[\"id_cliente\"]){\n\n\t\t\t\t\tarray_push($guardarFechas, $value[\"fecha\"]);\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tif(count($guardarFechas) > 1){\n\n\t\t\t\tif($traerVenta[\"fecha\"] > $guardarFechas[count($guardarFechas)-2]){\n\n\t\t\t\t\t$item = \"ultima_compra\";\n\t\t\t\t\t$valor = $guardarFechas[count($guardarFechas)-2];\n\t\t\t\t\t$valorIdCliente = $traerVenta[\"id_cliente\"];\n\n\t\t\t\t\t$comprasCliente = ModeloClientes::mdlActualizarCliente($tablaClientes, $item, $valor, $valorIdCliente);\n\n\t\t\t\t}else{\n\n\t\t\t\t\t$item = \"ultima_compra\";\n\t\t\t\t\t$valor = $guardarFechas[count($guardarFechas)-1];\n\t\t\t\t\t$valorIdCliente = $traerVenta[\"id_cliente\"];\n\n\t\t\t\t\t$comprasCliente = ModeloClientes::mdlActualizarCliente($tablaClientes, $item, $valor, $valorIdCliente);\n\n\t\t\t\t}\n\n\n\t\t\t}else{\n\n\t\t\t\t$item = \"ultima_compra\";\n\t\t\t\t$valor = \"0000-00-00 00:00:00\";\n\t\t\t\t$valorIdCliente = $traerVenta[\"id_cliente\"];\n\n\t\t\t\t$comprasCliente = ModeloClientes::mdlActualizarCliente($tablaClientes, $item, $valor, $valorIdCliente);\n\n\t\t\t}\n\n\t\t\t/*=============================================\n\t\t\tFORMATEAR TABLA DE PRODUCTOS Y LA DE CLIENTES\n\t\t\t=============================================*/\n\n\t\t\t$productos = json_decode($traerVenta[\"productos\"], true);\n\n\t\t\t$totalProductosComprados = array();\n\n\t\t\tforeach ($productos as $key => $value) {\n\n\t\t\t\tarray_push($totalProductosComprados, $value[\"cantidad\"]);\n\t\t\t\t\n\t\t\t\t$tablaProductos = \"productos\";\n\n\t\t\t\t$item = \"id\";\n\t\t\t\t$valor = $value[\"id\"];\n\t\t\t\t$orden = \"id\";\n\n\t\t\t\t$traerProducto = ModeloProductos::mdlMostrarProductos($tablaProductos, $item, $valor, $orden);\n\n\t\t\t\t$item1a = \"ventas\";\n\t\t\t\t$valor1a = $traerProducto[\"ventas\"] - $value[\"cantidad\"];\n\n\t\t\t\t$nuevasVentas = ModeloProductos::mdlActualizarProducto($tablaProductos, $item1a, $valor1a, $valor);\n\n\t\t\t\t$item1b = \"stock\";\n\t\t\t\t$valor1b = $value[\"cantidad\"] + $traerProducto[\"stock\"];\n\n\t\t\t\t$nuevoStock = ModeloProductos::mdlActualizarProducto($tablaProductos, $item1b, $valor1b, $valor);\n\n\t\t\t}\n\n\t\t\t$tablaClientes = \"clientes\";\n\n\t\t\t$itemCliente = \"id\";\n\t\t\t$valorCliente = $traerVenta[\"id_cliente\"];\n\n\t\t\t$traerCliente = ModeloClientes::mdlMostrarClientes($tablaClientes, $itemCliente, $valorCliente);\n\n\t\t\t$item1a = \"compras\";\n\t\t\t$valor1a = $traerCliente[\"compras\"] - array_sum($totalProductosComprados);\n\n\t\t\t$comprasCliente = ModeloClientes::mdlActualizarCliente($tablaClientes, $item1a, $valor1a, $valorCliente);\n\n\t\t\t/*=============================================\n\t\t\tELIMINAR VENTA\n\t\t\t=============================================*/\n\n\t\t\t$respuesta = ModeloVentas::mdlEliminarVenta($tabla, $_GET[\"idVenta\"]);\n\n\t\t\tif($respuesta == \"ok\"){\n\n\t\t\t\techo'<script>\n\n\t\t\t\tswal({\n\t\t\t\t\t type: \"success\",\n\t\t\t\t\t title: \"La venta ha sido borrada correctamente\",\n\t\t\t\t\t showConfirmButton: true,\n\t\t\t\t\t confirmButtonText: \"Cerrar\"\n\t\t\t\t\t }).then(function(result){\n\t\t\t\t\t\t\t\tif (result.value) {\n\n\t\t\t\t\t\t\t\twindow.location = \"ventas\";\n\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t})\n\n\t\t\t\t</script>';\n\n\t\t\t}\t\t\n\t\t}\n\n\t}", "public function anularItemDetalle($idDetalleParaAnular){\n\t\t\t\t\n\t\t$idDetalleParaAnular \t\t= parent::escaparQueryBDCliente($idDetalleParaAnular);\t\n\t\t\n\t\t$query = \"UPDATE tb_pago_factura_caja_detalle SET estado = 'Borrado' WHERE idPagoFacturaCajaDetalle = '$idDetalleParaAnular'\";\n\t\t\n\t\t$conexion = parent::conexionCliente();\n\t\t\n\t\t$res = $conexion->query($query);\n\t\t\n\t\t//saber si es un producto para retornar la cantidad\n\t\t$query2 = \"SELECT tipoDetalle, idSucursal, idTipoDetalle, cantidad\n\t\t\t\t\t FROM tb_pago_factura_caja_detalle \n\t\t\t\t WHERE idPagoFacturaCajaDetalle = '$idDetalleParaAnular' \";\n\t\t\n\t\t\t\n\t\tif($res2 = $conexion->query($query2)){\n\t\t\twhile ($filas = $res2->fetch_assoc()) {\n\t\t\t\t\t\t\t\n\t\t\t\tif($filas['tipoDetalle'] == \"Producto\"){\n\t\t\t\t\t\n\t\t\t\t\t$cantidadAumentar = \t$filas['cantidad'];\t\n\t\t\t\t\t$id \t\t\t\t=\t$filas['idTipoDetalle'];\n\t\t\t\t\t$sucursal\t\t\t= \t$filas['idSucursal'];\n\t\t\t\t\t\n\t\t\t\t\t$query3 = \"UPDATE tb_productos_sucursal SET cantidad = cantidad + '$cantidadAumentar' \n\t\t\t\t\t\t\t\tWHERE idSucursal = '$sucursal' AND idProducto = '$id'\";\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t$conexion->query($query3);\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\t\t\n\t\t\t}//fin while\n\t\t\t\n\t\t\t/* liberar el conjunto de resultados */\n\t\t\t$res2->free();\n\t\t\t\n\t\t}//fin if\t\t\n\t\t\t\n\t\t\n\t\t\n\t}", "public function mostrarEstructuraDireccion(){\n\n\t\t$argumento=\\Request::get('data');\n\t\t$datos=$this->cargar_header_sidebar_acciones();\n\t\tif (empty($argumento[2])) {\n\t\t\t$argumento[2]=[0];\n\t\t}\n\t\tif (empty($argumento[3])) {\n\t\t\t$argumento[3]=[0];\n\t\t}\n\t\t\\Session::forget('depmarcados');\n\t\t\\Session::push('depmarcados',$argumento[2]);\n\t\t\\Session::forget('areamarcada');\n\t\t\\Session::push('areamarcada',$argumento[3]);\n\t\t$marcados=\\Session::get('depmarcados');\n\t\t$areamarcada=\\Session::get('areamarcada');\n\t\tif ($argumento[1]=='dep') {\n\t\t\t$consulta=\\DB::table('departamentos')->join('directores','departamentos.director_id','=','directores.id')\n\t\t\t\t\t\t\t\t \t\t\t ->select('directores.*')\n\t\t\t\t\t\t\t\t \t\t\t ->where('directores.id',$argumento[0])\n\t\t\t\t\t\t\t\t\t ->whereNotNull('departamentos.director_id')\n\t\t\t\t\t\t\t\t\t ->distinct()\n\t\t\t\t\t\t\t\t\t ->get();\n\t\t\t$query=\\App\\Departamento::where('director_id',$argumento[0])->get();\n\t\t\t$acciones=$this->cargar_acciones_submodulo_perfil($datos['acciones'],array(94,95,96),4);\n\t\t\treturn view('Registros_Basicos.Departamentos.partials.listaDatos',$this->datos_vista(0,$acciones,$consulta,$query,$marcados[0]));\n\t\t}\n\t\telseif ($argumento[1]=='area') {\n\t\t\t$consulta=\\DB::table('areas')->join('departamentos','areas.departamento_id','=','departamentos.id')\n\t\t\t\t\t\t\t\t\t\t ->join('directores','departamentos.director_id','=','directores.id')\n\t\t\t\t\t\t \t\t\t ->select('departamentos.*')\n\t\t\t\t\t\t \t\t\t ->where('directores.id',$argumento[0])\n\t\t\t\t\t\t\t ->whereNotNull('areas.departamento_id')\n\t\t\t\t\t\t\t ->distinct()\n\t\t\t\t\t\t\t ->get();\n\t\t\t$query=\\DB::table('areas')->join('departamentos','areas.departamento_id','=','departamentos.id')\n\t\t\t\t\t\t\t\t\t ->join('directores','departamentos.director_id','=','directores.id')\n\t\t\t\t\t\t\t\t\t ->select('areas.*')\n\t\t\t\t\t\t\t\t\t ->where('directores.id',$argumento[0])->get();\n\t\t\t$acciones=$this->cargar_acciones_submodulo_perfil($datos['acciones'],array(7,98,99),4);\n\t\t\treturn view('Registros_Basicos.Departamentos.partials.listarAreas',$this->datos_vista(0,$acciones,$consulta,$query,0,$areamarcada[0]));\n\t\t}\n\t\telse {\n\t\t\t$consulta=\\DB::table('cargos')->join('areas','cargos.area_id','=','areas.id')\n\t\t\t\t\t\t\t\t\t\t ->join('departamentos','areas.departamento_id','=','departamentos.id')\n\t\t\t\t\t\t\t\t\t\t ->join('directores','departamentos.director_id','=','directores.id')\n\t\t\t\t\t\t \t\t\t ->select('areas.*')\n\t\t\t\t\t\t \t\t\t ->where('directores.id',$argumento[0])\n\t\t\t\t\t\t\t ->whereNotNull('cargos.area_id')\n\t\t\t\t\t\t\t ->distinct()\n\t\t\t\t\t\t\t ->get();\n\n\t\t\t$query=\\DB::table('cargos')->join('areas','cargos.area_id','=','areas.id')\n\t\t\t\t\t\t\t\t\t ->join('departamentos','areas.departamento_id','=','departamentos.id')\n\t\t\t\t\t\t\t\t\t ->join('directores','departamentos.director_id','=','directores.id')\n\t\t\t\t\t\t\t\t\t ->select('cargos.*')\n\t\t\t\t\t\t\t\t\t ->where('directores.id',$argumento[0])->get();\n\t\t\t$acciones=$this->cargar_acciones_submodulo_perfil($datos['acciones'],array(5,6),4);\n\t\t\treturn view('Registros_Basicos\\Departamentos\\partials\\listarCargos',$this->datos_vista(0,$acciones,$consulta,$query));\n\t\t}\n\t}", "function calcularSemestreEspacioMasAtrasado() {\r\n if (is_array($this->espaciosPlan))\r\n {\r\n if(is_array($this->espaciosAprobados)){\r\n foreach ($this->espaciosPlan as $key => $espaciosPlan) {\r\n foreach ($this->espaciosAprobados as $key2 => $espaciosAprobados) {\r\n if ($espaciosPlan==$espaciosAprobados)\r\n unset ($this->espaciosPlan[$key]);\r\n }\r\n }\r\n }\r\n }else{\r\n $this->mensaje[$this->datosEstudiante['CODIGO']][]=\"No existen espacios registrados en el plan de estudios del estudiante\";\r\n\r\n }\r\n return $this->espaciosPlan[0]['SEMESTRE'];\r\n }", "public function clearSolicitacaoResgatesRelatedBySolicitanteId()\n\t{\n\t\t$this->collSolicitacaoResgatesRelatedBySolicitanteId = null; // important to set this to NULL since that means it is uninitialized\n\t}" ]
[ "0.612793", "0.56373763", "0.5555306", "0.5527211", "0.54493666", "0.5442599", "0.5345528", "0.53347933", "0.53206545", "0.5298811", "0.52986217", "0.5283776", "0.5273659", "0.52626824", "0.526124", "0.5245727", "0.5221243", "0.5218153", "0.51922435", "0.51862806", "0.51432854", "0.5140027", "0.5136408", "0.51322997", "0.5114581", "0.5110474", "0.51040804", "0.50946325", "0.5088155", "0.5074404", "0.5065528", "0.50629103", "0.5042049", "0.50348514", "0.5034412", "0.50283194", "0.5026087", "0.5009459", "0.5003003", "0.4994998", "0.49892727", "0.49766502", "0.4975321", "0.4974807", "0.4959967", "0.4958359", "0.4952906", "0.49456674", "0.49398184", "0.49394098", "0.49362856", "0.4933518", "0.492729", "0.4918621", "0.49177065", "0.49144292", "0.4909005", "0.49013203", "0.4889549", "0.48894984", "0.4888768", "0.4884093", "0.4869963", "0.48646712", "0.48640692", "0.48572463", "0.48572385", "0.48547548", "0.48377478", "0.48364115", "0.48318905", "0.48305726", "0.48294", "0.48270768", "0.48254624", "0.48173988", "0.48147136", "0.4812307", "0.47974882", "0.47945553", "0.47914326", "0.478185", "0.47767302", "0.47675222", "0.47674936", "0.47654682", "0.47637042", "0.47635317", "0.47616756", "0.47599325", "0.47574747", "0.47542825", "0.47487062", "0.4748571", "0.47455785", "0.4740256", "0.47333667", "0.4728823", "0.47287512", "0.47287413" ]
0.55029577
4
Funcion para guardar el detalle de rastreo del flete sin imagenes
public function guardarRastreoSImagen($id_flete, $tblRastreo, $id_session) { DB::beginTransaction(); foreach ($tblRastreo as $evento) { if ($evento->Id_detalle_seguimiento == null) { $query_detalle_seguimiento = new static; $query_detalle_seguimiento = DB::insert('INSERT INTO ldci.tb_detalle_seguimiento( fecha, evento, detalle, estado, id_flete, usuario_grabacion, fecha_grabacion) VALUES (?, ?, ?, ?, ?, ?, now())', [$evento->Fecha, $evento->Evento, $evento->Descripcion, 1, $id_flete, $id_session]); if (!$query_detalle_seguimiento) { DB::rollBack(); return collect([ 'mensaje' => 'Hubo un error al guardar el detalle de rastreo', 'error' => true ]); } } else { $query_detalle_seguimiento_p = new static; $query_detalle_seguimiento_p = DB::Update("UPDATE ldci.tb_detalle_seguimiento SET fecha=?, evento=?, detalle=?, usuario_modificacion=?, fecha_modificacion=now() WHERE id_detalle_seguimiento=?", [$evento->Fecha, $evento->Evento, $evento->Descripcion, $id_session, $evento->Id_detalle_seguimiento]); if (!$query_detalle_seguimiento_p) { DB::rollBack(); return collect([ 'mensaje' => 'Hubo un error al guardar el detalle de rastreo', 'error' => true ]); } } } DB::commit(); return collect([ 'mensaje' => 'Detalle Rastreo guardada con exito', 'error' => false ]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function subirFotoElemento($campo, $tipo, $id, $refresh, $backdir) {\n\t\tif($_FILES[$campo]['type'] != 'image/jpeg' AND $_FILES[$campo]['type'] != 'image/gif' AND $_FILES[$campo]['type'] != 'image/png') {\n\t\t\t$error_img = TRUE;\n\t\t\t$msg = 'El formato de imagen no es válido, sólo se aceptan JPG, GIF o PNG';\n\t\t}\n\n\t\t//Obtengo las dimensiones de la imagen, si se puede entonces es una imagen de verdad y evito una shell en el server\n\t\t$check = getimagesize($_FILES[$campo]['tmp_name']);\n\n\t\tif($check == FALSE) {\n\t\t\t$error_img = TRUE;\n\t\t\t$msg = 'Seleccione una imagen válida';\n\t\t}\n\n\t\t//Si no hay ningún error, arranco la subida...\n\t\tif($error_img == FALSE) {\n\t\t\tif($_FILES[$campo]['type'] == 'image/jpeg') {\n\t\t\t\t$extension_img = '.jpg';\n\t\t\t} elseif($_FILES[$campo]['type'] == 'image/gif') {\n\t\t\t\t$extension_img = '.gif';\n\t\t\t} elseif($_FILES[$campo]['type'] == 'image/png') {\n\t\t\t\t$extension_img = '.png';\n\t\t\t}\n\n\t\t\t$directorio_subida = $backdir . '../sitio/fotos/' . $tipo . '/ampl/';\n\t\t\t$directorio_subida_m = $backdir . '../sitio/fotos/' . $tipo . '/';\n\n\t\t\tif($img = glob($directorio_subida . $id . '.*')) {\n\t\t\t\tunlink($img[0]);\n\t\t\t}\n\n\t\t\tif($img = glob($directorio_subida_m . $id . '.*')) {\n\t\t\t\tunlink($img[0]);\n\t\t\t}\n\n\t\t\t$sin_punto = explode('.', $_FILES[$campo]['name']);\n\t\t\tmove_uploaded_file($_FILES[$campo]['tmp_name'],$directorio_subida . $_FILES[$campo]['name']);\n\t\t\trename($directorio_subida . $_FILES[$campo]['name'],$directorio_subida . $id . $extension_img);\n\n\t\t\t$modulo_variable_ancho_imagen_chica = 'modulo_' . $tipo . '_ancho_imagen_chica';\n\t\t\t$modulo_variable_alto_imagen_chica = 'modulo_' . $tipo . '_alto_imagen_chica';\n\t\t\t$modulo_variable_ancho_imagen_grande = 'modulo_' . $tipo . '_ancho_imagen_grande';\n\t\t\t$modulo_variable_alto_imagen_grande = 'modulo_' . $tipo . '_alto_imagen_grande';\n\t\t\t$modulo_variable_tipo_resize = 'modulo_' . $tipo . '_tipo_resize';\n\t\t\t$modulo_variable_watermark = 'modulo_' . $tipo . '_watermark';\n\t\t\t$modulo_variable_watermark_dir = 'modulo_' . $tipo . '_watermark_dir';\n\n\t\t\tglobal $$modulo_variable_ancho_imagen_chica;\n\t\t\tglobal $$modulo_variable_alto_imagen_chica;\n\t\t\tglobal $$modulo_variable_ancho_imagen_grande;\n\t\t\tglobal $$modulo_variable_alto_imagen_grande;\n\t\t\tglobal $$modulo_variable_tipo_resize;\n\t\t\tglobal $$modulo_variable_watermark;\n\t\t\tglobal $$modulo_variable_watermark_dir;\n\n\t\t\tif($_FILES[$campo]['type'] != 'image/gif') {\n\t\t\t\trequire($backdir . 'lib/Simpleimage/SimpleImage.php');\n\n\t\t\t\t$img = new \\claviska\\SimpleImage($directorio_subida . $id . $extension_img);\n\t\t\t\t$img->toFile($directorio_subida_m . $id . $extension_img);\n\n\t\t\t\t$img_thumb = new \\claviska\\SimpleImage($directorio_subida_m . $id . $extension_img);\n\n\t\t\t\tif($$modulo_variable_tipo_resize == 'recortar') { //////////////////////////////////////////////////////////////Si está en modo recorte\n\t\t\t\t\tif($$modulo_variable_watermark == 1) { //Verifico si está activa o no la marca de agua\n\t\t\t\t\t\t//Ampliada\n\t\t\t\t\t\t$img\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_grande, $$modulo_variable_alto_imagen_grande)\n\t\t\t\t\t\t\t->overlay($$modulo_variable_watermark_dir, 'center', '1')\n\t\t\t\t\t\t\t->toFile($directorio_subida . $id . $extension_img);\n\t\t\t\t\t\t\n\t\t\t\t\t\t//Miniatura\n\t\t\t\t\t\t$img_thumb\n\t\t\t\t\t\t\t->thumbnail($$modulo_variable_ancho_imagen_chica, $$modulo_variable_alto_imagen_chica, 'center')\n\t\t\t\t\t\t\t->toFile($directorio_subida_m . $id . $extension_img);\n\n\t\t\t\t\t} else { //Si la marca de agua no está activa, no la pongo...\n\t\t\t\t\t\t//Ampliada\n\t\t\t\t\t\t$img\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_grande, $$modulo_variable_alto_imagen_grande)\n\t\t\t\t\t\t\t->toFile($directorio_subida . $id . $extension_img);\n\n\t\t\t\t\t\t//Miniatura\n\t\t\t\t\t\t$img_thumb\n\t\t\t\t\t\t\t->thumbnail($$modulo_variable_ancho_imagen_chica, $$modulo_variable_alto_imagen_chica, 'center')\n\t\t\t\t\t\t\t->toFile($directorio_subida_m . $id . $extension_img);\n\t\t\t\t\t}\n\t\t\t\t} else { /////////////////////////////////////////////////////////////////////////////////////////////////////////Si está en modo proporcionar\n\t\t\t\t\tif($$modulo_variable_watermark == 1) { //Verifico si está activa o no la marca de agua\n\t\t\t\t\t\t//Ampliada\n\t\t\t\t\t\t$img\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_grande, $$modulo_variable_alto_imagen_grande)\n\t\t\t\t\t\t\t->overlay($$modulo_variable_watermark_dir, 'center', '1')\n\t\t\t\t\t\t\t->toFile($directorio_subida . $id . $extension_img);\n\t\t\t\t\t\t\n\t\t\t\t\t\t//Miniatura\n\t\t\t\t\t\t$img_thumb\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_chica, $$modulo_variable_alto_imagen_chica, 'center')\n\t\t\t\t\t\t\t->toFile($directorio_subida_m . $id . $extension_img);\n\n\t\t\t\t\t} else { //Si la marca de agua no está activa, no la pongo...\n\t\t\t\t\t\t//Ampliada\n\t\t\t\t\t\t$img\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_grande, $$modulo_variable_alto_imagen_grande)\n\t\t\t\t\t\t\t->toFile($directorio_subida . $id . $extension_img);\n\n\t\t\t\t\t\t//Miniatura\n\t\t\t\t\t\t$img_thumb\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_chica, $$modulo_variable_alto_imagen_chica, 'center')\n\t\t\t\t\t\t\t->toFile($directorio_subida_m . $id . $extension_img);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif($refresh == TRUE) {\n\t\t\t\techo refresh();\n\t\t\t}\n\t\t} else {\n\t\t\techo '<br><div class=\"alert alert-danger\"><strong>Error</strong> ' . $msg . '</div>';\n\t\t}\n\t}", "function borrar ($arrayLineas,$id,$foto){\n $valorRetornado=false; \n foreach ($arrayLineas as $key => $value) {\n $auxArray= (array)$value; \n if($auxArray){\n if($auxArray[\"patente\"] === $id){\n var_dump($foto[\"name\"]);\n var_dump($auxArray[\"foto\"]);\n if($foto[\"name\"] !== $auxArray[\"foto\"] ){\n var_dump(\"./imagenes/\".$auxArray[\"foto\"]);\n //cambia de directorio la imagen vieja a backUpFotos, pero no la conserva.\n //rename(\"./imagenes/\".$auxArray[\"foto\"], './backUpFotos/'.$auxArray[\"patente\"].$auxArray[\"foto\"]);\n //cambia de directorio la imagen vieja a backUpFotos, pero la conserva en ambos directorios.\n copy(\"./imagenes/\".$auxArray[\"foto\"], './backUpFotos/'.$auxArray[\"patente\"].$auxArray[\"foto\"]);\n }\n unset($arrayLineas[$key]);\n $valorRetornado=true;\n break;\n }\n } \n } \n if($valorRetornado){\n echo(\"Se Removio: \".$id.\"\\n\\n\");\n }\n else{\n echo('No se encontro'.\"\\n\\n\");\n $arrayLineas=null;\n } \n return $arrayLineas;\n}", "function guardar_imagenes($idc=null,$seccion){ \r\r\n if (!is_null($idc))\r\r\n $ims = zen_deserializar($this->padre->bd->seleccion_unica(\"imagenes from contenidos where idc=\".$idc)); \r\r\n else \r\r\n $ims = array();\r\r\n //Guardar imagenes:\r\r\n $errores = \"\";\r\r\n zen___carga_funciones(\"zen_ficheros\");\r\r\n $guardar_imgs= zen_guardarFicheros(\"imagenes\",ZF_DIR_MEDIA.\"img/$seccion/\",$errores,rand(10,100).\"_\",true,104);\r\r\n $n = count($ims); \r\r\n for ($i=0; $i<$n; $i++){ \r\r\n \tif (!isset($_POST['borrar_'.str_replace(\".\",\"_\",$ims[$i])])) {\r\r\n \t array_push($guardar_imgs,$ims[$i]); \r\r\n \t} else echo $_POST['borrar_'.$ims[$i]];\r\r\n }\r\r\n return zen_serializar($guardar_imgs);\r\r\n }", "function eliminarImagenArreglo($campo, $tabla, $llavePrimaria, $campoLlave)\n {\n $data=$this->analisisRiesgo->getNombreImagenTabla($campo, $tabla, $llavePrimaria, $campoLlave);\n //Delete el nombre de la imagen de la base de datos\n $borrar=Array($campo => null);\n $this->analisisRiesgo->deleteImagenTabla($borrar, $tabla, $llavePrimaria, $campoLlave);\n //Unlink el nombre de la imagen del servidor\n foreach($data as $row)\n {\n $nombreImagen=$row[$campo];\n unlink(\"assets/img/fotoAnalisisRiesgo/$campo/$nombreImagen\");\n echo \"OK\";\n }\n\n }", "private function recortarImagen()\n\t{\n\t\t$ImgTemporal=\"temporal_clase_Imagen.\".strtolower($this->extencion);\n\n\t\t$CoefAncho\t\t= $this->propiedadesImagen[0]/$this->anchoDestino;\n\t\t$CoefAlto\t\t= $this->propiedadesImagen[1]/$this->altoDestino;\n\t\t$Coeficiente=0;\n\t\tif ($CoefAncho>1 && $CoefAlto>1)\n\t\t{ if($CoefAncho>$CoefAlto){ $Coeficiente=$CoefAlto; } else {$Coeficiente=$CoefAncho;} }\n\n\t\tif ($Coeficiente!=0)\n\t\t{\n\t\t\t$anchoTmp\t= ceil($this->propiedadesImagen[0]/$Coeficiente);\n\t\t\t$altoTmp\t= ceil($this->propiedadesImagen[1]/$Coeficiente);\n\n\t\t\t$ImgMediana = imagecreatetruecolor($anchoTmp,$altoTmp);\n\t\t\timagecopyresampled($ImgMediana,$this->punteroImagen,0,0,0,0,$anchoTmp,$altoTmp,$this->propiedadesImagen[0],$this->propiedadesImagen[1]);\n\t\t\t\n\t\t\t// Tengo que desagregar la funcion de image para crear para reUtilizarla\n\t\t\t//imagejpeg($ImgMediana,$ImgTemporal,97);\n\t\t\t$this->crearArchivoDeImagen($ImgMediana,$ImgTemporal);\n\t\t}\n\n\t\t$fila\t\t\t= floor($this->recorte['centrado']/$this->recorte['columnas']);\n\t\t$columna\t\t= $this->recorte['centrado'] - ($fila*$this->recorte[\"columnas\"]);\n\t\t\n\t\t$centroX \t= floor(($anchoTmp / $this->recorte[\"columnas\"])/2)+$columna*floor($anchoTmp / $this->recorte[\"columnas\"]);\n\t\t$centroY \t= floor(($altoTmp / $this->recorte[\"filas\"])/2)+$fila*floor($altoTmp / $this->recorte[\"filas\"]);\n\n\t\t$centroX\t-= floor($this->anchoDestino/2);\n\t\t$centroY \t-= floor($this->altoDestino/2);\n\n\t\tif ($centroX<0) {$centroX = 0;}\n\t\tif ($centroY<0) {$centroY = 0;}\n\n\t\tif (($centroX+$this->anchoDestino)>$anchoTmp) {$centroX = $anchoTmp-$this->anchoDestino;}\n\t\tif (($centroY+$this->altoDestino)>$altoTmp) {$centroY = $altoTmp-$this->altoDestino;}\n\n\t\t$ImgRecortada = imagecreatetruecolor($this->anchoDestino,$this->altoDestino);\n\t\timagecopymerge ( $ImgRecortada,$ImgMediana,0,0,$centroX, $centroY, $this->anchoDestino, $this->altoDestino,100);\n\n\t\t//imagejpeg($ImgRecortada,$this->imagenDestino,97);\n\t\t$this->crearArchivoDeImagen($ImgRecortada,$this->imagenDestino);\n\t\timagedestroy($ImgRecortada);\n\t\tunlink($ImgTemporal);\n\t}", "function subir_imagenes($tipo,$imagen,$descripcion,$ruta,$size)\n\t{\n\t\t\t//return \"La imagen\".$tipo.\" No se subio\";\n\t\t\tif(strstr($tipo,\"image\"))\n\t\t\t{\n\n\t\t\t\tif(strstr($tipo,\"jpeg\"))\n\t\t\t\t\t$extension=\".jpg\";\n\t\t\t\telse if(strstr($tipo,\"gif\"))\n\t\t\t\t\t$extension=\".gif\";\n\t\t\t\telse if(strstr($tipo,\"png\"))\n\t\t\t\t\t$extension=\".png\";\n\t\t\t\t//para saber si la imagen tiene el ancho correcto es de 420px\n\t\t\t\t$tam_img=getimagesize($imagen);\n\t\t\t\t$ancho_img=$tam_img[0];\n\t\t\t\t$alto_img =$tam_img[1];\n\t\t\t\t$ancho_img_deseado=$size;\n\n\t\t\t\t//sii la imagen es maor en su ancho a 420px reajusto su tamaño\n\t\t\t\t\tif($ancho_img > $ancho_img_deseado)\n\t\t\t\t\t{\n\t\t\t\t\t\t//reajustamos\n\t\t\t\t\t\t//por una regla de tres obtengo el alto de la imagen de manera \n\t\t\t\t\t\t//proporciaonal el ancho nuevo que sera 420\n\t\t\t\t\t\t$nuevo_ancho_img = $ancho_img_deseado;\n\t\t\t\t\t\t$nuevo_alto_img=($alto_img*$nuevo_ancho_img)/$ancho_img;\n\t\t\t\t\t\t//CREO UNA IMAGEN EN COLOR REAL CON LA NUEVAS DIMENSIONES\n\t\t\t\t\t\n\t\t\t\t\t\t$img_reajustada=imagecreatetruecolor($nuevo_ancho_img, $nuevo_alto_img);\n\t\t\t\t\t\t//CREO UNA IMAGEN BASADA EN LA ORIGINAL DEPENDIENDO DE SU EXTENSION ES EL TIPO QUE CREARE\n\t\t\t\t\t\tswitch ($extension) {\n\t\t\t\t\t\t\tcase '.jpg':\n\t\t\t\t\t\t\t\t$img_original=imagecreatefromjpeg($imagen);\n\t\t\t\t\t\t\t\t//REAJUSTO LA IMAGEN NUEVA CON RESPETO ALA ORIGINAL \n\t\t\t\t\t\t\t\timagecopyresampled($img_reajustada, $img_original, 0, 0, 0, 0, $nuevo_ancho_img, $nuevo_alto_img, \n\t\t\t\t\t\t\t\t\t$ancho_img, $alto_img);\n\t\t\t\t\t\t\t\t//Guardo la imagen reescalada en el servidor \n\t\t\t\t\t\t\t\t$nombre_img_ext=$ruta.$descripcion.$extension;\n\t\t\t\t\t\t\t\t$nombre_img=$ruta.$descripcion;\n\t\t\t\t\t\t\t\timagejpeg($img_reajustada,$nombre_img_ext,100);\n\t\t\t\t\t\t\t\t//ejecuto la funcion para borrar posibles imagenes dobles del perfil\n\t\t\t\t\t\t\t\tborrar_imagenes($nombre_img,\".jpg\");\n\t\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t\tcase '.gif':\n\t\t\t\t\t\t\t\t$img_original=imagecreatefromgif($imagen);\n\t\t\t\t\t\t\t\t//REAJUSTO LA IMAGEN NUEVA CON RESPETO ALA ORIGINAL \n\t\t\t\t\t\t\t\timagecopyresampled($img_reajustada, $img_original, 0, 0, 0, 0, $nuevo_ancho_img, $nuevo_alto_img, \n\t\t\t\t\t\t\t\t\t$ancho_img, $alto_img);\n\t\t\t\t\t\t\t\t//Guardo la imagen reescalada en el servidor \n\t\t\t\t\t\t\t\t$nombre_img_ext=$ruta.$descripcion.$extension;\n\t\t\t\t\t\t\t\t$nombre_img=$ruta.$descripcion;\n\t\t\t\t\t\t\t\timagegif($img_reajustada,$nombre_img_ext,100);\n\t\t\t\t\t\t\t\t//ejecuto la funcion para borrar posibles imagenes dobles del perfil\n\t\t\t\t\t\t\t\tborrar_imagenes($nombre_img,\".gif\");\n\t\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t\tcase '.png':\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$img_original=imagecreatefrompng($imagen);\n\t\t\t\t\t\t\t\t//REAJUSTO LA IMAGEN NUEVA CON RESPETO ALA ORIGINAL \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\timagesavealpha($img_reajustada, true);\n\t\t\t\t\t\t\t\timagealphablending($img_reajustada, false);\t\n\t\t\t\t\t\t\t\timagecopyresampled($img_reajustada, $img_original, 0, 0, 0, 0, $nuevo_ancho_img, $nuevo_alto_img, \n\t\t\t\t\t\t\t\t$ancho_img, $alto_img);\n\t\t\t\t\t\t\t\timagecolortransparent($img_reajustada);\n\t\t\t\t\t\t\t\t//Guardo la imagen reescalada en el servidor \n\t\t\t\t\t\t\t\t$nombre_img_ext=$ruta.$descripcion.$extension;\n\t\t\t\t\t\t\t\t$nombre_img=$ruta.$descripcion;\n\t\t\t\t\t\t\t\timagepng($img_reajustada,$nombre_img_ext,0);\n\t\t\t\t\t\t\t\t//ejecuto la funcion para borrar posibles imagenes dobles del perfil\n\t\t\t\t\t\t\t\tborrar_imagenes($nombre_img,\".png\");\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\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\t//no se reajusta y se sube\n\t\t\t\t\t\t$destino=$ruta.$descripcion.$extension;\n\n\t\t\t\t\t\t//Se sube la foto\n\t\t\t\t\t\tmove_uploaded_file($imagen,$destino) /*or die(\"No se pudo subir la imagen\")*/;\n\n\t\t\t\t\t\t//ejecuto la funcion para borrar posibles imagenes dobles para el perfil\n\t\t\t\t\t\t$nombre_img=$ruta.$descripcion;\n\t\t\t\t\t\tborrar_imagenes($nombre_img,$extension);\n\t\t\t\t\t}\n\t\t\t\t\t//Asigno el nombre que el que se guardara en la base de datos\n\t\t\t\t\t$imagen=$descripcion.$extension;\n\t\t\t\t\treturn $imagen;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\treturn \"La imagen\".$imagen.\" No se subio\";\n\t\t\t}\n\n\t}", "function redimensionne_image_petit($photo)\n{\n\tglobal $photo_redim_taille_max_largeur, $photo_redim_taille_max_hauteur;\n\n\tif((!preg_match(\"/^[0-9]{1,}$/\", $photo_redim_taille_max_largeur))||($photo_redim_taille_max_largeur<=0)) {\n\t\t$photo_redim_taille_max_largeur=35;\n\t}\n\n\tif((!preg_match(\"/^[0-9]{1,}$/\", $photo_redim_taille_max_hauteur))||($photo_redim_taille_max_hauteur<=0)) {\n\t\t$photo_redim_taille_max_hauteur=35;\n\t}\n\n\t// prendre les informations sur l'image\n\t$info_image = getimagesize($photo);\n\t// largeur et hauteur de l'image d'origine\n\t$largeur = $info_image[0];\n\t$hauteur = $info_image[1];\n\t// largeur et/ou hauteur maximum à afficher\n\t//$taille_max_largeur = 35;\n\t//$taille_max_hauteur = 35;\n\n\t// calcule le ratio de redimensionnement\n\t$ratio_l = $largeur / $photo_redim_taille_max_largeur;\n\t$ratio_h = $hauteur / $photo_redim_taille_max_hauteur;\n\t$ratio = ($ratio_l > $ratio_h)?$ratio_l:$ratio_h;\n\n\t// définit largeur et hauteur pour la nouvelle image\n\t$nouvelle_largeur = $largeur / $ratio;\n\t$nouvelle_hauteur = $hauteur / $ratio;\n\n\t// on renvoit la largeur et la hauteur\n\treturn array($nouvelle_largeur, $nouvelle_hauteur);\n}", "public function rutaImageFly()\n {\n\n // primero vemos a que galeria pertenece\n $galeria = ORM::factory( 'Galeria', $this->galeria );\n\n return( $galeria->rutaImageFly().$this->imagen );\n\n }", "function eliminarImagenCarpeta($campo, $tabla, $idAsignacion, $carpeta)\n {\n $data=$this->analisisRiesgo->getNombreImagen($campo, $tabla, $idAsignacion);\n //Delete el nombre de la imagen de la base de datos\n $borrar=Array($campo => null);\n $this->analisisRiesgo->deleteImagen($borrar, $tabla, $idAsignacion);\n //Unlink el nombre de la imagen del servidor\n foreach($data as $row)\n {\n $nombreImagen=$row[$campo];\n unlink(\"assets/img/fotoAnalisisRiesgo/$carpeta/$nombreImagen\");\n echo \"OK\";\n }\n\n }", "public function excluirImagemGaleria(){ \n\t\t\n\t\t//deleta a imagem da pasta\n\t\tinclude_once(\"../funcoes/geral.php\");\n\t\t$sql = \"\n\t\t\tSELECT thumb\n\t\t\tFROM programa_imagem\n\t\t\"; \n\t\tif($this->idImagem)\n\t\t\t$sql .=\" WHERE id = '$this->idImagem'\";\n\n\t\t$this->sql = $sql;\n\t\t$this->qr = self::execSql($this->sql);\t\n\t\t$qtRegistros = $this->getQuantidadeData($sql); // retorna a quantidade de registro\t \n\t\tif($qtRegistros > 0){\n\t\t\twhile($lista = self::resultsAll($this->qr)){\n\n\t\t\t\tdeletaImagem($lista[\"thumb\"]);//deleto a imagem do arquivo\n\t\t\t\n\t\t\t}\n\t\t}\n\n\t}", "function redimensionne_image($photo)\n{\n\t$info_image = getimagesize($photo);\n\t// largeur et hauteur de l'image d'origine\n\t$largeur = $info_image[0];\n\t$hauteur = $info_image[1];\n\t// largeur et/ou hauteur maximum à afficher\n\tif(basename($_SERVER['PHP_SELF'],\".php\") === \"trombi_impr\") {\n\t\t// si pour impression\n\t\t$taille_max_largeur = getSettingValue(\"l_max_imp_trombinoscopes\");\n\t\t$taille_max_hauteur = getSettingValue(\"h_max_imp_trombinoscopes\");\n\t} else {\n\t// si pour l'affichage écran\n\t\t$taille_max_largeur = getSettingValue(\"l_max_aff_trombinoscopes\");\n\t\t$taille_max_hauteur = getSettingValue(\"h_max_aff_trombinoscopes\");\n\t}\n\n\t// calcule le ratio de redimensionnement\n\t$ratio_l = $largeur / $taille_max_largeur;\n\t$ratio_h = $hauteur / $taille_max_hauteur;\n\t$ratio = ($ratio_l > $ratio_h)?$ratio_l:$ratio_h;\n\n\t// définit largeur et hauteur pour la nouvelle image\n\t$nouvelle_largeur = $largeur / $ratio;\n\t$nouvelle_hauteur = $hauteur / $ratio;\n\n\treturn array($nouvelle_largeur, $nouvelle_hauteur);\n}", "function imageAllReset();", "function imagenes_por_palabra_y_tipo_imagen($id_palabra,$registrado,$estado,$id_tipo_imagen) {\n\t\n\t\tif ($registrado==false) {\n\t\t\t$mostrar_registradas=\"AND imagenes.registrado=0\";\n\t\t}\n\t\t\n\t\tif ($estado !='' && $estado < 4 && $estado > 0) {\n\t\t\t$sql_estado='AND imagenes.estado='.$estado.'';\n\t\t} elseif ($estado='all') {\n\t\t\t$sql_estado='';\n\t\t} else {\n\t\t\t$sql_estado='AND imagenes.estado=1';\n\t\t}\n\t\t\n\t\tif ($id_tipo_imagen==99) { $sql_tipo_imagen=''; } \n\t\telse { $sql_tipo_imagen='AND imagenes.id_tipo_imagen='.$id_tipo_imagen.''; }\n\t\t\n\t\t$query = \"SELECT palabra_imagen.*,\n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename\n\t\tFROM palabra_imagen, imagenes\n\t\tWHERE palabra_imagen.id_palabra='$id_palabra'\n\t\tAND palabra_imagen.id_imagen=imagenes.id_imagen\n\t\t$sql_tipo_imagen\n\t\t$mostrar_registradas\n\t\t$sql_estado\";\n\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\t\n\t\t$numrows = mysql_num_rows($result);\n\t\tmysql_close($connection);\n\t\t// COMPROBAMOS QUE HAYA RESULTADOS\n\t\t// SI EL NUMERO DE RESULTADOS ES 0 SIGNIFICA QUE NO HAY REGISTROS CON ESOS DATOS\n\t\tif ($numrows == 0) {\n\t\t\treturn $result;\n\t\t}\n\t\telse {\n\t\t\treturn $result;\n\t\t}\n\t}", "function eliminarImagenSusQ($campo, $tabla, $idAsignacion)\n {\n $data=$this->analisisRiesgo->getNombreImagen($campo, $tabla, $idAsignacion);\n //Delete el nombre de la imagen de la base de datos\n $borrar=Array($campo => null);\n $this->analisisRiesgo->deleteImagen($borrar, $tabla, $idAsignacion);\n //Unlink el nombre de la imagen del servidor\n foreach($data as $row)\n {\n $nombreImagen=$row[$campo];\n unlink(\"assets/img/fotoAnalisisRiesgo/fotoSustanciasQuimicas/$nombreImagen\");\n echo \"OK\";\n }\n\n }", "function guardarImagen($name, $tipo, $path, $id){\n\t\n\t$path=\"img\\modelos\\\\\".$id.\"_\".$path;\n\t//Si reemplaza la imagen\n\t$existeImagen= sprintf(\"SELECT * FROM imagenes WHERE modelo_idmodelo = '%s' AND\n\t\t\ttipo = '%s' \", $id,$tipo);\n\t$result = mysql_query( $existeImagen);\n\t//Borrar la imagen antigua\n\tif($data=mysql_fetch_array($result)){\n\t\t\n\t\t//unlink('..\\\\'.$data['path']);\n\t\t//mysql_query(\"DELETE FROM imagenes WHERE idimagenes='\".$data[\"idimagenes\"].\"'\");\n\t}\t\n\t$insertImagen= sprintf(\"INSERT INTO imagenes (tipo, path, modelo_idmodelo)\n\t\t\tVALUES ('%s','%s','%s');\",$tipo, mysql_real_escape_string($path), $id);\n\t//Guardar la imagen nueva\n\tmove_uploaded_file($_FILES[$name][\"tmp_name\"],\n\t\t\t\"..\\img\\modelos\\\\\" .$id.\"_\". $_FILES[$name][\"name\"]);\n\t$result = mysql_query( $insertImagen);\n}", "public function borrar($imagen)\n {\n }", "public function tiltUpCamaraPresidencia() {\n\n self::$presidencia->moverArriba();\n\n }", "function imageAllDelete();", "function subidaFichero($bd,$usuario,$entrada){\n if(isset($_FILES['imagen']['name']) && strlen ($_FILES['imagen']['name'])>0) {\n $dir_subida = $usuario . \"/\";\n ///////////NO TENGO PERMISOS DE CREAR CARPETAS!!!!!!!\n if ( !is_dir($dir_subida) && is_writable(\"../redsocial\")) {\n mkdir($dir_subida,0755, true);\n }else\n $dir_subida=\"img/\";\n $path = $_FILES['imagen']['name'];\n $ext = pathinfo($path, PATHINFO_EXTENSION);\n $fichero_subido = $dir_subida . $usuario . date(\"Ymd_Hm\").\".\".$ext;\n /////NO TENGO PERMISOS PARA SUBIR ARCHIVOS!!!!\n if(is_writable($dir_subida)) {\n if (!move_uploaded_file($_FILES['imagen']['tmp_name'], $fichero_subido)) {\n echo \"Problema de ataque de subida de ficheros!.\\n\";\n }\n }\n $imagen = new Imagen(null, $fichero_subido, $entrada->getId());\n $daoImagenes = new Imagenes($bd);\n $daoImagenes->addImagen($imagen, $entrada);\n return $fichero_subido;\n }\n\n}", "function del_img_tour($type,$item){\n\tif($type == 'belarus'){\n\t\t$patch = '../../jsdb/JSON/tours/belarus.json';\n\t}\n\tif($type == 'belarus_pref'){\n\t\t$patch = '../../jsdb/JSON/tours/belarus_pref.json';\n\t}\n\tif($type == 'foreigners'){\n\t\t$patch = '../../jsdb/JSON/tours/foreigners.json';\n\t}\n\tif($type == 'foreigners_pref'){\n\t\t$patch = '../../jsdb/JSON/tours/foreigners_pref.json';\n\t}\n\t$exItem = explode('%',$item);\n\t$type = $exItem[0];\n\t$tour = (int)$exItem[1];\n\t$imgName = $exItem[2];\n\t$object = json_decode(file_get_contents($patch));\n\t$object_item = $object[0]->$type;\n\t$folder = $object_item[$tour]->img;\n\t// return $folder;\n\tunlink('../../'.$folder.'/'.$imgName);\n\treturn true;\n}", "function eliminarImagenServidor($campo, $tabla, $idAsignacion)\n {\n $data=$this->analisisRiesgo->getNombreImagen($campo, $tabla, $idAsignacion);\n //Delete el nombre de la imagen de la base de datos\n $borrar=Array($campo => null);\n $this->analisisRiesgo->deleteImagen($borrar, $tabla, $idAsignacion);\n //Unlink el nombre de la imagen del servidor\n foreach($data as $row)\n {\n $nombreImagen=$row[$campo];\n unlink(\"assets/img/fotoAnalisisRiesgo/$nombreImagen\");\n echo \"OK\";\n }\n\n }", "function guardarReclamo()\n\t\t{\n\t\t}", "public function saveAsset()\n {\n if(!empty($this->uploadedFile))\n {\n // If file is exist -> remove him\n if(file_exists($this->getFilePath()))\n {\n unlink($this->getFilePath());\n }\n $this->genFilename();\n $imagine = Image::getImagine()->open($this->uploadedFile->tempName);\n }\n else\n {\n if(file_exists($this->getFilePath())) {\n $imagine = Image::getImagine()->open($this->getFilePath());\n } else return false;\n }\n\n $size = $imagine->getSize();\n $box = $this->getImageBox($size);\n\n if (($size->getWidth() <= $box->getWidth() && $size->getHeight() <= $box->getHeight()) || (!$box->getWidth() && !$box->getHeight())) {\n $widthDiff = abs($size->getWidth() - $box->getWidth()) / $size->getWidth();\n $heightDiff = abs($size->getHeight() - $box->getHeight()) / $size->getHeight();\n if($widthDiff > $heightDiff) {\n $resizeBox = new Box($box->getWidth(), $size->getHeight() * $box->getWidth()/$size->getWidth());\n } else {\n $resizeBox = new Box($size->getWidth() * $box->getHeight()/$size->getHeight(), $box->getHeight());\n }\n $imagine->resize($resizeBox);\n\n // var_dump($width);\n // var_dump($height);\n // die;\n // // $imagine->crop($point, $box);\n // $imagine->save($this->getFilePath());\n // return $this->save(false);\n }\n\n $imagine = $imagine->thumbnail($box, ManipulatorInterface::THUMBNAIL_OUTBOUND);\n $imagine->save($this->getFilePath());\n\n // create empty image to preserve aspect ratio of thumbnail\n // $thumb = Image::getImagine()->create($box, new Color('FFF', 100));\n\n // // calculate points\n // $startX = 0;\n // $startY = 0;\n // if ($size->getWidth() < $box->getWidth()) {\n // $startX = ceil($box->getWidth() - $size->getWidth()) / 2;\n // }\n // if ($size->getHeight() < $box->getHeight()) {\n // $startY = ceil($box->getHeight() - $size->getHeight()) / 2;\n // }\n\n // $thumb->paste($img, new Point($startX, $startY));\n // $thumb->save($this->getFilePath());\n\n return $this->save(false);\n }", "function subirImagen($id_patalla) {\n // MODIFICAR RUTA AL SUBIR AL HOSTING\n $dir_subida = '/home/c0990002/public_html/TB/imagenes_pantallas/';\n\n if (isset($_FILES['imagen']) && !$_FILES['imagen']['error'] > 0) {\n //GUARDADO DE IMAGEN\n if (move_uploaded_file($_FILES['imagen']['tmp_name'], $dir_subida . 'imagen_pantalla_id_' . $id_patalla)) {\n //return $dir_subida.'imagen_pantalla_id_'.$id_patalla;\n return 'https://www.rockerapp.com/TB/imagenes_pantallas/' . 'imagen_pantalla_id_' . $id_patalla;\n }\n }\n}", "function imagenes_por_palabra($id_palabra,$registrado,$estado) {\n\t\n\t\tif ($registrado==false) {\n\t\t\t$mostrar_registradas=\"AND imagenes.registrado=0\";\n\t\t}\n\t\t\n\t\tif ($estado !='' && $estado < 4 && $estado > 0) {\n\t\t\t$sql_estado='AND imagenes.estado='.$estado.'';\n\t\t} elseif ($estado='all') {\n\t\t\t$sql_estado='';\n\t\t} else {\n\t\t\t$sql_estado='AND imagenes.estado=1';\n\t\t}\n\t\t\n\t\t$query = \"SELECT palabra_imagen.*,\n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename\n\t\tFROM palabra_imagen, imagenes\n\t\tWHERE palabra_imagen.id_palabra='$id_palabra'\n\t\tAND palabra_imagen.id_imagen=imagenes.id_imagen\n\t\t$mostrar_registradas\n\t\t$sql_estado\";\n\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\t\n\t\t$numrows = mysql_num_rows($result);\n\t\tmysql_close($connection);\n\t\t// COMPROBAMOS QUE HAYA RESULTADOS\n\t\t// SI EL NUMERO DE RESULTADOS ES 0 SIGNIFICA QUE NO HAY REGISTROS CON ESOS DATOS\n\t\tif ($numrows == 0) {\n\t\t\treturn $result;\n\t\t}\n\t\telse {\n\t\t\treturn $result;\n\t\t}\n\t}", "function redimensionne_logo($photo, $L_max, $H_max)\n{\n\t// prendre les informations sur l'image\n\t$info_image = getimagesize($photo);\n\t// largeur et hauteur de l'image d'origine\n\t$largeur = $info_image[0];\n\t$hauteur = $info_image[1];\n\t// largeur et/ou hauteur maximum à afficher en pixel\n\t$taille_max_largeur = $L_max;\n\t$taille_max_hauteur = $H_max;\n\n\t// calcule le ratio de redimensionnement\n\t$ratio_l = $largeur / $taille_max_largeur;\n\t$ratio_h = $hauteur / $taille_max_hauteur;\n\t$ratio = ($ratio_l > $ratio_h)?$ratio_l:$ratio_h;\n\n\t// définit largeur et hauteur pour la nouvelle image\n\t$nouvelle_largeur = $largeur / $ratio;\n\t$nouvelle_hauteur = $hauteur / $ratio;\n\n\t// des Pixels vers Millimetres\n\t$nouvelle_largeur = $nouvelle_largeur / 2.8346;\n\t$nouvelle_hauteur = $nouvelle_hauteur / 2.8346;\n\n\treturn array($nouvelle_largeur, $nouvelle_hauteur);\n}", "public function reescalarPerfil(){\n// $directorio = '/files/fotos_perfil';\n $path = public_path().'/files/actividades/';\n $ficheros = scandir($path);\n// foreach ($ficheros as $file){\n//// $rutaComp = $path.$file;\n// echo $file.'<br>';\n//// $image = new ImageResize($rutaComp);\n//// $image->resizeToWidth(1200);\n//// $image->save($rutaComp);\n// }\n for($i=2;$i<count($ficheros);$i++){\n echo $ficheros[$i].'<br>';\n $rutaComp = $path.$ficheros[$i];\n $image = new ImageResize($rutaComp);\n $image->resizeToWidth(1200);\n $image->save($rutaComp);\n }\n\n }", "public function Recortar()\n\t{\n\t\t// pega o ID do aluno\n\t\t$id = $this->input->post(\"id_aluno\"); \n\t\t// Configurações para o upload da imagem\n\t\t// Diretório para salvar a imagem\n\t\t$configUpload['upload_path'] = FCPATH .\"_assets/upload/alunos\";\n\t\t// Tipos de imagem permitidos\n\t\t$configUpload['allowed_types'] = 'jpg|png';\n\t\t// Usar nome de arquivo aleatório, ignorando o nome original do arquivo\n\t\t$configUpload['encrypt_name'] = TRUE;\n\t\t// Aplica as configurações para a library upload\n\t\t$this->upload->initialize($configUpload);\n\t\t// Verifica se o upload foi efetuado ou não\n\t\t// Em caso de erro carrega a home exibindo as mensagens\n\t\t// Em caso de sucesso faz o processo de recorte\n\t\tif ( ! $this->upload->do_upload('imagem'))\n\t\t{\n\t\t\t// Recupera as mensagens de erro e envia o usuário para a home\n\t\t\t$dados= array('error' => $this->upload->display_errors());\n\t\t\t// $this->load->view('home',$dados);\n\t\t}\n\t\telse\n\t\t{\n\t\t\t// Recupera os dados da imagem\n\t\t\t$dadosImagem = $this->upload->data();\n\t\t\t// Calcula os tamanhos de ponto de corte e posição\n\t\t\t// de forma proporcional em relação ao tamanho da\n\t\t\t// imagem original\n\t\t\t$tamanhos = $this->CalculaPercetual($this->input->post());\n\t\t\t// Define as configurações para o recorte da imagem\n\t\t\t// Biblioteca a ser utilizada\n\t\t\t$configCrop['image_library'] = 'gd2';\n\t\t\t//Path da imagem a ser recortada\n\t\t\t$configCrop['source_image'] = $dadosImagem['full_path'];\n\t\t\t// Diretório onde a imagem recortada será gravada\n\t\t\t$configCrop['new_image'] = FCPATH .\"_assets/upload\";\n\t\t\t// Proporção\n\t\t\t$configCrop['maintain_ratio'] = FALSE;\n\t\t\t// Qualidade da imagem\n\t\t\t$configCrop['quality'] = 100;\n\t\t\t// Tamanho do recorte\n\t\t\t$configCrop['width'] = $tamanhos['wcrop'];\n\t\t\t$configCrop['height'] = $tamanhos['hcrop'];\n\t\t\t// Ponto de corte (eixos x e y)\n\t\t\t$configCrop['x_axis'] = $tamanhos['x'];\n\t\t\t$configCrop['y_axis'] = $tamanhos['y'];\n\t\t\t// Aplica as configurações para a library image_lib\n\t\t\t$this->image_lib->initialize($configCrop);\n\t\t\t// Verifica se o recorte foi efetuado ou não\n\t\t\t// Em caso de erro carrega a home exibindo as mensagens\n\t\t\t// Em caso de sucesso envia o usuário para a tela\n\t\t\t// de visualização do recorte\n\t\t\tif ( ! $this->image_lib->crop())\n\t\t\t{\n\t\t\t\t// Recupera as mensagens de erro e envia o usuário para a home\n\t\t\t\t$dados = array('error' => $this->image_lib->display_errors());\n\t\t\t\t// $this->load->view('home',$dados);\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$info_arquivo = $this->upload->data(); // recupera os dados do arquivo em caso de sucesso\n\t\t\t\t$nome_arquivo = $dadosImagem['file_name'];\t// pega o nome do arquivo da array\n\t\t\t\t$aluno = array(\n\t\t\t\t\t\"id_aluno\" => $id,\n\t\t\t\t\t\"photo\" => $nome_arquivo\n\t\t\t\t);\n\t\t\t\t$this->db->where('id_aluno', $id);\n\t\t\t\t$this->db->update('aluno', $aluno);\n\t\t\t\techo $this->session->set_flashdata('msg',\"<div class='alert alert-success text-center'>FOTOGRAFIA ALTERADA COM SUCESSO</div>\");\t\n\t\t\t\tredirect('secretaria/aluno/detalhe?id_aluno='.$id); // redireciona para o pefil do aluno\n\t\t\t}\n\t\t}\n\t}", "function frameImage($inside = 0, $imagesPath = array(), $imgHeight = 600, $imagesWidth = array(), $imagesAngles = array(), $poleColor = null, $poleWidth = 1, $poleHeight = 1)\n{ \n $rowImagick = new Imagick();\n \n foreach($imagesPath as $imgIndex => $imgPath) {\n $imagick = new Imagick(realpath($imgPath));\n\n $imagick->getImageGeometry();\n $imgGeo = $imagick->getImageGeometry();\n $imgOrgWidth = $imgGeo['width'];\n $imgOrgHeight = $imgGeo['height'];\n $imgWidth = $imagesWidth[$imgIndex];\n\n if(isset($imagesAngles[$imgIndex])) {\n $angleX = ($imagesAngles[$imgIndex]) == 90 ? - ($imagesAngles[$imgIndex] - 10) : - $imagesAngles[$imgIndex];\n } else {\n $angleX = -100;\n }\n $angleY = 0;\n $thetX = deg2rad ($angleX);\n $thetY = deg2rad ($angleY);\n\n $s_x1y1 = array(0, 0); // LEFT BOTTOM\n $s_x2y1 = array($imgWidth, 0); // RIGHT BOTTOM\n $s_x1y2 = array(0, $imgHeight); // LEFT TOP\n $s_x2y2 = array($imgWidth, $imgHeight); // RIGHT TOP\n\n $d_x1y1 = array(\n $s_x1y1[0] * cos($thetX) - $s_x1y1[1] * sin($thetY),\n $s_x1y1[0] * sin($thetX) + $s_x1y1[1] * cos($thetY)\n );\n $d_x2y1 = array(\n $s_x2y1[0] * cos($thetX) - $s_x2y1[1] * sin($thetY),\n $s_x2y1[0] * sin($thetX) + $s_x2y1[1] * cos($thetY)\n );\n $d_x1y2 = array(\n $s_x1y2[0] * cos($thetX) - $s_x1y2[1] * sin($thetY),\n $s_x1y2[0] * sin($thetX) + $s_x1y2[1] * cos($thetY)\n );\n $d_x2y2 = array(\n $s_x2y2[0] * cos($thetX) - $s_x2y2[1] * sin($thetY),\n $s_x2y2[0] * sin($thetX) + $s_x2y2[1] * cos($thetY)\n );\n\n $imageprops = $imagick->getImageGeometry();\n $imagick->setImageBackgroundColor(new ImagickPixel('transparent'));\n $imagick->resizeimage($imgWidth, $imgHeight, \\Imagick::FILTER_LANCZOS, 0, true); \n if($poleColor) {\n $imagick->borderImage($poleColor, $poleWidth, $poleHeight);\n }\n\n $points = array(\n $s_x1y2[0], $s_x1y2[1], # Source Top Left\n $d_x1y2[0], $d_x1y2[1], # Destination Top Left\n $s_x1y1[0], $s_x1y1[1], # Source Bottom Left \n $d_x1y1[0], $d_x1y1[1], # Destination Bottom Left \n $s_x2y1[0], $s_x2y1[1], # Source Bottom Right \n $d_x2y1[0], $d_x2y1[1], # Destination Bottom Right \n $s_x2y2[0], $s_x2y2[1], # Source Top Right \n $d_x2y2[0], $d_x2y2[1] # Destination Top Right \n );\n //echo '<pre>'; print_r($points); die;\n\n $imagick->setImageVirtualPixelMethod(\\Imagick::VIRTUALPIXELMETHOD_BACKGROUND);\n $imagick->distortImage(\\Imagick::DISTORTION_PERSPECTIVE, $points, true);\n //$imagick->scaleImage($imgWidth, $imgHeight, false);\n $rowImagick->addImage($imagick); \n }\n\n $rowImagick->resetIterator();\n $combinedRow = $rowImagick->appendImages(false);\n\n $canvas = generateFinalImage($combinedRow);\n header(\"Content-Type: image/png\");\n echo $canvas->getImageBlob();\n}", "private static function toDelete(){\n $filesNotToDelete = [];\n $dir = public_path().'/images/';\n $filesInPublicFolder = scandir($dir);\n\n // izbacivanje assets foldera, .. i .\n $ignoreFiles = ['assets', '.', '..', 'pig.png', 'placeholder.png', 'logo.png', 'index.php'];\n foreach ($ignoreFiles as $toIgnore) {\n if (($key = array_search($toIgnore, $filesInPublicFolder)) !== false) {\n unset($filesInPublicFolder[$key]);\n }\n }\n // dd($filesInPublicFolder);\n $images = [];\n $collectionsOfObjectsWithImages = [Product::all(), ProductGroup::all(), Manufacturer::all(),\n Suggestion::all(), ImageSuggestion::all(), MainAd::all(),SecondAd::all()];\n\n foreach ($collectionsOfObjectsWithImages as $collection) {\n foreach ($collection as $object) {\n if($object->images->count()){\n foreach ($object->images as $image) {\n $images[] = $image->name;\n }\n }\n }\n }\n\n // dd($images);\n // dd(array_diff($filesInPublicFolder, $images));\n // dd($filesNotToDelete, $filesInPublicFolder);\n return $toDelete = array_diff($filesInPublicFolder, $images); //za fju array_dif vazan je redoslijed argumenata\n\n }", "function setCambiarTarjetas($tarjeta1,$tarjeta2,$tarjeta3,$tarjeta4,$tarjeta5,$partida){\n\t\t\t$cambio_afirmativo=0;\n\t\t\t\n\t\t\t$tarjetas=array(0=>$tarjeta1,1=>$tarjeta2,2=>$tarjeta3,3=>$tarjeta4,4=>$tarjeta5);\n\t\t\t\n\t\t\t$cantidad=0;\n\t\t\t\n\t\t\t$arreglo_tarjetas=array(0=>NULL,1=>NULL,2=>NULL);\n\t\t\t\t//meto en arreglo_tarjetas las tarjetas seleccionadas y cuentos cuantas son, si son mas de tres o menos de tres posteriormente retorno con 0\n\t\t\t$avanzar_arreglo=0;\n\t\t\t$veces_entre_foreach=0;\n\t\t\tforeach($tarjetas as $tarjeta){\n\t\t\t\tif($tarjeta == 1)\n\t\t\t\t\t\t\tif($partida->turno_usuario->getTarjeta($veces_entre_foreach)!=NULL){\n\t\t\t\t\t\t\t\t\t//digo que la tarjeta que esta en la posicion $avanzar_arreglo del usuario fue seleccionada\n\t\t\t\t\t\t\t\t$arreglo_tarjetas[$avanzar_arreglo]=$partida->turno_usuario->getTarjeta($veces_entre_foreach);\n\t\t\t\t\t\t\t\t$cantidad++;\n\t\t\t\t\t\t\t\t$avanzar_arreglo++;\n\t\t\t\t\t\t\t}\t\t\t\t\n\t\t\t\t\n\t\t\t\t$veces_entre_foreach++;\n\t\t\t}\n\t\t\t\t//envio mas o menos de tres tarjetas\n\t\t\tif($cantidad != 3){\n\t\t\t\treturn 1;\n\t\t\t\t\n\t\t\t}\n\t\t\telse{ //envio tres tarjetas\n\t\t\t\t\n\t\t\t\t\t//alguna de las tres es un comodin\n\t\t\t\t\t\n\t\t\t\tif($arreglo_tarjetas[0]->getLogo() == 3 || $arreglo_tarjetas[1]->getLogo() == 3 || $arreglo_tarjetas[2]->getLogo() == 3 )\t{\n\t\t\t\t\t\t//realizar si o si cambio\n\t\t\t\t\t$cambio_afirmativo=1;\n\t\t\t\t}\n\t\t\t\telse{\n\t\t\t\t\t\t//si son todas iguales\n\t\t\t\t\tif(($arreglo_tarjetas[0]->getLogo() == $arreglo_tarjetas[1]->getLogo()) && ($arreglo_tarjetas[0]->getLogo() == $arreglo_tarjetas[2]->getLogo())){\n\t\t\t\t\t\t//realizar cambio\n\t\t\t\t\t$cambio_afirmativo=1;\n\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t\t//si son todas distintas\n\t\t\t\t\tif(($arreglo_tarjetas[0]->getLogo() != $arreglo_tarjetas[1]->getLogo()) && ($arreglo_tarjetas[0]->getLogo() != $arreglo_tarjetas[2]->getLogo()) && ($arreglo_tarjetas[1]->getLogo() != $arreglo_tarjetas[2]->getLogo()))\n\t\t\t\t\t\t//realizar cambio\n\t\t\t\t\t$cambio_afirmativo=1;\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t///se pueden cambiar, devuelvo las tarjetas al arreglo y le entrego fichas al usuario\n\t\t\t\tif($cambio_afirmativo == 1){\n\t\t\t\t\tfor($i=0;$i<3;$i++)\n\t\t\t\t\t\t\t//devuelve todas las tarjetas\n\t\t\t\t\t\t\t$partida->turno_usuario->setDevolverTarjeta($arreglo_tarjetas[$i],$partida);\n\n\t\t\t\t\t$partida->turno_usuario->getObjetoIncorporar()->setCambio($partida->turno_usuario->getNumeroDeCambio());\n\t\t\t\t\t$partida->turno_usuario->setNumeroDeCambio();\t\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\n}", "function borrarImagen($idImagen, $ruta){\n $conn=connexioBD();\n $sql=\"DELETE FROM imatges WHERE id='$idImagen'\";\n if (!$resultado =$conn->query($sql)){\n die(\"Error al comprobar datos\".$conn->error);\n }\n unlink($ruta);\n $conn->close();\n}", "function redim($ruta1,$ruta2,$ancho,$alto)\n {\n $datos=getimagesize ($ruta1);\n \n $ancho_orig = $datos[0]; # Anchura de la imagen original\n $alto_orig = $datos[1]; # Altura de la imagen original\n $tipo = $datos[2];\n \n if ($tipo==1){ # GIF\n if (function_exists(\"imagecreatefromgif\")){\n $img = imagecreatefromgif($ruta1);\n echo \"<script>\n\t\t\t\talert('entro a gif');\n\t\t\t\t</script>\";\n }else{\n return false;\n }\n }\n else if ($tipo==2){ # JPG\n if (function_exists(\"imagecreatefromjpeg\")){\n $img = imagecreatefromjpeg($ruta1);\n\n }else{\n return false;\n }\n }\n else if ($tipo==3){ # PNG\n if (function_exists(\"imagecreatefrompng\")){\n $img = imagecreatefrompng($ruta1);\n \n }else{\n return false;\n }\n }\n \n # Se calculan las nuevas dimensiones de la imagen\n if ($ancho_orig>$alto_orig)\n {\n $ancho_dest=$ancho;\n $alto_dest=($ancho_dest/$ancho_orig)*$alto_orig;\n }\n else\n {\n $alto_dest=$alto;\n $ancho_dest=($alto_dest/$alto_orig)*$ancho_orig;\n }\n\n // imagecreatetruecolor, solo estan en G.D. 2.0.1 con PHP 4.0.6+\n $img2=@imagecreatetruecolor($ancho_dest,$alto_dest) or $img2=imagecreate($ancho_dest,$alto_dest);\n\n // Redimensionar\n // imagecopyresampled, solo estan en G.D. 2.0.1 con PHP 4.0.6+\n @imagecopyresampled($img2,$img,0,0,0,0,$ancho_dest,$alto_dest,$ancho_orig,$alto_orig) or imagecopyresized($img2,$img,0,0,0,0,$ancho_dest,$alto_dest,$ancho_orig,$alto_orig);\n\n // Crear fichero nuevo, según extensión.\n if ($tipo==1) // GIF\n if (function_exists(\"imagegif\"))\n imagegif($img2, $ruta2);\n else\n return false;\n\n if ($tipo==2) // JPG\n if (function_exists(\"imagejpeg\"))\n imagejpeg($img2, $ruta2);\n else\n return false;\n\n if ($tipo==3) // PNG\n if (function_exists(\"imagepng\"))\n imagepng($img2, $ruta2);\n else\n return false;\n \n return true;\n }", "function reorganizar($ref, $refId) {\n foreach ($this->Lista('WHERE a.ref = :ref AND a.refid = :refid AND a.status != 99 ORDER BY a.position ASC', ['ref' => $ref, 'refid' => $refId]) as $i => $img) {\n $img->setPosition($i + 1);\n $this->Save($img);\n }\n }", "public function galeriasExcluir_action()\n\t{\n\t\t$bd = new GaleriasImagens_Model();\n\t\t$id = abs((int) $this->getParam(2));\n\t\t$resultado = $bd->read(\"id={$id} AND usuario={$this->_usuario}\");\n\t\tunlink('uploads/img_'.$resultado[0]['imagem']);\n\t\tunlink('uploads/tb_'.$resultado[0]['imagem']);\n\t\tunlink('uploads/destaque_'.$resultado[0]['imagem']);\n\t\t$bd->delete(\"id={$id} AND usuario={$this->_usuario}\");\n\t\tHTML::certo('Imagem exclu&iacute;da.');\n\t\t//POG Temporário\n\t\tHTML::Imprime('<script>Abrir(\"#abreImagemGaleria\",\"#imagens\");</script>');\n\t}", "function showRegDet($data, $paso){\n include '../library/libcon.php';\n\n $sql = \"SELECT id, nombrecompleto, concepto, direccion, telefono1, telefono2, latitud, longitud, regionsalon, instagram, url_img, url_img_thumb FROM web_salones WHERE REGIONSALON = '\".$data.\"' AND ESTADO NOT IN (0, 3);\";\n $result = (array) json_decode(miBusquedaSQL($sql), true);\n $salon = '';\n\n foreach ($result as $r) {\n $miniatura = $r[\"url_img_thumb\"];\n\n if($miniatura == \"\"){\n $miniatura = \"13thumb.jpg\";\n }\n $salon .= '<li class=\"item col-md-3 col-sm-6 marginbt10\">\n <figure class=\"icon-overlay\"><a href=\"#0\" data-type=\"slide-portfolio-item-1\" data-sid=\"'.$r[\"id\"].'\" data-tipo=\"1\"><img src=\"/c/img/salons/'.$miniatura.'\" alt=\"\" /></a></figure>\n <div class=\"slide-portfolio-item-info box\">\n <h4 class=\"post-title\">'.$r[\"nombrecompleto\"].'</h4>\n <div class=\"meta marginbt0\">'.cambiarRegion($r[\"regionsalon\"]).'</div>\n </div>\n </li>';\n }\n\n \n\n $pais = cambiarRegion($data);\n\n $dos = '<div class=\"dark-wrapper mb50\" id=\"ubicaciones\">\n <div class=\"container inner2\">\n <h3 class=\"section-title text-center mt10\">Ubicaciones</h3>\n <div class=\"divide30\"></div>'.$salon.'\n </div>\n </div>';\n\n $msg = '<h2 class=\"fondobuscar\">'.$pais.'</h2>\n <div class=\"col-md-12\">\n <div class=\"col-md-6\">\n <h3>Listado de Salones:</h3>\n </div>\n </div>'.$dos;\n\n\n\n\n return $msg;\n}", "public function update(Request $request){\n $id = $request->id;\n $s_scene = SecondaryScene::find($id);\n //Actualizar nombre\n $s_scene->name = $request->name;\n //Actualizar fecha\n $s_scene->date = $request->date;\n //Actualizar foto 360 \n if($request->hasFile('image360')){\n //Crear un nombre para almacenar la imagen fuente plano 360\n $idFile = \"ss\".$s_scene->id;\n $name = $idFile.\".\".$request->file('image360')->getClientOriginalExtension();\n //Almacenar la imagen en el directorio\n $request->file('image360')->move(public_path('img/scene-original/'), $name);\n \n /**************************************************/\n /* CREAR TILES (division de imagen 360 en partes) */\n /**************************************************/\n //Eliminar directorio antiguo\n File::deleteDirectory(public_path('marzipano/tiles/'.$s_scene->directory_name));\n $s_scene->directory_name = \"\"; \n //Ejecucion comando\n $image=\"img/scene-original/\".$name;\n $process = null;\n if(getenv('SYSTEM_HOST') == 'windows'){\n $process = new Process(['krpano\\krpanotools', 'makepano', '-config=configw', $image]);\n }else if(getenv('SYSTEM_HOST') == 'linux'){\n $process = new Process(['./krpano/krpanotools', 'makepano', '-config=configl', $image]);\n }else{\n echo ('Sentimos comunicarle que la aplicación Celia Tour no está disponible para su sistema');;\n }\n $process->run();\n \n //Comprobar si el comando se ha completado con exito\n if ($process->isSuccessful()) {\n $s_scene->directory_name = $idFile; \n //Eliminar imagen fuente que utiliza para trozear y crear el tile\n unlink(public_path('img/scene-original/').$name);\n //guardar cambios\n $s_scene->save();\n //Abrir vista para editar la zona\n return redirect()->route('zone.edit', ['zone' => $request->idZone]); \n }else{\n //En caso de error eliminar la escena de\n $s_scene->delete();\n //Eliminar imagen fuente\n unlink(public_path('img/scene-original/').$name);\n \n echo \"error al crear\";\n }\n \n }\n $s_scene->save();\n return redirect()->route('zone.edit', ['zone' => $request->idZone]);\n }", "public function tiltDownCamaraPresidencia() {\n\n self::$presidencia->moverAbajo();\n\n }", "public static function crop(){\n\n}", "public function imagenes() {\n return $imagenes = ImagenesProducto::where('fk_producto',$this->codigo) -> orderBy('featured','desc') -> get(); //para mostrar las imagenes ordenadas por las destacada\n }", "public function setImagesets()\n {\n $this->_imagesets = [];\n try {\n $pnmain = $this->_qobject->getPNMainTable();\n $type = $this->_image->getImageParams('type');\n if ($type == 'rgb') {\n $model = $this->_image->getImageParams('R_model');\n } else {\n $model = $this->_image->getImageParams('in_model');\n }\n\n if (!$model || $model == null) {\n return $this->mylogger->logMessage(\"Model for the parameter 'run_id' is not defined.\", $this, 'warning',\n false);\n }\n $runs = $pnmain->{$model}()\n ->where('found', 'y')\n ->distinct('run_id')\n ->pluck('run_id')\n ->toArray();\n\n if (!$runs || $runs == null || empty($runs)) {\n return $this->mylogger->logMessage(\"No results.\", $this, 'warning', false);\n }\n\n// $old_base_file_names = array_column($this->_oldresults, 'OutImage');\n\n foreach ($runs as $run_id) {\n $run_id = ($run_id == null || !$run_id) ? \"-1\" : $run_id;\n\n $base_file_name = $this->pngName($this->_qobject->getIdPNMain(),\n $this->_image->getImageParams('name_out'), $run_id);\n\n $full_file_name = MyFunctions::pathslash($this->_getOutDir()) . $base_file_name;\n\n $outimages = $this->_setOutimages($full_file_name);\n if (empty($outimages)) {\n continue;\n }\n\n $metadata = [\n 'type' => $type,\n 'run_id' => $run_id,\n 'OutImage' => $base_file_name,\n \"rgb_cube\" => ($type == 'rgb') ? $this->getRGBcubeName($this->_qobject->getIdPNMain(),\n $this->_image->getImageParams('name_out'),\n $run_id) : null,\n \"out_images\" => $outimages,\n ];\n\n\n// if (in_array($base_file_name, $old_base_file_names)) {\n// continue;\n// }\n\n $rgb_components = $this->_getRGBComponents($pnmain, $run_id);\n\n if ($rgb_components) {\n $this->_imagesets[$run_id] = array_merge($metadata, $rgb_components);\n } else {\n $this->mylogger->logMessage(\"Missing fits image(s).\", $this, 'warning', false);\n }\n }\n } catch (\\Exception $e) {\n $this->_imagesets = [];\n return $this->mylogger->logMessage(\"Problem with setting imagesets: \" . $e . \".\", $this, 'warning', false);\n }\n if (empty($this->_imagesets)) {\n return false;\n }\n return true;\n\n }", "function imagenes_disponibles($id_palabra) {\n\t\t$query = \"SELECT palabras.*, tipos_palabra.*, \n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename,\n\t\tpalabra_imagen.*\n\t\tFROM palabras, tipos_palabra, imagenes, palabra_imagen\n\t\tWHERE palabras.id_palabra = '$id_palabra'\n\t\tAND palabra_imagen.id_palabra = '$id_palabra'\n\t\tAND palabra_imagen.id_imagen = imagenes.id_imagen\n\t\tAND tipos_palabra.id_tipo_palabra=palabras.id_tipo_palabra\";\n\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\tmysql_close($connection);\n\t\treturn $result;\n\t}", "function listar_palabras_con_imagenes($id_tipo,$letra,$registrado) {\n\t\n\t\tif ($registrado==false) {\n\t\t\t$mostrar_registradas=\"AND imagenes.registrado=0\";\n\t\t}\n\t\t\n\t\tif ($id_tipo==99) { $sql_tipo=''; } \n\t\telse { $sql_tipo='AND palabras.id_tipo_palabra='.$id_tipo.''; }\n\t\t\n\t\t$query = \"SELECT DISTINCT palabra_imagen.*,\n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename\n\t\tpalabras.*\n\t\tFROM palabra_imagen, imagenes, palabras\n\t\tWHERE palabras.palabra LIKE '$letra%%'\n\t\t$sql_tipo\n\t\tAND palabras.id_palabra=palabra_imagen.id_palabra\n\t\tAND palabra_imagen.id_imagen=imagenes.id_imagen\n\t\t$mostrar_registradas\n\t\tAND imagenes.estado=1\n\t\tGROUP BY palabras.id_palabra\n\t\tORDER BY palabras.palabra\";\n\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\t\n\t\t$numrows = mysql_num_rows($result);\n\t\tmysql_close($connection);\n\t\t// COMPROBAMOS QUE HAYA RESULTADOS\n\t\t// SI EL NUMERO DE RESULTADOS ES 0 SIGNIFICA QUE NO HAY REGISTROS CON ESOS DATOS\n\t\tif ($numrows == 0) {\n\t\t\treturn $result;\n\t\t}\n\t\telse {\n\t\t\treturn $result;\n\t\t}\n\t}", "public function getImagenDetalle($idser,$idreporte, $tabla){\r\n $query_isec = \"SELECT *\r\nFROM \".$tabla.\"\r\nwhere id_imgclaveservicio=:idser \r\nand id_imgnumreporte=:numrep ;\";\r\n \r\n $stmt = Conexion::conectar()-> prepare($query_isec);\r\n \r\n \r\n $stmt-> bindParam(\":idser\", $idser, PDO::PARAM_INT);\r\n $stmt-> bindParam(\":numrep\", $idreporte, PDO::PARAM_INT);\r\n \r\n \r\n $stmt-> execute();\r\n // $stmt->debugDumpParams();\r\n \r\n return $stmt->fetchall();\r\n \r\n \r\n }", "function buscar_originales_idioma_por_subtema($id_subtema,$id_idioma,$tipo_pictograma) {\n\t\n\t\t$sql_subtema='AND palabra_subtema.id_palabra=palabras.id_palabra\n\t\t\tAND palabra_subtema.id_subtema='.$id_subtema.''; \n\t\t$subtema_tabla=',palabra_subtema.*';\n\t\t$subtema_tabla_from=', palabra_subtema';\t\n\t\t\n\t\t$query = \"SELECT DISTINCT palabra_imagen.*, \n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename,\n\t\tpalabras.*, traducciones_\".$id_idioma.\".* $subtema_tabla\n\t\tFROM palabra_imagen, imagenes, palabras, traducciones_\".$id_idioma.\" $subtema_tabla_from\n\t\tWHERE imagenes.estado=1\n\t\tAND traducciones_\".$id_idioma.\".id_palabra=palabra_imagen.id_palabra\n\t\tAND traducciones_\".$id_idioma.\".id_palabra=palabras.id_palabra\n\t\tAND traducciones_\".$id_idioma.\".traduccion IS NOT NULL\n\t\t$sql_subtema\t\n\t\tAND imagenes.id_tipo_imagen=$tipo_pictograma\n\t\tAND palabra_imagen.id_imagen=imagenes.id_imagen\";\n\n\t\t$connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\tmysql_close($connection);\n\t\treturn $result;\n\t\t\n\t}", "public function borrarImagen($id)\n {\n DAOVideojuegos::getInstance()->borrarImagen($id);\n if($this->imagen!=$this->carpeta.\"default.jpg\")\n unlink(\"./\".$this->imagen);\n }", "function admin_restore($id){\n if($id!=null){\n\t\t\t $this->personne->id = $id ;\n\t\t\t\t$image1= $this->personne->field('image') ;\n\t\t\t\t$image2= $this->personne->field('image2Prod') ;\n\t\t\t\t$image3= $this->personne->field('image3Prod') ;\n if($this->personne->saveField('deleted',0) ) {\n\t\t\t\t $this->Session->setFlash(\"Le personne a été restauré avec succès.\" ,\"default\",array('class'=>'valid_box'));\n\t\t\t\t $this->redirect($this->referer()) ;\n\t\t\t\t }else{\n\t\t\t\t\t $this->Session->setFlash(\"Une erreur a été rencontré lors de la restauration du Personne.\" ,\"default\",array('class'=>'error_box'));\n\t\t\t\t\t$this->redirect($this->referer()) ;\t\t\t\t \n\t\t\t\t }\n\t\t\t\t \n }\n }", "function rowsForCanvas(){\n //$canvasCode = $this->rowsPath.\"prueba\"; //// esto es atributo de clase\n $canvasCode = $this->rowsPath. $this->testCode;\n $row = 0;\n $totalRows = 11;\n $array = array_reverse($this->avPixels);\n \n While ($row < $totalRows){\n \n $canvasCode = $canvasCode.\"_\".($row + 1).\".png\";\n $img = imagecreate((($array[$row]*4) + 200) , $array[$row] + 20);\n // Color de fondo\n imagecolorallocate($img, 255, 255, 255);\n\n // Guardo la imagen\n header(\"Content-type: image/png\");\n imagepng($img,$canvasCode);\n imagedestroy($img);\n \n $row ++; \n //$canvasCode = $this->rowsPath.\"prueba\";\n $canvasCode = $this->rowsPath. $this->testCode;\n }\n \n }", "function marcadeagua($img_original, $img_marcadeagua, $img_nueva, $calidad)\n{\n $info_original = getimagesize($img_original);\n $anchura_original = $info_original[0];\n $altura_original = $info_original[1];\n // obtener datos de la \"marca de agua\" \n $info_marcadeagua = getimagesize($img_marcadeagua);\n $anchura_marcadeagua = $info_marcadeagua[0];\n $altura_marcadeagua = $info_marcadeagua[1];\n // calcular la posición donde debe copiarse la \"marca de agua\" en la fotografia \n $horizmargen = ($anchura_original - $anchura_marcadeagua)/2;\n $vertmargen = ($altura_original - $altura_marcadeagua)/2;\n // crear imagen desde el original \n $original = ImageCreateFromJPEG($img_original);\n ImageAlphaBlending($original, true);\n // crear nueva imagen desde la marca de agua \n $marcadeagua = ImageCreateFromPNG($img_marcadeagua);\n // copiar la \"marca de agua\" en la fotografia \n ImageCopy($original, $marcadeagua, $horizmargen, $vertmargen, 0, 0, $anchura_marcadeagua, $altura_marcadeagua);\n // guardar la nueva imagen \n ImageJPEG($original, $img_nueva, $calidad);\n // cerrar las imágenes \n ImageDestroy($original);\n ImageDestroy($marcadeagua);\n}", "public function run()\n {\n DB::table('imagenes')->delete();\n \n Imagen::create([\n 'ruta' => 'https://i.gyazo.com/0c290535ad676a5ad5cc151b0b6f1871.png',\n 'objeto_id' => 1\n ]);\n Imagen::create([\n 'ruta' => 'https://i.gyazo.com/fc1f149de3e1b5f7b970919711a7cf5c.png',\n 'objeto_id' => 2\n ]);\n Imagen::create([\n 'ruta' => 'https://i.gyazo.com/1d2b05716e62c021b68a0f1466beb95a.jpg',\n 'objeto_id' => 3\n ]);\n Imagen::create([\n 'ruta' => 'https://i.gyazo.com/82528563d24646fee6660c0f45a627b1.png',\n 'objeto_id' => 4\n ]);\n Imagen::create([\n 'ruta' => 'https://i.gyazo.com/792a0bd97846eb35fca737edc7348707.png',\n 'objeto_id' => 5\n ]);\n Imagen::create([\n 'ruta' => 'https://i.gyazo.com/b7738557392b62abbd78221b75371f9a.png',\n 'objeto_id' => 6\n ]);\n Imagen::create([\n 'ruta' => 'https://i.gyazo.com/8ace2dbbf91208b5234fa99ae0b1ae71.png',\n 'objeto_id' => 7\n ]);\n Imagen::create([\n 'ruta' => 'https://i.gyazo.com/0c290535ad676a5ad5cc151b0b6f1871.png',\n 'objeto_id' => 8\n ]);\n Imagen::create([\n 'ruta' => 'https://i.gyazo.com/8ace2dbbf91208b5234fa99ae0b1ae71.png',\n 'objeto_id' => 9\n ]);\n }", "public function votar_uninominal_subir_imagen(Request $request){\r\n $reglas=[ \r\n 'archivo' => 'required | mimes:jpg,jpeg,gif,png,bmp | max:2048000'\r\n ];\r\n \r\n $mensajes=[\r\n 'archivo.required' => 'Deseleccionar un archivo',\r\n 'archivo.mimes' => 'El archivo debe ser un archivo con formato: jpg, jpeg, gif, png, bmp.',\r\n 'archivo.max' => 'El archivo Supera el tamaño máximo permitido',\r\n ];\r\n\r\n $recinto= \\DB::table('mesas')\r\n ->join('recintos', 'mesas.id_recinto', 'recintos.id_recinto')\r\n ->where('mesas.id_mesa', $request->id_mesa)\r\n ->select('recintos.circunscripcion', 'recintos.distrito', 'recintos.distrito_referencial', 'mesas.id_mesa')\r\n ->first();\r\n\r\n $validator = Validator::make( $request->all(),$reglas,$mensajes );\r\n if( $validator->fails() ){ \r\n $codigo_mesas_oep = \\DB::table('mesas')\r\n ->where('id_mesa', $request->id_mesa)\r\n ->value('codigo_mesas_oep');\r\n return view(\"formularios.form_votar_uninominal_subir_imagen\")\r\n ->with(\"id_mesa\",$request->id_mesa)\r\n ->with(\"codigo_mesas_oep\",$codigo_mesas_oep)\r\n ->withErrors($validator)\r\n ->withInput($request->flash());\r\n }\r\n\r\n //Subimos el archivo\r\n if($request->file('archivo') != \"\"){\r\n $archivo = $request->file('archivo');\r\n $mime = $archivo->getMimeType();\r\n $extension=strtolower($archivo->getClientOriginalExtension());\r\n $nuevo_nombre=\"uninominal-C\".$recinto->circunscripcion.\"-D\".$recinto->distrito.\"-Mesa-\".$recinto->id_mesa;\r\n $file = $request->file('archivo');\r\n\r\n $image = Image::make($file->getRealPath());\r\n \r\n //reducimos la calidad y cambiamos la dimensiones de la nueva instancia.\r\n $image->resize(1280, null, function ($constraint) {\r\n $constraint->aspectRatio();\r\n $constraint->upsize();\r\n });\r\n $image->orientate();\r\n\r\n $rutadelaimagen=\"../storage/media/foto_uninominales/\".$nuevo_nombre;\r\n\r\n if ($image->save($rutadelaimagen)){\r\n //Introducimos la ruta en la BD\r\n \\DB::table('mesas')\r\n ->where('id_mesa', $request->id_mesa)\r\n ->update(['foto_uninominales' => $rutadelaimagen]);\r\n\r\n //Redirigimos a la vista form_votar_uninominal\r\n //Tomamos los datos de la mesa\r\n $mesas = \\DB::table('mesas')\r\n ->select('id_mesa', 'codigo_mesas_oep', 'numero_votantes', 'foto_uninominales')\r\n ->where('id_mesa', $request->id_mesa)\r\n ->get();\r\n\r\n foreach ($mesas as $mesa) {\r\n $codigo_mesas_oep = $mesa->codigo_mesas_oep;\r\n $foto_uninominales = $mesa->foto_uninominales;\r\n }\r\n\r\n //Tomamos los partidos y los votos intorducidos para la mesa seleccionada\r\n $partidos = \\DB::table('partidos')->orderBy('nivel')->get();\r\n\r\n $votos_introducidos = \\DB::table('votos_uninominales')\r\n ->where('id_mesa', $request->id_mesa)\r\n ->select('id_partido', 'validos')\r\n ->get();\r\n\r\n $votos_introducidos_nyb = \\DB::table('votos_uninominales_r')\r\n ->where('id_mesa', $request->id_mesa)\r\n ->select('nulos', 'blancos')\r\n ->get();\r\n\r\n return view(\"formularios.form_votar_uninominal\")\r\n ->with(\"id_mesa\",$request->id_mesa)\r\n ->with(\"codigo_mesas_oep\",$codigo_mesas_oep)\r\n ->with(\"partidos\",$partidos)\r\n ->with(\"votos_introducidos\",$votos_introducidos)\r\n ->with(\"votos_introducidos_nyb\",$votos_introducidos_nyb)\r\n ->with(\"foto_uninominales\",$foto_uninominales);\r\n }\r\n else{\r\n return view(\"mensajes.msj_error\")->with(\"msj\",\"Ocurrio un error al subir la imagen\");\r\n }\r\n }\r\n\r\n /*return view(\"formularios.form_votar_presidencial_subir_imagen\")\r\n ->with(\"id_mesa\",$request->id_mesa)\r\n ->with(\"codigo_mesas_oep\",$codigo_mesas_oep);*/\r\n }", "public function subir_imagen($f, $alto_max, $alto_min , $ancho_max, $ancho_min)\n\t{\n\t\t/**\n\t\t*\tRecoleccion de parametros del archivo necesarios para la validacion\n\t\t*/\n\t\t$file = $f;\n\t\t$nombre = $file[\"name\"];\n\t\t$tipo = $file[\"type\"];\n\t\t$ruta_temp = $file[\"tmp_name\"];\n\t\t$size = $file[\"size\"];\n\t\t$dimensiones = getimagesize($ruta_temp);\n\t\t$width = $dimensiones[0];\n\t\t$height = $dimensiones[1];\n\t\t$carpeta = Yii::app()->request->baseUrl.\"/images/tmp/\";\n\n\t\t/**\n\t\t*\tHTML que retorna ya sea si encuentra error o todo sale bien\n\t\t*/\n\t\t$html_1=\"<div class='bs-callout bs-callout-danger'><h4>\";\n\t\t$html_2=\"</h4><p>\";\n\t\t$html_3=\"</p></div>\";\n\n\t\t/**\n\t\t*\tValidacion del tipo de archivo\n\t\t*/\n\t\tif($tipo != 'image/jpg' && $tipo != 'image/jpeg' && $tipo != 'image/png' && $tipo != 'image/gif')\n\t\t{\n\t\t\treturn $html_1.\"El archivo no es una imagen\".$html_2.\"Los formatos aceptados son <strong>jpg, jpeg, png y gif</strong>\".$html_3;\n\t\t/**\n\t\t*\tValidacion por tamanio o peso\n\t\t*/\n\t\t}else if($size > 1024*1024)\n\t\t{\n\t\t\treturn $html_1.\"La imagen ocupa demasiado espacio\".$html_2.\"El tamanio maximo aceptado es de <strong>1 MB o 1024 Kb</strong>\".$html_3;\n\t\t/**\n\t\t*\tValidacion dimensiones\n\t\t*/\n\t\t}else if($width > $ancho_max || $width < $ancho_min || $height > $alto_max || $height < $alto_min)\n\t\t{\n\t\t\treturn $html_1.\"Las dimensiones no corresponden\".$html_2.\"La imagen debe tener preferiblemente <strong>ancho entre: \".$ancho_min.\"px y \".$ancho_max.\" <br> alto entre: \".$alto_min.\" px y \".$alto_max.\"px </strong>\".$html_3;\n\t\t/**\n\t\t*\tSi paso las anteriores se sube la imagen al servidor en la carpeta images/tmp/\n\t\t*/\n\t\t}else{\n\t\t\t$src = $_SERVER['DOCUMENT_ROOT'].$carpeta.$nombre;\n\t\t\tmove_uploaded_file($ruta_temp,$src);\n\t\t\t/**\n\t\t\t*\tRetorna el html para que se pueda ver la imagen\n\t\t\t*/\n\t\t\treturn '<img class=\"img_slide\" src=\"'.$carpeta.$nombre.'\">';\n\t\t}\n\t}", "function zm_imagedeletionscheck ($data) {\n }", "public function DeleteNotasImagenes() {\n\t\t\t$this->objNotasImagenes->Delete();\n\t\t}", "public function carregar_imagem()\n\t{\n\t\t$id = $this->input->get(\"id_aluno\");\n\t\t$dados[\"aluno\"] = $this->Aluno_Model->retorna_aluno($id);\t\n\t\t//\tCARREGA A VIZUALIZACAO DA VIEW LISTA\n\t\t$this->load->view('layout/cabecalho_secretaria');\n\t\t$this->load->view('layout/menu_lateral_secretaria');\n\t\t$this->load->view('conteudo/_secretaria/_aluno/fotografia', $dados);\n\t\t$this->load->view('layout/rodape');\n\t\t$this->load->view('layout/script');\n\t}", "function imagenes_disponibles_idioma_tipo_por_palabra($palabra,$id_tipo,$id_idioma) {\n\t\t$query = \"SELECT traducciones_\".$id_idioma.\".*, \n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename,\n\t\tpalabra_imagen.*\n\t\tFROM traducciones_\".$id_idioma.\", imagenes, palabra_imagen\n\t\tWHERE traducciones_\".$id_idioma.\".traduccion LIKE '%$palabra%'\n\t\tAND palabra_imagen.id_palabra = traducciones_\".$id_idioma.\".id_palabra\n\t\tAND palabra_imagen.id_imagen = imagenes.id_imagen\n\t\tAND imagenes.id_tipo_imagen='$id_tipo'\";\n\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\tmysql_close($connection);\n\t\treturn $result;\n\t}", "function unsetImage($uid,$table,$data,$path) {\n\t\n\t $this->db->select($data);\n $this->db->from($table);\n\t\t$this->db->where('uid',$uid);\n $query=$this->db->get();\t\t\n\t\tif($query->num_rows()>0)\n\t\t{\n\t\t $query=$query->result();\n\t\t $img=$query[0]->$data;\n @unlink($path.$img);\n\t\t}\t\n return true;\t\t\n\t}", "private function crearImagenSinRecorte($anchoFinal,$altoFinal)\n\t{\n\t\t$ImgMediana \t= imagecreatetruecolor($anchoFinal,$altoFinal);\n\t\timagecopyresampled($ImgMediana,$this->punteroImagen,0,0,0,0,$anchoFinal,$altoFinal,$this->propiedadesImagen[0],$this->propiedadesImagen[1]);\n\t\t$this->crearArchivoDeImagen($ImgMediana);\n\t\timagedestroy($ImgMediana);\n\t}", "function startProcessing(){\n\t\t$aPuntos = array();\n\t\t//lower left\n\t\t$punto = array($this->convertXFromShpToMapWare($this->shp_data[\"xmin\"]), $this->convertYFromShpToMapWare($this->shp_data[\"ymax\"]) );\n\t\tarray_push($aPuntos, $punto);\n\t\t//lower right\n\t\t$punto = array($this->convertXFromShpToMapWare($this->shp_data[\"xmax\"]), $this->convertYFromShpToMapWare($this->shp_data[\"ymax\"]) );\n\t\tarray_push($aPuntos, $punto);\n\t\t//upper right\n\t\t$punto = array($this->convertXFromShpToMapWare($this->shp_data[\"xmax\"]), $this->convertYFromShpToMapWare($this->shp_data[\"ymin\"]) );\n\t\tarray_push($aPuntos, $punto);\n\t\t//upper left\n\t\t$punto = array($this->convertXFromShpToMapWare($this->shp_data[\"xmin\"]), $this->convertYFromShpToMapWare($this->shp_data[\"ymin\"]) );\n\t\tarray_push($aPuntos, $punto);\n\t\t\n\t\t//cargar laimagen\n\t\t$imagePath = SATELITE_RESOURCES.$this->resources[\"folder\"].\"/\".$this->resources[\"imagename\"].\".jpg\";\n\t\t$image_original = imagecreatefromjpeg($imagePath) or die(\"no image defined\");\n\t\t//definir los niveles en los cuales se va a generar esta imagen de satelite\n\t\t$nivelInicial = ($this->resources[\"hd\"] == 1) ? 7 : 1;\n\t\t$nivelFinal = ($this->resources[\"hd\"] == 1) ? 14 : 9;\n\t\t//loop sobre los niveles\n\t\tfor($nivel=$nivelInicial; $nivel<=$nivelFinal; $nivel++){\n\t\t\t//actualizar datos globales por nivel\n\t\t\t$this->actualizarEscalaPorNivel($nivel);\n\t\t\t//\n\t\t\t$upperLeft = $this->getCuadroFromPoint($aPuntos[0][0], $aPuntos[0][1]);\n\t\t\t$lowerRight = $this->getCuadroFromPoint($aPuntos[2][0], $aPuntos[2][1]);\n\t\t\t//\n\t\t\t//info imagen sat\n\t\t\t$info = getimagesize($imagePath);\n\t\t\t//width en latitud y longitud de la imagen de satelite\n\t\t\t$satWidth = $aPuntos[1][0] - $aPuntos[0][0];\n\t\t\t$satHeight = $aPuntos[2][1] - $aPuntos[1][1];\n\t\t\t//width y height que debe tener la imagen de satelite en pixeles\n\t\t\t$pixelWidthSat = $satWidth / $this->escala;\n\t\t\t$pixelHeightSat = $satHeight / $this->escala;\n\t\t\t//escala correspondiente entre el pixelaje que debe tener y el real de la imagen de satelite\n\t\t\t$escalaImagenSatelite = $info[0] / $pixelWidthSat;\n\t\t\t//copio la imagen al tamaño que le corresponde en este nivel para evitar desfaces\n\t\t\t$image = imagecreatetruecolor(round($info[0]/$escalaImagenSatelite), round($info[1]/$escalaImagenSatelite)) or die(\"no se pudo crear la imagen para empezar\");\n\t\t\timagecopyresampled($image, $image_original, 0, 0, 0, 0, round($info[0]/$escalaImagenSatelite), round($info[1]/$escalaImagenSatelite), $info[0], $info[1]) or die(\"no se pudo generar copia a nivel\");\n\t\t\t//\n\t\t\techo \"************************Nivel\".$nivel.\"<br />\";\n\t\t\t//Si la imagen es de hd entonces se crea un padding (bufferSize) alrededor con imagen de satelite de bajar resolucion\n\t\t\t$bufferSize = ($this->resources[\"hd\"] == 1 && $nivel >= 10) ? 4 : 0;\n\t\t\t//creamos y guardamos las imagenes en la base de datos\n\t\t\t$this->crearGuardarImagenes($upperLeft, $lowerRight, $nivel, $this->resources[\"clave\"], \"satelite_originales\", $bufferSize, \"satelite\");\n\t\t\t//para todos los cuadros que toca la imagen de satelite\n\t\t\tfor($i=$upperLeft[0] - $bufferSize; $i<=$lowerRight[0] + $bufferSize; $i++){\n\t\t\t\tfor($j=$upperLeft[1] - $bufferSize; $j<=$lowerRight[1] + $bufferSize; $j++){\n\t\t\t\t\t//cuadro\n\t\t\t\t\t$square = array($i, $j);\n\t\t\t\t\t//ver si ya existe una imagen en estas coordenadas\n\t\t\t\t\t$query = \"select * from imagenes\n\t\t\t\t\twhere satelite_exists != '0' and i = '$i' and j = '$j' and nivel = '$nivel'\";\n\t\t\t\t\t$exists = mysql_query($query) or die($query);\n\t\t\t\t\t//crear nueva imagen\n\t\t\t\t\tif( mysql_num_rows($exists) != 0 ){\n\t\t\t\t\t\t//en caso de que ya existiera antes una imagen de satelite asociada\n\t\t\t\t\t\t$newImage = imagecreatefromjpeg(IMAGE_MAPWARE_URL.\"?clave=\".$i.\"_\".$j.\"_\".$nivel);\n\t\t\t\t\t}else{\n\t\t\t\t\t\t$newImage = imagecreatetruecolor(200, 200);\n\t\t\t\t\t\t//de ser hd copiar sobre una imagen de lowDef ampliada\n\t\t\t\t\t\tif($this->resources[\"hd\"] == 1){\n\t\t\t\t\t\t\t// copiamos la imagen de sat de baja resolucion en esta imagen para que forme parte del buffer\n\t\t\t\t\t\t\t// puede que sea cubierta por la imagen de hd en donde esta se encuentre\n\t\t\t\t\t\t\t$lowDef_i = ceil( ($i+1)/pow(2, $nivel-8) ) - 1;\n\t\t\t\t\t\t\t$lowDef_j = ceil( ($j+1)/pow(2, $nivel-8) ) - 1;\n\t\t\t\t\t\t\t$query = \"select \n\t\t\t\t\t\t\tX(POINTN( EXTERIORRING( ENVELOPE( mysql_puntos ) ) , 1 ) ) as xmin, \n\t\t\t\t\t\t\tY(POINTN( EXTERIORRING( ENVELOPE( mysql_puntos ) ) , 1 ) ) as ymin \n\t\t\t\t\t\t\tfrom imagenes where i = $lowDef_i and j = $lowDef_j and nivel = 8\";\n\t\t\t\t\t\t\t$lowDef = mysql_fetch_array(mysql_query($query)) or die($query);\n\t\t\t\t\t\t\t//que tantas veces es mas grande la newImage que la de baja resolucion que se va a sacar\n\t\t\t\t\t\t\t$escala_ld = pow(2, $nivel-8);\t\n\t\t\t\t\t\t\t//sacar la imagen que se va a usar\n\t\t\t\t\t\t\t$image_ld = imagecreatefromjpeg(IMAGE_MAPWARE_URL.\"?clave=\".$lowDef_i.\"_\".$lowDef_j.\"_8\");\n\t\t\t\t\t\t\tif($image_ld != false){\n\t\t\t\t\t\t\t\t//\n\t\t\t\t\t\t\t\t$destX_ld = ($lowDef[\"xmin\"] - $this->xmin - $square[0]*$this->squareSize*$this->escala) / $this->escala;\n\t\t\t\t\t\t\t\t$destY_ld = ($lowDef[\"ymin\"] - $this->ymin - $square[1]*$this->squareSize*$this->escala) / $this->escala;\n\t\t\t\t\t\t\t\t//\t\t\t\n\t\t\t\t\t\t\t\t$sourceX_ld = -1*$destX_ld;\n\t\t\t\t\t\t\t\t$sourceY_ld = -1*$destY_ld;\n\t\t\t\t\t\t\t\timagecopyresampled($newImage, $image_ld, 0, 0, round($sourceX_ld/$escala_ld), round($sourceY_ld/$escala_ld), 200, 200, round(200/$escala_ld), round(200/$escala_ld)) or die(\"no copy resampled\");\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\t//\n\t\t\t\t\t//\n\t\t\t\t\t//lugar que representa la esquina superior izqierda de la imagen de satelite dentro del cuadro, igual que en generar imagenes simplemente referenciamos una coordenada de latitud, longitud a la imagen de 200 px a dibujar\n\t\t\t\t\t$destX = $aPuntos[0][0] - ($this->xmin + $square[0]*$this->squareSize*$this->escala);\n\t\t\t\t\t$destX = round($destX/$this->escala);\n\t\t\t\t\t$destY = $aPuntos[0][1] - ($this->ymin + $square[1]*$this->squareSize*$this->escala);\n\t\t\t\t\t$destY = round($destY/$this->escala);\n\t\t\t\t\t//\n\t\t\t\t\t//sourceX y sourceY representan la esquina superior izquierda correspondiente a la imagen a \n\t\t\t\t\t//dibujar dentro de la imagen de satelite completa\n\t\t\t\t\t$sourceX = round(-1*$destX);\n\t\t\t\t\t$sourceY = round(-1*$destY);\n\t\t\t\t\tif($destX > 0){\n\t\t\t\t\t\t//ver cuanto hay que copiar, solo lo suficiente para llenar la imagen newImage\n\t\t\t\t\t\t//como sourceX es negativo ya que destX positivo\n\t\t\t\t\t\t$Width = min(round(210 + $sourceX), round($info[0]/$escalaImagenSatelite));\n\t\t\t\t\t\t//\n\t\t\t\t\t\tif($destY > 0){\n\t\t\t\t\t\t\t$Height = min(round(210 + $sourceY), round($info[1]/$escalaImagenSatelite));\n\t\t\t\t\t\t\t//copiar el pedazo de imagen correspondiente\n\t\t\t\t\t\t\timagecopy($newImage, $image, $destX, $destY, 0, 0, $Width, $Height) or die(\"no image copy\");\n\t\t\t\t\t\t}else{\n\t\t\t\t\t\t\t$Height= min(210, round($info[1]/$escalaImagenSatelite- $sourceY));\n\t\t\t\t\t\t\t//copiar el pedazo de imagen correspondiente\n\t\t\t\t\t\t\timagecopy($newImage, $image, $destX, 0, 0, $sourceY, $Width, $Height) or die(\"no image copy\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}else{\n\t\t\t\t\t\t//ver cuanto hay que coipar, solo lo suficiente para llenar la imagen newImage no mas\n\t\t\t\t\t\t$Width = min(210, round($info[0]/$escalaImagenSatelite - $sourceX));\n\t\t\t\t\t\t//\n\t\t\t\t\t\tif($destY > 0){\n\t\t\t\t\t\t\t$Height = min(round(210 + $sourceY), round($info[1]/$escalaImagenSatelite));\n\t\t\t\t\t\t\t//copiar el pedazo correspondiente\n\t\t\t\t\t\t\timagecopy($newImage, $image, 0, $destY, $sourceX, 0, $Width, $Height) or die(\"no image copy\");\n\t\t\t\t\t\t}else{\n\t\t\t\t\t\t\t$Height= min(210, round($info[1]/$escalaImagenSatelite- $sourceY));\n\t\t\t\t\t\t\t//copiar el pedazo correspondiente\n\t\t\t\t\t\t\timagecopy($newImage, $image, 0, 0, $sourceX, $sourceY, $Width, $Height) or die(\"no image copy\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t//set compression level = 3\n\t\t\t\t\t$archivo = \"temporales/satelite_temporal.jpg\";\n\t\t\t\t\timagejpeg($newImage, $archivo, 90);\n\t\t\t\t\tchmod($archivo, 0777);\n\t\t\t\t\t//tomar la informacion del archivo e ingresarla a la base de datos\n\t\t\t\t\t$file = mysql_real_escape_string(file_get_contents($archivo));\n\t\t\t\t\t//guardar en base de datos que la imagen ya fue dibujada\n\t\t\t\t\t$query = \"UPDATE `imagenes`\n\t\t\t\t\tSET `satelite` = '$file', `satelite_exists` = '1'\n\t\t\t\t\tWHERE `i` = '\".$i.\"' and `j` = '\".$j.\"' \n\t\t\t\t\tand `nivel` = '\".$nivel.\"'\";\n\t\t\t\t\tmysql_query($query) or die($query);\n\t\t\t\t}\n\t\t\t}\n\t\t}//cierre del for de niveles\n\t\t//\n\t\t//actualizar el campo de generado para no volver a usar esta imagen\n\t\t$query = \"update satelite_originales set generada = 1 where clave = '\".$this->resources[\"clave\"].\"'\";\n\t\tmysql_query($query) or die($query);\n\t}", "function del_images_object($obj_type, $obj_id)\n{\n $rows = db()->query('SELECT img_id FROM object_images WHERE obj_type = \"' . strtok($obj_type, \" \") .\n '\" AND obj_id = ' . (int)$obj_id);\n if (!$rows)\n return false;\n\n foreach ($rows as $row)\n delete_image($row['img_id']);\n\n db()->query('DELETE FROM object_images WHERE obj_type = \"' . strtok($obj_type, \" \") .\n '\" AND obj_id = ' . (int)$obj_id);\n\n return true;\n}", "function listar_lse_color($registrado,$id_tipo,$letra,$filtrado,$orden,$id_subtema) {\n\t\n\t\tif ($registrado==false) {\n\t\t\t$mostrar_registradas=\"AND imagenes.registrado=0\";\n\t\t}\n\t\t\n\t\tif ($id_tipo==99) { $sql_tipo=''; } \n\t\telse { $sql_tipo='AND palabras.id_tipo_palabra='.$id_tipo.''; }\n\t\t\n\t\tif ($id_subtema==99999) { \n\t\t\t$sql_subtema=''; \n\t\t\t$subtema_tabla='';\n\t\t\t$subtema_tabla_from='';\n\t\t} \n\t\telse { \n\t\t\t$sql_subtema='AND palabra_subtema.id_palabra=palabras.id_palabra\n\t\tAND palabra_subtema.id_subtema='.$id_subtema.''; \n\t\t\t$subtema_tabla=',palabra_subtema.*';\n\t\t\t$subtema_tabla_from=', palabra_subtema';\n\t\t\n\t\t}\n\t\t\n\t\tif ($letra==\"\") { $sql_letra=''; } \n\t\telse { $sql_letra=\"AND palabras.palabra LIKE '$letra%%'\"; }\n\t\t\n\t\tif ($filtrado==1) { $sql_filtrado='imagenes.ultima_modificacion'; } \n\t\telseif ($filtrado==2) { $sql_filtrado='palabras.palabra'; }\n\t\t\n\t\t$query = \"SELECT DISTINCT palabra_imagen.*, \n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename,\n\t\tpalabras.* $subtema_tabla\n\t\tFROM palabra_imagen, imagenes, palabras $subtema_tabla_from\n\t\tWHERE imagenes.estado=1\n\t\tAND palabras.id_palabra=palabra_imagen.id_palabra\n\t\t$sql_letra\n\t\t$sql_tipo\n\t\t$sql_subtema\t\n\t\tAND imagenes.id_tipo_imagen=12\n\t\tAND palabra_imagen.id_imagen=imagenes.id_imagen\n\t\t$mostrar_registradas\n\t\tORDER BY $sql_filtrado $orden\";\n\n\t\t$connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\tmysql_close($connection);\n\t\treturn $result;\n\t\t\n\t}", "function rotate($arr,$x_dat,$t_dat,$path,$direction,$halfTree,$frame_delay,$sparkles,$window_degrees,$username,$sequence_duration){\n\t\t// now rotate image that we just made, dat file is $x_dat\n\t\t$x_arr=read_file($x_dat,$path); // target megatree 32 strands, all 32 being used. read data into an array\n\t\t$minStrand =$arr[0]; // lowest strand seen on target\n\t\t$minPixel =$arr[1]; // lowest pixel seen on skeleton\n\t\t$maxStrand =$arr[2]; // highest strand seen on target\n\t\t$maxPixel =$arr[3]; // maximum pixel number found when reading the skeleton target\n\t\t$maxI =$arr[4]; // maximum number of pixels in target\n\t\t$tree_rgb =$arr[5];\n\t\t$tree_xyz =$arr[6];\n\t\t$file =$arr[7];\n\t\t$min_max =$arr[8];\n\t\t$tree_user_string_pixel =$arr[9];\n\t\t$file = $arr[7];\n\t\t//\tdefine the front half of the megatree. strand=1 is center of tree facing street\n\t\t//\tget a window of the strands that shoudl be shown.\n\t\t//\tif window=360 degrees, then we show all\n\t\t//\t180 drgrees we only show strands that are +/- 90 degrees each side of strand 1\n\t\t//\n\t\t$window_array=getWindowArray($minStrand,$maxStrand,$window_degrees);\n\t\tfor($l=1;$l<=$maxStrand;$l++){\n\t\t\t$lxxx = substr($l+1000,1,3);\n\t\t\t$tokens=explode(\".\",$t_dat);\n\t\t\t$base=$tokens[0];\n\t\t\t$dat_file = $path . \"/\" . $base . \"_r_$lxxx\" . \".dat\"; // for spirals we will use a dat filename starting \"S_\" and the tree model\n\t\t\t$dat_file_array[]=$dat_file;\n\t\t\t$fh_dat = fopen($dat_file, 'w') or die(\"can't open file\");\n\t\t\tfwrite($fh_dat,\"# $dat_file\\n\");\n\t\t\t$full_path = $path . \"/\" . $x_dat;\n\t\t\t$fh = fopen($full_path, 'r') or die(\"can't open file $full_path\");\n\t\t\t$i=0;\n\t\t\tfor($s=1;$s<=$maxStramd;$s++)\t\t\t$amperage[$l][$s]=0; // we calcultare amperage for each strand.\n\t\t\twhile(!feof($fh)){\n\t\t\t\t$line = fgets($fh);\n\t\t\t\t$tok=preg_split(\"/ +/\", $line);\n\t\t\t\t$cnt = count($tok);\n\t\t\t\tif($cnt<7) continue;\n\t\t\t\t$device=$tok[0];\t// 0 device name\n\t\t\t\t$strand=$tok[1];\t// 1 strand#\n\t\t\t\t$pixel=$tok[2];// 2 pixel#\t\n\t\t\t\t$p=$pixel;\n\t\t\t\t$s=$strand;\n\t\t\t\t$x=$tok[3]; // 3 X value\n\t\t\t\t$y=$tok[4];\t// 4 Y value\n\t\t\t\t$z=$tok[5];\t// 5 Z value\n\t\t\t\tif(empty($tok[6]))\t\t\t\t$rgb_val=0;\n\t\t\t\telse\t\t\t$rgb_val=$tok[6];\n\t\t\t\tif($direction==\"ccw\")\t\t\t$new_s = $strand+$l; // CCW\n\t\t\t\telse\t\t\t$new_s = $strand-$l; // CW\n\t\t\t\tif($new_s>$maxStrand) $new_s = $new_s - $maxStrand;\n\t\t\t\tif($new_s<$minStrand) $new_s = $new_s + $maxStrand;\n\t\t\t\t$xyz=$tree_xyz[$new_s][$p];\n\t\t\t\tif($sparkles>0){\n\t\t\t\t\tif($sparkles>100) $sparkles=100;\n\t\t\t\t\t$rnd=rand(1,100);\n\t\t\t\t\tif($rnd<$sparkles){\n\t\t\t\t\t\t$r=$g=$b=255;\t\t\n\t\t\t\t\t\t$HSL=RGB_TO_HSV ($r, $g, $b);\n\t\t\t\t\t\t$H=$HSL['H']; \n\t\t\t\t\t\t$S=$HSL['S']; \n\t\t\t\t\t\t$V=$HSL['V']; \n\t\t\t\t\t\t$rgb_val=HSV_TO_RGB ($H, $S, $V);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(in_array($new_s,$window_array)){\n\t\t\t\t\t$tree_rgb[$new_s][$p]=$rgb_val;\n\t\t\t\t\t//\t\tfwrite($fh_dat,sprintf (\"t1 %4d %4d %9.3f %9.3f %9.3f %d # %4d %4d %9.3f %9.3f %9.3f\\n\",$new_s,$p,$xyz[0],$xyz[1],$xyz[2],$rgb_val,$strand,$pixel,$x,$y,$z));\n\t\t\t\t\t//\n\t\t\t\t\t// get the VALUE of the rgb value, this tells how intense the LED is turned on\n\t\t\t\t\t$r = ($rgb_val >> 16) & 0xFF;\n\t\t\t\t\t$g = ($rgb_val >> 8) & 0xFF;\n\t\t\t\t\t$b = $rgb_val & 0xFF;\n\t\t\t\t\t$HSL=RGB_TO_HSV ($r, $g, $b);\n\t\t\t\t\t$H=$HSL['H']; \n\t\t\t\t\t$S=$HSL['S']; // Saturation. 1.0 = Full on, 0=off\n\t\t\t\t\t$V=$HSL['V']; \n\t\t\t\t\tif($rgb_val>0){\n\t\t\t\t\t\t$amperage[$l][$new_s] += $V*0.060; // assume 29ma for pixels tobe full on\n\t\t\t\t\t\t//printf ( \"<pre>S,p=%d,%d rgb=%d,%d,%d HSV=%f,%f,%f amperage=%f</PRE>\\n\", $s,$p,$r,$g,$b,$H,$S,$V,$amperage);\n\t\t\t\t\t\tfwrite($fh_dat,sprintf (\"t1 %4d %4d %9.3f %9.3f %9.3f %d\\n\",$s,$p,$xyz[0],$xyz[1],$xyz[2],$rgb_val));\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tfclose($fh); // x_dat\n\t\tfclose($fh_dat); // dat_file\n\t\t$base_t_dat=$t_dat;\n\t\t//show_elapsed_time($script_start,\"Finished Rotate image about Z axis\");\n\t\t// make_rotate_gp($path,$base_t_dat,$x_dat,$height,$dat_file_array);\n\t\tmake_gp($batch,$path,$x_dat,$t_dat,$dat_file_array,$min_max,$username,$frame_delay,$amperage,$sequence_duration,$show_frame);\n\t}", "public static function deleteImage(){}", "public function deleteAboutImgMultiLocation(){\n\t\t\n\t\t\n\t\tif(count($_POST)>0){\t\t\t\n\t\t\t\t\t\t\n\t\t\t$location_id = $_POST['location_id'];\n\t\t\t$photo = $_POST['photo'];\n\t\t\t//echo $_POST['image_path'];die;\n\t\t\t$this->db->where(\"location_id\", $location_id);\n\t\t\t\n\t\t\tif($photo == 'right_photo'){\n\t\t\t\t$query = $this->db->query(\"update tblaboutschoolheader set right_photo='' where location_id=\".$location_id.\"\");\n\t\t\t}else {\n\t\t\t\t$query = $this->db->query(\"update tblaboutschoolheader set left_photo='' where location_id=\".$location_id.\"\");\n\t\t\t}\n\t\t\tif($query)\n\t\t\t{\t\n\t\t\t\t$dir=pathinfo(BASEPATH);\n\t\t\t\t//print_r($dir) ; die;\n\t\t\t\t$img=$dir['dirname'].'/'.$_POST['image_path'];\t\t\t\t\n\t\t\t\tunlink($img);\t\t\t\t\t\n\t\t\t\techo 1;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\techo 0;\n\t\t\t}\n\t\t}else{\n\t\t\t\techo 0;\n\t\t}\n\t\n\t}", "public function delete() {\n\t\t$canvas = $this->original->getCanvas();\n\t\timagefilledrectangle($this->original->getImage(), $this->x, $this->y, $this->x+$this->getWidth()-1, $this->y+$this->getHeight()-1, imagecolorallocate($this->original->getImage(), $canvas['r'], $canvas['g'], $canvas['b']));\n\t}", "function analisaCaminho($lab, $qtdL, $qtdC, $pLI, $pCI, $pLF, $pCF, $pLA, $pCA){ \n if ($pLA == $pLF && $pCA == $pCF){\n exibelab($lab, $qtdL, $qtdC);\n }else{\n $lab[$pLA][$pCA] = 5;\n\n //define vizinhança\n for($c = -1; $c <= +1; $c++){\n for($l = -1; $l <= +1; $l++){\n $liA = $pLA+ $c; // linha atual\n $coA = $pCA+ $l; // coluna atual\n \n //verifica se está dentro dos limites\n if ( ($liA > 0 && $liA <=$qtdL-1) && ($coA > 0 && $coA <= $qtdC-1) ){ \n // verifica se EXISTE, e se é caminho ou saida\n if (isset($lab[$liA][$coA]) && ( $lab[$liA][$coA] == 0 || $lab[$liA][$coA] == 3 )){ \n // exclui diagonais\n if ($c * $l == 0){\n //exclui limites\n if ($lab[$liA][$coA] != 4){ \n analisaCaminho($lab, $qtdL, $qtdC, $pLI, $pCI, $pLF, $pCF, $liA,$coA);\n }\n }\n }\n } // fim limites\n \n }\n }\n // e se eu resetar o caminho aqui? \n }\n }", "function del_barrio ($idbarrios) {\n // $idbarrios --> Identificador del barrio que se va a eliminar\n // Primero borramos las actividades y por lo tanto, primero las imagenes y los documentos de las actividades \n \n // Borramos las imagenes\n//OJO ??? // No la borramos del HD por si acaso\n $sql = \"SELECT idactividades FROM actividades WHERE idbarrio='\" . $idbarrios.\"'\";\n $resultado = $this -> db -> query($sql);\n foreach ($resutado->result() as $row) {\n $sql_borra_imagen = \"DELETE FROM imagenes WHERE idactividad ='\" . $row->idactividades.\"'\";\n $resultado_borrado = $this -> db -> query($sql_borra_imagen);\n } \n \n // Borramos los documentos\n //OJO ??? // No la borramos del HD por si acaso\n $sql = \"SELECT idactividades FROM actividades WHERE idbarrio='\" . $idbarrios.\"'\";\n $resultado = $this -> db -> query($sql);\n foreach ($resutado->result() as $row) {\n $sql_borra_documento = \"DELETE FROM documentos WHERE idactividad ='\" . $row->idactividades.\"'\";\n $resultado_borrado = $this -> db -> query($sql_borra_documento);\n } \n \n\n // Ahora borramos las actividades\n $sql = \"DELETE FROM actividades WHERE idbarrio='\" . $idbarrios.\"'\";\n $resultado = $this -> db -> query($sql);\n\n // Y por ultimo el barrio\n $sql = \"DELETE FROM barrios WHERE idbarrios='\" . $idbarrios.\"'\";\n $resultado = $this -> db -> query($sql);\n }", "function guardarFoto($foto, $id_table, $update)\n {\n /*------------------ Inserir imagem ------------------*/\n\n // Validando a imagem\n // Tamanho máximo do arquivo em bytes \n $maxDimW = 400;\n $maxDimH = 400;\n\n // Verifica se o arquivo é uma imagem através do match com os formatos possiveis\n $tipos = \"%\\.(jpg|jpeg|png|gif|bmp)$%i\";\n\n //Se a imagem não for dos tipos possiveis não é feito o cadastro e é informado o motivo\n if (preg_match($tipos, $foto[\"type\"]) == 1) {\n return -1;\n }\n\n // Pega as dimensões da imagem \n //$dimensoes = getimagesize($imagem[\"tmp_name\"]);\n list($width, $height, $type, $attr) = getimagesize($foto['tmp_name']);\n\n if ($width > $maxDimW || $height > $maxDimH) {\n // =============== RENOMEACAO E CAMINHO ========================\n //Local a ser salvo\n $diretorio = \"../img/perfil/perfis/\" . $id_table;\n // Cria a pasta se não existir\n if (!file_exists($diretorio)) {\n mkdir($diretorio, 0777, true);\n }\n // Nome da foto\n $nomeFoto = md5(uniqid(time())) . \".\" . \"jpeg\";\n //Local a ser salvo\n $diretorio = \"../img/perfil/perfis/\" . $id_table . \"/\" . $nomeFoto;\n\n\n // ================ CONVERTER/SALVAR/RESIZE ===================\n // local temporario onde a foto está\n $path_tmp = $foto['tmp_name'];\n // salva + uma vez o local temporario onde a foto está\n $foto_tmp = $foto['tmp_name'];\n //Pega as dimensões da imagem \n $size = getimagesize($foto_tmp);\n // Faz a relação width/height p/achar a escala\n $ratio = $size[0] / $size[1];\n\n if ($ratio > 1) {\n $width = $maxDimW;\n $height = $maxDimH / $ratio;\n } else {\n $width = $maxDimW * $ratio;\n $height = $maxDimH;\n }\n\n $src = imagecreatefromstring(file_get_contents($foto_tmp));\n $dst = imagecreatetruecolor($width, $height);\n imagecopyresampled($dst, $src, 0, 0, 0, 0, $width, $height, $size[0], $size[1]);\n\n if (imagejpeg($dst, $diretorio, 70) === true) {\n //Recuperar caminho da antiga foto e deletar\n if ($update) {\n $conn = new db_conect();\n $query = 'SELECT caminho_foto_perfil FROM cliente WHERE cpf = \"' . base64_decode($_SESSION['log_id']) . '\"';\n $result = $conn->selectCustom($query);\n $row = mysqli_fetch_assoc($result);\n if ($row['caminho_foto_perfil'] == null || $row['caminho_foto_perfil'] == \"\") {\n unlink($row['caminho_foto_perfil']);\n }\n }\n return $diretorio;\n } else {\n $_SESSION['msg'] = \"<div class='alert alert-danger'>Não foi possível cadastrar, erro na imagem!</div>\";\n header(\"Location: ../views/cadastro.php\");\n }\n } else {\n //Local a ser salvo\n $diretorio = \"../img/perfil/perfis/\" . $id_table;\n // Cria a pasta se não existir\n if (!file_exists($diretorio)) {\n mkdir($diretorio, 0777, true);\n }\n // Nome da foto\n $nomeFoto = md5(uniqid(time())) . \".\" . \"jpeg\";\n //Local a ser salvo\n $diretorio = \"../img/perfil/perfis/\" . $id_table . \"/\" . $nomeFoto;\n\n move_uploaded_file($foto['tmp_name'], $diretorio);\n\n //Recuperar caminho da antiga foto e deletar\n if ($update) {\n $conn = new db_conect();\n $query = 'SELECT caminho_foto_perfil FROM cliente WHERE cpf = \"' . base64_decode($_SESSION['log_id']) . '\"';\n $result = $conn->selectCustom($query);\n $row = mysqli_fetch_assoc($result);\n if ($row['caminho_foto_perfil'] == null || $row['caminho_foto_perfil'] == \"\") {\n unlink($row['caminho_foto_perfil']);\n }\n }\n\n return $diretorio;\n }\n\n /*------------------ Fim inserir imagem ------------------*/\n }", "function imagenes_disponibles_idioma_tipo($id_traduccion,$id_tipo,$id_idioma) {\n\t\t$query = \"SELECT traducciones_\".$id_idioma.\".*, \n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename,\n\t\tpalabra_imagen.*\n\t\tFROM traducciones_\".$id_idioma.\", imagenes, palabra_imagen\n\t\tWHERE traducciones_\".$id_idioma.\".id_traduccion = '$id_traduccion'\n\t\tAND traducciones_\".$id_idioma.\".id_palabra=palabra_imagen.id_palabra\n\t\tAND palabra_imagen.id_imagen = imagenes.id_imagen\n\t\tAND imagenes.id_tipo_imagen='$id_tipo'\";\n\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\tmysql_close($connection);\n\t\treturn $result;\n\t}", "public function Ricetta($id){\n $pm = FPersistentManager::getInstance();\n $ricetta = $pm->loadById(\"ricetta\",$id);\n $session = Sessione::getInstance();\n //se l'utente è loggato si verifica se preferisce questa ricetta (cuore pieno o vuoto a seconda dei casi)\n //se non è loggato sicuramente il cuore è vuoto\n if($session->isLoggedUtente()){\n $preferita = $pm->UtentePrefRic($id,$session->getUtente()->getId());\n } else {\n $preferita = false;\n }\n $commenti = $ricetta->getCommenti();\n $arrcommenti = array();\n //costruisco un array in cui ogni elemento è un array associativo con chiavi 'utente', 'commento' e 'img' profilo utente\n foreach ($commenti as $commento){\n $id = $commento->getIdUtente();\n $utente = $pm->loadById(\"utente\",$id);\n $img = $utente->getImmagine();\n $img->setData(base64_encode($img->getData()));\n $tmp = array(\n 'utente'=>$utente->getUsername(),\n 'img'=>$img,\n 'commento'=>$commento\n );\n $arrcommenti[]=$tmp;\n\n }\n\n $errore=\"\";\n if($arrcommenti==null){\n $errore=\"Non ci sono commenti per questa ricetta\";\n }\n else{\n $errore=\"\";\n }\n $view = new VDettaglio();\n $view->mostraRicetta($ricetta, $preferita, $arrcommenti, $errore);\n }", "public function imagen(){\n $imagenes = $this->imagenes;\n\n if ($imagenes->isNotEmpty()) {\n return $imagenes->sortBy('n_orden')->first()->imagen;\n }\n }", "Function unload(){\n\t\t$this->removeBackup();\n\t\tif($this->info && isset($this->info['im'])){\n\t\t\t@imagedestroy($this->info['im']);\n\t\t}\n\t\t$this->info = false;\n\t}", "private function read_the_original_image_and_write() {\r\n\t\tfor ( $x = 0; $x <= $this->radius; $x += 0.01 ) {\r\n\r\n\t\t\t/* standard form for the equation of a circle ... don't tell me you never knew that ... */\r\n\t\t\t$y = sqrt( $this->diameter * $x - pow( $x , 2 ) ) + $this->radius;\r\n\r\n\t\t\t/* i think i should call this successive scans ... */\r\n\t\t\tfor ( $i = $x; $i < $this->diameter - $x; $i++ ) {\r\n\r\n\t\t\t\t/* half of the circle ... */\r\n\t\t\t\timagesetpixel (\r\n\t\t\t\t\t$this->cutted_image , $i, $y,\r\n\t\t\t\t\timagecolorat( $this->original_image, $i, $y )\r\n\t\t\t\t);\r\n\r\n\t\t\t\t/* the other half of course ... */\r\n\t\t\t\timagesetpixel (\r\n\t\t\t\t\t$this->cutted_image , $i, $this->diameter - $y,\r\n\t\t\t\t\timagecolorat( $this->original_image, $i, $this->diameter - $y )\r\n\t\t\t\t);\r\n\r\n\t\t\t}\r\n\r\n\t\t}\r\n\r\n\t\t/* avoid the white line when the diameter is an even number ... */\r\n\t\tif ( ! is_float( $this->radius ) )\r\n\t\t\tfor ( $i = 0; $i < $this->diameter; $i++ )\r\n\r\n\t\t\t\timagesetpixel (\r\n\t\t\t\t\t$this->cutted_image , $i, $this->radius - 1,\r\n\t\t\t\t\timagecolorat( $this->original_image, $i, $this->radius - 1 )\r\n\t\t\t\t);\r\n\r\n\t\t/* woo ... not as difficult as you think ... that's all ... */\r\n\t\treturn;\r\n\r\n\t}", "function narrative_restore_pictures($pictures, $new_narrative_dir, $pictures_for_restoration = array())\n{\n foreach ($pictures as $i => $picture)\n {\n if (in_array(basename($picture), $pictures_for_restoration))\n {\n $picture_dest = $new_narrative_dir . basename($picture);\n }\n else\n {\n $picture_dest = $new_narrative_dir . 'deleted/' . basename($picture);\n }\n rename($picture, $picture_dest);\n }\n}", "public function execRegenerateImgs(){\n\t\t$cnt=0;\n\t\t$dir = Environment::getVariable(\"dataDir\") . '/img/';\n\t\t$files = Finder::findFiles($this->id . \"-*.png\")->from($dir);\n\n\t\tforeach ($files as $file => $info) {\n\t\t\tunlink($file);\n\t\t\t$cnt++;\n\t\t}\n\n\t\t$this->execNumberOfPages();\n\t\t$this->execBookmarks();\n\t\t$this->execIndexFulltext();\n\t\t$this->execConvertImages();\n\n\t\treturn $cnt;\n\t}", "public function votar_presidencial_subir_imagen(Request $request){\r\n $reglas=[ \r\n 'archivo' => 'required | mimes:jpg,jpeg,gif,png,bmp | max:2048000'\r\n ];\r\n \r\n $mensajes=[\r\n 'archivo.required' => 'Deseleccionar un archivo',\r\n 'archivo.mimes' => 'El archivo debe ser un archivo con formato: jpg, jpeg, gif, png, bmp.',\r\n 'archivo.max' => 'El archivo Supera el tamaño máximo permitido',\r\n ];\r\n\r\n $recinto= \\DB::table('mesas')\r\n ->join('recintos', 'mesas.id_recinto', 'recintos.id_recinto')\r\n ->where('mesas.id_mesa', $request->id_mesa)\r\n ->select('recintos.circunscripcion', 'recintos.distrito', 'recintos.distrito_referencial', 'mesas.id_mesa')\r\n ->first();\r\n\r\n $validator = Validator::make( $request->all(),$reglas,$mensajes );\r\n if( $validator->fails() ){ \r\n $codigo_mesas_oep = \\DB::table('mesas')\r\n ->where('id_mesa', $request->id_mesa)\r\n ->value('codigo_mesas_oep');\r\n return view(\"formularios.form_votar_presidencial_subir_imagen\")\r\n ->with(\"id_mesa\",$request->id_mesa)\r\n ->with(\"codigo_mesas_oep\",$codigo_mesas_oep)\r\n ->withErrors($validator)\r\n ->withInput($request->flash());\r\n }\r\n\r\n //Subimos el archivo\r\n if($request->file('archivo') != \"\"){\r\n $archivo = $request->file('archivo');\r\n $mime = $archivo->getMimeType();\r\n $extension=strtolower($archivo->getClientOriginalExtension());\r\n\r\n $nuevo_nombre=\"presidencial-C\".$recinto->circunscripcion.\"-D\".$recinto->distrito.\"-Mesa-\".$recinto->id_mesa;\r\n\r\n $file = $request->file('archivo');\r\n\r\n $image = Image::make($file->getRealPath());\r\n \r\n //reducimos la calidad y cambiamos la dimensiones de la nueva instancia.\r\n $image->resize(1280, null, function ($constraint) {\r\n $constraint->aspectRatio();\r\n $constraint->upsize();\r\n });\r\n $image->orientate();\r\n\r\n $rutadelaimagen=\"../storage/media/foto_presidenciales/\".$nuevo_nombre;\r\n \r\n if ($image->save($rutadelaimagen)){\r\n\r\n //Introducimos la ruta en la BD\r\n \\DB::table('mesas')\r\n ->where('id_mesa', $request->id_mesa)\r\n ->update(['foto_presidenciales' => $rutadelaimagen]);\r\n\r\n //Redirigimos a la vista form_votar_presidencial\r\n //Tomamos los datos de la mesa\r\n $mesas = \\DB::table('mesas')\r\n ->select('id_mesa', 'codigo_mesas_oep', 'numero_votantes', 'foto_presidenciales')\r\n ->where('id_mesa', $request->id_mesa)\r\n ->get();\r\n\r\n foreach ($mesas as $mesa) {\r\n $codigo_mesas_oep = $mesa->codigo_mesas_oep;\r\n $foto_presidenciales = $mesa->foto_presidenciales;\r\n }\r\n\r\n //Tomamos los partidos y los votos intorducidos para la mesa seleccionada\r\n $partidos = \\DB::table('partidos')->orderBy('nivel')->get();\r\n\r\n $votos_introducidos = \\DB::table('votos_presidenciales')\r\n ->where('id_mesa', $request->id_mesa)\r\n ->select('id_partido', 'validos')\r\n ->get();\r\n\r\n $votos_introducidos_nyb = \\DB::table('votos_presidenciales_r')\r\n ->where('id_mesa', $request->id_mesa)\r\n ->select('nulos', 'blancos')\r\n ->get();\r\n\r\n return view(\"formularios.form_votar_presidencial\")\r\n ->with(\"id_mesa\",$request->id_mesa)\r\n ->with(\"codigo_mesas_oep\",$codigo_mesas_oep)\r\n ->with(\"partidos\",$partidos)\r\n ->with(\"votos_introducidos\",$votos_introducidos)\r\n ->with(\"votos_introducidos_nyb\",$votos_introducidos_nyb)\r\n ->with(\"foto_presidenciales\",$foto_presidenciales);\r\n\r\n }\r\n else{\r\n return view(\"mensajes.msj_error\")->with(\"msj\",\"Ocurrio un error al subir la imagen\");\r\n }\r\n }\r\n }", "public function getUnidadMedida() {\n $o_DMantenimientoGeneral = new DMantenimientoGeneral();\n $resultado = $o_DMantenimientoGeneral->getUnidadMedida();\n foreach ($resultado as $key => $value) {\n array_push($resultado[$key], \"../../../../fastmedical_front/imagen/icono/editar.png ^ Editar\");\n array_push($resultado[$key], \"../../../../fastmedical_front/imagen/icono/i_nomailappt.png ^ Eliminar\");\n }\n return $resultado;\n }", "function clean_raw() {\r\n $this->cleaned_image = cloneImg($this->get_image());\r\n foreach ($this->text_blocks as $block) {\r\n $x1=$block->x1;\r\n $y1=$block->y1;\r\n $x2=$block->x2;\r\n $y2=$block->y2;\r\n $x3=$block->x3;\r\n $y3=$block->y3;\r\n $x4=$block->x4;\r\n $y4=$block->y4;\r\n $r=$block->background_color_alt[0];\r\n $g=$block->background_color_alt[1];\r\n $b=$block->background_color_alt[2];\r\n $background = imagecolorallocate($this->cleaned_image, $r, $g, $b);\r\n $polygon=array($x1,$y1,$x2,$y2,$x3,$y3,$x4,$y4);\r\n imagefilledpolygon($this->cleaned_image,$polygon,4,$background);\r\n $this->cleaned_image_path=\"uploads/\".microtime().\".jpg\";\r\n imagewrite($this->cleaned_image,$this->cleaned_image_path,$quality=100);\r\n }\r\n }", "function del_image_from_object($obj_type, $obj_id, $img_id)\n{\n db()->query('DELETE FROM object_images WHERE obj_type = \"' . strtok($obj_type, \" \") .\n '\" AND obj_id = ' . (int)$obj_id . ' AND img_id = ' . (int)$img_id);\n\n delete_image($img_id);\n}", "function buscar_originales_por_subtema($id_subtema,$tipo_pictograma) {\n\t\n\t\t$sql_subtema='AND palabra_subtema.id_palabra=palabras.id_palabra\n\t\t\tAND palabra_subtema.id_subtema='.$id_subtema.''; \n\t\t$subtema_tabla=',palabra_subtema.*';\n\t\t$subtema_tabla_from=', palabra_subtema';\t\n\t\t\n\t\t$query = \"SELECT DISTINCT palabra_imagen.*, \n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename,\n\t\tpalabras.* $subtema_tabla\n\t\tFROM palabra_imagen, imagenes, palabras $subtema_tabla_from\n\t\tWHERE imagenes.estado=1\n\t\tAND palabras.id_palabra=palabra_imagen.id_palabra\n\t\t$sql_subtema\n\t\tAND imagenes.id_tipo_imagen=$tipo_pictograma\n\t\tAND palabra_imagen.id_imagen=imagenes.id_imagen\";\n\n\t\t$connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\tmysql_close($connection);\n\t\treturn $result;\n\t\t\n\t}", "function UploadFotox($fl, $folder, $ukuran){\n $file_upload = $folder . $fl;\n\n // Simpan gambar dalam ukuran aslinya\n move_uploaded_file($_FILES[\"file\"][\"tmp_name\"], $file_upload);\n\n // Identitas file asli\n $gbr_asli = imagecreatefromjpeg($file_upload);\n $lebar = imageSX($gbr_asli);\n $tinggi \t= imageSY($gbr_asli);\n\n // Simpan dalam versi thumbnail\n $thumb_lebar = $ukuran;\n $thumb_tinggi = 180;\n\n // Proses perubahan dimensi ukuran\n $gbr_thumb = imagecreatetruecolor($thumb_lebar,$thumb_tinggi);\n imagecopyresampled($gbr_thumb, $gbr_asli, 0, 0, 0, 0, $thumb_lebar, $thumb_tinggi, $lebar, $tinggi);\n\n // Simpan gambar thumbnail\n imagejpeg($gbr_thumb,$folder . \"small_\" . $fl);\n \n // Hapus gambar di memori komputer\n imagedestroy($gbr_asli);\n imagedestroy($gbr_thumb);\n}", "function imagenes_disponibles_tipo_por_palabra_exacta($palabra,$id_tipo) {\n\t\t$query = \"SELECT palabras.*, tipos_palabra.*, \n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename,\n\t\tpalabra_imagen.*\n\t\tFROM palabras, tipos_palabra, imagenes, palabra_imagen\n\t\tWHERE palabras.palabra = '$palabra'\n\t\tAND palabra_imagen.id_palabra = palabras.id_palabra\n\t\tAND palabra_imagen.id_imagen = imagenes.id_imagen\n\t\tAND tipos_palabra.id_tipo_palabra=palabras.id_tipo_palabra\n\t\tAND imagenes.id_tipo_imagen='$id_tipo'\";\n\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\tmysql_close($connection);\n\t\treturn $result;\n\t}", "public static function FindUnusedImages()\n {\n }", "function getImage($nr){ //vienaskaita, nes ieskai vieno id informacijos;\n $manoSQL = \"SELECT * FROM images WHERE id = $nr\"; //issigalvotas kintamasis, tiesiog stringas, gali bet koki teksta rasyti.\n $rezultatai = mysqli_query ( getPrisijungimas(), $manoSQL); // mysqli_query tiesiog ivykdo komandas; jei nori delete ar update, tai uztenka sios f-jos\n\n// print_r($rezultatai);\n $rezultatai_masyvas = mysqli_fetch_assoc($rezultatai); // cia objekta ideda i masyva; jei reikia gauti duomenis, tam reikia sios eilutes, kad gautus duomenis issaugoti.\n// print_r($rezultatai_masyvas);\n return $rezultatai_masyvas;\n}", "function crop($rect=array(),&$autosave=null) \n { \n //invalid rectangle defintion \n if(empty($rect)) \n { \n return $this; \n } \n \n if(count($rect)==2) \n { \n $_rect=$rect; \n $rect=array(0,0,$_rect[0],$_rect[1]); \n unset($_rect); \n } \n \n if(count($rect)==3) \n { \n $_rect=array($rect[0],$rect[1],$rect[2]); \n $rect=array(0,0,$_rect[1],$_rect[2]); \n \n switch(trim(strtolower($_rect[0]))) \n { \n case 'lt': \n $rect[0]=0; \n $rect[1]=0; \n break; \n case 'rt': \n $rect[0]=$this->_width-$rect[2]; \n $rect[1]=0; \n break; \n case 'lb': \n $rect[0]=0; \n $rect[1]=$this->_height-$rect[3]; \n break; \n case 'rb': \n $rect[0]=$this->_width-$rect[2]; \n $rect[1]=$this->_height-$rect[3]; \n break; \n case 'center': \n $rect[0]=($this->_width-$rect[2])*0.5; \n $rect[1]=($this->_height-$rect[3])*0.5; \n break; \n } \n unset($_rect); \n } \n \n if(count($rect)!=4 || $rect[0]<0 || $rect[1]<0 || $rect[2]<=0 || $rect[3]<0) \n { \n return $this; \n } \n \n //overflow \n if($rect[0]+$rect[2]>$this->_width || $rect[1]+$rect[3]>$this->_height) \n { \n return $this; \n } \n \n $_tmpImage=imagecreatetruecolor($rect[2],$rect[3]); \n imagecopy($_tmpImage,$this->_image,0,0,$rect[0],$rect[1],$rect[2],$rect[3]); \n imagedestroy($this->_image); \n $this->_image=&$_tmpImage; \n \n $this->_width=$rect[2]; \n $this->_height=$rect[3]; \n \n if(isset($autosave)) \n { \n $_file=sprintf('%s%s_%sx%s.%s', \n $this->_imagePathInfo['dirname'].DS, \n $this->_imagePathInfo['filename'], \n $this->_width,$this->_height, \n $this->_imagePathInfo['extension'] \n ); \n \n if($this->saveAs($_file,$this->default_qulity,$this->default_smooth,$this->auto_dispose)) \n { \n $autosave=$_file; \n } \n } \n \n return $this; \n }", "public function getGaleria() {\n //carga la galeria de la sección \n global $ROOT;\n $seccion = $this->seccion;\n if ($seccion=='') {\n $seccion = \"inicio\";\n }\n \n /* $ficheros = $_SERVER['DOCUMENT_ROOT'] . \"/\" . $ROOT .\"images/hoteles/\" . $this->hotel . \"/\" . $seccion . \"/*.jpg\";\n echo $ficheros;\n $galeria=[];\n foreach (glob($ficheros) as $filename) {\n $galeria[] = $filename; \n }*/\n \n \n $ficheros = $_SERVER['DOCUMENT_ROOT'] . \"/\" . $ROOT .\"images/hoteles/\" . $this->hotel . \"/\" . $seccion . \"/\";\n $galeria=[];\n if (file_exists($ficheros)) {\n $directory = $ficheros;\n chdir($directory);\n $images = glob(\"*.{jpg,JPG,jpeg,JPEG,png,PNG}\", GLOB_BRACE);\n\n foreach($images as $image) {\n\n $galeria[] = $ROOT .\"images/hoteles/\" . $this->hotel . \"/\" . $seccion . \"/\" . $image; \n }\n\n }\n \n return $galeria;\n }", "function subirImagen()\n {\n $prdImagen = 'noDisponible.jpg';\n\n /*** predeterminado si no enviaron archivo en MODIFICAR ***/\n if( isset( $_POST['imagenActual'] ) ) {\n $prdImagen = $_POST['imagenActual'];\n }\n /*** si enviaron archivo y está ok ***/\n if( $_FILES['prdImagen']['error'] == 0 ){\n ### subida del archivo\n $ruta = 'productos/';\n $temp = $_FILES['prdImagen']['tmp_name'];\n\n ## renombrar archivo\n # time() . extension\n $path = pathinfo($_FILES['prdImagen']['name']);\n $ext = $path['extension'];\n $prdImagen = time().'.'.$ext;\n\n ##subir archivo\n move_uploaded_file( $temp, $ruta.$prdImagen );\n }\n\n return $prdImagen;\n }", "public function supprimerImageMorphoAction()\n\t{\n\t\t$id_cons = $this->params()->fromPost('id_cons');\n\t\t$id = $this->params()->fromPost('id'); //numero de l'image dans le diapo\n\t\t$typeExamen = $this->params()->fromPost('typeExamen');\n\t\n\t\t/**\n\t\t * RECUPERATION DE TOUS LES RESULTATS DES EXAMENS MORPHOLOGIQUES\n\t\t*/\n\t\t $result = $this->demandeExamensTable()->recupererDonneesExamenMorpho($id_cons, $id, $typeExamen);\n\t\t/**\n\t\t * SUPPRESSION PHYSIQUE DE L'IMAGE\n\t\t*/\n\t\t unlink ( 'C:\\wamp\\www\\simens\\public\\images\\images\\\\' . $result['NomImage'] . '.jpg' );\n\t\t/**\n\t\t * SUPPRESSION DE L'IMAGE DANS LA BASE\n\t\t*/\n\t\t $this->demandeExamensTable()->supprimerImage($result['IdImage']);\n\t\n\t\t$this->getResponse()->getHeaders ()->addHeaderLine ( 'Content-Type', 'application/html' );\n\t\treturn $this->getResponse ()->setContent(Json::encode ());\n\t}", "function redimage($img_src,$img_dest,$dst_w,$dst_h) {\n // Lit les dimensions de l'image\n $size = GetImageSize($img_src); \n $src_w = $size[0]; $src_h = $size[1]; \n // Teste les dimensions tenant dans la zone\n $test_h = round(($dst_w / $src_w) * $src_h);\n $test_w = round(($dst_h / $src_h) * $src_w);\n // Si Height final non précisé (0)\n if(!$dst_h) $dst_h = $test_h;\n // Sinon si Width final non précisé (0)\n elseif(!$dst_w) $dst_w = $test_w;\n // Sinon teste quel redimensionnement tient dans la zone\n elseif($test_h>$dst_h) $dst_w = $test_w;\n else $dst_h = $test_h;\n\n // La vignette existe ?\n $test = (file_exists($img_dest));\n // L'original a été modifié ?\n if($test)\n $test = (filemtime($img_dest)>filemtime($img_src));\n // Les dimensions de la vignette sont correctes ?\n if($test) {\n $size2 = GetImageSize($img_dest);\n $test = ($size2[0]==$dst_w);\n $test = ($size2[1]==$dst_h);\n }\n\n // Créer la vignette ?\n if(!$test) {\n // Crée une image vierge aux bonnes dimensions\t\n $dst_im = ImageCreateTrueColor($dst_w,$dst_h); \n // Copie dedans l'image initiale redimensionnée\n $src_im = ImageCreateFromJpeg($img_src);\n ImageCopyResampled($dst_im,$src_im,0,0,0,0,$dst_w,$dst_h,$src_w,$src_h);\n // Sauve la nouvelle image\n ImageJpeg($dst_im,$img_dest);\n // Détruis les tampons\n ImageDestroy($dst_im);\n ImageDestroy($src_im);\n }\n}", "private function SaveSingleImage()\n\t{\n\t\t//Abfragen und überprüfen der ID\n\t\t$id = functions::GetVar($_GET, 'id');\n\t\tif(!is_numeric($id))\n\t\t{\n\t\t\tfunctions::Output_fehler('Es wurde keine g&uuml;ltige ID &uuml;bergeben!');\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t//Initialisieren des Datenspeichers\n\t\t$daten = array();\n\t\t\n\t\t//ISO-Wert auslesen und kontrollieren\n\t\t$daten['iso'] = functions::GetVar($_POST, 'iso');\n\t\tif(!is_numeric($daten['iso']))\n\t\t{\n\t\t\tfunctions::Output_warnung('Es wurde kein g&uuml;ltiger ISO-Wert angegeben!');\n\t\t\t$daten['iso'] = 0;\n\t\t}\n\t\t\n\t\t//Auslesen des Kommentars\n\t\t$daten['comment'] = Functions::GetVar($_POST, 'comment');\n\t\t//Auslesen der verwendeten Kamera\n\t\t$daten['kamera'] = Functions::GetVar($_POST, 'kamera');\n\t\t\n\t\t\n\t\tswitch ($_POST['originalChoice'])\n\t\t{\n\t\t\tcase 'delete':\n\t\t\t\t//Es soll kein Bild vorhanden sein, das bestehende Bild wird gelöscht\n\t\t\t\t$daten['pfad_sg'] = $this -> GetPathSg($id);\n\t\t\t\tFilebase::RemoveFileById($daten['pfad_sg']);\n\t\t\t\t$daten['pfad_sg'] = null;\n\t\t\t\tbreak;\n\t\t\tcase 'filesystem':\n\t\t\t\t//Es soll ein Bild aus der Filebase angezeigt werden\n\t\t\t\t$filebasePath = FILEBASE . Functions::GetVar($_POST, 'originalPath');\n\t\t\t\t$daten['pfad_sg'] = '';\n\t\t\t\ttry \n\t\t\t\t{\n\t\t\t\t\t$daten['pfad_sg'] = Filebase::GetFileId($filebasePath);\n\t\t\t\t}\n\t\t\t\tcatch (Exception $ex)\n\t\t\t\t{\n\t\t\t\t\tfunctions::Output_fehler('Die angegebene Datei konnte nicht in der Filebase gefunden werden!');\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tbreak;\n\t\t\tcase 'upload':\n\t\t\t\t//Es soll ein Bild über den Browser geuploaded werden\n\t\t\t\t$up = Functions::Upload(FILEBASE . 'galerie/originalimages/', 'newOriginalImage');\n\t\t\t\tif(!$up)\n\t\t\t\t{\n\t\t\t\t\tfunctions::Output_fehler('Die Datei konnte nicht auf dem Server gespeichert werden!');\n\t\t\t\t}\n\t\t\t\t$daten['pfad_sg'] = Filebase::AddFile($up);\n\t\t\t\tbreak;\n\t\t}\n\t\t\n\t\t//Auslesen der Datumsinformationen\n\t\t$date = array();\n\t\t$date['year'] = functions::GetVar($_POST, 'datumYear');\n\t\t$date['month'] = functions::GetVar($_POST, 'datumMonth');\n\t\t$date['day'] = functions::GetVar($_POST, 'datumDay');\n\t\t$date['hour'] = functions::GetVar($_POST, 'datumHour');\n\t\t$date['minute'] = functions::GetVar($_POST, 'datumMinute');\n\t\t$date['second'] = functions::GetVar($_POST, 'datumSecond');\n\n\t\t//Prüfen ob das Datum korrekt ist\n\t\tif(!checkdate($date['month'], $date['day'], $date['year']))\n\t\t{\n\t\t\tFunctions::Output_fehler('Es wurde ein ung&uuml;ltiges Datum eingegeben!');\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t//Zusammensetzend es Datumstrings\n\t\t$dateString = $date['year'] . '-' . $date['month'] . '-' . $date['day'] . ' ' . $date['hour'] . ':' . $date['minute'] . ':' . $date['second'];\n\t\t\n\t\n\t\t//Galerie-ID auslesen und prüfen\n\t\t$gid = functions::GetVar($_POST, 'galerie');\n\t\tif(!is_numeric($gid))\n\t\t{\n\t\t\tfunctions::Output_fehler('Es wurde keine g&uuml;ltige Galerie-ID ¨&uuml;bergeben!');\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t//Speichern der Informationen\n\t\ttry \n\t\t{\n\t\t\tSqlManager::GetInstance() -> Update('modgaleriebilder', array('gallerieId' => $gid , 'datum' => $dateString, 'iso' => $daten['iso'], 'comment' => $daten['comment'], 'kamera' => $daten['kamera'], 'path_sg' => $daten['pfad_sg']), 'id=\\''. $id .'\\'');\n\t\t}\n\t\tcatch (SqlManagerException $ex)\n\t\t{\n\t\t\tFunctions::Output_fehler('Die Eigenschaften des Bildes konnten nicht gespeichert werden: ' . $ex);\n\t\t\treturn;\n\t\t}\n\t\tfunctions::Output_bericht('Eigenschaften wurden erfolgreich gespeichert!');\n\t}", "function listar_originales_limit_para_generador($inicial,$cantidad,$id_tipo_simbolo) {\n\t\t\t\n\t\tif ($id_tipo_simbolo==99) { $sql_tipo=''; } \n\t\telse { $sql_tipo='AND imagenes.id_tipo_imagen='.$id_tipo_simbolo.''; }\n\t\t\t\n\t\t$query = \"SELECT palabra_imagen.*, \n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename,\n\t\tpalabras.*\n\t\tFROM palabra_imagen, imagenes, palabras\n\t\tWHERE imagenes.estado=1\n\t\tAND palabras.id_palabra=palabra_imagen.id_palabra\n\t\t$sql_tipo\n\t\tAND palabra_imagen.id_imagen=imagenes.id_imagen\n\t\tORDER BY palabra_imagen.id_imagen asc\n\t\tLIMIT $inicial,$cantidad\";\n\t\t\n\t\t//$query = \"SELECT palabra_imagen.*, imagenes.*, palabras.*\n//\t\tFROM palabra_imagen, imagenes, palabras\n//\t\tWHERE imagenes.estado=1\n//\t\tAND palabra_imagen.id_palabra=8762\n//\t\tAND palabras.id_palabra=palabra_imagen.id_palabra\n//\t\tAND palabra_imagen.id_imagen=imagenes.id_imagen\";\n\n\t\t$connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\t$numrows = mysql_num_rows($result);\n\t\tmysql_close($connection);\n\t\t// COMPROBAMOS QUE HAYA RESULTADOS\n\t\t// SI EL NUMERO DE RESULTADOS ES 0 SIGNIFICA QUE NO HAY REGISTROS CON ESOS DATOS\n\t\tif ($numrows == 0) {\n\t\t\treturn 0;\n\t\t}\n\t\telse {\n\t\t\treturn $result;\n\t\t}\n\t}", "function drush_islandora_dss_large_image_clean_thumbnails($collection, $thumbnail_placeholder_path = 'files/placeholder_tn.jpg') {\n\n module_load_include('inc', 'islandora_large_image', 'includes/derivatives');\n\n $result = FALSE;\n $tuque = islandora_get_tuque_connection(user_load(1));\n $solr_results = islandora_dss_basic_collection_get_objects_solr($collection);\n\n foreach($solr_results['response']['docs'] as $solr_doc) {\n\n $object = islandora_object_load($solr_doc['PID']);\n\n if(!$object) {\n\n drush_log('Solr Document for ' . $solr_doc['PID'] . 'must be updated', 'warning');\n continue;\n }\n \n if(isset($object['TN'])) {\n\n $thumbnail_content = $object['TN']->content;\n \n $thumbnail_checksum = md5($thumbnail_content);\n if(md5_file(drupal_get_path('module', 'islandora_dss') . '/' . $thumbnail_placeholder_path) == $thumbnail_checksum) {\n\n\t// Regenerate the thumbnail for the Object\n\t// @see islandora_large_image_create_all_derivatives()\n\n\tdrush_log('Cleaning the thumbnail for ' . $object->id, 'ok');\n\n\t$base_name = str_replace(':', '-', $object->id);\n\t$uploaded_file = islandora_large_image_get_uploaded_file($object, $base_name);\n\t$tn = islandora_large_image_create_TN_derivative($object, $uploaded_file, $base_name) and file_unmanaged_delete($uploaded_file);\n\n\tif(!$tn) {\n\n\t drush_log('Failed to clean the thumbnail for ' . $object->id, 'error');\n\t} else {\n\n\t drush_log('Successfully cleaned the thumbnail for ' . $object->id, 'success');\n\t}\n\n\t$result = $result and $tn;\n }\n }\n }\n\n return $result;\n}", "function validarCamposSubirPost($st){\n \n \n switch ($st){\n \n case(\"step1\"):\n \n \n if(($_SESSION['contador'] == 0) and (!isset($_SESSION['atras'])) ){\n //Mandamos crear el subdirectorio\n //para almacenar el post\n crearSubdirectorio();\n }\n \n break;\n \n case('step2'):\n //'photoArticulo'\n \n $testSubirArchivo = Directorios::validarFoto();\n // echo ' validar '.$testSubirArchivo;\n //Comprobamos que nos devuelve la constante 0 que significa que se \n //ha subido correctamente o que no nos devuelve la constante 4\n //que signfica que no se ha elegido un archivo\n if($testSubirArchivo === 0){\n\n //Si la foto es correcta entonces eliminamos la imagen default \n //que subimos solo ocurre la primera vez\n if(isset($_SESSION['contador']) && $_SESSION['contador'] == \"0\"){\n Directorios::eliminarImagen('../photos/'.$_SESSION['nuevoSubdirectorio'][0].'/'.$_SESSION['nuevoSubdirectorio'][1].\"/demo.jpg\", \"eliminarImgDemoSubirPost\");\n }\n \n //Movemos la imagen que ha subido el usuario\n //Al directorio correcto\n \n \n $destino = '../photos/'.$_SESSION['nuevoSubdirectorio'][0].'/'.$_SESSION['nuevoSubdirectorio'][1].'/'.basename($_FILES['photoArticulo']['name']); \n $foto = $_FILES['photoArticulo']['tmp_name'];\n \n Directorios::moverImagen($foto, $destino, \"subirImagenPost\");\n \n //Renombramos la imagen subida por el usuario\n \n $_SESSION['dirImagen'] = Directorios::renombrarFotoSubirPost($destino); \n \n \n }else if($testSubirArchivo === 4 || $testSubirArchivo === 10 || $testSubirArchivo === 1 || $testSubirArchivo === 3){\n //Si hay algun error al validar la imagen \n //redirigimos a la pagina mostrarError\n //y le indicamos el motivo del error\n // Esto ultimo se hace en el switch del\n //metodo que valida la subida en el directorio Directorios\n $_SESSION['paginaError'] = \"subir_posts.php\";\n //png bandera para que al recargar\n //no se ingrese la img otra vez\n $_SESSION['png'] = 'png';\n //Para que actualice el post\n //Ya que nos devuelve al primer paso del formulario\n $_SESSION['atras'] = 'atras';\n mostrarError(); \n \n \n }\n //switch \n } \n \n \n//fin de validarCamposSubirPost \n }", "function excluir_imagem_publicacao(){\n\t\t\n\t\t// tabela\n\t\t$tabela = TABELA_IMAGENS_ALBUM;\n\t\t\n\t\t// id\n\t\t$id = remove_html($_REQUEST['id']);\n\t\t\n\t\t// valida id e usuario administrador\n\t\tif($id == null or retorne_usuario_administrador() == false){\n\t\t\t\n\t\t\t// retorno nulo\n\t\t\treturn null;\n\t\t\t\n\t\t};\n\t\t\n\t\t// query\n\t\t$query[0] = \"select *from $tabela where id='$id';\";\n\t\t$query[1] = \"delete from $tabela where id='$id';\";\n\t\t\n\t\t// dados\n\t\t$dados = retorne_dados_query($query[0]);\n\t\t\n\t// pasta de usuario\n\t$pasta_usuario = retorne_pasta_usuario($dados['idusuario'], 2, true);\n\t\n\t// separa os dados\n\t$url_imagem = $pasta_usuario.basename($dados['url_imagem']);\n\t$url_imagem_miniatura = $pasta_usuario.basename($dados['url_imagem_miniatura']);\n\t\n\t// excluindo arquivo\n\texclui_arquivo_unico($url_imagem);\n\texclui_arquivo_unico($url_imagem_miniatura);\n\t\n\t// comando executa\n\tcomando_executa($query[1]);\n\t\n\t}", "function filets_creer_icone_barre($file, $num=-1) {\n\tstatic $icones_barre;\n\trep_icones_barre($icones_barre);\n\tdefine_IMG_GD_MAX_PIXELS();\n\t// la config \"Methode de fabrication des vignettes\" doit etre renseignee pour 'image_reduire'\n\tif($num<0) {\n\t\tlist($w) = @getimagesize($file);\n\t\t$file = filtrer('image_recadre', $file, floor($w/4), 40, '');\n\t\t$file = filtrer('image_reduire', $file, 19, 19);\n\t\t$file = filtrer('image_recadre', $file, 16, 16, 'left');\n\t} else {\n\t\t$file = image_typo(\"_{$num}_\", 'couleur=00BFFF', 'taille=9', 'police=dustismo.ttf');\n\t\t$file = filtrer('image_recadre', $file, 16, 10, 'bottom');\n\t}\n\t$nom = basename($src = extraire_attribut($file, 'src'));\n\t@copy($src, $icones_barre.$nom);\n\treturn $nom;\n}", "function imagenes_disponibles_tipo($id_palabra,$id_tipo) {\n\t\t$query = \"SELECT palabras.*, tipos_palabra.*, \n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename,\n\t\tpalabra_imagen.*\n\t\tFROM palabras, tipos_palabra, imagenes, palabra_imagen\n\t\tWHERE palabras.id_palabra = '$id_palabra'\n\t\tAND palabra_imagen.id_palabra = '$id_palabra'\n\t\tAND palabra_imagen.id_imagen = imagenes.id_imagen\n\t\tAND tipos_palabra.id_tipo_palabra=palabras.id_tipo_palabra\n\t\tAND imagenes.id_tipo_imagen='$id_tipo'\";\n\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\tmysql_close($connection);\n\t\treturn $result;\n\t}", "private function aksi_upload_foto_profil_rt($id_rt)\n {\n $config['upload_path'] = './../assets/uploads/rt/';\n $config['allowed_types'] = 'gif|jpg|png|jpeg|pdf';\n $config['file_name'] = 'foto_rt-' . date('ymd') . '-' . substr(md5(rand()), 0, 10);\n\n $this->load->library('upload', $config);\n $id_rt = $this->input->post('id_rt');\n\n if (!empty($_FILES['berkas']['name'])) {\n if ($this->upload->do_upload('berkas')) {\n\n $uploadData = $this->upload->data();\n\n //Compres Foto\n $config['image_library'] = 'gd2';\n $config['source_image'] = './../assets/uploads/rt/' . $uploadData['file_name'];\n $config['create_thumb'] = FALSE;\n $config['maintain_ratio'] = TRUE;\n $config['quality'] = '50%';\n $config['width'] = 600;\n $config['height'] = 400;\n\n $config['new_image'] = './../assets/uploads/rt/' . $uploadData['file_name'];\n $this->load->library('image_lib', $config);\n $this->image_lib->resize();\n\n $item = $this->db->where('id_rt', $id_rt)->get('rt')->row();\n\n //replace foto lama \n if ($item->foto_profil_rt != \"placeholder_profil.png\") {\n $target_file = './../assets/uploads/rt/' . $item->foto_profil_rt;\n unlink($target_file);\n }\n\n $data['foto_profil_rt'] = $uploadData['file_name'];\n $this->db->where('id_rt', $id_rt);\n $this->db->update('rt', $data);\n }\n }\n }", "public static function modifImage($fichier,$id){\r\n $im = ModelProgramme::getImage($id);\r\n $var = str_replace(\"images/\",\"\",$im);\r\n $fichier=\"images/\".$var;\r\n $fichier= str_replace(\" \",\"\",$fichier);\r\n $array = array(\r\n \"suppression\" => \"bar\",\r\n \"edit\" => \"foo\",\r\n );\r\n\r\n\r\n\r\n if (file_exists($fichier)) {\r\n if (@unlink($fichier)) {\r\n $array[\"suppression\"]=\"Suppression de $fichier réussite </br>\";\r\n } else {\r\n $array[\"suppression\"]=\"Echec de suppression de $fichier : $php_errormsg\";\r\n }\r\n } else {\r\n $array[\"suppression\"]=\"Le fichier $fichier n'existe pas </br>\";\r\n\r\n }\r\n\r\n // Vérifier si le formulaire a été soumis\r\n if ($_SERVER[\"REQUEST_METHOD\"] == \"POST\") {\r\n // Vérifie si le fichier a été uploadé sans erreur.\r\n if (isset($_FILES[\"photo\"]) && $_FILES[\"photo\"][\"error\"] == 0) {\r\n $allowed = array(\"jpg\" => \"image/jpg\", \"jpeg\" => \"image/jpeg\", \"gif\" => \"image/gif\", \"png\" => \"image/png\");\r\n $filename = $_FILES[\"photo\"][\"name\"];\r\n $filetype = $_FILES[\"photo\"][\"type\"];\r\n $filesize = $_FILES[\"photo\"][\"size\"];\r\n\r\n // Vérifie l'extension du fichier\r\n $ext = pathinfo($filename, PATHINFO_EXTENSION);\r\n if (!array_key_exists($ext, $allowed)) die(\"Erreur : Veuillez sélectionner un format de fichier valide.\");\r\n\r\n // Vérifie la taille du fichier - 5Mo maximum\r\n $maxsize = 5 * 1024 * 1024;\r\n if ($filesize > $maxsize) die(\"Error: La taille du fichier est supérieure à la limite autorisée.\");\r\n\r\n // Vérifie le type MIME du fichier\r\n if (in_array($filetype, $allowed)) {\r\n // Vérifie si le fichier existe avant de le télécharger.\r\n if (file_exists(\"upload/\" . $_FILES[\"photo\"][\"name\"])) {\r\n $array[\"edit\"]=$_FILES[\"photo\"][\"name\"] . \" existe déjà.\";\r\n\r\n } else {\r\n move_uploaded_file($_FILES[\"photo\"][\"tmp_name\"], \"images/\" . $_FILES[\"photo\"][\"name\"]);\r\n $array[\"edit\"]= \"Votre fichier a été téléchargé avec succès. \".$_FILES[\"photo\"][\"name\"];\r\n\r\n\r\n $adresse = \"images/\".$filename;\r\n $adresse = str_replace(\" \",\"\",$adresse);\r\n ModelProgramme::update($id,\"urlImage\",$adresse);\r\n }\r\n } else {\r\n $array[\"edit\"]= \"Error: Il y a eu un problème de téléchargement de votre fichier. Veuillez réessayer.\";\r\n }\r\n } else {\r\n echo \"Error: \" . $_FILES[\"photo\"][\"error\"];\r\n }\r\n\r\n }\r\n return $array;\r\n }", "function listar_originales_idioma($registrado,$id_tipo,$letra,$filtrado,$orden,$id_subtema,$id_idioma,$tipo_pictograma,$txt_locate,$sql) {\n\t\n\t\tif ($registrado==false) {\n\t\t\t$mostrar_registradas=\"AND imagenes.registrado=0\";\n\t\t}\n\t\t\n\t\tif ($id_tipo==99) { $sql_tipo=''; } \n\t\telse { $sql_tipo='AND palabras.id_tipo_palabra='.$id_tipo.''; }\n\t\t\t\n\t\tif (isset($sql) && $sql !='') { \n\t\t\t\t$sql_subtema='AND palabra_subtema.id_palabra=palabras.id_palabra\n\t\t\t\t'.$sql; \n\t\t\t\t$subtema_tabla=',palabra_subtema.*';\n\t\t\t\t$subtema_tabla_from=', palabra_subtema';\n\t\t} else {\n\t\t\t\n\t\t\tif ($id_subtema==99999) { \n\t\t\t\t$sql_subtema=''; \n\t\t\t\t$subtema_tabla='';\n\t\t\t\t$subtema_tabla_from='';\n\t\t\t} \n\t\t\telse { \n\t\t\t\t$sql_subtema='AND palabra_subtema.id_palabra=palabras.id_palabra\n\t\t\tAND palabra_subtema.id_subtema='.$id_subtema.''; \n\t\t\t\t$subtema_tabla=',palabra_subtema.*';\n\t\t\t\t$subtema_tabla_from=', palabra_subtema';\n\t\t\t\n\t\t\t}\n\t\t}\n\t\t\n\t\tif ($letra==\"\") { $sql_letra=''; } \n\t\telse { \n\t\t\n\t\t\tswitch ($txt_locate) { \n\t\t\t\n\t\t\t\tcase 1:\n\t\t\t\t$sql_letra=\"AND traducciones_\".$id_idioma.\".traduccion LIKE '$letra%%'\";\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\t\tcase 2:\n\t\t\t\t$sql_letra=\"AND traducciones_\".$id_idioma.\".traduccion LIKE '%%$letra%%'\";\n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\t\tcase 3:\n\t\t\t\t$sql_letra=\"AND traducciones_\".$id_idioma.\".traduccion LIKE '%%$letra'\"; \n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\t\tcase 4:\n\t\t\t\t$sql_letra=\"AND traducciones_\".$id_idioma.\".traduccion='$letra'\"; \n\t\t\t\tbreak;\n\t\t\t\t\n\t\t\t\tdefault:\n\t\t\t\t$sql_letra=\"AND traducciones_\".$id_idioma.\".traduccion LIKE '$letra%%'\";\n\t\t\t\tbreak;\n\t\t\t\n\t\t\t}\n\t\t\t\n\n\t\t}\t\n\t\t\n\t\tif ($filtrado==1) { $sql_filtrado='imagenes.ultima_modificacion'; } \n\t\telseif ($filtrado==2) { $sql_filtrado='palabras.palabra'; }\n\t\t\n\t\t$query = \"SELECT COUNT(*)\n\t\tFROM palabra_imagen, imagenes, palabras, traducciones_\".$id_idioma.\" $subtema_tabla_from\n\t\tWHERE imagenes.estado=1\n\t\tAND traducciones_\".$id_idioma.\".id_palabra=palabra_imagen.id_palabra\n\t\tAND traducciones_\".$id_idioma.\".id_palabra=palabras.id_palabra\n\t\tAND traducciones_\".$id_idioma.\".traduccion IS NOT NULL\n\t\t$sql_letra\n\t\t$sql_tipo\n\t\t$sql_subtema\t\n\t\tAND imagenes.id_tipo_imagen=$tipo_pictograma\n\t\tAND palabra_imagen.id_imagen=imagenes.id_imagen\n\t\t$mostrar_registradas\n\t\tORDER BY $sql_filtrado $orden\";\n\n\t\t$connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\t$row=mysql_fetch_array($result);\n\t\tmysql_close($connection);\n\t\treturn $row[0];\n\t\t\n\t}", "public function findAllPhoto(){\n $query= $this->getEntityManager()\n ->createQuery(\"Select p FROM PidevFrontOfficeBundle:Galerie p ORDER BY p.idEvennement ASC\");\n return $query->getResult();\n }", "function imagenes_disponibles_tipos($id_palabra,$with_pictcolor,$with_pictnegro,$with_imagenes,$with_cliparts) {\n\t\t\t\n\t\t$query = \"SELECT palabras.*, tipos_palabra.*, \n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename,\n\t\tpalabra_imagen.*\n\t\tFROM palabras, tipos_palabra, imagenes, palabra_imagen\n\t\tWHERE palabras.id_palabra = '$id_palabra'\n\t\tAND palabra_imagen.id_palabra = '$id_palabra'\n\t\tAND palabra_imagen.id_imagen = imagenes.id_imagen\n\t\tAND tipos_palabra.id_tipo_palabra=palabras.id_tipo_palabra\n\t\t$with_pictcolor\n\t\t$with_pictnegro\n\t\t$with_imagenes\n\t\t$with_cliparts\";\n\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\tmysql_close($connection);\n\t\treturn $result;\n\t}" ]
[ "0.5904372", "0.5841111", "0.5722619", "0.56508213", "0.5606408", "0.55895036", "0.5568186", "0.553821", "0.5516452", "0.5494314", "0.54836273", "0.53789437", "0.53633827", "0.5363098", "0.531766", "0.52821064", "0.52670884", "0.5260609", "0.5238725", "0.5225596", "0.5211145", "0.5171155", "0.5152282", "0.5135655", "0.51018095", "0.5096634", "0.50958323", "0.50865126", "0.502348", "0.49980998", "0.49852726", "0.4980139", "0.49789792", "0.49425727", "0.49327576", "0.49073872", "0.49032077", "0.49003363", "0.48987845", "0.48962325", "0.4879971", "0.48705193", "0.48680064", "0.4842285", "0.48380375", "0.48335746", "0.48331884", "0.48216102", "0.48172566", "0.4802491", "0.47931132", "0.47868848", "0.47843397", "0.47825447", "0.47807392", "0.47746286", "0.47671324", "0.47653", "0.47632676", "0.47552058", "0.475242", "0.47514868", "0.47441182", "0.4741525", "0.47350702", "0.47344795", "0.4733874", "0.4729569", "0.4725458", "0.47240987", "0.47048125", "0.4699767", "0.46970165", "0.4695031", "0.46944556", "0.46940503", "0.46854755", "0.46810496", "0.46779826", "0.4674921", "0.46687385", "0.46682188", "0.46658123", "0.4665788", "0.46654654", "0.46637574", "0.4661174", "0.4658968", "0.46566322", "0.46543187", "0.4653344", "0.46512726", "0.46507913", "0.46468177", "0.46429196", "0.46320164", "0.46270543", "0.462403", "0.46192306", "0.4617068", "0.46161106" ]
0.0
-1
Funcion para guardar la imagen del rastreo de la cotizacion
public function guardarImagenRastreo($id_flete, $url, $imageName, $id_session) { DB::beginTransaction(); $query_imagen = new static; $query_imagen = DB::select('INSERT INTO ldci.tb_imagen( url, nombre, usuario_grabacion, fecha_grabacion) VALUES (?, ?, ?, now()) RETURNING id_imagen', [$url, $imageName, $id_session]); if (empty($query_imagen)) { DB::rollBack(); return false; } else { $query_detalle = new static; $query_detalle = DB::select('INSERT INTO ldci.tb_detalle_imagen( id_tipo, id_tabla, id_imagen, usuario_grabacion, fecha_grabacion) VALUES ( 2, ?, ?, ?, now())', [$id_flete, $query_imagen[0]->id_imagen, $id_session]); if ($query_detalle) { DB::commit(); return true; } else { DB::rollBack(); return false; } } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function guardar_imagenes($idc=null,$seccion){ \r\r\n if (!is_null($idc))\r\r\n $ims = zen_deserializar($this->padre->bd->seleccion_unica(\"imagenes from contenidos where idc=\".$idc)); \r\r\n else \r\r\n $ims = array();\r\r\n //Guardar imagenes:\r\r\n $errores = \"\";\r\r\n zen___carga_funciones(\"zen_ficheros\");\r\r\n $guardar_imgs= zen_guardarFicheros(\"imagenes\",ZF_DIR_MEDIA.\"img/$seccion/\",$errores,rand(10,100).\"_\",true,104);\r\r\n $n = count($ims); \r\r\n for ($i=0; $i<$n; $i++){ \r\r\n \tif (!isset($_POST['borrar_'.str_replace(\".\",\"_\",$ims[$i])])) {\r\r\n \t array_push($guardar_imgs,$ims[$i]); \r\r\n \t} else echo $_POST['borrar_'.$ims[$i]];\r\r\n }\r\r\n return zen_serializar($guardar_imgs);\r\r\n }", "function save_img() {\n imagejpeg($this->img, 'captcha.jpg');\n\n // Libération de la mémoire\n imagedestroy($this->img);\n \n }", "private function recortarImagen()\n\t{\n\t\t$ImgTemporal=\"temporal_clase_Imagen.\".strtolower($this->extencion);\n\n\t\t$CoefAncho\t\t= $this->propiedadesImagen[0]/$this->anchoDestino;\n\t\t$CoefAlto\t\t= $this->propiedadesImagen[1]/$this->altoDestino;\n\t\t$Coeficiente=0;\n\t\tif ($CoefAncho>1 && $CoefAlto>1)\n\t\t{ if($CoefAncho>$CoefAlto){ $Coeficiente=$CoefAlto; } else {$Coeficiente=$CoefAncho;} }\n\n\t\tif ($Coeficiente!=0)\n\t\t{\n\t\t\t$anchoTmp\t= ceil($this->propiedadesImagen[0]/$Coeficiente);\n\t\t\t$altoTmp\t= ceil($this->propiedadesImagen[1]/$Coeficiente);\n\n\t\t\t$ImgMediana = imagecreatetruecolor($anchoTmp,$altoTmp);\n\t\t\timagecopyresampled($ImgMediana,$this->punteroImagen,0,0,0,0,$anchoTmp,$altoTmp,$this->propiedadesImagen[0],$this->propiedadesImagen[1]);\n\t\t\t\n\t\t\t// Tengo que desagregar la funcion de image para crear para reUtilizarla\n\t\t\t//imagejpeg($ImgMediana,$ImgTemporal,97);\n\t\t\t$this->crearArchivoDeImagen($ImgMediana,$ImgTemporal);\n\t\t}\n\n\t\t$fila\t\t\t= floor($this->recorte['centrado']/$this->recorte['columnas']);\n\t\t$columna\t\t= $this->recorte['centrado'] - ($fila*$this->recorte[\"columnas\"]);\n\t\t\n\t\t$centroX \t= floor(($anchoTmp / $this->recorte[\"columnas\"])/2)+$columna*floor($anchoTmp / $this->recorte[\"columnas\"]);\n\t\t$centroY \t= floor(($altoTmp / $this->recorte[\"filas\"])/2)+$fila*floor($altoTmp / $this->recorte[\"filas\"]);\n\n\t\t$centroX\t-= floor($this->anchoDestino/2);\n\t\t$centroY \t-= floor($this->altoDestino/2);\n\n\t\tif ($centroX<0) {$centroX = 0;}\n\t\tif ($centroY<0) {$centroY = 0;}\n\n\t\tif (($centroX+$this->anchoDestino)>$anchoTmp) {$centroX = $anchoTmp-$this->anchoDestino;}\n\t\tif (($centroY+$this->altoDestino)>$altoTmp) {$centroY = $altoTmp-$this->altoDestino;}\n\n\t\t$ImgRecortada = imagecreatetruecolor($this->anchoDestino,$this->altoDestino);\n\t\timagecopymerge ( $ImgRecortada,$ImgMediana,0,0,$centroX, $centroY, $this->anchoDestino, $this->altoDestino,100);\n\n\t\t//imagejpeg($ImgRecortada,$this->imagenDestino,97);\n\t\t$this->crearArchivoDeImagen($ImgRecortada,$this->imagenDestino);\n\t\timagedestroy($ImgRecortada);\n\t\tunlink($ImgTemporal);\n\t}", "function guardarImagen($name, $tipo, $path, $id){\n\t\n\t$path=\"img\\modelos\\\\\".$id.\"_\".$path;\n\t//Si reemplaza la imagen\n\t$existeImagen= sprintf(\"SELECT * FROM imagenes WHERE modelo_idmodelo = '%s' AND\n\t\t\ttipo = '%s' \", $id,$tipo);\n\t$result = mysql_query( $existeImagen);\n\t//Borrar la imagen antigua\n\tif($data=mysql_fetch_array($result)){\n\t\t\n\t\t//unlink('..\\\\'.$data['path']);\n\t\t//mysql_query(\"DELETE FROM imagenes WHERE idimagenes='\".$data[\"idimagenes\"].\"'\");\n\t}\t\n\t$insertImagen= sprintf(\"INSERT INTO imagenes (tipo, path, modelo_idmodelo)\n\t\t\tVALUES ('%s','%s','%s');\",$tipo, mysql_real_escape_string($path), $id);\n\t//Guardar la imagen nueva\n\tmove_uploaded_file($_FILES[$name][\"tmp_name\"],\n\t\t\t\"..\\img\\modelos\\\\\" .$id.\"_\". $_FILES[$name][\"name\"]);\n\t$result = mysql_query( $insertImagen);\n}", "public function saveAsset()\n {\n if(!empty($this->uploadedFile))\n {\n // If file is exist -> remove him\n if(file_exists($this->getFilePath()))\n {\n unlink($this->getFilePath());\n }\n $this->genFilename();\n $imagine = Image::getImagine()->open($this->uploadedFile->tempName);\n }\n else\n {\n if(file_exists($this->getFilePath())) {\n $imagine = Image::getImagine()->open($this->getFilePath());\n } else return false;\n }\n\n $size = $imagine->getSize();\n $box = $this->getImageBox($size);\n\n if (($size->getWidth() <= $box->getWidth() && $size->getHeight() <= $box->getHeight()) || (!$box->getWidth() && !$box->getHeight())) {\n $widthDiff = abs($size->getWidth() - $box->getWidth()) / $size->getWidth();\n $heightDiff = abs($size->getHeight() - $box->getHeight()) / $size->getHeight();\n if($widthDiff > $heightDiff) {\n $resizeBox = new Box($box->getWidth(), $size->getHeight() * $box->getWidth()/$size->getWidth());\n } else {\n $resizeBox = new Box($size->getWidth() * $box->getHeight()/$size->getHeight(), $box->getHeight());\n }\n $imagine->resize($resizeBox);\n\n // var_dump($width);\n // var_dump($height);\n // die;\n // // $imagine->crop($point, $box);\n // $imagine->save($this->getFilePath());\n // return $this->save(false);\n }\n\n $imagine = $imagine->thumbnail($box, ManipulatorInterface::THUMBNAIL_OUTBOUND);\n $imagine->save($this->getFilePath());\n\n // create empty image to preserve aspect ratio of thumbnail\n // $thumb = Image::getImagine()->create($box, new Color('FFF', 100));\n\n // // calculate points\n // $startX = 0;\n // $startY = 0;\n // if ($size->getWidth() < $box->getWidth()) {\n // $startX = ceil($box->getWidth() - $size->getWidth()) / 2;\n // }\n // if ($size->getHeight() < $box->getHeight()) {\n // $startY = ceil($box->getHeight() - $size->getHeight()) / 2;\n // }\n\n // $thumb->paste($img, new Point($startX, $startY));\n // $thumb->save($this->getFilePath());\n\n return $this->save(false);\n }", "function saveImage($idPublicacion, $instancia) {\r\n require_once 'class/funciones.php';\r\n \r\n // 01 session de imagenes\r\n $dataSession['productos'] = (isset($_SESSION['productos']) && count($_SESSION['productos']) > 0) ? $_SESSION['productos'] : false;\r\n \r\n // 02 recorrido de estas ('productos')\r\n $dataInsert = array();\r\n if(isset($dataSession['productos']) && count($dataSession['productos']) > 0 && $dataSession['productos'] != false) {\r\n foreach ($dataSession['productos'] as $array) {\r\n $targetFile = realpath(__DIR__ .\"/images/productos/\") .'/'. $array['img_tmp']['name'];\r\n \r\n if (!copy($array['img_tmp']['path'], $targetFile)) { echo \"failed to copy image\"; exit; }\r\n \r\n $dataInsert['publicacionID'] = $idPublicacion;\r\n $dataInsert['nombre'] = $array['img_tmp']['name'];\r\n $dataInsert['fecha_registro'] = date(\"Y-m-d h:i:s\");\r\n $dataInsert['estado'] = 1;\r\n \r\n $instancia->insertImagesByPublicacion($dataInsert);\r\n // 02.1 crear thumbnail\r\n $updir = realpath(__DIR__ .\"/images/productos/\") . \"/\";\r\n $dirLocation = realpath(__DIR__ .\"/images/productos/thumb\") . \"/\"; \r\n $extension = getFileExtension($array['img_tmp']['name']);\r\n $id = str_replace($extension, '', $array['img_tmp']['name']);\r\n makeThumbnails($updir, $extension, $id, $dirLocation);\r\n \r\n }\r\n }\r\n // 03 limpiar imagenes en session\r\n if (isset($_SESSION['productos'])) { unset($_SESSION['productos']); } \r\n}", "public function rutaImageFly()\n {\n\n // primero vemos a que galeria pertenece\n $galeria = ORM::factory( 'Galeria', $this->galeria );\n\n return( $galeria->rutaImageFly().$this->imagen );\n\n }", "function subirImagen($id_patalla) {\n // MODIFICAR RUTA AL SUBIR AL HOSTING\n $dir_subida = '/home/c0990002/public_html/TB/imagenes_pantallas/';\n\n if (isset($_FILES['imagen']) && !$_FILES['imagen']['error'] > 0) {\n //GUARDADO DE IMAGEN\n if (move_uploaded_file($_FILES['imagen']['tmp_name'], $dir_subida . 'imagen_pantalla_id_' . $id_patalla)) {\n //return $dir_subida.'imagen_pantalla_id_'.$id_patalla;\n return 'https://www.rockerapp.com/TB/imagenes_pantallas/' . 'imagen_pantalla_id_' . $id_patalla;\n }\n }\n}", "public function save()\n {\n\n $photo = $this->flyer->addPhoto($this->makePhoto());\n\n\n // move the photo to the images folder\n $this->file->move($photo->baseDir(), $photo->name);\n\n\n// Image::make($this->path)\n// ->fit(200)\n// ->save($this->thumbnail_path);\n\n // generate a thumbnail\n $this->thumbnail->make($photo->path, $photo->thumbnail_path);\n }", "private function savePhoto()\n {\n $image = Image::make($this->filePath);\n\n File::exists($this->sanghaPhotosPath()) or File::makeDirectory($this->sanghaPhotosPath());\n\n $image->resize(400, null, function ($constraint) {\n $constraint->aspectRatio();\n $constraint->upsize();\n })\n ->save($this->sanghaPhotosPath() . $this->fileName)\n ->resize(200, null, function ($constraint) {\n $constraint->aspectRatio();\n })\n ->save($this->sanghaPhotosPath() . 'tn_' . $this->fileName);\n\n }", "function upload_passport($path, $ext, $sn) {\n $img_url = 'passport' . $sn . '-' . date('mdYHis.') . $ext;\n move_uploaded_file($path, \"temp_img/\" . $img_url);\n $resizeObj = new resize(\"temp_img/\" . $img_url);\n $resizeObj->resizeImage(280, 350, 'crop');\n $resizeObj->saveImage(\"pics/\" . $img_url, 100);\n unlink(\"temp_img/\" . $img_url);\n return $img_url;\n}", "public function guardarImagen($tempName, $ruta){\n return @move_uploaded_file($tempName, $ruta);\n }", "function saveImage()\n\t{\n\n\t\tif (!$this->ImageStream) {\n\t\t\t$this->printError('image not loaded');\n\t\t}\n\n\t\tswitch ($this->type) {\n\t\t\tcase 1:\n\t\t\t\t/* store a interlaced gif image */\n\t\t\t\tif ($this->interlace === true) {\n\t\t\t\t\timageinterlace($this->ImageStream, 1);\n\t\t\t\t}\n\n\t\t\t\timagegif($this->ImageStream, $this->sFileLocation);\n\t\t\t\tbreak;\n\t\t\tcase 2:\n\t\t\t\t/* store a progressive jpeg image (with default quality value)*/\n\t\t\t\tif ($this->interlace === true) {\n\t\t\t\t\timageinterlace($this->ImageStream, 1);\n\t\t\t\t}\n\n\t\t\t\timagejpeg($this->ImageStream, $this->sFileLocation, $this->jpegquality);\n\t\t\t\tbreak;\n\t\t\tcase 3:\n\t\t\t\t/* store a png image */\n\t\t\t\timagepng($this->ImageStream, $this->sFileLocation);\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\t$this->printError('invalid imagetype');\n\n\t\t\t\tif (!file_exists($this->sFileLocation)) {\n\t\t\t\t\t$this->printError('file not stored');\n\t\t\t\t}\n\t\t}\n\t}", "public function writeimg() {\n\t\t$data = Input::all();\n\t\t$img = $data['imgdata'];\n\t\t$student_id = $data['student_id'];\n\t\t$img = str_replace('data:image/png;base64,', '', $img);\n\t\t$img = str_replace(' ', '+', $img);\n\t\t$imgdat = base64_decode($img);\n\t\t$myPublicFolder = public_path();\n\t\t$savePath = $myPublicFolder.\"/photo\";\n\t\t$path = $savePath.\"/$student_id.png\";\n\t\tFile::delete($path);\n\t\tFile::put($path , $imgdat);\n\t\t$last_add = Student::orderby('id', 'desc')->first();\n\t\tStudent::where('student_id', '=', $student_id)->update(array('pic' => \"$student_id.png\"));\n\t\treturn View::make('finish', array('imgid' => Student::where('student_id', '=', $student_id)->firstOrFail()->group));\n\t}", "public function pdpgraficooriginal()\n {\n $img = $this->input->post('base64'); //envia los datos del grafico tipo texto por el imput oculto\n $id = $this->input->post('id'); //devuelve el id para quedar en la grafica\n $img = str_replace('data:image/png;base64,', '', $img);\n $fileData = base64_decode($img);\n $fileName = MANEJADOR_RUTA_GRAFICAS . uniqid() . '_' . $id . '.png'; //ruta de ubicacion al cuardar mas el nombre e id del usuario\n file_put_contents($fileName, $fileData); //donde se guarda y la ruta temporal\n redirect(MANEJADOR_CONFIG . '/usuario_controller/grafica/' . $id); //redirecciona a la grafica\n }", "public function guardar_imagen($carpeta, $temporal, $nombre)\n\t{\n\t\t$imagen= $_SERVER['DOCUMENT_ROOT'].Yii::app()->request->baseUrl.\"/images/tmp/\".$temporal;\n\t\t$ruta_definitiva= $_SERVER['DOCUMENT_ROOT'].Yii::app()->request->baseUrl.\"/images/\".$carpeta.\"/\";\n\t\t/**\n\t\t*\tEn caso de que la carpeta temp no contenga el archivo a copiar\n\t\t*/\n\t\tif(file_exists($imagen)){\n\t\t\t$copia= copy($imagen,$ruta_definitiva.$nombre);\n\t\t\treturn true;\n\t\t}else{\n\t\t\treturn false;\n\t\t}\n\t\t\n\n\t}", "function guardar_imagen($id_sponsor){\r\n \t$this->erkana_auth->required();\r\n \t$this->firephp->info($_FILES);\r\n \t$config['file_name'] = $id_sponsor.'.jpg';\r\n \t$config['upload_path'] = './imagenes/sponsors/';\r\n $config['allowed_types'] = 'gif|jpg|png';\r\n $config['max_size'] = '2000';\r\n $config['overwrite'] = TRUE;\r\n \r\n \t$this->load->library('firephp');\r\n \t$this->load->library('upload', $config);\r\n \t\r\n \tif ($_FILES['imagen']['size']>0) {\r\n \r\n if ( $this->upload->do_upload('imagen') == FALSE){ \r\n \t$this->firephp->info($this->upload->display_errors());\r\n\t\t\t\treturn FALSE; \r\n }\r\n else { \r\n \t$result = $this->upload->data();\r\n \t$this->firephp->info($result);\r\n \t$this->image_thumbs($id_sponsor);\r\n return TRUE;\r\n } \r\n } else {\r\n \treturn FALSE;\r\n }\r\n }", "function image_return_write($im, $write_to_abspath)\n{\n $return = $im->writeImage($write_to_abspath);\n $im->clear();\n $im->destroy();\n return $return;\n}", "private function save()\n {\n $this->collage->setImageFormat('jpeg');\n return $this->collage->writeImage($this->name);\n }", "function subidaFichero($bd,$usuario,$entrada){\n if(isset($_FILES['imagen']['name']) && strlen ($_FILES['imagen']['name'])>0) {\n $dir_subida = $usuario . \"/\";\n ///////////NO TENGO PERMISOS DE CREAR CARPETAS!!!!!!!\n if ( !is_dir($dir_subida) && is_writable(\"../redsocial\")) {\n mkdir($dir_subida,0755, true);\n }else\n $dir_subida=\"img/\";\n $path = $_FILES['imagen']['name'];\n $ext = pathinfo($path, PATHINFO_EXTENSION);\n $fichero_subido = $dir_subida . $usuario . date(\"Ymd_Hm\").\".\".$ext;\n /////NO TENGO PERMISOS PARA SUBIR ARCHIVOS!!!!\n if(is_writable($dir_subida)) {\n if (!move_uploaded_file($_FILES['imagen']['tmp_name'], $fichero_subido)) {\n echo \"Problema de ataque de subida de ficheros!.\\n\";\n }\n }\n $imagen = new Imagen(null, $fichero_subido, $entrada->getId());\n $daoImagenes = new Imagenes($bd);\n $daoImagenes->addImagen($imagen, $entrada);\n return $fichero_subido;\n }\n\n}", "function guardarFoto($foto, $id_table, $update)\n {\n /*------------------ Inserir imagem ------------------*/\n\n // Validando a imagem\n // Tamanho máximo do arquivo em bytes \n $maxDimW = 400;\n $maxDimH = 400;\n\n // Verifica se o arquivo é uma imagem através do match com os formatos possiveis\n $tipos = \"%\\.(jpg|jpeg|png|gif|bmp)$%i\";\n\n //Se a imagem não for dos tipos possiveis não é feito o cadastro e é informado o motivo\n if (preg_match($tipos, $foto[\"type\"]) == 1) {\n return -1;\n }\n\n // Pega as dimensões da imagem \n //$dimensoes = getimagesize($imagem[\"tmp_name\"]);\n list($width, $height, $type, $attr) = getimagesize($foto['tmp_name']);\n\n if ($width > $maxDimW || $height > $maxDimH) {\n // =============== RENOMEACAO E CAMINHO ========================\n //Local a ser salvo\n $diretorio = \"../img/perfil/perfis/\" . $id_table;\n // Cria a pasta se não existir\n if (!file_exists($diretorio)) {\n mkdir($diretorio, 0777, true);\n }\n // Nome da foto\n $nomeFoto = md5(uniqid(time())) . \".\" . \"jpeg\";\n //Local a ser salvo\n $diretorio = \"../img/perfil/perfis/\" . $id_table . \"/\" . $nomeFoto;\n\n\n // ================ CONVERTER/SALVAR/RESIZE ===================\n // local temporario onde a foto está\n $path_tmp = $foto['tmp_name'];\n // salva + uma vez o local temporario onde a foto está\n $foto_tmp = $foto['tmp_name'];\n //Pega as dimensões da imagem \n $size = getimagesize($foto_tmp);\n // Faz a relação width/height p/achar a escala\n $ratio = $size[0] / $size[1];\n\n if ($ratio > 1) {\n $width = $maxDimW;\n $height = $maxDimH / $ratio;\n } else {\n $width = $maxDimW * $ratio;\n $height = $maxDimH;\n }\n\n $src = imagecreatefromstring(file_get_contents($foto_tmp));\n $dst = imagecreatetruecolor($width, $height);\n imagecopyresampled($dst, $src, 0, 0, 0, 0, $width, $height, $size[0], $size[1]);\n\n if (imagejpeg($dst, $diretorio, 70) === true) {\n //Recuperar caminho da antiga foto e deletar\n if ($update) {\n $conn = new db_conect();\n $query = 'SELECT caminho_foto_perfil FROM cliente WHERE cpf = \"' . base64_decode($_SESSION['log_id']) . '\"';\n $result = $conn->selectCustom($query);\n $row = mysqli_fetch_assoc($result);\n if ($row['caminho_foto_perfil'] == null || $row['caminho_foto_perfil'] == \"\") {\n unlink($row['caminho_foto_perfil']);\n }\n }\n return $diretorio;\n } else {\n $_SESSION['msg'] = \"<div class='alert alert-danger'>Não foi possível cadastrar, erro na imagem!</div>\";\n header(\"Location: ../views/cadastro.php\");\n }\n } else {\n //Local a ser salvo\n $diretorio = \"../img/perfil/perfis/\" . $id_table;\n // Cria a pasta se não existir\n if (!file_exists($diretorio)) {\n mkdir($diretorio, 0777, true);\n }\n // Nome da foto\n $nomeFoto = md5(uniqid(time())) . \".\" . \"jpeg\";\n //Local a ser salvo\n $diretorio = \"../img/perfil/perfis/\" . $id_table . \"/\" . $nomeFoto;\n\n move_uploaded_file($foto['tmp_name'], $diretorio);\n\n //Recuperar caminho da antiga foto e deletar\n if ($update) {\n $conn = new db_conect();\n $query = 'SELECT caminho_foto_perfil FROM cliente WHERE cpf = \"' . base64_decode($_SESSION['log_id']) . '\"';\n $result = $conn->selectCustom($query);\n $row = mysqli_fetch_assoc($result);\n if ($row['caminho_foto_perfil'] == null || $row['caminho_foto_perfil'] == \"\") {\n unlink($row['caminho_foto_perfil']);\n }\n }\n\n return $diretorio;\n }\n\n /*------------------ Fim inserir imagem ------------------*/\n }", "public function ImgCropToFile(){\r\n $imgUrl = $_POST['imgUrl'];\r\n// original sizes\r\n $imgInitW = $_POST['imgInitW'];\r\n $imgInitH = $_POST['imgInitH'];\r\n// resized sizes\r\n $imgW = $_POST['imgW'];\r\n $imgH = $_POST['imgH'];\r\n// offsets\r\n $imgY1 = $_POST['imgY1'];\r\n $imgX1 = $_POST['imgX1'];\r\n// crop box\r\n $cropW = $_POST['cropW'];\r\n $cropH = $_POST['cropH'];\r\n// rotation angle\r\n $angle = $_POST['rotation'];\r\n\r\n $jpeg_quality = 100;\r\n\r\n $what = new \\Think\\Image();\r\n $name = './'.$this::getPath($imgUrl).$this::getFileName($imgUrl);\r\n $c_name = './'.$this::getPath($imgUrl).'c_'.$this::getFileName($imgUrl);\r\n $p_name = './'.$this::getPath($imgUrl).'p_'.$this::getFileName($imgUrl);\r\n $what ->open($name);\r\n $what ->thumb($imgW, $imgH)->save($c_name);\r\n $what ->open($c_name);\r\n $what ->crop(($cropW),($cropH),$imgX1,$imgY1)->save($p_name);\r\n unlink($c_name);\r\n unlink($name);\r\n\r\n $m = M('img_mapping');\r\n $data = array();\r\n $data['user'] = $_SESSION['current_user']['id'];\r\n $data['img'] = './'.$this::getPath($p_name).$this::getFileName($p_name);\r\n $m->data($data)->add();\r\n\r\n $response = Array(\r\n \"status\" => 'success',\r\n \"url\" => __ROOT__.'/'.$this::getPath($p_name).$this::getFileName($p_name)\r\n );\r\n print json_encode($response);\r\n }", "public function guardar(Request $request)\n {\n $salon= new salon;\n // $salon->foto=$request->foto;\n $salon->nombre=$request->nombre;\n $salon->descripcion=$request->descripcion;\n $salon->ubicacion=$request->ubicacion;\n $salon->estado=$request->estado;\n $salon->precio=$request->precio;\n\n if($request->foto==null)\n {//si no tiene imagen entonces se le asigna una imagen por defecto\n $salon->foto ='defecto.png';\n }else\n {\n /*guardando la super imagen */\n $explode=explode(',',$request->foto);\n $decoded=\\base64_decode($explode[1]);\n if(str_contains($explode[0],'jpeg')){\n $extension='jpg';\n }else{\n $extension='png';\n }\n $fileName = \\Str::random().'.'.$extension;\n $path= 'img'.'/'.$fileName;\n \\file_put_contents($path,$decoded);\n /*terminando de guardar la superImagen */\n $salon->foto=$fileName; \n }\n\n\n $salon->save();\n\n /*REGISTRA EL MOVIMIENTO EN LA BITACORA */\n $objdate = new DateTime();\n $fechaactual= $objdate->format('Y-m-d');\n $horaactual=$objdate->format('H:i:s');\n $bitacora = new bitacora();\n $bitacora->idEmpleado = session('idemp');\n $bitacora->fecha = $fechaactual;\n $bitacora->hora = $horaactual;\n $bitacora->tabla = 'salon';\n $bitacora->codigoTabla = $salon->id;\n $bitacora->transaccion = 'crear';\n $bitacora->save();\n }", "function insertarEstampa($urlimagen, $urlestampa)\n {\n $estampa = imagecreatefrompng($urlestampa);\n $im = imagecreatefromjpeg($urlimagen);\n // Establecer los márgenes para la estampa y obtener el alto/ancho de la imagen de la estampa\n $margen_dcho = 10;\n $margen_inf = 10;\n $sx = imagesx($estampa);\n $sy = imagesy($estampa);\n // Copiar la imagen de la estampa sobre nuestra foto usando los índices de márgen y el\n // ancho de la foto para calcular la posición de la estampa. \n imagecopy($im, $estampa, imagesx($im) - $sx - $margen_dcho, imagesy($im) - $sy - $margen_inf, 0, 0, imagesx($estampa), imagesy($estampa));\n // Imprimir y liberar memoria\n imagejpeg($im, $urlimagen);\n imagedestroy($im);\n }", "function imageHandler($parametre){\r\n $type = end(explode(\".\", $parametre['name']));\r\n $name = explode(\".\", $parametre['name'])[0];\r\n $path = $parametre['tmp_name'];\r\n $newPath = \"C:\\\\xampp\\htdocs\\Kit-up\\assets\\books\\sales\";\r\n // echo $newPath;\r\n $allow = ['jpg', 'jpeg', 'png'];\r\n $newName = \"\";\r\n if(in_array($type,$allow)){\r\n $newName = md5(uniqid(mt_rand(), true)) . \".\" . $type;\r\n move_uploaded_file($path, $newPath.'\\\\'.$newName);\r\n return $newPath.'\\\\'.$newName ;\r\n }else{\r\n echo \"Sorry. Not supported type!\";\r\n }\r\n }", "function subirImagen()\n {\n $prdImagen = 'noDisponible.jpg';\n\n /*** predeterminado si no enviaron archivo en MODIFICAR ***/\n if( isset( $_POST['imagenActual'] ) ) {\n $prdImagen = $_POST['imagenActual'];\n }\n /*** si enviaron archivo y está ok ***/\n if( $_FILES['prdImagen']['error'] == 0 ){\n ### subida del archivo\n $ruta = 'productos/';\n $temp = $_FILES['prdImagen']['tmp_name'];\n\n ## renombrar archivo\n # time() . extension\n $path = pathinfo($_FILES['prdImagen']['name']);\n $ext = $path['extension'];\n $prdImagen = time().'.'.$ext;\n\n ##subir archivo\n move_uploaded_file( $temp, $ruta.$prdImagen );\n }\n\n return $prdImagen;\n }", "function subirFotoElemento($campo, $tipo, $id, $refresh, $backdir) {\n\t\tif($_FILES[$campo]['type'] != 'image/jpeg' AND $_FILES[$campo]['type'] != 'image/gif' AND $_FILES[$campo]['type'] != 'image/png') {\n\t\t\t$error_img = TRUE;\n\t\t\t$msg = 'El formato de imagen no es válido, sólo se aceptan JPG, GIF o PNG';\n\t\t}\n\n\t\t//Obtengo las dimensiones de la imagen, si se puede entonces es una imagen de verdad y evito una shell en el server\n\t\t$check = getimagesize($_FILES[$campo]['tmp_name']);\n\n\t\tif($check == FALSE) {\n\t\t\t$error_img = TRUE;\n\t\t\t$msg = 'Seleccione una imagen válida';\n\t\t}\n\n\t\t//Si no hay ningún error, arranco la subida...\n\t\tif($error_img == FALSE) {\n\t\t\tif($_FILES[$campo]['type'] == 'image/jpeg') {\n\t\t\t\t$extension_img = '.jpg';\n\t\t\t} elseif($_FILES[$campo]['type'] == 'image/gif') {\n\t\t\t\t$extension_img = '.gif';\n\t\t\t} elseif($_FILES[$campo]['type'] == 'image/png') {\n\t\t\t\t$extension_img = '.png';\n\t\t\t}\n\n\t\t\t$directorio_subida = $backdir . '../sitio/fotos/' . $tipo . '/ampl/';\n\t\t\t$directorio_subida_m = $backdir . '../sitio/fotos/' . $tipo . '/';\n\n\t\t\tif($img = glob($directorio_subida . $id . '.*')) {\n\t\t\t\tunlink($img[0]);\n\t\t\t}\n\n\t\t\tif($img = glob($directorio_subida_m . $id . '.*')) {\n\t\t\t\tunlink($img[0]);\n\t\t\t}\n\n\t\t\t$sin_punto = explode('.', $_FILES[$campo]['name']);\n\t\t\tmove_uploaded_file($_FILES[$campo]['tmp_name'],$directorio_subida . $_FILES[$campo]['name']);\n\t\t\trename($directorio_subida . $_FILES[$campo]['name'],$directorio_subida . $id . $extension_img);\n\n\t\t\t$modulo_variable_ancho_imagen_chica = 'modulo_' . $tipo . '_ancho_imagen_chica';\n\t\t\t$modulo_variable_alto_imagen_chica = 'modulo_' . $tipo . '_alto_imagen_chica';\n\t\t\t$modulo_variable_ancho_imagen_grande = 'modulo_' . $tipo . '_ancho_imagen_grande';\n\t\t\t$modulo_variable_alto_imagen_grande = 'modulo_' . $tipo . '_alto_imagen_grande';\n\t\t\t$modulo_variable_tipo_resize = 'modulo_' . $tipo . '_tipo_resize';\n\t\t\t$modulo_variable_watermark = 'modulo_' . $tipo . '_watermark';\n\t\t\t$modulo_variable_watermark_dir = 'modulo_' . $tipo . '_watermark_dir';\n\n\t\t\tglobal $$modulo_variable_ancho_imagen_chica;\n\t\t\tglobal $$modulo_variable_alto_imagen_chica;\n\t\t\tglobal $$modulo_variable_ancho_imagen_grande;\n\t\t\tglobal $$modulo_variable_alto_imagen_grande;\n\t\t\tglobal $$modulo_variable_tipo_resize;\n\t\t\tglobal $$modulo_variable_watermark;\n\t\t\tglobal $$modulo_variable_watermark_dir;\n\n\t\t\tif($_FILES[$campo]['type'] != 'image/gif') {\n\t\t\t\trequire($backdir . 'lib/Simpleimage/SimpleImage.php');\n\n\t\t\t\t$img = new \\claviska\\SimpleImage($directorio_subida . $id . $extension_img);\n\t\t\t\t$img->toFile($directorio_subida_m . $id . $extension_img);\n\n\t\t\t\t$img_thumb = new \\claviska\\SimpleImage($directorio_subida_m . $id . $extension_img);\n\n\t\t\t\tif($$modulo_variable_tipo_resize == 'recortar') { //////////////////////////////////////////////////////////////Si está en modo recorte\n\t\t\t\t\tif($$modulo_variable_watermark == 1) { //Verifico si está activa o no la marca de agua\n\t\t\t\t\t\t//Ampliada\n\t\t\t\t\t\t$img\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_grande, $$modulo_variable_alto_imagen_grande)\n\t\t\t\t\t\t\t->overlay($$modulo_variable_watermark_dir, 'center', '1')\n\t\t\t\t\t\t\t->toFile($directorio_subida . $id . $extension_img);\n\t\t\t\t\t\t\n\t\t\t\t\t\t//Miniatura\n\t\t\t\t\t\t$img_thumb\n\t\t\t\t\t\t\t->thumbnail($$modulo_variable_ancho_imagen_chica, $$modulo_variable_alto_imagen_chica, 'center')\n\t\t\t\t\t\t\t->toFile($directorio_subida_m . $id . $extension_img);\n\n\t\t\t\t\t} else { //Si la marca de agua no está activa, no la pongo...\n\t\t\t\t\t\t//Ampliada\n\t\t\t\t\t\t$img\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_grande, $$modulo_variable_alto_imagen_grande)\n\t\t\t\t\t\t\t->toFile($directorio_subida . $id . $extension_img);\n\n\t\t\t\t\t\t//Miniatura\n\t\t\t\t\t\t$img_thumb\n\t\t\t\t\t\t\t->thumbnail($$modulo_variable_ancho_imagen_chica, $$modulo_variable_alto_imagen_chica, 'center')\n\t\t\t\t\t\t\t->toFile($directorio_subida_m . $id . $extension_img);\n\t\t\t\t\t}\n\t\t\t\t} else { /////////////////////////////////////////////////////////////////////////////////////////////////////////Si está en modo proporcionar\n\t\t\t\t\tif($$modulo_variable_watermark == 1) { //Verifico si está activa o no la marca de agua\n\t\t\t\t\t\t//Ampliada\n\t\t\t\t\t\t$img\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_grande, $$modulo_variable_alto_imagen_grande)\n\t\t\t\t\t\t\t->overlay($$modulo_variable_watermark_dir, 'center', '1')\n\t\t\t\t\t\t\t->toFile($directorio_subida . $id . $extension_img);\n\t\t\t\t\t\t\n\t\t\t\t\t\t//Miniatura\n\t\t\t\t\t\t$img_thumb\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_chica, $$modulo_variable_alto_imagen_chica, 'center')\n\t\t\t\t\t\t\t->toFile($directorio_subida_m . $id . $extension_img);\n\n\t\t\t\t\t} else { //Si la marca de agua no está activa, no la pongo...\n\t\t\t\t\t\t//Ampliada\n\t\t\t\t\t\t$img\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_grande, $$modulo_variable_alto_imagen_grande)\n\t\t\t\t\t\t\t->toFile($directorio_subida . $id . $extension_img);\n\n\t\t\t\t\t\t//Miniatura\n\t\t\t\t\t\t$img_thumb\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_chica, $$modulo_variable_alto_imagen_chica, 'center')\n\t\t\t\t\t\t\t->toFile($directorio_subida_m . $id . $extension_img);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif($refresh == TRUE) {\n\t\t\t\techo refresh();\n\t\t\t}\n\t\t} else {\n\t\t\techo '<br><div class=\"alert alert-danger\"><strong>Error</strong> ' . $msg . '</div>';\n\t\t}\n\t}", "private function _getDataImg(){\n $this->Photo->createDirectoryIfNotExist(REPO_PHOTO, 0755);\n $idUser = $this->User->getIdUser($_SESSION['login']);\n\t\t$this->Photo->createDirectoryIfNotExist(REPO_PHOTO.$idUser.DS, 0755);\n $this->Photo->createDirectoryIfNotExist(REPO_PHOTO.$idUser.DS.'min'.DS, 0755);\n\n if (isset($_SESSION['filter']) && $_SESSION['filter'] !== 'none'){\n $filter = $_SESSION['filter'];\n } else {\n $filter = 'none';\n }\n if (!empty($_SESSION['objFilter']) && $_SESSION['objFilter'] !== null){\n $filterObj = $_SESSION['objFilter'];\n } else {\n $filterObj = 'noneObj';\n }\n $tabPathId = $this->Photo->savePhotoTmpToDb($idUser, $_POST['img64'], REPO_PHOTO.DS.$idUser, $filter, $filterObj);\n $_POST['img64'] = \"\";\n return $tabPathId;\n\t}", "public function ctrCambiarFotoPerfil(){\n\n\t\tif(isset($_POST[\"idUsuarioFoto\"])){\n\n\t\t\t$ruta = $_POST[\"fotoActual\"];\n\n\t\t\tif(isset($_FILES[\"cambiarImagen\"][\"tmp_name\"]) && !empty($_FILES[\"cambiarImagen\"][\"tmp_name\"])){\n\n\t\t\t\tlist($ancho, $alto) = getimagesize($_FILES[\"cambiarImagen\"][\"tmp_name\"]);\n\n\t\t\t\t$nuevoAncho = 500;\n\t\t\t\t$nuevoAlto = 500;\n\n\t\t\t\t/*=============================================\n\t\t\t\tCREAMOS EL DIRECTORIO DONDE VAMOS A GUARDAR LA FOTO DEL USUARIO\n\t\t\t\t=============================================*/\n\n\t\t\t\t$directorio = \"views/img/usuarios/\".$_POST[\"idUsuarioFoto\"];\n\n\t\t\t\t/*=============================================\n\t\t\t\tPRIMERO PREGUNTAMOS SI EXISTE OTRA IMAGEN EN LA BD Y EL CARPETA\n\t\t\t\t=============================================*/\n\n\t\t\t\tif($ruta != \"\"){\n\n\t\t\t\t\tunlink($ruta);\n\n\t\t\t\t}else{\n\n\t\t\t\t\tif(!file_exists($directorio)){\t\n\n\t\t\t\t\t\tmkdir($directorio, 0755);\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\t/*=============================================\n\t\t\t\tDE ACUERDO AL TIPO DE IMAGEN APLICAMOS LAS FUNCIONES POR DEFECTO DE PHP\n\t\t\t\t=============================================*/\n\n\t\t\t\tif($_FILES[\"cambiarImagen\"][\"type\"] == \"image/jpeg\"){\n\n\t\t\t\t\t$aleatorio = mt_rand(100,999);\n\n\t\t\t\t\t$ruta = $directorio.\"/\".$aleatorio.\".jpg\";\n\n\t\t\t\t\t$origen = imagecreatefromjpeg($_FILES[\"cambiarImagen\"][\"tmp_name\"]);\n\n\t\t\t\t\t$destino = imagecreatetruecolor($nuevoAncho, $nuevoAlto);\n\n\t\t\t\t\timagecopyresized($destino, $origen, 0, 0, 0, 0, $nuevoAncho, $nuevoAlto, $ancho, $alto);\n\n\t\t\t\t\timagejpeg($destino, $ruta);\t\n\n\n\t\t\t\t}else if($_FILES[\"cambiarImagen\"][\"type\"] == \"image/png\"){\n\n\t\t\t\t\t$aleatorio = mt_rand(100,999);\n\n\t\t\t\t\t$ruta = $directorio.\"/\".$aleatorio.\".png\";\n\n\t\t\t\t\t$origen = imagecreatefrompng($_FILES[\"cambiarImagen\"][\"tmp_name\"]);\t\n\n\t\t\t\t\t$destino = imagecreatetruecolor($nuevoAncho, $nuevoAlto);\t\n\n\t\t\t\t\timagealphablending($destino, FALSE);\n\t\t\n\t\t\t\t\timagesavealpha($destino, TRUE);\t\t\n\n\t\t\t\t\timagecopyresized($destino, $origen, 0, 0, 0, 0, $nuevoAncho, $nuevoAlto, $ancho, $alto);\t\t\n\n\t\t\t\t\timagepng($destino, $ruta);\n\n\t\t\t\t}else{\n\n\t\t\t\t\techo'<script>\n\n\t\t\t\t\t\tswal({\n\t\t\t\t\t\t\t\ttype:\"error\",\n\t\t\t\t\t\t\t \ttitle: \"¡CORREGIR!\",\n\t\t\t\t\t\t\t \ttext: \"¡No se permiten formatos diferentes a JPG y/o PNG!\",\n\t\t\t\t\t\t\t \tshowConfirmButton: true,\n\t\t\t\t\t\t\t\tconfirmButtonText: \"Cerrar\"\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t}).then(function(result){\n\n\t\t\t\t\t\t\t\tif(result.value){ \n\t\t\t\t\t\t\t\t history.back();\n\t\t\t\t\t\t\t\t } \n\t\t\t\t\t\t});\n\n\t\t\t\t\t</script>';\n\n\t\t\t\t}\n\t\t\t\n\t\t\t}\n\n\t\t\t// final condicion\n\n\t\t\t$tabla = \"genusuario\";\n\t\t\t$id = $_POST[\"idUsuarioFoto\"];\n\t\t\t$item = \"usufoto\";\n\t\t\t$valor = $ruta;\n\n\t\t\t$respuesta = UserModel::mdlActualizarUsuario($tabla, $id, $item, $valor);\n\n\t\t\tif($respuesta == \"ok\"){\n\n\t\t\t\techo '<script>\n\n\t\t\t\t\tswal({\n\t\t\t\t\t\ttype:\"success\",\n\t\t\t\t\t \ttitle: \"¡CORRECTO!\",\n\t\t\t\t\t \ttext: \"¡La foto de perfil ha sido actualizada!\",\n\t\t\t\t\t \tshowConfirmButton: true,\n\t\t\t\t\t\tconfirmButtonText: \"Cerrar\"\n\t\t\t\t\t \n\t\t\t\t\t}).then(function(result){\n\n\t\t\t\t\t\t\tif(result.value){ \n\t\t\t\t\t\t\t history.back();\n\t\t\t\t\t\t\t } \n\t\t\t\t\t});\n\n\t\t\t\t</script>';\n\n\n\t\t\t}\n\n\t\t}\n\n\t}", "function saveLinkToPhoto(){\n if(isset($_SESSION['temp_photo_loc'])){\n $randomString = $this->generateRandomString();\n $this->car_photo=$randomString;\n $new_file = \"C:/Apache24/htdocs/sola-avto-stran/yii-appli/frontend/web/assets/car_photos/\".$randomString.\".png\";\n rename(\"C:/Apache24/htdocs/sola-avto-stran/yii-appli/frontend/web/assets/temp/\".$_SESSION[\"temp_photo_loc\"].\".png\",$new_file);\n $this->save();\n //da deletamo sliko iz temporery loc\n $temporery = TempPhotos::findOne(([\"temp_photo\"=>$_SESSION['temp_photo_loc']]));\n $temporery->delete();\n //ko damo submit, sliko shranimo in jo potem lahko odstranimo iz session\n unset($_SESSION['temp_photo_loc']);\n }else{\n $this->car_photo=\"no_photo\";\n $this->save();\n }\n }", "function SalvaImmagine($immagineBytes, $folder = \"images\")\n {\n if(empty($immagineBytes))\n return NULL;\n\n if(empty($folder) || strlen($folder) > 34) //nome file 30 + 34 path\n $folder = \"images\";\n \n $result = NULL;\n $closed = false;\n if(!empty($immagineBytes))\n {\n @mkdir($folder, 0664, true); // 0664 = lettura/scrittura proprietario&gruppo, lettura utenti\n $filename = GeneraUniqueFileName($folder, \"IMG\");\n $fp = fopen(\"./$folder/$filename\", \"wb\");\n if(fwrite($fp, $immagineBytes))\n {\n $closed = fclose($fp);\n $result = \"$folder/$filename\";\n $ext = GetFileExtension(\"./$folder/$filename\");\n if(IsImage($ext) && rename(\"./$folder/$filename\", \"./$folder/$filename$ext\"))\n {\n $result = \"$result$ext\";\n $thumbSave = SalvaThumb($folder,$filename, $ext);\n LogMessage(\"thumb salvata ($filename$ext): $thumbSave\",\"thumbs.log\");\n }\n else //il file non è un'immagine valida\n {\n if(!unlink(\"./$result\"))\n sendEmailAdmin(\"[PostApp] File non valido\",\"E' stato caricato un file che non è un'immagine ma non è stato possibile cancellarlo\\n<br>Nome file: $result\");\n $result = NULL;\n }\n }\n if(!$closed)\n fclose($fp);\n \n }\n return $result;\n }", "function UploadLogo($fupload_name, $folder, $ukuran, $tinggix){\n $file_upload = $folder . $fupload_name;\n\n // Simpan gambar dalam ukuran aslinya\n move_uploaded_file($_FILES[\"fupload\"][\"tmp_name\"], $file_upload);\n\n // Identitas file asli\n $gbr_asli = imagecreatefromjpeg($file_upload);\n $lebar = imageSX($gbr_asli);\n $tinggi \t= imageSY($gbr_asli);\n\n // Simpan dalam versi thumbnail\n $thumb_lebar = $ukuran;\n $thumb_tinggi = $tinggix;\n\n // Proses perubahan dimensi ukuran\n $gbr_thumb = imagecreatetruecolor($thumb_lebar,$thumb_tinggi);\n imagecopyresampled($gbr_thumb, $gbr_asli, 0, 0, 0, 0, $thumb_lebar, $thumb_tinggi, $lebar, $tinggi);\n\n // Simpan gambar thumbnail\n imagejpeg($gbr_thumb,$folder . \"small_\" . $fupload_name);\n \n // Hapus gambar di memori komputer\n imagedestroy($gbr_asli);\n imagedestroy($gbr_thumb);\n}", "public function store(Request $r)\n {\n if($r->hasFile('ruta')){\n\n\n foreach($r->file('ruta') as $file)\n {\n $nombrearchivo = time().rand(1,100).'.'.$file->extension();\n $file->move(public_path(\"assets/imgs/comercio\"), $nombrearchivo);\n $imagen = new Imagen($r->all());\n $imagen->ruta = $nombrearchivo;\n $imagen->descripcion = $r->descripcion;\n $imagen->comercio_id = $r->comercio_id;\n $imagen->lugar_id = $r->lugar_id;\n $imagen->save();\n }\n }\n return redirect()->route('imagen.index');\n }", "public function image();", "public function image();", "public function save()\n {\n $dir = $this->pathTmpImage;\n\n $files = scandir($dir);\n\n foreach ($files as $file) {\n if ($file == $_POST['image']) { \n copy($this->pathTmpImage . $file, $this->pathResult . $file);\n }\n }\n\n //$this->dbInsert($_POST['image']);\n\n unlink($this->pathTmpImage . $_POST['image']);\n }", "function marcadeagua($img_original, $img_marcadeagua, $img_nueva, $calidad)\n{\n $info_original = getimagesize($img_original);\n $anchura_original = $info_original[0];\n $altura_original = $info_original[1];\n // obtener datos de la \"marca de agua\" \n $info_marcadeagua = getimagesize($img_marcadeagua);\n $anchura_marcadeagua = $info_marcadeagua[0];\n $altura_marcadeagua = $info_marcadeagua[1];\n // calcular la posición donde debe copiarse la \"marca de agua\" en la fotografia \n $horizmargen = ($anchura_original - $anchura_marcadeagua)/2;\n $vertmargen = ($altura_original - $altura_marcadeagua)/2;\n // crear imagen desde el original \n $original = ImageCreateFromJPEG($img_original);\n ImageAlphaBlending($original, true);\n // crear nueva imagen desde la marca de agua \n $marcadeagua = ImageCreateFromPNG($img_marcadeagua);\n // copiar la \"marca de agua\" en la fotografia \n ImageCopy($original, $marcadeagua, $horizmargen, $vertmargen, 0, 0, $anchura_marcadeagua, $altura_marcadeagua);\n // guardar la nueva imagen \n ImageJPEG($original, $img_nueva, $calidad);\n // cerrar las imágenes \n ImageDestroy($original);\n ImageDestroy($marcadeagua);\n}", "function redimensionne_image($photo)\n{\n\t$info_image = getimagesize($photo);\n\t// largeur et hauteur de l'image d'origine\n\t$largeur = $info_image[0];\n\t$hauteur = $info_image[1];\n\t// largeur et/ou hauteur maximum à afficher\n\tif(basename($_SERVER['PHP_SELF'],\".php\") === \"trombi_impr\") {\n\t\t// si pour impression\n\t\t$taille_max_largeur = getSettingValue(\"l_max_imp_trombinoscopes\");\n\t\t$taille_max_hauteur = getSettingValue(\"h_max_imp_trombinoscopes\");\n\t} else {\n\t// si pour l'affichage écran\n\t\t$taille_max_largeur = getSettingValue(\"l_max_aff_trombinoscopes\");\n\t\t$taille_max_hauteur = getSettingValue(\"h_max_aff_trombinoscopes\");\n\t}\n\n\t// calcule le ratio de redimensionnement\n\t$ratio_l = $largeur / $taille_max_largeur;\n\t$ratio_h = $hauteur / $taille_max_hauteur;\n\t$ratio = ($ratio_l > $ratio_h)?$ratio_l:$ratio_h;\n\n\t// définit largeur et hauteur pour la nouvelle image\n\t$nouvelle_largeur = $largeur / $ratio;\n\t$nouvelle_hauteur = $hauteur / $ratio;\n\n\treturn array($nouvelle_largeur, $nouvelle_hauteur);\n}", "function actualizar_imagen($id_imagen,$id_tipo_imagen,$estado,$registrado,$id_licencia,$id_autor,$tags,$tipo_pictograma,$validos_senyalectica) {\n\t\t\n\t\t$timestamp=time();\n\t\t$fecha=date(\"Y-m-d H:i:s\",$timestamp);\n\t\t\t\t\n\t\t$UpdateRecords = \"UPDATE imagenes \n\t\tSET estado='$estado', \n\t\tregistrado='$registrado', ultima_modificacion='$fecha',\n\t\tid_licencia='$id_licencia', id_autor='$id_autor',\n\t\ttags_imagen='$tags', id_tipo_imagen='$id_tipo_imagen',\n\t\ttipo_pictograma=$tipo_pictograma,\n\t\tvalidos_senyalectica='$validos_senyalectica'\n\t\tWHERE id_imagen='$id_imagen'\";\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($UpdateRecords); \n\t\tmysql_close($connection);\n\t\t\t\n\t}", "function subir_img($directorio,$name){\n move_uploaded_file($_FILES['imagen']['tmp_name'],\"$directorio/$name\");\n}", "function we_save($resave = 0) {\n\n\t\t// get original width and height of the image\n\t\t$arr = $this->getOrigSize(true, true);\n\t\t$this->setElement(\"origwidth\",isset($arr[0]) ? $arr[0] : 0);\n\t\t$this->setElement(\"origheight\",isset($arr[1]) ? $arr[1] : 0);\n\t\t$docChanged = $this->DocChanged; // will be reseted in parent::we_save()\n\t\tif (parent::we_save($resave)) {\n\t\t\tif($docChanged){\n\t\t\t\t$thumbs = $this->getThumbs();\n\t\t\t\tinclude_once($_SERVER[\"DOCUMENT_ROOT\"].\"/webEdition/we/include/\".\"we_delete_fn.inc.php\");\n\t\t\t\tdeleteThumbsByImageID($this->ID);\n\t\t\t\tif(count($thumbs)){\n\t\t\t\t\tforeach($thumbs as $thumbID) {\n\t\t\t\t\t\t$thumbObj = new we_thumbnail();\n\t\t\t\t\t\t$thumbObj->initByThumbID($thumbID,$this->ID,$this->Filename,$this->Path,$this->Extension,$this->getElement(\"origwidth\"),$this->getElement(\"origheight\"),$this->getDocument());\n\t\t\t\t\t\t$thumbObj->createThumb();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}", "public function store(Request $request)\n {\n // controllo che l'immagine sia in base64\n if (base64_decode($request->image, true)) {\n\n $img = imagecreatefromstring(base64_decode($request->image));\n imagepng($img, 'myimage.png');\n $imgMime = getimagesize('myimage.png');\n\n // se l'immagine è valida sia in formato base64 che come estensione faccio la validazione backend\n if (($img) && ($imgMime['mime'] == 'image/png')) {\n // dd('correct');\n $request->validate([\n 'name' => 'required|max:50|min:6',\n 'image' => 'required',\n ]);\n //se passo la validazione salvo nel DB nome e immagine\n $data = $request->all();\n $newDress = new Dress();\n $newDress->name = $data['name'];\n $newDress->image = $data['image'];\n\n // genero lo slug prendendo il titolo questa volta dal form\n $slug = Str::slug($newDress->name, '-');\n\n $slugEditable = $slug;\n $currentSlug = Dress::where('slug', $slug)->first();\n $contatore = 1;\n while($currentSlug) {\n $slug = $slugEditable . '-' . $contatore;\n $contatore++;\n $currentSlug = Dress::where('slug', $slug)->first();\n }\n\n $newDress->slug = $slug;\n\n\n $newDress->save();\n\n //se non esiste creo la cartella per le immagini del progetto corrente\n if (!file_exists('./img/projects/' . $newDress->slug)) {\n mkdir('./img/projects/' . $newDress->slug, 0777, true);\n }\n\n $link= 'data:image/png;base64,' . $newDress->image;\n $destdir = './img/projects/' . $newDress->slug;\n $newImg = file_get_contents($link);\n file_put_contents('./img/projects/' . $newDress->slug . '/full.jpeg', $newImg);\n file_put_contents('./img/projects/' . $newDress->slug . '/mid.jpeg', $newImg);\n file_put_contents('./img/projects/' . $newDress->slug . '/thumbnail.jpeg', $newImg);\n\n\n // se non esiste creo una dopia della cartella per le immagini con il watermark\n if (!file_exists('./img/projects_watermarked/' . $newDress->slug)) {\n mkdir('./img/projects_watermarked/' . $newDress->slug, 0777, true);\n }\n $source = './img/projects/' . $newDress->slug;\n $destination = './img/projects_watermarked/' . $newDress->slug;\n\n $watermark = imagecreatefrompng('./img/watermark/watermark.png');\n\n $margin_right = 40;\n $margin_bottom = 10;\n\n $sx = imagesx($watermark);\n $sy = imagesy($watermark);\n $images = array_diff(scandir($source), array('..','.'));\n\n foreach ($images as $image) {\n $img = imagecreatefrompng($source . '/' . $image);\n imagecopy($img, $watermark, imagesx($img) -$sx - $margin_right, imagesy($img) - $sy - $margin_bottom, 0, 0, $sx, $sy);\n $i = imagejpeg($img, $destination . '/' . $image, 100);\n }\n\n\n// in questo punto dopo che ho le cartelle con le immagini ridimensiono le immagini mid e thumbnail\n if (!function_exists('resize_image')) {\n function resize_image($file, $w, $h) {\n list($width, $height) = getimagesize($file);\n $src = imagecreatefromjpeg($file);\n $dst = imagecreatetruecolor($w, $h);\n imagecopyresampled($dst, $src, 0, 0, 0, 0, $w, $h, $width, $height);\n return $dst;\n }\n //\n\n $imgMid = resize_image('./img/projects_watermarked/'. $newDress->slug . '/mid.jpeg', 250, 303);\n imagejpeg($imgMid, './img/projects_watermarked/'. $newDress->slug . '/mid.jpeg');\n\n $imgThumbnail = resize_image('./img/projects_watermarked/'. $newDress->slug . '/thumbnail.jpeg', 150, 181);\n imagejpeg($imgThumbnail, './img/projects_watermarked/'. $newDress->slug . '/thumbnail.jpeg');\n };\n //-----------------------\n return redirect()->route('dress.index')->withSuccess('Salvataggio avvenuto correttamente');\n }\n } else {\n return redirect()->route('dress.create')->withErrors('Errore: immagine non valida');\n\n }\n\n }", "public function imagenescrear(Request $request)\n {\n $filename = \"\";\n $request->validate([\n 'imatge' => 'required|image|mimes:jpeg,png,jpg,gif,svg|max:2048',\n ]);\n \n if ($request->file('imatge') != null) {\n $file = $request->file('imatge');\n $destinationPath = 'img/products';\n $originalFile = $file->getClientOriginalName();\n $extension = $file->getClientOriginalExtension(); // getting image extension\n $filename = time() . '.' . $extension;\n $file->move($destinationPath, $filename);\n }\n\n $path = 'img/products/' . $filename;\n\n $imatge = new Imatge;\n $imatge->url = $path;\n $imatge->producte_id = $request[\"producteid\"];\n $imatge->save();\n return redirect(\"/gestionproductos/imagenes\");\n }", "private function SaveSingleImage()\n\t{\n\t\t//Abfragen und überprüfen der ID\n\t\t$id = functions::GetVar($_GET, 'id');\n\t\tif(!is_numeric($id))\n\t\t{\n\t\t\tfunctions::Output_fehler('Es wurde keine g&uuml;ltige ID &uuml;bergeben!');\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t//Initialisieren des Datenspeichers\n\t\t$daten = array();\n\t\t\n\t\t//ISO-Wert auslesen und kontrollieren\n\t\t$daten['iso'] = functions::GetVar($_POST, 'iso');\n\t\tif(!is_numeric($daten['iso']))\n\t\t{\n\t\t\tfunctions::Output_warnung('Es wurde kein g&uuml;ltiger ISO-Wert angegeben!');\n\t\t\t$daten['iso'] = 0;\n\t\t}\n\t\t\n\t\t//Auslesen des Kommentars\n\t\t$daten['comment'] = Functions::GetVar($_POST, 'comment');\n\t\t//Auslesen der verwendeten Kamera\n\t\t$daten['kamera'] = Functions::GetVar($_POST, 'kamera');\n\t\t\n\t\t\n\t\tswitch ($_POST['originalChoice'])\n\t\t{\n\t\t\tcase 'delete':\n\t\t\t\t//Es soll kein Bild vorhanden sein, das bestehende Bild wird gelöscht\n\t\t\t\t$daten['pfad_sg'] = $this -> GetPathSg($id);\n\t\t\t\tFilebase::RemoveFileById($daten['pfad_sg']);\n\t\t\t\t$daten['pfad_sg'] = null;\n\t\t\t\tbreak;\n\t\t\tcase 'filesystem':\n\t\t\t\t//Es soll ein Bild aus der Filebase angezeigt werden\n\t\t\t\t$filebasePath = FILEBASE . Functions::GetVar($_POST, 'originalPath');\n\t\t\t\t$daten['pfad_sg'] = '';\n\t\t\t\ttry \n\t\t\t\t{\n\t\t\t\t\t$daten['pfad_sg'] = Filebase::GetFileId($filebasePath);\n\t\t\t\t}\n\t\t\t\tcatch (Exception $ex)\n\t\t\t\t{\n\t\t\t\t\tfunctions::Output_fehler('Die angegebene Datei konnte nicht in der Filebase gefunden werden!');\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tbreak;\n\t\t\tcase 'upload':\n\t\t\t\t//Es soll ein Bild über den Browser geuploaded werden\n\t\t\t\t$up = Functions::Upload(FILEBASE . 'galerie/originalimages/', 'newOriginalImage');\n\t\t\t\tif(!$up)\n\t\t\t\t{\n\t\t\t\t\tfunctions::Output_fehler('Die Datei konnte nicht auf dem Server gespeichert werden!');\n\t\t\t\t}\n\t\t\t\t$daten['pfad_sg'] = Filebase::AddFile($up);\n\t\t\t\tbreak;\n\t\t}\n\t\t\n\t\t//Auslesen der Datumsinformationen\n\t\t$date = array();\n\t\t$date['year'] = functions::GetVar($_POST, 'datumYear');\n\t\t$date['month'] = functions::GetVar($_POST, 'datumMonth');\n\t\t$date['day'] = functions::GetVar($_POST, 'datumDay');\n\t\t$date['hour'] = functions::GetVar($_POST, 'datumHour');\n\t\t$date['minute'] = functions::GetVar($_POST, 'datumMinute');\n\t\t$date['second'] = functions::GetVar($_POST, 'datumSecond');\n\n\t\t//Prüfen ob das Datum korrekt ist\n\t\tif(!checkdate($date['month'], $date['day'], $date['year']))\n\t\t{\n\t\t\tFunctions::Output_fehler('Es wurde ein ung&uuml;ltiges Datum eingegeben!');\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t//Zusammensetzend es Datumstrings\n\t\t$dateString = $date['year'] . '-' . $date['month'] . '-' . $date['day'] . ' ' . $date['hour'] . ':' . $date['minute'] . ':' . $date['second'];\n\t\t\n\t\n\t\t//Galerie-ID auslesen und prüfen\n\t\t$gid = functions::GetVar($_POST, 'galerie');\n\t\tif(!is_numeric($gid))\n\t\t{\n\t\t\tfunctions::Output_fehler('Es wurde keine g&uuml;ltige Galerie-ID ¨&uuml;bergeben!');\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t//Speichern der Informationen\n\t\ttry \n\t\t{\n\t\t\tSqlManager::GetInstance() -> Update('modgaleriebilder', array('gallerieId' => $gid , 'datum' => $dateString, 'iso' => $daten['iso'], 'comment' => $daten['comment'], 'kamera' => $daten['kamera'], 'path_sg' => $daten['pfad_sg']), 'id=\\''. $id .'\\'');\n\t\t}\n\t\tcatch (SqlManagerException $ex)\n\t\t{\n\t\t\tFunctions::Output_fehler('Die Eigenschaften des Bildes konnten nicht gespeichert werden: ' . $ex);\n\t\t\treturn;\n\t\t}\n\t\tfunctions::Output_bericht('Eigenschaften wurden erfolgreich gespeichert!');\n\t}", "public function actualizaThumbnail()\r\n {\r\n if($thumbnail=$this->getAbosluteThumbnailPath()){\r\n if(file_exists($thumbnail)){\r\n unlink($thumbnail);\r\n }\r\n }\r\n $this->crearThumbnail();\r\n }", "function UploadFotox($fl, $folder, $ukuran){\n $file_upload = $folder . $fl;\n\n // Simpan gambar dalam ukuran aslinya\n move_uploaded_file($_FILES[\"file\"][\"tmp_name\"], $file_upload);\n\n // Identitas file asli\n $gbr_asli = imagecreatefromjpeg($file_upload);\n $lebar = imageSX($gbr_asli);\n $tinggi \t= imageSY($gbr_asli);\n\n // Simpan dalam versi thumbnail\n $thumb_lebar = $ukuran;\n $thumb_tinggi = 180;\n\n // Proses perubahan dimensi ukuran\n $gbr_thumb = imagecreatetruecolor($thumb_lebar,$thumb_tinggi);\n imagecopyresampled($gbr_thumb, $gbr_asli, 0, 0, 0, 0, $thumb_lebar, $thumb_tinggi, $lebar, $tinggi);\n\n // Simpan gambar thumbnail\n imagejpeg($gbr_thumb,$folder . \"small_\" . $fl);\n \n // Hapus gambar di memori komputer\n imagedestroy($gbr_asli);\n imagedestroy($gbr_thumb);\n}", "function save_image($img,$fullpath){\n $ch = curl_init ($img);\n curl_setopt($ch, CURLOPT_HEADER, 0);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);\n curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);\n $rawdata=curl_exec($ch);\n curl_close ($ch);\n if(file_exists($fullpath)){\n unlink($fullpath);\n }\n $fp = fopen($fullpath,'x');\n fwrite($fp, $rawdata);\n fclose($fp);\n}", "function UploadFoto($fupload_name, $folder, $ukuran){\n // File gambar yang di upload\n $file_upload = $folder . $fupload_name;\n\n // Simpan gambar dalam ukuran aslinya\n move_uploaded_file($_FILES[\"fupload\"][\"tmp_name\"], $file_upload);\n\n // Identitas file asli\n $gbr_asli = imagecreatefromjpeg($file_upload);\n $lebar = imageSX($gbr_asli);\n $tinggi \t= imageSY($gbr_asli);\n\n // Simpan dalam versi thumbnail\n $thumb_lebar = $ukuran;\n $thumb_tinggi = $ukuran;\n\n // Proses perubahan dimensi ukuran\n $gbr_thumb = imagecreatetruecolor($thumb_lebar,$thumb_tinggi);\n imagecopyresampled($gbr_thumb, $gbr_asli, 0, 0, 0, 0, $thumb_lebar, $thumb_tinggi, $lebar, $tinggi);\n\n // Simpan gambar thumbnail\n imagejpeg($gbr_thumb,$folder . \"small_\" . $fupload_name);\n \n // Hapus gambar di memori komputer\n imagedestroy($gbr_asli);\n imagedestroy($gbr_thumb);\n}", "public function getImage();", "public function getImage();", "public function getImage();", "public function getImage();", "static public function ctrCrearMarca()\n {\n\n if (isset($_POST[\"ingNomMarca\"])) {\n\n $tabla = \"marca\";\n $datos = array( \"nombre\" => $_POST[\"ingNomMarca\"] );\n $ruta = \"\";\n\n $verificarDuplicado = ModeloMarca::mdlVerificarMarca($tabla, $datos, true);\n\n if ($verificarDuplicado) {\n return \"duplicado\";\n } else {\n\n if (isset($_FILES[\"ingfotoMarca\"][\"tmp_name\"])) {\n\n list($ancho, $alto) = getimagesize($_FILES[\"ingfotoMarca\"][\"tmp_name\"]);\n $nuevoAncho = 512;\n $nuevoAlto = 512;\n\n #Crear directorio donde se guardaran las imagenes\n $directorio = \"views/img/Marcas/\" . $_POST[\"ingNomMarca\"];\n mkdir($directorio, 0755);\n\n #Vincular foto de acuerdo al tipo de foto\n if ($_FILES[\"ingfotoMarca\"][\"type\"] == \"image/jpeg\") {\n #Guardar la imagen JPG en el directorio\n $aleatario = mt_rand(100, 999);\n $ruta = \"views/img/Marcas/\" . $_POST[\"ingNomMarca\"] . \"/\" . $aleatario . \".jpg\";\n\n $origen = imagecreatefromjpeg($_FILES[\"ingfotoMarca\"][\"tmp_name\"]);\n\n $destino = imagecreatetruecolor($nuevoAncho, $nuevoAlto);\n\n imagecopyresized($destino, $origen, 0, 0, 0, 0, $nuevoAncho, $nuevoAlto, $ancho, $alto);\n\n imagejpeg($destino, $ruta);\n }\n\n if ($_FILES[\"ingfotoMarca\"][\"type\"] == \"image/png\") {\n #Guardar la imagen PNG en el directorio\n $aleatario = mt_rand(100, 999);\n $ruta = \"views/img/Marcas/\" . $_POST[\"ingNomMarca\"] . \"/\" . $aleatario . \".png\";\n\n $origen = imagecreatefrompng($_FILES[\"ingfotoMarca\"][\"tmp_name\"]);\n\n $destino = imagecreatetruecolor($nuevoAncho, $nuevoAlto);\n\n imagecopyresized($destino, $origen, 0, 0, 0, 0, $nuevoAncho, $nuevoAlto, $ancho, $alto);\n\n imagepng($destino, $ruta);\n }\n }\n\n $datos += [\"foto\" => $ruta];\n\n $ingresar = ModeloMarca::mdlCrearMarca($tabla, $datos);\n return $ingresar;\n }\n }\n }", "function cria_miniatura($img, $original, $miniatura, $largura_miniatura, $altura_miniatura ) {\r\n\t\tif($img['type'] == \"image/jpeg\"){\r\n\t\t\t$imagem_original = imagecreatefromjpeg($original);\r\n\t\t}\r\n\t\telse if($img['type'] == \"image/png\"){\r\n\t\t\t$imagem_original = imagecreatefrompng($original);\r\n\t\t}\r\n\t\telse if($img['type'] == \"image/gif\"){\t\r\n\t\t\t$imagem_original = imagecreatefromgif($original);\r\n\t }\r\n\t\t\r\n\t\t/* Calcula a proporção com base na largura */\r\n\t\t$largura_original = imagesx($imagem_original);\r\n\t $altura_original = imagesy($imagem_original);\r\n\t\t\r\n\t\tif(empty($largura_miniatura) and !empty($altura_miniatura)){\r\n\t\t\t$largura_miniatura = round(($largura_original * $altura_miniatura) / $altura_original); \r\n\t\t}\r\n\t\telse if(!empty($largura_miniatura) and empty($altura_miniatura)){\r\n\t\t\t$altura_miniatura = round(($largura_miniatura / $largura_original) * $altura_original);\r\n\t\t}\r\n\t\telse{\r\n\t\t\t$largura_miniatura = $largura_original;\r\n\t\t\t$altura_miniatura = $altura_original;\r\n\t\t}\r\n\t\t\r\n\t $imagem_miniatura = imagecreatetruecolor($largura_miniatura, $altura_miniatura);\r\n\t imagecopyresampled($imagem_miniatura, $imagem_original, 0, 0, 0, 0, $largura_miniatura, $altura_miniatura, $largura_original, $altura_original);\r\n\t\t\r\n\t\t/* Cria a miniatura */\r\n\t if($img['type'] == \"image/jpeg\"){\r\n\t\t\timagejpeg($imagem_miniatura, $miniatura);\r\n\t\t}\r\n\t\telse if($img['type'] == \"image/png\"){\r\n\t\t\timagepng($imagem_miniatura, $miniatura);\r\n\t\t}\r\n\t\telse if($img['type'] == \"image/gif\"){\r\n\t\t\timagegif($imagem_miniatura, $miniatura);\r\n\t\t}\r\n\t}", "function subir_imagenes($tipo,$imagen,$descripcion,$ruta,$size)\n\t{\n\t\t\t//return \"La imagen\".$tipo.\" No se subio\";\n\t\t\tif(strstr($tipo,\"image\"))\n\t\t\t{\n\n\t\t\t\tif(strstr($tipo,\"jpeg\"))\n\t\t\t\t\t$extension=\".jpg\";\n\t\t\t\telse if(strstr($tipo,\"gif\"))\n\t\t\t\t\t$extension=\".gif\";\n\t\t\t\telse if(strstr($tipo,\"png\"))\n\t\t\t\t\t$extension=\".png\";\n\t\t\t\t//para saber si la imagen tiene el ancho correcto es de 420px\n\t\t\t\t$tam_img=getimagesize($imagen);\n\t\t\t\t$ancho_img=$tam_img[0];\n\t\t\t\t$alto_img =$tam_img[1];\n\t\t\t\t$ancho_img_deseado=$size;\n\n\t\t\t\t//sii la imagen es maor en su ancho a 420px reajusto su tamaño\n\t\t\t\t\tif($ancho_img > $ancho_img_deseado)\n\t\t\t\t\t{\n\t\t\t\t\t\t//reajustamos\n\t\t\t\t\t\t//por una regla de tres obtengo el alto de la imagen de manera \n\t\t\t\t\t\t//proporciaonal el ancho nuevo que sera 420\n\t\t\t\t\t\t$nuevo_ancho_img = $ancho_img_deseado;\n\t\t\t\t\t\t$nuevo_alto_img=($alto_img*$nuevo_ancho_img)/$ancho_img;\n\t\t\t\t\t\t//CREO UNA IMAGEN EN COLOR REAL CON LA NUEVAS DIMENSIONES\n\t\t\t\t\t\n\t\t\t\t\t\t$img_reajustada=imagecreatetruecolor($nuevo_ancho_img, $nuevo_alto_img);\n\t\t\t\t\t\t//CREO UNA IMAGEN BASADA EN LA ORIGINAL DEPENDIENDO DE SU EXTENSION ES EL TIPO QUE CREARE\n\t\t\t\t\t\tswitch ($extension) {\n\t\t\t\t\t\t\tcase '.jpg':\n\t\t\t\t\t\t\t\t$img_original=imagecreatefromjpeg($imagen);\n\t\t\t\t\t\t\t\t//REAJUSTO LA IMAGEN NUEVA CON RESPETO ALA ORIGINAL \n\t\t\t\t\t\t\t\timagecopyresampled($img_reajustada, $img_original, 0, 0, 0, 0, $nuevo_ancho_img, $nuevo_alto_img, \n\t\t\t\t\t\t\t\t\t$ancho_img, $alto_img);\n\t\t\t\t\t\t\t\t//Guardo la imagen reescalada en el servidor \n\t\t\t\t\t\t\t\t$nombre_img_ext=$ruta.$descripcion.$extension;\n\t\t\t\t\t\t\t\t$nombre_img=$ruta.$descripcion;\n\t\t\t\t\t\t\t\timagejpeg($img_reajustada,$nombre_img_ext,100);\n\t\t\t\t\t\t\t\t//ejecuto la funcion para borrar posibles imagenes dobles del perfil\n\t\t\t\t\t\t\t\tborrar_imagenes($nombre_img,\".jpg\");\n\t\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t\tcase '.gif':\n\t\t\t\t\t\t\t\t$img_original=imagecreatefromgif($imagen);\n\t\t\t\t\t\t\t\t//REAJUSTO LA IMAGEN NUEVA CON RESPETO ALA ORIGINAL \n\t\t\t\t\t\t\t\timagecopyresampled($img_reajustada, $img_original, 0, 0, 0, 0, $nuevo_ancho_img, $nuevo_alto_img, \n\t\t\t\t\t\t\t\t\t$ancho_img, $alto_img);\n\t\t\t\t\t\t\t\t//Guardo la imagen reescalada en el servidor \n\t\t\t\t\t\t\t\t$nombre_img_ext=$ruta.$descripcion.$extension;\n\t\t\t\t\t\t\t\t$nombre_img=$ruta.$descripcion;\n\t\t\t\t\t\t\t\timagegif($img_reajustada,$nombre_img_ext,100);\n\t\t\t\t\t\t\t\t//ejecuto la funcion para borrar posibles imagenes dobles del perfil\n\t\t\t\t\t\t\t\tborrar_imagenes($nombre_img,\".gif\");\n\t\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t\tcase '.png':\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$img_original=imagecreatefrompng($imagen);\n\t\t\t\t\t\t\t\t//REAJUSTO LA IMAGEN NUEVA CON RESPETO ALA ORIGINAL \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\timagesavealpha($img_reajustada, true);\n\t\t\t\t\t\t\t\timagealphablending($img_reajustada, false);\t\n\t\t\t\t\t\t\t\timagecopyresampled($img_reajustada, $img_original, 0, 0, 0, 0, $nuevo_ancho_img, $nuevo_alto_img, \n\t\t\t\t\t\t\t\t$ancho_img, $alto_img);\n\t\t\t\t\t\t\t\timagecolortransparent($img_reajustada);\n\t\t\t\t\t\t\t\t//Guardo la imagen reescalada en el servidor \n\t\t\t\t\t\t\t\t$nombre_img_ext=$ruta.$descripcion.$extension;\n\t\t\t\t\t\t\t\t$nombre_img=$ruta.$descripcion;\n\t\t\t\t\t\t\t\timagepng($img_reajustada,$nombre_img_ext,0);\n\t\t\t\t\t\t\t\t//ejecuto la funcion para borrar posibles imagenes dobles del perfil\n\t\t\t\t\t\t\t\tborrar_imagenes($nombre_img,\".png\");\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\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\t//no se reajusta y se sube\n\t\t\t\t\t\t$destino=$ruta.$descripcion.$extension;\n\n\t\t\t\t\t\t//Se sube la foto\n\t\t\t\t\t\tmove_uploaded_file($imagen,$destino) /*or die(\"No se pudo subir la imagen\")*/;\n\n\t\t\t\t\t\t//ejecuto la funcion para borrar posibles imagenes dobles para el perfil\n\t\t\t\t\t\t$nombre_img=$ruta.$descripcion;\n\t\t\t\t\t\tborrar_imagenes($nombre_img,$extension);\n\t\t\t\t\t}\n\t\t\t\t\t//Asigno el nombre que el que se guardara en la base de datos\n\t\t\t\t\t$imagen=$descripcion.$extension;\n\t\t\t\t\treturn $imagen;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\treturn \"La imagen\".$imagen.\" No se subio\";\n\t\t\t}\n\n\t}", "function ctrActualizarPerfil()\n {\n if (isset($_POST['editarNombre'])) {\n\n\n /*====================================*/\n /*VALIDAR IMAGEN QUE SUBE COMO FOTO*/\n /*====================================*/\n $ruta = \"\";\n $directorio = \"vistas/img/usuarios/{$_POST['idUsuario']}\";\n if (isset($_FILES['datosImagen']['tmp_name'])) {\n\n //primero preuntamos si existe otra imagen en la base de datos\n if (!empty($_POST['foto'])) { // valido el post oculto de foto\n unlink($_POST['foto']); //eliminamos el archivo en el hosting\n unlink($directorio);\n } else {\n // si no existe ninguna imagen, creamos el directorio\n @mkdir($directorio, 0755); // pasamos el directorio, y los permisos\n }\n\n\n $aleatorio = mt_rand(100, 999);\n $ruta = \"vistas/img/usuarios/{$_POST['idUsuario']}/\" . $aleatorio . \".jpg\"; // ruta de la foto a almcenar\n\n //Modificamos tamaño de la foto\n //capturao en un array las medidas ancho y alto\n // list (0 , 1) // indices\n list($ancho, $alto) = getimagesize($_FILES['datosImagen']['tmp_name']);\n\n $nuevoAncho = 500;\n $nuevoAlto = 500;\n\n\n /*=====================================*/\n /*SOLO SIRVE PARA IAMGEN JPG JPEG*/\n /*=====================================*/\n\n //creamos una nueva imagen\n $origen = imagecreatefromjpeg($_FILES['datosImagen']['tmp_name']);\n\n $destino = imagecreatetruecolor($nuevoAncho, $nuevoAlto);\n //cortamos la imagen pasando los parametros\n //(destino, origen, posicionx, posiciony, )\n imagecopyresized($destino, $origen, 0, 0, 0, 0, $nuevoAncho, $nuevoAlto, $ancho, $alto);\n\n imagejpeg($destino, $ruta);\n\n\n }\n\n\n //validacion si se escibio algo en el input de contraseña\n if ($_POST['editarPassword'] != \"\") {\n $password = $_POST['passUsuario'];\n } else {\n\n $password = crypt($_POST['editarPassword'], '$2a$07$asxx54ahjppf45sd87a5a4dDDGsystemdev$');\n\n }\n\n\n $datos = [\n 'nombre' => $_POST['editarNombre'],\n 'email' => $_POST['editarEmail'],\n 'password' => $password,\n 'foto' => $ruta,\n 'id' => $_POST['idUsuario']\n ];\n\n $tabla = 'usuarios';\n $respuesta = @ModeloUsuarios::mdlActualizarPerfil($tabla, $datos);\n\n if ($respuesta == 'ok') {\n //si se ejcuto el update, actualizacmos las variables de sesion del usuario\n\n @session_start();\n $_SESSION['validarSesion'] = 'ok';\n $_SESSION['id'] = $datos['id'];\n $_SESSION['nombre'] = $datos['nombre'];\n $_SESSION['foto'] = $datos['foto'];\n $_SESSION['email'] = $datos['email'];\n $_SESSION['password'] = $datos['password'];\n $_SESSION['modo'] = $_POST['modoUsuario'];\n\n echo '<script> \n\n\t\t\t\t\t\t\tswal({\n\t\t\t\t\t\t\t\t title: \"¡OK!\",\n\t\t\t\t\t\t\t\t text: \"¡Su cuenta ha sido actualizada correctamente\",\n\t\t\t\t\t\t\t\t type:\"success\",\n\t\t\t\t\t\t\t\t confirmButtonText: \"Cerrar\",\n\t\t\t\t\t\t\t\t closeOnConfirm: false\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tfunction (isConfirm){\n\t\t\t\t\t\t\t if(isConfirm){\n\t\t\t\t\t\t\t history.back();\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t</script>';\n\n }\n\n }\n }", "protected function saveImage()\n {\n if ( $this->initialImage != $this->image )\n {\n $this->deleteOldImage();\n\n $imageHandler= new CImageHandler();\n $imageHandler->load( $this->getTempFolder( TRUE ) . $this->image );\n $imageHandler->save($this->getImagesFolder( TRUE ) . $imageHandler->getBaseFileName() );\n\n $settings = $this->getThumbsSettings();\n\n if ( !empty( $settings ) )\n {\n $imageHandler= new CImageHandler();\n $imageHandler->load( $this->getTempFolder( TRUE ) . $this->image );\n\n foreach( $settings as $prefix => $dimensions )\n {\n list( $width, $height ) = $dimensions;\n $imageHandler\n ->thumb( $width, $height )\n ->save( $this->getImagesFolder( TRUE ) . $prefix . $imageHandler->getBaseFileName() );\n }\n }\n\n @unlink( $this->getTempFolder( TRUE ) . $this->image );\n }\n }", "public static function change_image_type(){\n/**\n*\n*This function change the image type like convert png to jpg or bmp or gif\n*\n*/\npublic static function rotate()\n}", "function upImagenAction(){\n\t\t\n\t\t$request = $this->get('request');\n\t\t\n\t\t$estetica=$request->request->get('id');\n\t\t$img=$request->request->get('img');\n\t\t\t\t\n\t\t$em = $this->getDoctrine()->getEntityManager();\n\t\t$hcEstetica = $em->getRepository('HcBundle:Hc')->find($estetica);\n\t\t\n\t\t\t\t\n\t\tif($hcEstetica){\t\t\n\t\t\t$ruta = $this->container->getParameter('dlaser.directorio.imagenes');\n\t\t\t\n\t\t\tif ($img) {\n\t\t\t\t\n\t\t\t\t$imgData = base64_decode(substr($img,22));\n\t\t\t\t\n\t\t\t\t$file = $ruta.'grafico_'.$estetica.'.png';\n\t\t\t\t\n\t\t\t\tif (file_exists($file)) { unlink($file); }\n\t\t\t\t$fp = fopen($file, 'w');\n\t\t\t\tfwrite($fp, $imgData);\n\t\t\t\tfclose($fp);\n\t\t\t\t\n\t\t\t\t$response=array(\"responseCode\"=>200, \"msg\"=>\"La operación ha sido exitosa.\");\n\t\t\t}\n\t\t}else{\n\t\t\t$response=array(\"responseCode\"=>400, \"msg\"=>\"Ha ocurrido un error al crear la imagen.\");\n\t\t}\n\t\t\n\t\t$return=json_encode($response);\n\t\treturn new Response($return,200,array('Content-Type'=>'application/json'));\n\t}", "public function excluirImagemGaleria(){ \n\t\t\n\t\t//deleta a imagem da pasta\n\t\tinclude_once(\"../funcoes/geral.php\");\n\t\t$sql = \"\n\t\t\tSELECT thumb\n\t\t\tFROM programa_imagem\n\t\t\"; \n\t\tif($this->idImagem)\n\t\t\t$sql .=\" WHERE id = '$this->idImagem'\";\n\n\t\t$this->sql = $sql;\n\t\t$this->qr = self::execSql($this->sql);\t\n\t\t$qtRegistros = $this->getQuantidadeData($sql); // retorna a quantidade de registro\t \n\t\tif($qtRegistros > 0){\n\t\t\twhile($lista = self::resultsAll($this->qr)){\n\n\t\t\t\tdeletaImagem($lista[\"thumb\"]);//deleto a imagem do arquivo\n\t\t\t\n\t\t\t}\n\t\t}\n\n\t}", "public function Recortar()\n\t{\n\t\t// pega o ID do aluno\n\t\t$id = $this->input->post(\"id_aluno\"); \n\t\t// Configurações para o upload da imagem\n\t\t// Diretório para salvar a imagem\n\t\t$configUpload['upload_path'] = FCPATH .\"_assets/upload/alunos\";\n\t\t// Tipos de imagem permitidos\n\t\t$configUpload['allowed_types'] = 'jpg|png';\n\t\t// Usar nome de arquivo aleatório, ignorando o nome original do arquivo\n\t\t$configUpload['encrypt_name'] = TRUE;\n\t\t// Aplica as configurações para a library upload\n\t\t$this->upload->initialize($configUpload);\n\t\t// Verifica se o upload foi efetuado ou não\n\t\t// Em caso de erro carrega a home exibindo as mensagens\n\t\t// Em caso de sucesso faz o processo de recorte\n\t\tif ( ! $this->upload->do_upload('imagem'))\n\t\t{\n\t\t\t// Recupera as mensagens de erro e envia o usuário para a home\n\t\t\t$dados= array('error' => $this->upload->display_errors());\n\t\t\t// $this->load->view('home',$dados);\n\t\t}\n\t\telse\n\t\t{\n\t\t\t// Recupera os dados da imagem\n\t\t\t$dadosImagem = $this->upload->data();\n\t\t\t// Calcula os tamanhos de ponto de corte e posição\n\t\t\t// de forma proporcional em relação ao tamanho da\n\t\t\t// imagem original\n\t\t\t$tamanhos = $this->CalculaPercetual($this->input->post());\n\t\t\t// Define as configurações para o recorte da imagem\n\t\t\t// Biblioteca a ser utilizada\n\t\t\t$configCrop['image_library'] = 'gd2';\n\t\t\t//Path da imagem a ser recortada\n\t\t\t$configCrop['source_image'] = $dadosImagem['full_path'];\n\t\t\t// Diretório onde a imagem recortada será gravada\n\t\t\t$configCrop['new_image'] = FCPATH .\"_assets/upload\";\n\t\t\t// Proporção\n\t\t\t$configCrop['maintain_ratio'] = FALSE;\n\t\t\t// Qualidade da imagem\n\t\t\t$configCrop['quality'] = 100;\n\t\t\t// Tamanho do recorte\n\t\t\t$configCrop['width'] = $tamanhos['wcrop'];\n\t\t\t$configCrop['height'] = $tamanhos['hcrop'];\n\t\t\t// Ponto de corte (eixos x e y)\n\t\t\t$configCrop['x_axis'] = $tamanhos['x'];\n\t\t\t$configCrop['y_axis'] = $tamanhos['y'];\n\t\t\t// Aplica as configurações para a library image_lib\n\t\t\t$this->image_lib->initialize($configCrop);\n\t\t\t// Verifica se o recorte foi efetuado ou não\n\t\t\t// Em caso de erro carrega a home exibindo as mensagens\n\t\t\t// Em caso de sucesso envia o usuário para a tela\n\t\t\t// de visualização do recorte\n\t\t\tif ( ! $this->image_lib->crop())\n\t\t\t{\n\t\t\t\t// Recupera as mensagens de erro e envia o usuário para a home\n\t\t\t\t$dados = array('error' => $this->image_lib->display_errors());\n\t\t\t\t// $this->load->view('home',$dados);\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$info_arquivo = $this->upload->data(); // recupera os dados do arquivo em caso de sucesso\n\t\t\t\t$nome_arquivo = $dadosImagem['file_name'];\t// pega o nome do arquivo da array\n\t\t\t\t$aluno = array(\n\t\t\t\t\t\"id_aluno\" => $id,\n\t\t\t\t\t\"photo\" => $nome_arquivo\n\t\t\t\t);\n\t\t\t\t$this->db->where('id_aluno', $id);\n\t\t\t\t$this->db->update('aluno', $aluno);\n\t\t\t\techo $this->session->set_flashdata('msg',\"<div class='alert alert-success text-center'>FOTOGRAFIA ALTERADA COM SUCESSO</div>\");\t\n\t\t\t\tredirect('secretaria/aluno/detalhe?id_aluno='.$id); // redireciona para o pefil do aluno\n\t\t\t}\n\t\t}\n\t}", "function actualizarDatos(){\n $e = new Empresa();\n \n $e->ruc = $_POST['ruc'];\n\n $imagenName = $_FILES['file']['name']; \n\n if($_POST['nameimage'] ==\"\"){\n\n \n \n //-------- MODIFIED NAME --------------\n $extension = pathinfo($imagenName, PATHINFO_EXTENSION);\n $random = rand(0,99);\n $rename = $random.date('Ymd').$imagenName;\n $newname = $rename;\n //for obtain extension of image .'.'.$extension\n $imageurl = \"./vistas/panel_usuario/logoemp/\" . $newname;\n \n $imagenTemp = $_FILES['file']['tmp_name'];\n move_uploaded_file($imagenTemp, $imageurl);\n //copy($imagenTemp,$imagenUrl);\n }else{\n \n\n $eliminarimage = \"./vistas/panel_usuario/logoemp/\" . $_POST['nameimage'];\n unlink($eliminarimage);\n\n $extension = pathinfo($imagenName, PATHINFO_EXTENSION);\n $random = rand(0,99);\n $rename = $random.date('Ymd').$imagenName;\n $newname = $rename;\n //for obtain extension of image .'.'.$extension\n $imageurl = \"./vistas/panel_usuario/logoemp/\" . $newname;\n \n $imagenTemp = $_FILES['file']['tmp_name'];\n move_uploaded_file($imagenTemp, $imageurl);\n\n }\n //ad in controller \n $e->logo = $newname;\n $e->logoUrl = $imageurl;\n\n $e->emailEmp = str_replace(\" \",\"\",$_POST['email']);\n $e->descripcion = trim($_POST['descripcion']);\n $e->direccion = trim($_POST['direccion']);\n $e->distrito = $_POST['distrito'];\n $e->telefono = $_POST['telefono'];\n $e->whatsapp = $_POST['whatsapp'];\n $e->facebook = trim($_POST['facebook']);\n $e->instagram = trim($_POST['instagram']);\n if (empty($e->descripcion) || empty($e->direccion) || $_POST['departamento'] == '0' || strlen($e->telefono) != 9 || strlen($e->whatsapp) > 9) {\n return ['bool' => false, 'msg' => 'datosIncorrectos'];\n }\n return ($this->modelo->actualizarEmpresa($e)) ?\n $this->modelo->buscarByRuc($e->ruc) :\n ['bool' => true, 'msg' => 'problemaSQL'];\n }", "public function borrar($imagen)\n {\n }", "function save($path, $file) {\n // сохраняем миниатюру]\n // создать миниатюру\n // if (!move_uploaded_file($_FILES['qqfile']['tmp_name'], $path.'small/small_'.$file)) {\n // return false;\n // }\n // если всё нормально, то\n // сохраняем оригинальный файл\n if(!move_uploaded_file($_FILES['qqfile']['tmp_name'], $path.$file)){\n return false;\n }\n\n // создать миниатюру\n $image = new SimpleImage();\n $image->load($path.$file);\n $image->resize(400, 200);\n $image->save($path.'small/small_'.$file);\n\n return true;\n }", "public function uploader(){\n\n // Recuperando imagem em base64\n // Exemplo: data:image/png;base64,AAAFBfj42Pj4\n $imagen = $_POST['imagen'];\n\n // Separando tipo dos datos da imagen\n // $tipo: data:image/png\n // $datos: base64,AAAFBfj42Pj4\n list($tipo, $datos) = explode(';', $imagen);\n\n // Isolando apenas o tipo da imagen\n // $tipo: image/png\n list(, $tipo) = explode(':', $tipo);\n\n\n // Isolando apenas os datos da imagen\n // $datos: AAAFBfj42Pj4\n list(, $datos) = explode(',', $datos);\n\n //Convertendo base64 para imagen\n $datos = base64_decode($datos);\n\n //Gerando nombre aleatório para a imagen\n $nombre = 'upl_' . $_POST['nombre'];\n\n //Controlador\n $controlador = $_POST['controlador'];\n $modelo = $this->getModel($controlador);\n\n //Ruta\n $ruta = ROOT . 'public' . DS . 'img' . DS . $controlador . DS;\n\n\n // Salvando imagen em disco\n if (file_put_contents($ruta.\"{$nombre}.jpg\", $datos)){\n\n //$parametro = json_decode(stripslashes($_POST['datos']),true);\n $parametro = $_POST['datos'];\n\n if($modelo->modificarImagen($nombre.\".jpg\",$parametro)){\n //$modelo->modificarImagen($parametro[0],array(1));\n // El modelo debe contener este metodo en el cual recibe el nombre de la imagen y un Array de datos auxiliares\n\n $thumb = new upload($ruta.\"{$nombre}.jpg\");\n $thumb->image_resize = true;\n $thumb->image_y = $thumb->image_dst_y / 2;\n $thumb->image_x = $thumb->image_dst_x / 2;\n $thumb->file_name_body_pre = 'thumb_';\n $thumb->process($ruta . 'thumb' . DS);\n }\n\n }\n }", "protected function save()\n {\n switch ($this->image_info['mime']) {\n \n case 'image/gif':\n imagegif($this->image, $this->getPath(true));\n break;\n \n case 'image/jpeg':\n imagejpeg($this->image, $this->getPath(true), $this->quality);\n break;\n \n case 'image/jpg':\n imagejpeg($this->image, $this->getPath(true), $this->quality);\n break;\n \n case 'image/png':\n imagepng($this->image, $this->getPath(true), round($this->quality / 10));\n break;\n \n default:\n $_errors[] = $this->image_info['mime'] . ' images are not supported';\n return $this->errorHandler();\n break;\n }\n \n chmod($this->getPath(true), 0777);\n }", "private function _imgSave(){\r\n\r\n\r\n $result = new stdClass();\r\n $response = 400;\r\n\r\n if($this->hasLogin()){\r\n\r\n /*\r\n \t*\r\n \t*\r\n \t*\tCheck the method used is POST\r\n \t*\r\n \t*\r\n \t*/\r\n \tif($_SERVER['REQUEST_METHOD'] == 'POST'){\r\n\r\n $url = strtok($_POST['url'], '?');\r\n\r\n $sourcePath = ROOT.'/site/files/_tmp/'.basename($url);\r\n $img = getimagesize($sourcePath);\r\n $new_name = uniqid();\r\n\r\n switch($img['mime']){\r\n case 'image/png':\r\n $new_name .= '.png';\r\n break;\r\n case 'image/jpeg':\r\n $new_name .= '.jpg';\r\n break;\r\n case 'image/gif':\r\n $new_name .= '.gif';\r\n break;\r\n default:\r\n echo \"Only PNG, JPEG or GIF images are allowed!\";\r\n exit;\r\n }\r\n\r\n $targetPath = ROOT.'/site/files/'.$new_name;\r\n $webPath = WEBROOT.'/site/files/'.$new_name;\r\n\r\n if(rename($sourcePath, $targetPath)){\r\n $result->url = $webPath;\r\n $result->size = [$img[0],$img[1]];\r\n $result->alt = 'an image';\r\n $response = 200;\r\n } else {\r\n $response = 400;\r\n }\r\n\r\n }\r\n }\r\n\r\n http_response_code($response);\r\n echo json_encode($result);\r\n exit;\r\n\r\n\r\n }", "function borrar ($arrayLineas,$id,$foto){\n $valorRetornado=false; \n foreach ($arrayLineas as $key => $value) {\n $auxArray= (array)$value; \n if($auxArray){\n if($auxArray[\"patente\"] === $id){\n var_dump($foto[\"name\"]);\n var_dump($auxArray[\"foto\"]);\n if($foto[\"name\"] !== $auxArray[\"foto\"] ){\n var_dump(\"./imagenes/\".$auxArray[\"foto\"]);\n //cambia de directorio la imagen vieja a backUpFotos, pero no la conserva.\n //rename(\"./imagenes/\".$auxArray[\"foto\"], './backUpFotos/'.$auxArray[\"patente\"].$auxArray[\"foto\"]);\n //cambia de directorio la imagen vieja a backUpFotos, pero la conserva en ambos directorios.\n copy(\"./imagenes/\".$auxArray[\"foto\"], './backUpFotos/'.$auxArray[\"patente\"].$auxArray[\"foto\"]);\n }\n unset($arrayLineas[$key]);\n $valorRetornado=true;\n break;\n }\n } \n } \n if($valorRetornado){\n echo(\"Se Removio: \".$id.\"\\n\\n\");\n }\n else{\n echo('No se encontro'.\"\\n\\n\");\n $arrayLineas=null;\n } \n return $arrayLineas;\n}", "function redimensionne_image_petit($photo)\n{\n\tglobal $photo_redim_taille_max_largeur, $photo_redim_taille_max_hauteur;\n\n\tif((!preg_match(\"/^[0-9]{1,}$/\", $photo_redim_taille_max_largeur))||($photo_redim_taille_max_largeur<=0)) {\n\t\t$photo_redim_taille_max_largeur=35;\n\t}\n\n\tif((!preg_match(\"/^[0-9]{1,}$/\", $photo_redim_taille_max_hauteur))||($photo_redim_taille_max_hauteur<=0)) {\n\t\t$photo_redim_taille_max_hauteur=35;\n\t}\n\n\t// prendre les informations sur l'image\n\t$info_image = getimagesize($photo);\n\t// largeur et hauteur de l'image d'origine\n\t$largeur = $info_image[0];\n\t$hauteur = $info_image[1];\n\t// largeur et/ou hauteur maximum à afficher\n\t//$taille_max_largeur = 35;\n\t//$taille_max_hauteur = 35;\n\n\t// calcule le ratio de redimensionnement\n\t$ratio_l = $largeur / $photo_redim_taille_max_largeur;\n\t$ratio_h = $hauteur / $photo_redim_taille_max_hauteur;\n\t$ratio = ($ratio_l > $ratio_h)?$ratio_l:$ratio_h;\n\n\t// définit largeur et hauteur pour la nouvelle image\n\t$nouvelle_largeur = $largeur / $ratio;\n\t$nouvelle_hauteur = $hauteur / $ratio;\n\n\t// on renvoit la largeur et la hauteur\n\treturn array($nouvelle_largeur, $nouvelle_hauteur);\n}", "function redimage($img_src,$img_dest,$dst_w,$dst_h) {\n // Lit les dimensions de l'image\n $size = GetImageSize($img_src); \n $src_w = $size[0]; $src_h = $size[1]; \n // Teste les dimensions tenant dans la zone\n $test_h = round(($dst_w / $src_w) * $src_h);\n $test_w = round(($dst_h / $src_h) * $src_w);\n // Si Height final non précisé (0)\n if(!$dst_h) $dst_h = $test_h;\n // Sinon si Width final non précisé (0)\n elseif(!$dst_w) $dst_w = $test_w;\n // Sinon teste quel redimensionnement tient dans la zone\n elseif($test_h>$dst_h) $dst_w = $test_w;\n else $dst_h = $test_h;\n\n // La vignette existe ?\n $test = (file_exists($img_dest));\n // L'original a été modifié ?\n if($test)\n $test = (filemtime($img_dest)>filemtime($img_src));\n // Les dimensions de la vignette sont correctes ?\n if($test) {\n $size2 = GetImageSize($img_dest);\n $test = ($size2[0]==$dst_w);\n $test = ($size2[1]==$dst_h);\n }\n\n // Créer la vignette ?\n if(!$test) {\n // Crée une image vierge aux bonnes dimensions\t\n $dst_im = ImageCreateTrueColor($dst_w,$dst_h); \n // Copie dedans l'image initiale redimensionnée\n $src_im = ImageCreateFromJpeg($img_src);\n ImageCopyResampled($dst_im,$src_im,0,0,0,0,$dst_w,$dst_h,$src_w,$src_h);\n // Sauve la nouvelle image\n ImageJpeg($dst_im,$img_dest);\n // Détruis les tampons\n ImageDestroy($dst_im);\n ImageDestroy($src_im);\n }\n}", "public function FilePondSingleImageUpload($floor_plan, $location = \"./images/uploads\", $disk = 'public')\n {\n\n //get Image data as an array\n\n //var_dump($floor_plan['data']);\n\n if (count($floor_plan['data']) && count($floor_plan['data']) > 0) {\n //there are more than two images as predicted\n //we will get the larger image, which is the last image image\n foreach ($floor_plan['data'] as $floor_plan_data) {\n $data = $floor_plan_data['data'];\n }\n $name = $location . '/' . uniqid() . '.jpg';\n\n $stored = Storage::disk($disk)->put($name, base64_decode($data));\n\n if ($stored) {\n return $name;\n } else {\n //something went wrong;\n return null;\n }\n } else {\n return null;\n }\n\n\n\n return null;\n }", "public function imagenTemporalArticuloController($datos){\n \n list($ancho, $alto) = getimagesize($datos);\n\n if($ancho < 800 || $alto < 400){\n echo 0;\n }else{\n\n $numAleatorio = mt_rand(100, 999);\n\n $ruta = \"../../views/images/articulos/temp/articulo\" . $numAleatorio . \".jpg\";\n\n $origen = imagecreatefromjpeg($datos);\t\t\t\n\n $destino = imagecrop($origen, [\"x\" => 0, \"y\" => 0, \"width\" => 800, \"height\" => 400]); \n\n imagejpeg($destino, $ruta); \n \n echo $ruta;\n\n }\n\n }", "function guardar()\n\t{\t\t\n\t\tif ($this->activo) {\n\t\t\t$this->guardar_en_archivo($this->get_nombre_archivo());\n\t\t}\n\t}", "public function procesar_foto()\n {\n $image = file_get_contents($_FILES['imagen']['tmp_name']);\n $id_carro = $_POST['id_carro'];\n $numero_foto = $_POST['img_number'];\n\n file_put_contents('/home2/gpautos/sv_gpautos/web/images_cont/' . $id_carro . ' (' . $numero_foto . ').jpg', $image);\n }", "public function update(Request $request){\n $id = $request->id;\n $s_scene = SecondaryScene::find($id);\n //Actualizar nombre\n $s_scene->name = $request->name;\n //Actualizar fecha\n $s_scene->date = $request->date;\n //Actualizar foto 360 \n if($request->hasFile('image360')){\n //Crear un nombre para almacenar la imagen fuente plano 360\n $idFile = \"ss\".$s_scene->id;\n $name = $idFile.\".\".$request->file('image360')->getClientOriginalExtension();\n //Almacenar la imagen en el directorio\n $request->file('image360')->move(public_path('img/scene-original/'), $name);\n \n /**************************************************/\n /* CREAR TILES (division de imagen 360 en partes) */\n /**************************************************/\n //Eliminar directorio antiguo\n File::deleteDirectory(public_path('marzipano/tiles/'.$s_scene->directory_name));\n $s_scene->directory_name = \"\"; \n //Ejecucion comando\n $image=\"img/scene-original/\".$name;\n $process = null;\n if(getenv('SYSTEM_HOST') == 'windows'){\n $process = new Process(['krpano\\krpanotools', 'makepano', '-config=configw', $image]);\n }else if(getenv('SYSTEM_HOST') == 'linux'){\n $process = new Process(['./krpano/krpanotools', 'makepano', '-config=configl', $image]);\n }else{\n echo ('Sentimos comunicarle que la aplicación Celia Tour no está disponible para su sistema');;\n }\n $process->run();\n \n //Comprobar si el comando se ha completado con exito\n if ($process->isSuccessful()) {\n $s_scene->directory_name = $idFile; \n //Eliminar imagen fuente que utiliza para trozear y crear el tile\n unlink(public_path('img/scene-original/').$name);\n //guardar cambios\n $s_scene->save();\n //Abrir vista para editar la zona\n return redirect()->route('zone.edit', ['zone' => $request->idZone]); \n }else{\n //En caso de error eliminar la escena de\n $s_scene->delete();\n //Eliminar imagen fuente\n unlink(public_path('img/scene-original/').$name);\n \n echo \"error al crear\";\n }\n \n }\n $s_scene->save();\n return redirect()->route('zone.edit', ['zone' => $request->idZone]);\n }", "function save_camp_image(){\n\t\n\t\n\t$data = $_POST['data'];\n\tlist($type, $data) = explode(';', $data);\n\tlist(, $data) = explode(',', $data);\n\t$data = base64_decode($data);\t\t\n\t$img_name = 'tshirt'.time().'.png';\n\t\n\t$upload_dir = wp_upload_dir();\t\n\t\n\t$target_path_image = $upload_dir['path'].'/'.$img_name;\n\t\n\tfile_put_contents($target_path_image, $data);\n\t\n\techo json_encode(array('action'=>'done','img'=>$img_name));\t\n\tdie();\n}", "function getMediaPath($media_id = 0, $width = '', $height = '', $blur = 0) {\n $ci = &get_instance();\n $media = $ci->crud->get(FILES, array('id' => $media_id));\n if (count($media) > 0) {\n if ($width == '' && $height == '') {\n compress_image(UPLOADS . $media['path'], UPLOADS . $media['path'], 80);\n return UPLOADS . $media['path'];\n } else {\n if (!file_exists(UPLOADS . $media['path'])) { //echo $media['path'];die(\"kkkkkkk\");\n return \"\";\n }\n $arr = explode('/', $media['path']);\n $path = '';\n foreach ($arr as $key => $ar) {\n if ($key < count($arr) - 1) {\n $path.= $ar . '/';\n }\n }\n $image_name = end($arr);\n $imageArr = explode('.', $image_name);\n //create upload folder if not exists\n if (!is_dir(FCPATH . UPLOADS . $path . 'resize')) {\n mkdir(FCPATH . UPLOADS . $path . 'resize', 0777, TRUE);\n }\n $target = UPLOADS . $path . 'resize/' . $imageArr[0] . '_' . $width . '_' . $height . '.' . $imageArr[1];\n\n// var_dump($target);\n if ($blur) {\n if (!is_dir(FCPATH . UPLOADS . $path . 'blur')) {\n mkdir(FCPATH . UPLOADS . $path . 'blur', 0777, TRUE);\n }\n $target1 = UPLOADS . $path . 'blur/' . $imageArr[0] . '_' . $width . '_' . $height . '.' . $imageArr[1];\n if (!file_exists(FCPATH . $target1)) {\n if (do_resize(FCPATH . UPLOADS . $media['path'], FCPATH . $target1, $width, $height)) {\n if (file_exists(FCPATH . $target1)) {\n $im = imageCreateFromAny($target1);\n if ($im) {\n //To compress images\n compress_image(FCPATH . $target1, FCPATH . $target1, 80);\n return $target1;\n }\n }\n }\n } else {\n return $target1;\n }\n } else {\n if (!file_exists(FCPATH . $target)) {\n if (do_resize(FCPATH . UPLOADS . $media['path'], FCPATH . $target, $width, $height)) {\n if (file_exists(FCPATH . $target)) {\n //To compress images\n compress_image(FCPATH . $target, FCPATH . $target, 80);\n return $target;\n }\n }\n } else {\n return $target;\n }\n }\n }\n } else {\n return \"\";\n }\n}", "public function save()\n {\n // save the new Promo data table //\n $cropimg_data = $_POST['cropimg'];\n // smth like:- data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaoAAAH0CAYAAADc0hrzAAAgAElEQVR4Xmy9Sax0a5aetWLv6JvT/P9t8ubNyqYyCyxbLmyMSypsIbCFZBDyDBkDLldhWTBhwgwJiQETJIYuMWcMEkhGmAmdBEJ\n\n $cropimg_remove_array1 = explode(\";\", $cropimg_data);\n // smth like:- base64,iVBORw0KGgoAAAANSUhEUgAABaoAAAH0CAYAAADc0hrzAAAgAElEQVR4Xmy9Sax0a5aetWLv6JvT/P9t8ubNyqYyCyxbLmyMSypsIbCFZBDyDBkDLldhWTBhwgwJiQETJIYuMWcMEkhGmAmdBEJ\n\n $cropimg_remove_array2 = explode(\",\", $cropimg_remove_array1[1]);\n // smth like:- iVBORw0KGgoAAAANSUhEUgAABaoAAAH0CAYAAADc0hrzAAAgAElEQVR4Xmy9Sax0a5aetWLv6JvT/P9t8ubNyqYyCyxbLmyMSypsIbCFZBDyDBkDLldhWTBhwgwJiQETJIYuMWcMEkhGmAmdBEJ\n\n $cropimg = base64_decode($cropimg_remove_array2[1]);\n\n $imageName = 'promo_'.time() . '.png';\n\n $dir_to_save = \"./assets/jollof_banners/fashionhompage_banner/\";\n if (!is_dir($dir_to_save)) {\n mkdir($dir_to_save);\n }\n file_put_contents($dir_to_save.$imageName, $cropimg);\n \n \n \n $input_date=$_POST['promo_date'];\n $date_start=date(\"Y-m-d H:i:s\",strtotime($input_date));\n \n $promo_duration = $this->promo->promodurationinfo($_POST['promo_duration']);\n \n if($promo_duration->durationname == '1 Day'){$date_end= date('Y-m-d H:i:s',strtotime('+1 day',$input_date));}\n else if($promo_duration->durationname == '1 Week') {$date_end= date('Y-m-d H:i:s',strtotime('+1 week',strtotime($input_date)));}\n else if($promo_duration->durationname == '1 Month'){$date_end= date('Y-m-d H:i:s',strtotime('+1 month',strtotime($input_date)));}\n else if($promo_duration->durationname == '3 Month'){$date_end= date('Y-m-d H:i:s',strtotime('+3 week',strtotime($input_date)));}\n else if($promo_duration->durationname == '6 Month'){$date_end= date('Y-m-d H:i:s',strtotime('+6 week',strtotime($input_date)));}\n else if($promo_duration->durationname == '1 Year') {$date_end= date('Y-m-d H:i:s',strtotime('+1 year',strtotime($input_date)));}\n \n $data_New = array( \n 'imageurl' => $_POST['promo_url'],\n 'imagename' => $imageName,\n 'bannertypeid' => $_POST[\"promotype\"],\n 'promodurationid'=> $_POST[\"promo_duration\"],\n 'usertype' => $this->session->Type,\n 'merchantid' => $this->session->merchant_id,\n 'userid' => $this->session->User_id,\n 'username' => $this->session->companyname,\n 'payment' => 'FREE',\n 'startdate' => $date_start,\n 'enddate' => $date_end,\n 'status' => 0\n );\n $insert_data = $this->Generic->add($data_New, $tablename=\"img_ads\");// insert to db\n\n if($insert_data) \n {\n $this->session->set_flashdata('success','success');\n $this->session->set_flashdata('message', 'Promo Saved');\n $Json_resultSave = array (\n 'status' => '1',\n 'content' => $imageName\n );\n echo json_encode($Json_resultSave);\n exit();\n }\n else \n { \n $this->session->set_flashdata('error','error');\n $this->session->set_flashdata('message', 'An error occur when Adding New Promo');\n $Json_resultSave = array (\n 'status' => '0',\n 'content' => 'There was a problem!! Pls Try Again.....'\n );\n echo json_encode($Json_resultSave);\n exit();\n }\n }", "public function saveCroppedAsset()\n {\n if(!empty($this->uploadedFile))\n {\n // If file is exist -> remove him\n if(file_exists($this->getFilePath()))\n {\n unlink($this->getFilePath());\n }\n\n $this->genFilename();\n $imagine = Image::getImagine()->open($this->uploadedFile->tempName);\n }\n else\n {\n if(file_exists($this->getFilePath())) {\n $imagine = Image::getImagine()->open($this->getFilePath());\n } else return false;\n }\n\n $size = $imagine->getSize();\n $width = $size->getWidth();\n $height = $size->getHeight();\n\n $cropData = explode(';', $this->cropData);\n\n if(count($cropData) == 4)\n {\n $point = new Point($cropData[0]*$width, $cropData[1]*$height);\n $box = new Box($cropData[2]*$width, $cropData[3]*$height);\n $imagine->crop($point, $box);\n // $imageBox = $this->getImageBox($size);\n // $imagine->resize($imageBox);\n }\n $imagine->save($this->getFilePath());\n\n return $this->save(false);\n }", "public function insert_image($datos)\n {\n if($datos['id'] !=\"\"){\n $datos['status'] = 0;\n $id = $datos['id'];\n unset($datos['id']);\n $data['status'] = 0;\n $result = $this->db->update('avatar', $data);\n if($result){\n $this->db->where('id', $id);\n $datos['status'] = 1;\n $result = $this->db->update('avatar', $datos);\n }\n }else{\n unset($datos['id']);\n $result = $this->db->insert(\"avatar\", $datos);\n }\n return $result;\n }", "function recibir_fichero(){\r\n\t$usuario = $_SESSION['user'];\r\n\r\n\t$dir_subida = 'usuarios/'.$usuario;\r\n\t$fichero_subido = $dir_subida . '/perfil.png';\r\n\r\n\tif(exif_imagetype($_FILES['imagen_perfil']['tmp_name']) != IMAGETYPE_PNG) {\r\n\t\tshow_msg(\"El archivo no es el adecuado\");\r\n\t}else if (move_uploaded_file($_FILES['imagen_perfil']['tmp_name'], $fichero_subido)){\r\n\t\t//El archivo se ha movido correctame\r\n\t}\r\n}", "public function ejecutarRedimension(){\r\n\t\t$this->Redimensionar();\r\n\r\n\t\tif ($this->tipo_imagen_original=='image/jpeg') {\r\n\t\t\timagejpeg($this->lienzoNuevaImagen,$this->carpeta_destino.$this->nuevo_nombre_imagen,$this->calidadImagen);\r\n\t\t}else if($this->tipo_imagen_original=='image/gif'){\r\n\t\t\timagegif($this->lienzoNuevaImagen,$this->carpeta_destino.$this->nuevo_nombre_imagen,$this->calidadImagen);\r\n\t\t}else if($this->tipo_imagen_original=='image/png'){\r\n\t\t\timagepng($this->lienzoNuevaImagen,$this->carpeta_destino.$this->nuevo_nombre_imagen,$this->calidadImagen);\r\n\t\t}else if($this->tipo_imagen_original=='image/wbmp'){\r\n\t\t\timagewbmp($this->lienzoNuevaImagen,$this->carpeta_destino.$this->nuevo_nombre_imagen,$this->calidadImagen);\r\n\t\t}else{\r\n\t\t\t$this->erroreEncontrados[]= \"Problemas para Ejecutar la Redimension\";\r\n\t\t}\r\n\t}", "public function getAbsolutePicture();", "function redim($ruta1,$ruta2,$ancho,$alto)\n {\n $datos=getimagesize ($ruta1);\n \n $ancho_orig = $datos[0]; # Anchura de la imagen original\n $alto_orig = $datos[1]; # Altura de la imagen original\n $tipo = $datos[2];\n \n if ($tipo==1){ # GIF\n if (function_exists(\"imagecreatefromgif\")){\n $img = imagecreatefromgif($ruta1);\n echo \"<script>\n\t\t\t\talert('entro a gif');\n\t\t\t\t</script>\";\n }else{\n return false;\n }\n }\n else if ($tipo==2){ # JPG\n if (function_exists(\"imagecreatefromjpeg\")){\n $img = imagecreatefromjpeg($ruta1);\n\n }else{\n return false;\n }\n }\n else if ($tipo==3){ # PNG\n if (function_exists(\"imagecreatefrompng\")){\n $img = imagecreatefrompng($ruta1);\n \n }else{\n return false;\n }\n }\n \n # Se calculan las nuevas dimensiones de la imagen\n if ($ancho_orig>$alto_orig)\n {\n $ancho_dest=$ancho;\n $alto_dest=($ancho_dest/$ancho_orig)*$alto_orig;\n }\n else\n {\n $alto_dest=$alto;\n $ancho_dest=($alto_dest/$alto_orig)*$ancho_orig;\n }\n\n // imagecreatetruecolor, solo estan en G.D. 2.0.1 con PHP 4.0.6+\n $img2=@imagecreatetruecolor($ancho_dest,$alto_dest) or $img2=imagecreate($ancho_dest,$alto_dest);\n\n // Redimensionar\n // imagecopyresampled, solo estan en G.D. 2.0.1 con PHP 4.0.6+\n @imagecopyresampled($img2,$img,0,0,0,0,$ancho_dest,$alto_dest,$ancho_orig,$alto_orig) or imagecopyresized($img2,$img,0,0,0,0,$ancho_dest,$alto_dest,$ancho_orig,$alto_orig);\n\n // Crear fichero nuevo, según extensión.\n if ($tipo==1) // GIF\n if (function_exists(\"imagegif\"))\n imagegif($img2, $ruta2);\n else\n return false;\n\n if ($tipo==2) // JPG\n if (function_exists(\"imagejpeg\"))\n imagejpeg($img2, $ruta2);\n else\n return false;\n\n if ($tipo==3) // PNG\n if (function_exists(\"imagepng\"))\n imagepng($img2, $ruta2);\n else\n return false;\n \n return true;\n }", "public function picture_upload($id,$folder,$rORe){\n if($_FILES[$id][\"name\"]==\"\"){\n return;\n }\n $validextensions = array(\"jpeg\", \"jpg\", \"png\");\n $temporary = explode(\".\", $_FILES[$id][\"name\"]);\n $file_extension = end($temporary);\n $targtid = \"\";\n if($folder==\"provider\")\n $targtid = $this->Register_model->getShopID($_POST[\"txtemail\"]);\n else if($folder==\"customer\")\n if ($rORe == \"r\")\n $targtid = $this->Register_model->getCustomerID($_POST[\"customeremail\"]);\n else\n $targtid = $this->Register_model->getCustomerID($_POST[\"custresetemail\"]);\n if ($_FILES[$id][\"error\"] > 0)\n {\n $alert = \"Return Code: \" . $_FILES[$id][\"error\"] . \"<br/><br/>\";\n echo $alert;\n return;\n }\n else\n {\n $name = $targtid.\"pic.\".$file_extension;\n if ($rORe == \"r\" && file_exists(\"img/\".$folder.\"/cover/\" . $name)) {\n $alert = $name . \" already exists. \";\n echo $alert;\n return;\n }\n else\n {\n $sourcePath = $_FILES[$id]['tmp_name']; // Storing source path of the file in a variable\n $targetPath = \"img/\".$folder.\"/cover/\" . $name; // Target path where file is to be stored\n move_uploaded_file($sourcePath,$targetPath);\n $_SESSION['picture']=\"img/\".$folder.\"/cover/\".$name;\n $alert=$this->Register_model->insert_picture($folder,$targtid,\"img/\".$folder.\"/cover/\".$name);\n echo $alert;\n return;\n //$alert=\"aafsdfdfdfgfdhd11111111111111111111111111111111111\";\n\n }\n }\n }", "function eliminarImagenArreglo($campo, $tabla, $llavePrimaria, $campoLlave)\n {\n $data=$this->analisisRiesgo->getNombreImagenTabla($campo, $tabla, $llavePrimaria, $campoLlave);\n //Delete el nombre de la imagen de la base de datos\n $borrar=Array($campo => null);\n $this->analisisRiesgo->deleteImagenTabla($borrar, $tabla, $llavePrimaria, $campoLlave);\n //Unlink el nombre de la imagen del servidor\n foreach($data as $row)\n {\n $nombreImagen=$row[$campo];\n unlink(\"assets/img/fotoAnalisisRiesgo/$campo/$nombreImagen\");\n echo \"OK\";\n }\n\n }", "public function reescalarPerfil(){\n// $directorio = '/files/fotos_perfil';\n $path = public_path().'/files/actividades/';\n $ficheros = scandir($path);\n// foreach ($ficheros as $file){\n//// $rutaComp = $path.$file;\n// echo $file.'<br>';\n//// $image = new ImageResize($rutaComp);\n//// $image->resizeToWidth(1200);\n//// $image->save($rutaComp);\n// }\n for($i=2;$i<count($ficheros);$i++){\n echo $ficheros[$i].'<br>';\n $rutaComp = $path.$ficheros[$i];\n $image = new ImageResize($rutaComp);\n $image->resizeToWidth(1200);\n $image->save($rutaComp);\n }\n\n }", "static function save($path) {\n \t\n\t\tif(exif_imagetype($_FILES['qqfile']['tmp_name']) == IMAGETYPE_JPEG){\n\t\t\t\n $exif = exif_read_data($_FILES['qqfile']['tmp_name']);\n $ort = isset($exif['Orientation']) ? $exif['Orientation'] : null ;\n $mustRotate = 0;\n $angle = 0;\n\t\t\t\n switch($ort)\n {\n case 3: // 180 rotate left\n $angle = 180;\n $mustRotate = 1;\n break;\n case 6: // 90 rotate right\n $angle = 90;\n $mustRotate = 1;\n break;\n case 8: // 90 rotate left\n $angle = -90;\n $mustRotate = 1;\n break;\n }\n if ($mustRotate){\n $imagick = new \\Imagick();\n $imagick->readImage(realpath($_FILES['qqfile']['tmp_name']));\n $imagick->rotateimage(new \\ImagickPixel(), $angle);\n $imagick->stripImage();\n $imagick->setImageFormat (\"jpeg\");\n if (!$imagick->writeImage($path)) {\n return false;\n }\n } else {\n\t\t\t\t\n if (!move_uploaded_file($_FILES['qqfile']['tmp_name'], $path))\n return false;\n }\n } else {\n\t\t\t\n \t\tif (!move_uploaded_file($_FILES['qqfile']['tmp_name'], $path)) {\n \treturn false;\n \t\t}\n }\n return true;\n }", "function change_picture($data, $pic) {\n $data = str_replace('data:image/png;base64', '', $data);\n $data = str_replace(' ', '+', $data);\n $data = base64_decode($data);\n $source_img = imagecreatefromstring($data);\n $file = '../users/'.$_SESSION['username'].'/'.$pic.'.jpg';\n imagejpeg($source_img, $file,75);\n imagedestroy($source_img);\n http_response_code(200);\n}", "function guardarFotoProduto($foto, $id_table)\n {\n $conn = new db_conect();\n $countfiles = count($foto['name']);\n\n for ($i = 0; $i < $countfiles; $i++) {\n /*------------------ Inserir imagem ------------------*/\n\n // Validando a imagem\n // Tamanho máximo do arquivo em bytes \n $maxDimW = 400;\n $maxDimH = 400;\n\n // Verifica se o arquivo é uma imagem através do match com os formatos possiveis\n $tipos = \"%\\.(jpg|jpeg|png|gif|bmp)$%i\";\n\n //Se a imagem não for dos tipos possiveis não é feito o cadastro e é informado o motivo\n if (preg_match($tipos, $foto[\"type\"][$i]) == 1) {\n return -1;\n }\n\n // Pega as dimensões da imagem \n //$dimensoes = getimagesize($imagem[\"tmp_name\"]);\n list($width, $height, $type, $attr) = getimagesize($foto['tmp_name'][$i]);\n\n if ($width > $maxDimW || $height > $maxDimH) {\n // =============== RENOMEACAO E CAMINHO ========================\n //Local a ser salvo\n $diretorio = \"../img/produto/\" . $id_table;\n // Cria a pasta se não existir\n if (!file_exists($diretorio)) {\n mkdir($diretorio, 0777, true);\n }\n // Nome da foto\n $nomeFoto = md5(uniqid(time())) . \".\" . \"jpeg\";\n //Local a ser salvo\n $diretorio = $diretorio . \"/\" . $nomeFoto;\n\n\n // ================ CONVERTER/SALVAR/RESIZE ===================\n // local temporario onde a foto está\n $path_tmp = $foto['tmp_name'][$i];\n // salva + uma vez o local temporario onde a foto está\n $foto_tmp = $foto['tmp_name'][$i];\n //Pega as dimensões da imagem \n $size = getimagesize($foto_tmp);\n // Faz a relação width/height p/achar a escala\n $ratio = $size[0] / $size[1];\n\n if ($ratio > 1) {\n $width = $maxDimW;\n $height = $maxDimH / $ratio;\n } else {\n $width = $maxDimW * $ratio;\n $height = $maxDimH;\n }\n\n $src = imagecreatefromstring(file_get_contents($foto_tmp));\n $dst = imagecreatetruecolor($width, $height);\n imagecopyresampled($dst, $src, 0, 0, 0, 0, $width, $height, $size[0], $size[1]);\n\n if (imagejpeg($dst, $diretorio, 70) === true) {\n //Realiza a inserçao das imagens no BD, na tabela img_prod\n if (!$conn->insertImg_produto($diretorio, $id_table)) {\n header(\"Location: ../controller/teste.php\");\n }\n } else {\n $_SESSION['msg'] = \"<div class='alert alert-danger'>Erro no envio das imagens!<br>Algumas imagens não foram enviadas, tente novamente.</div>\";\n }\n } else {\n //Local a ser salvo\n $diretorio = \"../img/produto/\" . $id_table;\n // Cria a pasta se não existir\n if (!file_exists($diretorio)) {\n mkdir($diretorio, 0777, true);\n }\n // Nome da foto\n $nomeFoto = md5(uniqid(time())) . \".\" . \"jpeg\";\n //Local a ser salvo\n $diretorio = $diretorio . \"/\" . $nomeFoto;\n\n move_uploaded_file($foto['tmp_name'][$i], $diretorio);\n\n //Realiza a inserçao das imagens no BD, na tabela img_prod\n if (!$conn->insertImg_produto($diretorio, $id_table)) {\n header(\"Location: ../controller/teste.php\");\n }\n }\n }\n\n /*------------------ Fim inserir imagem ------------------*/\n }", "static public function ctrActualizarMarca()\n {\n\n if (isset($_POST[\"editNomMarca\"])) {\n\n $tabla = \"marca\";\n $datos = array( \n \"nombre\" => $_POST[\"editNomMarca\"],\n \"idMarca\" => $_POST[\"editIdMarca\"]\n );\n\n $verificarDuplicado = ModeloMarca::mdlVerificarMarca($tabla, $datos, false);\n\n if ($verificarDuplicado) {\n return \"duplicado\";\n } else {\n /*=============================================\n VALIDAR LA EXISTENCIA DE LA IMAGEN\n =============================================*/\n if (isset($_FILES[\"editfotoMarca\"][\"tmp_name\"]) && $_FILES[\"editfotoMarca\"][\"tmp_name\"] != \"\") {\n list($ancho, $alto) = getimagesize($_FILES[\"editfotoMarca\"][\"tmp_name\"]);\n $nuevoAncho = 512;\n $nuevoAlto = 512;\n\n #Preguntar si existe una Imagen en la BD\n if (!empty($_POST[\"editFotoActualMarca\"])) {\n unlink($_POST[\"editFotoActualMarca\"]);\n }\n\n #Ruta Actual\n $directorioActual = \"views/img/Marcas/\" . $_POST[\"editNomActualMarca\"];\n\n #Valida si existe el directorio y con la imagen actual\n if (file_exists($directorioActual)) {\n #Ruta Nueva\n $directorioNuevo = \"views/img/Marcas/\" . $_POST[\"editNomMarca\"];\n rename($directorioActual, $directorioNuevo);\n } else {\n mkdir(\"views/img/Marcas/\" . $_POST[\"editNomMarca\"], 0755);\n }\n\n #Vincular foto de acuerdo al tipo de foto\n if ($_FILES[\"editfotoMarca\"][\"type\"] == \"image/jpeg\") {\n #Guardar la imagen JPG en el directorio\n $aleatario = mt_rand(100, 999);\n $ruta = \"views/img/Marcas/\" . $_POST[\"editNomMarca\"] . \"/\" . $aleatario . \".jpg\";\n\n $origen = imagecreatefromjpeg($_FILES[\"editfotoMarca\"][\"tmp_name\"]);\n\n $destino = imagecreatetruecolor($nuevoAncho, $nuevoAlto);\n\n imagecopyresized($destino, $origen, 0, 0, 0, 0, $nuevoAncho, $nuevoAlto, $ancho, $alto);\n\n imagejpeg($destino, $ruta);\n }\n\n if ($_FILES[\"editfotoMarca\"][\"type\"] == \"image/png\") {\n #Guardar la imagen PNG en el directorio\n $aleatario = mt_rand(100, 999);\n $ruta = \"views/img/Marcas/\" . $_POST[\"editNomMarca\"] . \"/\" . $aleatario . \".png\";\n\n $origen = imagecreatefrompng($_FILES[\"editfotoMarca\"][\"tmp_name\"]);\n\n $destino = imagecreatetruecolor($nuevoAncho, $nuevoAlto);\n\n imagecopyresized($destino, $origen, 0, 0, 0, 0, $nuevoAncho, $nuevoAlto, $ancho, $alto);\n\n imagepng($destino, $ruta);\n }\n } else { #En caso de no venir una imagen nueva\n #Asigna la ruta actual que tiene el producto\n $ruta = $_POST[\"editFotoActualMarca\"];\n if ($ruta) { #Evaluar si el producto tiene un imagen o no en la ruta actual\n #Separa la ruta\n $valoresRuta = explode(\"/\", $ruta);\n #Obtiene el nombre de la imagen\n $nombreImagen = $valoresRuta[4];\n #Asinga un nueva ruta cambiando el nombre de la carpeta por el nuevo nombre del producto\n $ruta = \"views/img/Marcas/\" . $_POST[\"editNomMarca\"] . \"/\" . $nombreImagen;\n } else {\n #Deja la ruta vacía en caso de que el producto no tenga una imagen asignada\n $ruta = \"\";\n }\n\n #Ruta Actual\n $directorioActual = \"views/img/Marcas/\" . $_POST[\"editNomActualMarca\"];\n #Ruta Nueva\n $directorioNuevo = \"views/img/Marcas/\" . $_POST[\"editNomMarca\"];\n rename($directorioActual, $directorioNuevo);\n }\n\n $datos += [\"foto\" => $ruta];\n\n $actualizar = ModeloMarca::mdlActualizarMarca($tabla, $datos);\n\n return $actualizar;\n }\n }\n }", "function image_return_blob($im)\n{\n $return = $im->getImageBlob();\n $im->clear();\n $im->destroy();\n return $return;\n}", "function eliminarImagenCarpeta($campo, $tabla, $idAsignacion, $carpeta)\n {\n $data=$this->analisisRiesgo->getNombreImagen($campo, $tabla, $idAsignacion);\n //Delete el nombre de la imagen de la base de datos\n $borrar=Array($campo => null);\n $this->analisisRiesgo->deleteImagen($borrar, $tabla, $idAsignacion);\n //Unlink el nombre de la imagen del servidor\n foreach($data as $row)\n {\n $nombreImagen=$row[$campo];\n unlink(\"assets/img/fotoAnalisisRiesgo/$carpeta/$nombreImagen\");\n echo \"OK\";\n }\n\n }", "public function reseize($path, $source, $width, $height, $nama_ori){\n \t//$source = sumber gambar yang akan di reseize\n $config['image_library'] = 'gd2';\n $config['source_image'] = $source;\n $config['new_image'] = $path.$width.'_'.$nama_ori;\n $config['overwrite'] = TRUE;\n $config['create_thumb'] = false;\n $config['width'] = $width;\n if($height>0){\n \t$config['maintain_ratio'] = false;\n \t$config['height'] = $height;\n }else{\n \t$config['maintain_ratio'] = true;\n }\n\n $this->image_lib->initialize($config);\n\n $this->image_lib->resize();\n $this->image_lib->clear();\n }", "function borrarImagen($idImagen, $ruta){\n $conn=connexioBD();\n $sql=\"DELETE FROM imatges WHERE id='$idImagen'\";\n if (!$resultado =$conn->query($sql)){\n die(\"Error al comprobar datos\".$conn->error);\n }\n unlink($ruta);\n $conn->close();\n}", "public function cambiarFoto(Request $request){\n Validator::make($request->all(), [\n 'foto' => 'required|image|max:1024',\n ])->validate();\n\n //obtenemos el campo file definido en el formulario\n $foto = $request->file('foto');\n\n //obtenemos el nombre del archivo\n $nombre = time().$foto->getClientOriginalName();\n\n //obtenemos el usuario a editar\n $usuario = Usuario::find(Auth::user()->id);\n\n // verificamos que el usuario no tenga una imagen ya guardada.\n if ($usuario->foto == 'usuario.png') {\n\n //si la imagen es por defecto, la cambiamos.\n }else{\n\n //Si ya tenia una imagen personalizada, primero borramos esa imagen.\n \\Storage::disk('usuarios')->delete($usuario->foto);\n }\n $usuario->foto = $nombre;\n $usuario->save();\n\n //indicamos que queremos guardar un nuevo archivo en el disco local\n \\Storage::disk('usuarios')->put($nombre, \\File::get($foto));\n\n return redirect('editar-usuario')->with('correcto', 'SU FOTO FUE ACTUALIZADA.');\n }", "public function ejecutar(){\r\n\t\tmove_uploaded_file($this->carpeta_temporal,$this->carpeta_destino.$this->nuevo_nombre_imagen);\r\n\t\tchmod($this->carpeta_destino.$this->nuevo_nombre_imagen, 0777);\r\n\t\techo $this->carpeta_temporal;\r\n\t\techo \"<br>\";\r\n\t\t$this->carpeta_donde_esta_imagen=$this->carpeta_destino.$this->nuevo_nombre_imagen;\r\n\t\techo $this->carpeta_donde_esta_imagen;\r\n\t}", "function imageAllReset();", "function imagenes_por_palabra_y_tipo_imagen($id_palabra,$registrado,$estado,$id_tipo_imagen) {\n\t\n\t\tif ($registrado==false) {\n\t\t\t$mostrar_registradas=\"AND imagenes.registrado=0\";\n\t\t}\n\t\t\n\t\tif ($estado !='' && $estado < 4 && $estado > 0) {\n\t\t\t$sql_estado='AND imagenes.estado='.$estado.'';\n\t\t} elseif ($estado='all') {\n\t\t\t$sql_estado='';\n\t\t} else {\n\t\t\t$sql_estado='AND imagenes.estado=1';\n\t\t}\n\t\t\n\t\tif ($id_tipo_imagen==99) { $sql_tipo_imagen=''; } \n\t\telse { $sql_tipo_imagen='AND imagenes.id_tipo_imagen='.$id_tipo_imagen.''; }\n\t\t\n\t\t$query = \"SELECT palabra_imagen.*,\n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename\n\t\tFROM palabra_imagen, imagenes\n\t\tWHERE palabra_imagen.id_palabra='$id_palabra'\n\t\tAND palabra_imagen.id_imagen=imagenes.id_imagen\n\t\t$sql_tipo_imagen\n\t\t$mostrar_registradas\n\t\t$sql_estado\";\n\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\t\n\t\t$numrows = mysql_num_rows($result);\n\t\tmysql_close($connection);\n\t\t// COMPROBAMOS QUE HAYA RESULTADOS\n\t\t// SI EL NUMERO DE RESULTADOS ES 0 SIGNIFICA QUE NO HAY REGISTROS CON ESOS DATOS\n\t\tif ($numrows == 0) {\n\t\t\treturn $result;\n\t\t}\n\t\telse {\n\t\t\treturn $result;\n\t\t}\n\t}", "function UploadSlideshow($nama_file_unik, $folder){\n $file_upload = $folder . $nama_file_unik;\n\n // Simpan gambar dalam ukuran aslinya\n move_uploaded_file($_FILES[\"gb_slideshow\"][\"tmp_name\"], $file_upload);\n \n // Identitas file asli\n $gbr_asli = imagecreatefromjpeg($file_upload);\n $lebar = imageSX($gbr_asli);\n $tinggi \t= imageSY($gbr_asli);\n\n // Simpan dalam versi thumbnail\n $thumb_lebar = 180;\n $thumb_tinggi = 180;\n\n // Proses perubahan dimensi ukuran\n $gbr_thumb = imagecreatetruecolor($thumb_lebar,$thumb_tinggi);\n imagecopyresampled($gbr_thumb, $gbr_asli, 0, 0, 0, 0, $thumb_lebar, $thumb_tinggi, $lebar, $tinggi);\n\n // Simpan gambar thumbnail\n imagejpeg($gbr_thumb,$folder . \"small_\" . $nama_file_unik);\n \n // Hapus gambar di memori komputer\n imagedestroy($gbr_asli);\n imagedestroy($gbr_thumb);\n}" ]
[ "0.6707583", "0.65699774", "0.65260786", "0.64860356", "0.6461426", "0.6355852", "0.6242718", "0.6101264", "0.6030998", "0.5993907", "0.59734964", "0.5955067", "0.5953109", "0.5947988", "0.59456724", "0.593619", "0.59319764", "0.59277403", "0.59179574", "0.59158933", "0.59057504", "0.5857757", "0.58418226", "0.5826479", "0.5813487", "0.58025694", "0.5786641", "0.5751285", "0.5751157", "0.5743128", "0.5738714", "0.5723123", "0.5692508", "0.56890136", "0.56890136", "0.56879675", "0.5667934", "0.5664311", "0.56564665", "0.5640435", "0.56342596", "0.56301576", "0.56284255", "0.5614762", "0.560801", "0.55964845", "0.5586681", "0.5586324", "0.5568489", "0.5568489", "0.5568489", "0.5568489", "0.55643135", "0.5561705", "0.555544", "0.5553061", "0.55475545", "0.55362016", "0.5533509", "0.5529502", "0.5528535", "0.5527465", "0.55270445", "0.55181", "0.55152863", "0.54979706", "0.5493461", "0.54905516", "0.54869676", "0.54810774", "0.54808587", "0.54804903", "0.5476924", "0.5472291", "0.54681396", "0.5461622", "0.54467267", "0.5446154", "0.54430264", "0.5438583", "0.5437432", "0.5423568", "0.5422937", "0.54228973", "0.5416848", "0.5414722", "0.5412229", "0.5402364", "0.5402308", "0.5400999", "0.53933233", "0.5393255", "0.5387048", "0.53866684", "0.53860265", "0.5385897", "0.5385874", "0.5385001", "0.5379863", "0.53775704" ]
0.5449092
76
Funcion para extraer imagenes de rastreo
public function getImagen($id_cotizacion) { $id_flete = new static; $id_flete = DB::select('SELECT f.id_flete FROM ldci.tb_flete AS f WHERE f.id_cotizacion = ?', [$id_cotizacion]); $query = new static; $query = DB::select('select i.nombre,i.url from ldci.tb_detalle_imagen det join ldci.tb_imagen i on det.id_imagen=i.id_imagen where id_tabla=? and id_tipo=2', [$id_flete[0]->id_flete]); return $query; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function redimensionne_image_petit($photo)\n{\n\tglobal $photo_redim_taille_max_largeur, $photo_redim_taille_max_hauteur;\n\n\tif((!preg_match(\"/^[0-9]{1,}$/\", $photo_redim_taille_max_largeur))||($photo_redim_taille_max_largeur<=0)) {\n\t\t$photo_redim_taille_max_largeur=35;\n\t}\n\n\tif((!preg_match(\"/^[0-9]{1,}$/\", $photo_redim_taille_max_hauteur))||($photo_redim_taille_max_hauteur<=0)) {\n\t\t$photo_redim_taille_max_hauteur=35;\n\t}\n\n\t// prendre les informations sur l'image\n\t$info_image = getimagesize($photo);\n\t// largeur et hauteur de l'image d'origine\n\t$largeur = $info_image[0];\n\t$hauteur = $info_image[1];\n\t// largeur et/ou hauteur maximum à afficher\n\t//$taille_max_largeur = 35;\n\t//$taille_max_hauteur = 35;\n\n\t// calcule le ratio de redimensionnement\n\t$ratio_l = $largeur / $photo_redim_taille_max_largeur;\n\t$ratio_h = $hauteur / $photo_redim_taille_max_hauteur;\n\t$ratio = ($ratio_l > $ratio_h)?$ratio_l:$ratio_h;\n\n\t// définit largeur et hauteur pour la nouvelle image\n\t$nouvelle_largeur = $largeur / $ratio;\n\t$nouvelle_hauteur = $hauteur / $ratio;\n\n\t// on renvoit la largeur et la hauteur\n\treturn array($nouvelle_largeur, $nouvelle_hauteur);\n}", "function redimensionne_image($photo)\n{\n\t$info_image = getimagesize($photo);\n\t// largeur et hauteur de l'image d'origine\n\t$largeur = $info_image[0];\n\t$hauteur = $info_image[1];\n\t// largeur et/ou hauteur maximum à afficher\n\tif(basename($_SERVER['PHP_SELF'],\".php\") === \"trombi_impr\") {\n\t\t// si pour impression\n\t\t$taille_max_largeur = getSettingValue(\"l_max_imp_trombinoscopes\");\n\t\t$taille_max_hauteur = getSettingValue(\"h_max_imp_trombinoscopes\");\n\t} else {\n\t// si pour l'affichage écran\n\t\t$taille_max_largeur = getSettingValue(\"l_max_aff_trombinoscopes\");\n\t\t$taille_max_hauteur = getSettingValue(\"h_max_aff_trombinoscopes\");\n\t}\n\n\t// calcule le ratio de redimensionnement\n\t$ratio_l = $largeur / $taille_max_largeur;\n\t$ratio_h = $hauteur / $taille_max_hauteur;\n\t$ratio = ($ratio_l > $ratio_h)?$ratio_l:$ratio_h;\n\n\t// définit largeur et hauteur pour la nouvelle image\n\t$nouvelle_largeur = $largeur / $ratio;\n\t$nouvelle_hauteur = $hauteur / $ratio;\n\n\treturn array($nouvelle_largeur, $nouvelle_hauteur);\n}", "function subir_imagenes($tipo,$imagen,$descripcion,$ruta,$size)\n\t{\n\t\t\t//return \"La imagen\".$tipo.\" No se subio\";\n\t\t\tif(strstr($tipo,\"image\"))\n\t\t\t{\n\n\t\t\t\tif(strstr($tipo,\"jpeg\"))\n\t\t\t\t\t$extension=\".jpg\";\n\t\t\t\telse if(strstr($tipo,\"gif\"))\n\t\t\t\t\t$extension=\".gif\";\n\t\t\t\telse if(strstr($tipo,\"png\"))\n\t\t\t\t\t$extension=\".png\";\n\t\t\t\t//para saber si la imagen tiene el ancho correcto es de 420px\n\t\t\t\t$tam_img=getimagesize($imagen);\n\t\t\t\t$ancho_img=$tam_img[0];\n\t\t\t\t$alto_img =$tam_img[1];\n\t\t\t\t$ancho_img_deseado=$size;\n\n\t\t\t\t//sii la imagen es maor en su ancho a 420px reajusto su tamaño\n\t\t\t\t\tif($ancho_img > $ancho_img_deseado)\n\t\t\t\t\t{\n\t\t\t\t\t\t//reajustamos\n\t\t\t\t\t\t//por una regla de tres obtengo el alto de la imagen de manera \n\t\t\t\t\t\t//proporciaonal el ancho nuevo que sera 420\n\t\t\t\t\t\t$nuevo_ancho_img = $ancho_img_deseado;\n\t\t\t\t\t\t$nuevo_alto_img=($alto_img*$nuevo_ancho_img)/$ancho_img;\n\t\t\t\t\t\t//CREO UNA IMAGEN EN COLOR REAL CON LA NUEVAS DIMENSIONES\n\t\t\t\t\t\n\t\t\t\t\t\t$img_reajustada=imagecreatetruecolor($nuevo_ancho_img, $nuevo_alto_img);\n\t\t\t\t\t\t//CREO UNA IMAGEN BASADA EN LA ORIGINAL DEPENDIENDO DE SU EXTENSION ES EL TIPO QUE CREARE\n\t\t\t\t\t\tswitch ($extension) {\n\t\t\t\t\t\t\tcase '.jpg':\n\t\t\t\t\t\t\t\t$img_original=imagecreatefromjpeg($imagen);\n\t\t\t\t\t\t\t\t//REAJUSTO LA IMAGEN NUEVA CON RESPETO ALA ORIGINAL \n\t\t\t\t\t\t\t\timagecopyresampled($img_reajustada, $img_original, 0, 0, 0, 0, $nuevo_ancho_img, $nuevo_alto_img, \n\t\t\t\t\t\t\t\t\t$ancho_img, $alto_img);\n\t\t\t\t\t\t\t\t//Guardo la imagen reescalada en el servidor \n\t\t\t\t\t\t\t\t$nombre_img_ext=$ruta.$descripcion.$extension;\n\t\t\t\t\t\t\t\t$nombre_img=$ruta.$descripcion;\n\t\t\t\t\t\t\t\timagejpeg($img_reajustada,$nombre_img_ext,100);\n\t\t\t\t\t\t\t\t//ejecuto la funcion para borrar posibles imagenes dobles del perfil\n\t\t\t\t\t\t\t\tborrar_imagenes($nombre_img,\".jpg\");\n\t\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t\tcase '.gif':\n\t\t\t\t\t\t\t\t$img_original=imagecreatefromgif($imagen);\n\t\t\t\t\t\t\t\t//REAJUSTO LA IMAGEN NUEVA CON RESPETO ALA ORIGINAL \n\t\t\t\t\t\t\t\timagecopyresampled($img_reajustada, $img_original, 0, 0, 0, 0, $nuevo_ancho_img, $nuevo_alto_img, \n\t\t\t\t\t\t\t\t\t$ancho_img, $alto_img);\n\t\t\t\t\t\t\t\t//Guardo la imagen reescalada en el servidor \n\t\t\t\t\t\t\t\t$nombre_img_ext=$ruta.$descripcion.$extension;\n\t\t\t\t\t\t\t\t$nombre_img=$ruta.$descripcion;\n\t\t\t\t\t\t\t\timagegif($img_reajustada,$nombre_img_ext,100);\n\t\t\t\t\t\t\t\t//ejecuto la funcion para borrar posibles imagenes dobles del perfil\n\t\t\t\t\t\t\t\tborrar_imagenes($nombre_img,\".gif\");\n\t\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t\tcase '.png':\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$img_original=imagecreatefrompng($imagen);\n\t\t\t\t\t\t\t\t//REAJUSTO LA IMAGEN NUEVA CON RESPETO ALA ORIGINAL \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\timagesavealpha($img_reajustada, true);\n\t\t\t\t\t\t\t\timagealphablending($img_reajustada, false);\t\n\t\t\t\t\t\t\t\timagecopyresampled($img_reajustada, $img_original, 0, 0, 0, 0, $nuevo_ancho_img, $nuevo_alto_img, \n\t\t\t\t\t\t\t\t$ancho_img, $alto_img);\n\t\t\t\t\t\t\t\timagecolortransparent($img_reajustada);\n\t\t\t\t\t\t\t\t//Guardo la imagen reescalada en el servidor \n\t\t\t\t\t\t\t\t$nombre_img_ext=$ruta.$descripcion.$extension;\n\t\t\t\t\t\t\t\t$nombre_img=$ruta.$descripcion;\n\t\t\t\t\t\t\t\timagepng($img_reajustada,$nombre_img_ext,0);\n\t\t\t\t\t\t\t\t//ejecuto la funcion para borrar posibles imagenes dobles del perfil\n\t\t\t\t\t\t\t\tborrar_imagenes($nombre_img,\".png\");\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\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\t//no se reajusta y se sube\n\t\t\t\t\t\t$destino=$ruta.$descripcion.$extension;\n\n\t\t\t\t\t\t//Se sube la foto\n\t\t\t\t\t\tmove_uploaded_file($imagen,$destino) /*or die(\"No se pudo subir la imagen\")*/;\n\n\t\t\t\t\t\t//ejecuto la funcion para borrar posibles imagenes dobles para el perfil\n\t\t\t\t\t\t$nombre_img=$ruta.$descripcion;\n\t\t\t\t\t\tborrar_imagenes($nombre_img,$extension);\n\t\t\t\t\t}\n\t\t\t\t\t//Asigno el nombre que el que se guardara en la base de datos\n\t\t\t\t\t$imagen=$descripcion.$extension;\n\t\t\t\t\treturn $imagen;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\treturn \"La imagen\".$imagen.\" No se subio\";\n\t\t\t}\n\n\t}", "private function recortarImagen()\n\t{\n\t\t$ImgTemporal=\"temporal_clase_Imagen.\".strtolower($this->extencion);\n\n\t\t$CoefAncho\t\t= $this->propiedadesImagen[0]/$this->anchoDestino;\n\t\t$CoefAlto\t\t= $this->propiedadesImagen[1]/$this->altoDestino;\n\t\t$Coeficiente=0;\n\t\tif ($CoefAncho>1 && $CoefAlto>1)\n\t\t{ if($CoefAncho>$CoefAlto){ $Coeficiente=$CoefAlto; } else {$Coeficiente=$CoefAncho;} }\n\n\t\tif ($Coeficiente!=0)\n\t\t{\n\t\t\t$anchoTmp\t= ceil($this->propiedadesImagen[0]/$Coeficiente);\n\t\t\t$altoTmp\t= ceil($this->propiedadesImagen[1]/$Coeficiente);\n\n\t\t\t$ImgMediana = imagecreatetruecolor($anchoTmp,$altoTmp);\n\t\t\timagecopyresampled($ImgMediana,$this->punteroImagen,0,0,0,0,$anchoTmp,$altoTmp,$this->propiedadesImagen[0],$this->propiedadesImagen[1]);\n\t\t\t\n\t\t\t// Tengo que desagregar la funcion de image para crear para reUtilizarla\n\t\t\t//imagejpeg($ImgMediana,$ImgTemporal,97);\n\t\t\t$this->crearArchivoDeImagen($ImgMediana,$ImgTemporal);\n\t\t}\n\n\t\t$fila\t\t\t= floor($this->recorte['centrado']/$this->recorte['columnas']);\n\t\t$columna\t\t= $this->recorte['centrado'] - ($fila*$this->recorte[\"columnas\"]);\n\t\t\n\t\t$centroX \t= floor(($anchoTmp / $this->recorte[\"columnas\"])/2)+$columna*floor($anchoTmp / $this->recorte[\"columnas\"]);\n\t\t$centroY \t= floor(($altoTmp / $this->recorte[\"filas\"])/2)+$fila*floor($altoTmp / $this->recorte[\"filas\"]);\n\n\t\t$centroX\t-= floor($this->anchoDestino/2);\n\t\t$centroY \t-= floor($this->altoDestino/2);\n\n\t\tif ($centroX<0) {$centroX = 0;}\n\t\tif ($centroY<0) {$centroY = 0;}\n\n\t\tif (($centroX+$this->anchoDestino)>$anchoTmp) {$centroX = $anchoTmp-$this->anchoDestino;}\n\t\tif (($centroY+$this->altoDestino)>$altoTmp) {$centroY = $altoTmp-$this->altoDestino;}\n\n\t\t$ImgRecortada = imagecreatetruecolor($this->anchoDestino,$this->altoDestino);\n\t\timagecopymerge ( $ImgRecortada,$ImgMediana,0,0,$centroX, $centroY, $this->anchoDestino, $this->altoDestino,100);\n\n\t\t//imagejpeg($ImgRecortada,$this->imagenDestino,97);\n\t\t$this->crearArchivoDeImagen($ImgRecortada,$this->imagenDestino);\n\t\timagedestroy($ImgRecortada);\n\t\tunlink($ImgTemporal);\n\t}", "public function image();", "public function image();", "public function rutaImageFly()\n {\n\n // primero vemos a que galeria pertenece\n $galeria = ORM::factory( 'Galeria', $this->galeria );\n\n return( $galeria->rutaImageFly().$this->imagen );\n\n }", "private function generateThumbnailImagick(){\n\t}", "function redimensionne_logo($photo, $L_max, $H_max)\n{\n\t// prendre les informations sur l'image\n\t$info_image = getimagesize($photo);\n\t// largeur et hauteur de l'image d'origine\n\t$largeur = $info_image[0];\n\t$hauteur = $info_image[1];\n\t// largeur et/ou hauteur maximum à afficher en pixel\n\t$taille_max_largeur = $L_max;\n\t$taille_max_hauteur = $H_max;\n\n\t// calcule le ratio de redimensionnement\n\t$ratio_l = $largeur / $taille_max_largeur;\n\t$ratio_h = $hauteur / $taille_max_hauteur;\n\t$ratio = ($ratio_l > $ratio_h)?$ratio_l:$ratio_h;\n\n\t// définit largeur et hauteur pour la nouvelle image\n\t$nouvelle_largeur = $largeur / $ratio;\n\t$nouvelle_hauteur = $hauteur / $ratio;\n\n\t// des Pixels vers Millimetres\n\t$nouvelle_largeur = $nouvelle_largeur / 2.8346;\n\t$nouvelle_hauteur = $nouvelle_hauteur / 2.8346;\n\n\treturn array($nouvelle_largeur, $nouvelle_hauteur);\n}", "function redim($ruta1,$ruta2,$ancho,$alto)\n {\n $datos=getimagesize ($ruta1);\n \n $ancho_orig = $datos[0]; # Anchura de la imagen original\n $alto_orig = $datos[1]; # Altura de la imagen original\n $tipo = $datos[2];\n \n if ($tipo==1){ # GIF\n if (function_exists(\"imagecreatefromgif\")){\n $img = imagecreatefromgif($ruta1);\n echo \"<script>\n\t\t\t\talert('entro a gif');\n\t\t\t\t</script>\";\n }else{\n return false;\n }\n }\n else if ($tipo==2){ # JPG\n if (function_exists(\"imagecreatefromjpeg\")){\n $img = imagecreatefromjpeg($ruta1);\n\n }else{\n return false;\n }\n }\n else if ($tipo==3){ # PNG\n if (function_exists(\"imagecreatefrompng\")){\n $img = imagecreatefrompng($ruta1);\n \n }else{\n return false;\n }\n }\n \n # Se calculan las nuevas dimensiones de la imagen\n if ($ancho_orig>$alto_orig)\n {\n $ancho_dest=$ancho;\n $alto_dest=($ancho_dest/$ancho_orig)*$alto_orig;\n }\n else\n {\n $alto_dest=$alto;\n $ancho_dest=($alto_dest/$alto_orig)*$ancho_orig;\n }\n\n // imagecreatetruecolor, solo estan en G.D. 2.0.1 con PHP 4.0.6+\n $img2=@imagecreatetruecolor($ancho_dest,$alto_dest) or $img2=imagecreate($ancho_dest,$alto_dest);\n\n // Redimensionar\n // imagecopyresampled, solo estan en G.D. 2.0.1 con PHP 4.0.6+\n @imagecopyresampled($img2,$img,0,0,0,0,$ancho_dest,$alto_dest,$ancho_orig,$alto_orig) or imagecopyresized($img2,$img,0,0,0,0,$ancho_dest,$alto_dest,$ancho_orig,$alto_orig);\n\n // Crear fichero nuevo, según extensión.\n if ($tipo==1) // GIF\n if (function_exists(\"imagegif\"))\n imagegif($img2, $ruta2);\n else\n return false;\n\n if ($tipo==2) // JPG\n if (function_exists(\"imagejpeg\"))\n imagejpeg($img2, $ruta2);\n else\n return false;\n\n if ($tipo==3) // PNG\n if (function_exists(\"imagepng\"))\n imagepng($img2, $ruta2);\n else\n return false;\n \n return true;\n }", "public function getImage();", "public function getImage();", "public function getImage();", "public function getImage();", "public static function thumbnail(){\n\n}", "public function getImageArray();", "function cria_miniatura($img, $original, $miniatura, $largura_miniatura, $altura_miniatura ) {\r\n\t\tif($img['type'] == \"image/jpeg\"){\r\n\t\t\t$imagem_original = imagecreatefromjpeg($original);\r\n\t\t}\r\n\t\telse if($img['type'] == \"image/png\"){\r\n\t\t\t$imagem_original = imagecreatefrompng($original);\r\n\t\t}\r\n\t\telse if($img['type'] == \"image/gif\"){\t\r\n\t\t\t$imagem_original = imagecreatefromgif($original);\r\n\t }\r\n\t\t\r\n\t\t/* Calcula a proporção com base na largura */\r\n\t\t$largura_original = imagesx($imagem_original);\r\n\t $altura_original = imagesy($imagem_original);\r\n\t\t\r\n\t\tif(empty($largura_miniatura) and !empty($altura_miniatura)){\r\n\t\t\t$largura_miniatura = round(($largura_original * $altura_miniatura) / $altura_original); \r\n\t\t}\r\n\t\telse if(!empty($largura_miniatura) and empty($altura_miniatura)){\r\n\t\t\t$altura_miniatura = round(($largura_miniatura / $largura_original) * $altura_original);\r\n\t\t}\r\n\t\telse{\r\n\t\t\t$largura_miniatura = $largura_original;\r\n\t\t\t$altura_miniatura = $altura_original;\r\n\t\t}\r\n\t\t\r\n\t $imagem_miniatura = imagecreatetruecolor($largura_miniatura, $altura_miniatura);\r\n\t imagecopyresampled($imagem_miniatura, $imagem_original, 0, 0, 0, 0, $largura_miniatura, $altura_miniatura, $largura_original, $altura_original);\r\n\t\t\r\n\t\t/* Cria a miniatura */\r\n\t if($img['type'] == \"image/jpeg\"){\r\n\t\t\timagejpeg($imagem_miniatura, $miniatura);\r\n\t\t}\r\n\t\telse if($img['type'] == \"image/png\"){\r\n\t\t\timagepng($imagem_miniatura, $miniatura);\r\n\t\t}\r\n\t\telse if($img['type'] == \"image/gif\"){\r\n\t\t\timagegif($imagem_miniatura, $miniatura);\r\n\t\t}\r\n\t}", "function marcadeagua($img_original, $img_marcadeagua, $img_nueva, $calidad)\n{\n $info_original = getimagesize($img_original);\n $anchura_original = $info_original[0];\n $altura_original = $info_original[1];\n // obtener datos de la \"marca de agua\" \n $info_marcadeagua = getimagesize($img_marcadeagua);\n $anchura_marcadeagua = $info_marcadeagua[0];\n $altura_marcadeagua = $info_marcadeagua[1];\n // calcular la posición donde debe copiarse la \"marca de agua\" en la fotografia \n $horizmargen = ($anchura_original - $anchura_marcadeagua)/2;\n $vertmargen = ($altura_original - $altura_marcadeagua)/2;\n // crear imagen desde el original \n $original = ImageCreateFromJPEG($img_original);\n ImageAlphaBlending($original, true);\n // crear nueva imagen desde la marca de agua \n $marcadeagua = ImageCreateFromPNG($img_marcadeagua);\n // copiar la \"marca de agua\" en la fotografia \n ImageCopy($original, $marcadeagua, $horizmargen, $vertmargen, 0, 0, $anchura_marcadeagua, $altura_marcadeagua);\n // guardar la nueva imagen \n ImageJPEG($original, $img_nueva, $calidad);\n // cerrar las imágenes \n ImageDestroy($original);\n ImageDestroy($marcadeagua);\n}", "function getImage();", "public function createImage2(){\n $this->createCircle(100, 100, 50, 50, 0, 360);\n $this->createCircle(400, 100, 50, 50, 0, 360);\n $this->createCircle(110, 200, 50, 50, 0, 360);\n $this->createCircle(250, 300, 50, 50, 0, 360);\n $this->createCircle(390, 200, 50, 50, 0, 360);\n $this->createLine(125, 100, 375, 100);\n $this->createLine(100, 125, 100, 175);\n $this->createLine(400, 125, 400, 175);\n $this->createLine(125, 220, 225, 300);\n $this->createLine(275, 300, 375, 220);\n $this->generateImage();\n }", "function thumb($img, $x = 9999, $y = 9999, $rw = false, $menor = true){\r\n\t\tif ($img == \"\") {return;}\r\n\t\t$ext = explode(\".\", $img); // ext img\r\n\t\t\r\n\t\t\r\n\t\t// busca a imagem\r\n\t\tif ($ext[1] == \"jpg\"){\r\n\t\t\t$im = imagecreatefromjpeg($img);\r\n\t\t}else if ($ext[1] == \"gif\"){\r\n\t\t\t$im = imagecreatefromgif($img);\r\n\t\t}else if ($ext[1] == \"png\"){\r\n\t\t\t$im = imagecreatefrompng($img);\r\n\t\t}else {\r\n\t\t\t$im = imagecreatefromjpeg($img);\r\n\t\t}\r\n\t\t\r\n\t\tif ((is_file($ext[0].\"_\".$x.\"x\".$y.\".\".$ext[1]))&&(!$rw)) {return;}\r\n\t\t\r\n\t\t// largura e altura\r\n\t\t$ix = imagesx($im);\r\n\t\t$iy = imagesy($im);\r\n\t\r\n\t\t// escala\r\n\t\tif ($menor)\r\n\t\t\t$is = min(($x/$ix),($y/$iy));\r\n\t\telse\r\n\t\t\t$is = max(($x/$ix),($y/$iy));\r\n\t\t\r\n\t\t// novas altura e largura\r\n\t\t$inx = floor($ix * $is);\r\n\t\t$iny = floor($iy * $is);\r\n\t\t\r\n\t\t// cria a img final\r\n\t\t$n_img = imagecreatetruecolor($inx, $iny);\r\n\t\t\r\n\t\t// copia a nova imagem\r\n\t\timagecopyresampled($n_img, $im, 0, 0, 0, 0, $inx, $iny, $ix, $iy);\r\n\t\t\r\n\t\t// imprime a nova imagem\r\n\t\timagepng($n_img,$ext[0].\"_\".$x.\"x\".$y.\".\".$ext[1]);\r\n\t\t\r\n\t\t// libera memória\r\n\t\timagedestroy($im);\r\n\t\timagedestroy($n_img);\r\n\t}", "public function carregar_imagem()\n\t{\n\t\t$id = $this->input->get(\"id_aluno\");\n\t\t$dados[\"aluno\"] = $this->Aluno_Model->retorna_aluno($id);\t\n\t\t//\tCARREGA A VIZUALIZACAO DA VIEW LISTA\n\t\t$this->load->view('layout/cabecalho_secretaria');\n\t\t$this->load->view('layout/menu_lateral_secretaria');\n\t\t$this->load->view('conteudo/_secretaria/_aluno/fotografia', $dados);\n\t\t$this->load->view('layout/rodape');\n\t\t$this->load->view('layout/script');\n\t}", "public function imagenes() {\n return $imagenes = ImagenesProducto::where('fk_producto',$this->codigo) -> orderBy('featured','desc') -> get(); //para mostrar las imagenes ordenadas por las destacada\n }", "function createThumbImg($aprox)\n {\n // imagem de origem\n $img_origem= $this->createImg();\n\n // obtm as dimenses da imagem original\n $origem_x= ImagesX($img_origem);\n $origem_y= ImagesY($img_origem);\n \n // obtm as dimenses do thumbnail\n $vetor= $this->getThumbXY($origem_x, $origem_y, $aprox);\n $x= $vetor['x'];\n $y= $vetor['y'];\n \n // cria a imagem do thumbnail\n $img_final = ImageCreateTrueColor($x, $y);\n ImageCopyResampled($img_final, $img_origem, 0, 0, 0, 0, $x+1, $y+1, $origem_x, $origem_y);\n // o arquivo gravado\n if ($this->ext == \"png\")\n imagepng($img_final, $this->destino);\n\t\telseif ($this->ext == \"gif\")\n imagegif($img_final, $this->destino);\n elseif ($this->ext == \"jpg\")\n imagejpeg($img_final, $this->destino);\n\t\t\telseif ($this->ext == \"bmp\")\n imagewbmp($img_final, $this->destino);\n }", "public function setImages(){\n\t\t// imagen destacada\n $this->thumbail_img = $this->getThumbnailImg();\n // imagenes\n $this->images = $this->getImages();\n\t}", "function main_image_alma() {\n\talma_get_first_image( 'portfolio-thumbnail' );\n}", "function frameImage($inside = 0, $imagesPath = array(), $imgHeight = 600, $imagesWidth = array(), $imagesAngles = array(), $poleColor = null, $poleWidth = 1, $poleHeight = 1)\n{ \n $rowImagick = new Imagick();\n \n foreach($imagesPath as $imgIndex => $imgPath) {\n $imagick = new Imagick(realpath($imgPath));\n\n $imagick->getImageGeometry();\n $imgGeo = $imagick->getImageGeometry();\n $imgOrgWidth = $imgGeo['width'];\n $imgOrgHeight = $imgGeo['height'];\n $imgWidth = $imagesWidth[$imgIndex];\n\n if(isset($imagesAngles[$imgIndex])) {\n $angleX = ($imagesAngles[$imgIndex]) == 90 ? - ($imagesAngles[$imgIndex] - 10) : - $imagesAngles[$imgIndex];\n } else {\n $angleX = -100;\n }\n $angleY = 0;\n $thetX = deg2rad ($angleX);\n $thetY = deg2rad ($angleY);\n\n $s_x1y1 = array(0, 0); // LEFT BOTTOM\n $s_x2y1 = array($imgWidth, 0); // RIGHT BOTTOM\n $s_x1y2 = array(0, $imgHeight); // LEFT TOP\n $s_x2y2 = array($imgWidth, $imgHeight); // RIGHT TOP\n\n $d_x1y1 = array(\n $s_x1y1[0] * cos($thetX) - $s_x1y1[1] * sin($thetY),\n $s_x1y1[0] * sin($thetX) + $s_x1y1[1] * cos($thetY)\n );\n $d_x2y1 = array(\n $s_x2y1[0] * cos($thetX) - $s_x2y1[1] * sin($thetY),\n $s_x2y1[0] * sin($thetX) + $s_x2y1[1] * cos($thetY)\n );\n $d_x1y2 = array(\n $s_x1y2[0] * cos($thetX) - $s_x1y2[1] * sin($thetY),\n $s_x1y2[0] * sin($thetX) + $s_x1y2[1] * cos($thetY)\n );\n $d_x2y2 = array(\n $s_x2y2[0] * cos($thetX) - $s_x2y2[1] * sin($thetY),\n $s_x2y2[0] * sin($thetX) + $s_x2y2[1] * cos($thetY)\n );\n\n $imageprops = $imagick->getImageGeometry();\n $imagick->setImageBackgroundColor(new ImagickPixel('transparent'));\n $imagick->resizeimage($imgWidth, $imgHeight, \\Imagick::FILTER_LANCZOS, 0, true); \n if($poleColor) {\n $imagick->borderImage($poleColor, $poleWidth, $poleHeight);\n }\n\n $points = array(\n $s_x1y2[0], $s_x1y2[1], # Source Top Left\n $d_x1y2[0], $d_x1y2[1], # Destination Top Left\n $s_x1y1[0], $s_x1y1[1], # Source Bottom Left \n $d_x1y1[0], $d_x1y1[1], # Destination Bottom Left \n $s_x2y1[0], $s_x2y1[1], # Source Bottom Right \n $d_x2y1[0], $d_x2y1[1], # Destination Bottom Right \n $s_x2y2[0], $s_x2y2[1], # Source Top Right \n $d_x2y2[0], $d_x2y2[1] # Destination Top Right \n );\n //echo '<pre>'; print_r($points); die;\n\n $imagick->setImageVirtualPixelMethod(\\Imagick::VIRTUALPIXELMETHOD_BACKGROUND);\n $imagick->distortImage(\\Imagick::DISTORTION_PERSPECTIVE, $points, true);\n //$imagick->scaleImage($imgWidth, $imgHeight, false);\n $rowImagick->addImage($imagick); \n }\n\n $rowImagick->resetIterator();\n $combinedRow = $rowImagick->appendImages(false);\n\n $canvas = generateFinalImage($combinedRow);\n header(\"Content-Type: image/png\");\n echo $canvas->getImageBlob();\n}", "protected function combineImages() {}", "private function generateThumbnailGD(){\n\t\t\n\t}", "function redimensionarImagen($origin,$destino,$newWidth,$newHeight,$jpgQuality=100)\n{\n // texto con el valor correcto height=\"yyy\" width=\"xxx\"\n $datos=getimagesize($origin);\n \n // comprobamos que la imagen sea superior a los tamaños de la nueva imagen\n if($datos[0]>$newWidth || $datos[1]>$newHeight)\n {\n \n // creamos una nueva imagen desde el original dependiendo del tipo\n if($datos[2]==1)\n $img=imagecreatefromgif($origin);\n if($datos[2]==2)\n $img=imagecreatefromjpeg($origin);\n if($datos[2]==3)\n $img=imagecreatefrompng($origin);\n \n // Redimensionamos proporcionalmente\n if(rad2deg(atan($datos[0]/$datos[1]))>rad2deg(atan($newWidth/$newHeight)))\n {\n $anchura=$newWidth;\n $altura=round(($datos[1]*$newWidth)/$datos[0]);\n }else{\n $altura=$newHeight;\n $anchura=round(($datos[0]*$newHeight)/$datos[1]);\n }\n \n // creamos la imagen nueva\n $newImage = imagecreatetruecolor($anchura,$altura);\n \n // redimensiona la imagen original copiandola en la imagen\n imagecopyresampled($newImage, $img, 0, 0, 0, 0, $anchura, $altura, $datos[0], $datos[1]);\n \n // guardar la nueva imagen redimensionada donde indicia $destino\n if($datos[2]==1)\n imagegif($newImage,$destino);\n if($datos[2]==2)\n imagejpeg($newImage,$destino,$jpgQuality);\n if($datos[2]==3)\n imagepng($newImage,$destino);\n \n // eliminamos la imagen temporal\n imagedestroy($newImage);\n \n return true;\n }\n return false;\n}", "public function imagen(){\n $imagenes = $this->imagenes;\n\n if ($imagenes->isNotEmpty()) {\n return $imagenes->sortBy('n_orden')->first()->imagen;\n }\n }", "public function ejecutarRedimension(){\r\n\t\t$this->Redimensionar();\r\n\r\n\t\tif ($this->tipo_imagen_original=='image/jpeg') {\r\n\t\t\timagejpeg($this->lienzoNuevaImagen,$this->carpeta_destino.$this->nuevo_nombre_imagen,$this->calidadImagen);\r\n\t\t}else if($this->tipo_imagen_original=='image/gif'){\r\n\t\t\timagegif($this->lienzoNuevaImagen,$this->carpeta_destino.$this->nuevo_nombre_imagen,$this->calidadImagen);\r\n\t\t}else if($this->tipo_imagen_original=='image/png'){\r\n\t\t\timagepng($this->lienzoNuevaImagen,$this->carpeta_destino.$this->nuevo_nombre_imagen,$this->calidadImagen);\r\n\t\t}else if($this->tipo_imagen_original=='image/wbmp'){\r\n\t\t\timagewbmp($this->lienzoNuevaImagen,$this->carpeta_destino.$this->nuevo_nombre_imagen,$this->calidadImagen);\r\n\t\t}else{\r\n\t\t\t$this->erroreEncontrados[]= \"Problemas para Ejecutar la Redimension\";\r\n\t\t}\r\n\t}", "function subirFotoElemento($campo, $tipo, $id, $refresh, $backdir) {\n\t\tif($_FILES[$campo]['type'] != 'image/jpeg' AND $_FILES[$campo]['type'] != 'image/gif' AND $_FILES[$campo]['type'] != 'image/png') {\n\t\t\t$error_img = TRUE;\n\t\t\t$msg = 'El formato de imagen no es válido, sólo se aceptan JPG, GIF o PNG';\n\t\t}\n\n\t\t//Obtengo las dimensiones de la imagen, si se puede entonces es una imagen de verdad y evito una shell en el server\n\t\t$check = getimagesize($_FILES[$campo]['tmp_name']);\n\n\t\tif($check == FALSE) {\n\t\t\t$error_img = TRUE;\n\t\t\t$msg = 'Seleccione una imagen válida';\n\t\t}\n\n\t\t//Si no hay ningún error, arranco la subida...\n\t\tif($error_img == FALSE) {\n\t\t\tif($_FILES[$campo]['type'] == 'image/jpeg') {\n\t\t\t\t$extension_img = '.jpg';\n\t\t\t} elseif($_FILES[$campo]['type'] == 'image/gif') {\n\t\t\t\t$extension_img = '.gif';\n\t\t\t} elseif($_FILES[$campo]['type'] == 'image/png') {\n\t\t\t\t$extension_img = '.png';\n\t\t\t}\n\n\t\t\t$directorio_subida = $backdir . '../sitio/fotos/' . $tipo . '/ampl/';\n\t\t\t$directorio_subida_m = $backdir . '../sitio/fotos/' . $tipo . '/';\n\n\t\t\tif($img = glob($directorio_subida . $id . '.*')) {\n\t\t\t\tunlink($img[0]);\n\t\t\t}\n\n\t\t\tif($img = glob($directorio_subida_m . $id . '.*')) {\n\t\t\t\tunlink($img[0]);\n\t\t\t}\n\n\t\t\t$sin_punto = explode('.', $_FILES[$campo]['name']);\n\t\t\tmove_uploaded_file($_FILES[$campo]['tmp_name'],$directorio_subida . $_FILES[$campo]['name']);\n\t\t\trename($directorio_subida . $_FILES[$campo]['name'],$directorio_subida . $id . $extension_img);\n\n\t\t\t$modulo_variable_ancho_imagen_chica = 'modulo_' . $tipo . '_ancho_imagen_chica';\n\t\t\t$modulo_variable_alto_imagen_chica = 'modulo_' . $tipo . '_alto_imagen_chica';\n\t\t\t$modulo_variable_ancho_imagen_grande = 'modulo_' . $tipo . '_ancho_imagen_grande';\n\t\t\t$modulo_variable_alto_imagen_grande = 'modulo_' . $tipo . '_alto_imagen_grande';\n\t\t\t$modulo_variable_tipo_resize = 'modulo_' . $tipo . '_tipo_resize';\n\t\t\t$modulo_variable_watermark = 'modulo_' . $tipo . '_watermark';\n\t\t\t$modulo_variable_watermark_dir = 'modulo_' . $tipo . '_watermark_dir';\n\n\t\t\tglobal $$modulo_variable_ancho_imagen_chica;\n\t\t\tglobal $$modulo_variable_alto_imagen_chica;\n\t\t\tglobal $$modulo_variable_ancho_imagen_grande;\n\t\t\tglobal $$modulo_variable_alto_imagen_grande;\n\t\t\tglobal $$modulo_variable_tipo_resize;\n\t\t\tglobal $$modulo_variable_watermark;\n\t\t\tglobal $$modulo_variable_watermark_dir;\n\n\t\t\tif($_FILES[$campo]['type'] != 'image/gif') {\n\t\t\t\trequire($backdir . 'lib/Simpleimage/SimpleImage.php');\n\n\t\t\t\t$img = new \\claviska\\SimpleImage($directorio_subida . $id . $extension_img);\n\t\t\t\t$img->toFile($directorio_subida_m . $id . $extension_img);\n\n\t\t\t\t$img_thumb = new \\claviska\\SimpleImage($directorio_subida_m . $id . $extension_img);\n\n\t\t\t\tif($$modulo_variable_tipo_resize == 'recortar') { //////////////////////////////////////////////////////////////Si está en modo recorte\n\t\t\t\t\tif($$modulo_variable_watermark == 1) { //Verifico si está activa o no la marca de agua\n\t\t\t\t\t\t//Ampliada\n\t\t\t\t\t\t$img\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_grande, $$modulo_variable_alto_imagen_grande)\n\t\t\t\t\t\t\t->overlay($$modulo_variable_watermark_dir, 'center', '1')\n\t\t\t\t\t\t\t->toFile($directorio_subida . $id . $extension_img);\n\t\t\t\t\t\t\n\t\t\t\t\t\t//Miniatura\n\t\t\t\t\t\t$img_thumb\n\t\t\t\t\t\t\t->thumbnail($$modulo_variable_ancho_imagen_chica, $$modulo_variable_alto_imagen_chica, 'center')\n\t\t\t\t\t\t\t->toFile($directorio_subida_m . $id . $extension_img);\n\n\t\t\t\t\t} else { //Si la marca de agua no está activa, no la pongo...\n\t\t\t\t\t\t//Ampliada\n\t\t\t\t\t\t$img\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_grande, $$modulo_variable_alto_imagen_grande)\n\t\t\t\t\t\t\t->toFile($directorio_subida . $id . $extension_img);\n\n\t\t\t\t\t\t//Miniatura\n\t\t\t\t\t\t$img_thumb\n\t\t\t\t\t\t\t->thumbnail($$modulo_variable_ancho_imagen_chica, $$modulo_variable_alto_imagen_chica, 'center')\n\t\t\t\t\t\t\t->toFile($directorio_subida_m . $id . $extension_img);\n\t\t\t\t\t}\n\t\t\t\t} else { /////////////////////////////////////////////////////////////////////////////////////////////////////////Si está en modo proporcionar\n\t\t\t\t\tif($$modulo_variable_watermark == 1) { //Verifico si está activa o no la marca de agua\n\t\t\t\t\t\t//Ampliada\n\t\t\t\t\t\t$img\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_grande, $$modulo_variable_alto_imagen_grande)\n\t\t\t\t\t\t\t->overlay($$modulo_variable_watermark_dir, 'center', '1')\n\t\t\t\t\t\t\t->toFile($directorio_subida . $id . $extension_img);\n\t\t\t\t\t\t\n\t\t\t\t\t\t//Miniatura\n\t\t\t\t\t\t$img_thumb\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_chica, $$modulo_variable_alto_imagen_chica, 'center')\n\t\t\t\t\t\t\t->toFile($directorio_subida_m . $id . $extension_img);\n\n\t\t\t\t\t} else { //Si la marca de agua no está activa, no la pongo...\n\t\t\t\t\t\t//Ampliada\n\t\t\t\t\t\t$img\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_grande, $$modulo_variable_alto_imagen_grande)\n\t\t\t\t\t\t\t->toFile($directorio_subida . $id . $extension_img);\n\n\t\t\t\t\t\t//Miniatura\n\t\t\t\t\t\t$img_thumb\n\t\t\t\t\t\t\t->bestFit($$modulo_variable_ancho_imagen_chica, $$modulo_variable_alto_imagen_chica, 'center')\n\t\t\t\t\t\t\t->toFile($directorio_subida_m . $id . $extension_img);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif($refresh == TRUE) {\n\t\t\t\techo refresh();\n\t\t\t}\n\t\t} else {\n\t\t\techo '<br><div class=\"alert alert-danger\"><strong>Error</strong> ' . $msg . '</div>';\n\t\t}\n\t}", "function imageAllReset();", "protected function scaleImages() {}", "function RellenarImagenesDeLaMinuta($texto, $dir_img)\r\n {\r\n $this->Imprimir($texto, 20, 10, 12);\r\n\r\n $this->Cell(22);\r\n\r\n $this->Cell(155, 98, '', 1, 0, 'C');\r\n\r\n $this->Image(sfConfig::get('sf_web_dir') . '/' . $dir_img, 33, $this->GetY() + 1, 153, 95);\r\n }", "public function createImage1(){\n $this->createHexagon(150,75, 50, 200, 150, 325, 275, 325, 350,200, 275, 75);\n $this->createCircle(200, 200, 200, 200, 0, 360);\n $this->createLine(200, 125, 125, 200);\n $this->createLine(200, 125, 275, 200);\n $this->createLine(125, 200, 200, 275);\n $this->createLine(275, 200, 200, 275);\n $this->generateImage();\n }", "function UploadLogo($fupload_name, $folder, $ukuran, $tinggix){\n $file_upload = $folder . $fupload_name;\n\n // Simpan gambar dalam ukuran aslinya\n move_uploaded_file($_FILES[\"fupload\"][\"tmp_name\"], $file_upload);\n\n // Identitas file asli\n $gbr_asli = imagecreatefromjpeg($file_upload);\n $lebar = imageSX($gbr_asli);\n $tinggi \t= imageSY($gbr_asli);\n\n // Simpan dalam versi thumbnail\n $thumb_lebar = $ukuran;\n $thumb_tinggi = $tinggix;\n\n // Proses perubahan dimensi ukuran\n $gbr_thumb = imagecreatetruecolor($thumb_lebar,$thumb_tinggi);\n imagecopyresampled($gbr_thumb, $gbr_asli, 0, 0, 0, 0, $thumb_lebar, $thumb_tinggi, $lebar, $tinggi);\n\n // Simpan gambar thumbnail\n imagejpeg($gbr_thumb,$folder . \"small_\" . $fupload_name);\n \n // Hapus gambar di memori komputer\n imagedestroy($gbr_asli);\n imagedestroy($gbr_thumb);\n}", "function redimage($img_src,$img_dest,$dst_w,$dst_h) {\n // Lit les dimensions de l'image\n $size = GetImageSize($img_src); \n $src_w = $size[0]; $src_h = $size[1]; \n // Teste les dimensions tenant dans la zone\n $test_h = round(($dst_w / $src_w) * $src_h);\n $test_w = round(($dst_h / $src_h) * $src_w);\n // Si Height final non précisé (0)\n if(!$dst_h) $dst_h = $test_h;\n // Sinon si Width final non précisé (0)\n elseif(!$dst_w) $dst_w = $test_w;\n // Sinon teste quel redimensionnement tient dans la zone\n elseif($test_h>$dst_h) $dst_w = $test_w;\n else $dst_h = $test_h;\n\n // La vignette existe ?\n $test = (file_exists($img_dest));\n // L'original a été modifié ?\n if($test)\n $test = (filemtime($img_dest)>filemtime($img_src));\n // Les dimensions de la vignette sont correctes ?\n if($test) {\n $size2 = GetImageSize($img_dest);\n $test = ($size2[0]==$dst_w);\n $test = ($size2[1]==$dst_h);\n }\n\n // Créer la vignette ?\n if(!$test) {\n // Crée une image vierge aux bonnes dimensions\t\n $dst_im = ImageCreateTrueColor($dst_w,$dst_h); \n // Copie dedans l'image initiale redimensionnée\n $src_im = ImageCreateFromJpeg($img_src);\n ImageCopyResampled($dst_im,$src_im,0,0,0,0,$dst_w,$dst_h,$src_w,$src_h);\n // Sauve la nouvelle image\n ImageJpeg($dst_im,$img_dest);\n // Détruis les tampons\n ImageDestroy($dst_im);\n ImageDestroy($src_im);\n }\n}", "function UploadFoto($fupload_name, $folder, $ukuran){\n // File gambar yang di upload\n $file_upload = $folder . $fupload_name;\n\n // Simpan gambar dalam ukuran aslinya\n move_uploaded_file($_FILES[\"fupload\"][\"tmp_name\"], $file_upload);\n\n // Identitas file asli\n $gbr_asli = imagecreatefromjpeg($file_upload);\n $lebar = imageSX($gbr_asli);\n $tinggi \t= imageSY($gbr_asli);\n\n // Simpan dalam versi thumbnail\n $thumb_lebar = $ukuran;\n $thumb_tinggi = $ukuran;\n\n // Proses perubahan dimensi ukuran\n $gbr_thumb = imagecreatetruecolor($thumb_lebar,$thumb_tinggi);\n imagecopyresampled($gbr_thumb, $gbr_asli, 0, 0, 0, 0, $thumb_lebar, $thumb_tinggi, $lebar, $tinggi);\n\n // Simpan gambar thumbnail\n imagejpeg($gbr_thumb,$folder . \"small_\" . $fupload_name);\n \n // Hapus gambar di memori komputer\n imagedestroy($gbr_asli);\n imagedestroy($gbr_thumb);\n}", "public function colorImage() {}", "function UploadFotox($fl, $folder, $ukuran){\n $file_upload = $folder . $fl;\n\n // Simpan gambar dalam ukuran aslinya\n move_uploaded_file($_FILES[\"file\"][\"tmp_name\"], $file_upload);\n\n // Identitas file asli\n $gbr_asli = imagecreatefromjpeg($file_upload);\n $lebar = imageSX($gbr_asli);\n $tinggi \t= imageSY($gbr_asli);\n\n // Simpan dalam versi thumbnail\n $thumb_lebar = $ukuran;\n $thumb_tinggi = 180;\n\n // Proses perubahan dimensi ukuran\n $gbr_thumb = imagecreatetruecolor($thumb_lebar,$thumb_tinggi);\n imagecopyresampled($gbr_thumb, $gbr_asli, 0, 0, 0, 0, $thumb_lebar, $thumb_tinggi, $lebar, $tinggi);\n\n // Simpan gambar thumbnail\n imagejpeg($gbr_thumb,$folder . \"small_\" . $fl);\n \n // Hapus gambar di memori komputer\n imagedestroy($gbr_asli);\n imagedestroy($gbr_thumb);\n}", "public function getAbsolutePicture();", "public function saveAsset()\n {\n if(!empty($this->uploadedFile))\n {\n // If file is exist -> remove him\n if(file_exists($this->getFilePath()))\n {\n unlink($this->getFilePath());\n }\n $this->genFilename();\n $imagine = Image::getImagine()->open($this->uploadedFile->tempName);\n }\n else\n {\n if(file_exists($this->getFilePath())) {\n $imagine = Image::getImagine()->open($this->getFilePath());\n } else return false;\n }\n\n $size = $imagine->getSize();\n $box = $this->getImageBox($size);\n\n if (($size->getWidth() <= $box->getWidth() && $size->getHeight() <= $box->getHeight()) || (!$box->getWidth() && !$box->getHeight())) {\n $widthDiff = abs($size->getWidth() - $box->getWidth()) / $size->getWidth();\n $heightDiff = abs($size->getHeight() - $box->getHeight()) / $size->getHeight();\n if($widthDiff > $heightDiff) {\n $resizeBox = new Box($box->getWidth(), $size->getHeight() * $box->getWidth()/$size->getWidth());\n } else {\n $resizeBox = new Box($size->getWidth() * $box->getHeight()/$size->getHeight(), $box->getHeight());\n }\n $imagine->resize($resizeBox);\n\n // var_dump($width);\n // var_dump($height);\n // die;\n // // $imagine->crop($point, $box);\n // $imagine->save($this->getFilePath());\n // return $this->save(false);\n }\n\n $imagine = $imagine->thumbnail($box, ManipulatorInterface::THUMBNAIL_OUTBOUND);\n $imagine->save($this->getFilePath());\n\n // create empty image to preserve aspect ratio of thumbnail\n // $thumb = Image::getImagine()->create($box, new Color('FFF', 100));\n\n // // calculate points\n // $startX = 0;\n // $startY = 0;\n // if ($size->getWidth() < $box->getWidth()) {\n // $startX = ceil($box->getWidth() - $size->getWidth()) / 2;\n // }\n // if ($size->getHeight() < $box->getHeight()) {\n // $startY = ceil($box->getHeight() - $size->getHeight()) / 2;\n // }\n\n // $thumb->paste($img, new Point($startX, $startY));\n // $thumb->save($this->getFilePath());\n\n return $this->save(false);\n }", "function getImage($nr){ //vienaskaita, nes ieskai vieno id informacijos;\n $manoSQL = \"SELECT * FROM images WHERE id = $nr\"; //issigalvotas kintamasis, tiesiog stringas, gali bet koki teksta rasyti.\n $rezultatai = mysqli_query ( getPrisijungimas(), $manoSQL); // mysqli_query tiesiog ivykdo komandas; jei nori delete ar update, tai uztenka sios f-jos\n\n// print_r($rezultatai);\n $rezultatai_masyvas = mysqli_fetch_assoc($rezultatai); // cia objekta ideda i masyva; jei reikia gauti duomenis, tam reikia sios eilutes, kad gautus duomenis issaugoti.\n// print_r($rezultatai_masyvas);\n return $rezultatai_masyvas;\n}", "function subirImagen($id_patalla) {\n // MODIFICAR RUTA AL SUBIR AL HOSTING\n $dir_subida = '/home/c0990002/public_html/TB/imagenes_pantallas/';\n\n if (isset($_FILES['imagen']) && !$_FILES['imagen']['error'] > 0) {\n //GUARDADO DE IMAGEN\n if (move_uploaded_file($_FILES['imagen']['tmp_name'], $dir_subida . 'imagen_pantalla_id_' . $id_patalla)) {\n //return $dir_subida.'imagen_pantalla_id_'.$id_patalla;\n return 'https://www.rockerapp.com/TB/imagenes_pantallas/' . 'imagen_pantalla_id_' . $id_patalla;\n }\n }\n}", "function createThumbs($imageUrl,$imgName){\n header(\"Content-type: image/jpg\");\n $SourceFile = $imageUrl . $imgName;\n $filename = $imageUrl . 'tn_' . $imgName;\n //letrehozom a thumb kepet\n // Load the image on which watermark is to be applied\n $originalImage = imagecreatefromjpeg($SourceFile);\n // Get original parameters\n list($originalWidth, $originalHeight, $original_type, $original_attr) = getimagesize($SourceFile);\n //eloallitjuk a thumbnailt, aminek a mérete 128*96\n $newWidth = 128;\n $newHeight = 96;\n $blankThumbImage = imagecreatetruecolor($newWidth, $newHeight);\n \n //a feltoltott kep 640*480 vagy 480*640\n //azt feltetelezzuk, hogy mindig ennyi\n //az oldalak aránya 0.75\n //ha 640*480\n if ($originalWidth > $originalHeight) {\n imagecopyresampled($blankThumbImage, $originalImage, 0, 0, 0, 0, $newWidth, $newHeight, $originalWidth, $originalHeight);\n }\n //ha 480*640\n if ($originalWidth < $originalHeight) {\n //levagom a tetejet es az aljat\n $newWidthT = $originalWidth;\n $newHeightT = $originalWidth * 0.75; //360\n $sy = ($originalHeight - $newHeightT) / 2;\n $tempImage = imagecreatetruecolor($newWidthT, $newHeightT);\n imagecopyresized($tempImage, $originalImage, 0, 0, 0, $sy, $newWidthT, $newHeightT , $originalWidth, $newHeightT);\n imagecopyresampled($blankThumbImage, $tempImage, 0, 0, 0, 0, $newWidth, $newHeight, $newWidthT, $newHeightT);\n }\n // elmentem a thumbnailt\n imagejpeg($blankThumbImage, $filename,100); //$SourceFile\n imagedestroy($blankThumbImage);\n \n}", "function get_representative_images() {\n global $post;\n $images = array('http://www.heyreverb.com/wp-content/themes/spiegelmagazine-pro/images/logo.png');\n if ( has_post_thumbnail($post->ID) ) { // check if the post has a Post Thumbnail assigned to it.\n $image_url = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'thumbnail');\n array_unshift($images, $image_url[0]);\n }\n return $images;\n}", "public static function change_image_type(){\n/**\n*\n*This function change the image type like convert png to jpg or bmp or gif\n*\n*/\npublic static function rotate()\n}", "public function getImage() {}", "public function gen_thumbnail()\n {\n }", "public function gen_thumbnail()\n {\n }", "public function renderImageAction()\n {\n $config = \\Zend_Registry::get('configs');\n $path = $config['upload']['rodape']['destination'];\n\n $this->_helper->layout()->disableLayout();\n $this->_helper->viewRenderer->setNoRender(true);\n\n $params = $this->_getAllParams();\n\n $entity = $this->getService('Artefato')->findBy(array(\n 'sqArtefato' => $params['sqArtefato']\n ));\n $enderecoImagem = $path . '/' . $entity[0]->getDeImagemRodape();\n $dto = new \\Core_Dto_Search(\n array(\n 'resize' => true,\n 'width' => 120,\n 'height' => 120\n )\n );\n\n return $this->showImage($dto, $enderecoImagem);\n }", "public function excluirImagemGaleria(){ \n\t\t\n\t\t//deleta a imagem da pasta\n\t\tinclude_once(\"../funcoes/geral.php\");\n\t\t$sql = \"\n\t\t\tSELECT thumb\n\t\t\tFROM programa_imagem\n\t\t\"; \n\t\tif($this->idImagem)\n\t\t\t$sql .=\" WHERE id = '$this->idImagem'\";\n\n\t\t$this->sql = $sql;\n\t\t$this->qr = self::execSql($this->sql);\t\n\t\t$qtRegistros = $this->getQuantidadeData($sql); // retorna a quantidade de registro\t \n\t\tif($qtRegistros > 0){\n\t\t\twhile($lista = self::resultsAll($this->qr)){\n\n\t\t\t\tdeletaImagem($lista[\"thumb\"]);//deleto a imagem do arquivo\n\t\t\t\n\t\t\t}\n\t\t}\n\n\t}", "function mostrar_producto_img(){\n\t\tif (isset($_GET['id']) && $_GET['id']!=\"\"){\n\t\t\t$id=$_GET['id'];\n\t\t\t$sql=\"SELECT * FROM producto WHERE id_pro='$id'\";\n\t\t\t$consulta=mysql_query($sql) or die(mysql_error());\n\t\t\t$resultado = mysql_fetch_array($consulta);\n\t\t\t$id=$resultado['id_pro'];\n\t\t\t$sql2=\"SELECT directorio_image, nombre_image FROM imagen WHERE galeria_image='$id' AND tabla_image='producto'ORDER BY id_image\";\n\t\t\t$consulta2=mysql_query($sql2) or die(mysql_error());\n\t\t\t\n\t\t\twhile ($resultado2 = mysql_fetch_array($consulta2)){\n\t\t\t\t$this->listado[]=$resultado2;\n\t\t\t}\n\t\t}\n\t}", "function UploadGallery($nama_file_unik, $folder){\n $file_upload = $folder . $nama_file_unik;\n\n // Simpan gambar dalam ukuran aslinya\n move_uploaded_file($_FILES[\"gb_gallery\"][\"tmp_name\"], $file_upload);\n \n // Identitas file asli\n $gbr_asli = imagecreatefromjpeg($file_upload);\n $lebar = imageSX($gbr_asli);\n $tinggi \t= imageSY($gbr_asli);\n\n // Simpan dalam versi thumbnail\n $thumb_lebar = 180;\n $thumb_tinggi = 180;\n\n // Proses perubahan dimensi ukuran\n $gbr_thumb = imagecreatetruecolor($thumb_lebar,$thumb_tinggi);\n imagecopyresampled($gbr_thumb, $gbr_asli, 0, 0, 0, 0, $thumb_lebar, $thumb_tinggi, $lebar, $tinggi);\n\n // Simpan gambar thumbnail\n imagejpeg($gbr_thumb,$folder . \"small_\" . $nama_file_unik);\n \n // Hapus gambar di memori komputer\n imagedestroy($gbr_asli);\n imagedestroy($gbr_thumb);\n}", "function filets_creer_icone_barre($file, $num=-1) {\n\tstatic $icones_barre;\n\trep_icones_barre($icones_barre);\n\tdefine_IMG_GD_MAX_PIXELS();\n\t// la config \"Methode de fabrication des vignettes\" doit etre renseignee pour 'image_reduire'\n\tif($num<0) {\n\t\tlist($w) = @getimagesize($file);\n\t\t$file = filtrer('image_recadre', $file, floor($w/4), 40, '');\n\t\t$file = filtrer('image_reduire', $file, 19, 19);\n\t\t$file = filtrer('image_recadre', $file, 16, 16, 'left');\n\t} else {\n\t\t$file = image_typo(\"_{$num}_\", 'couleur=00BFFF', 'taille=9', 'police=dustismo.ttf');\n\t\t$file = filtrer('image_recadre', $file, 16, 10, 'bottom');\n\t}\n\t$nom = basename($src = extraire_attribut($file, 'src'));\n\t@copy($src, $icones_barre.$nom);\n\treturn $nom;\n}", "public function borrar($imagen)\n {\n }", "function subidaFichero($bd,$usuario,$entrada){\n if(isset($_FILES['imagen']['name']) && strlen ($_FILES['imagen']['name'])>0) {\n $dir_subida = $usuario . \"/\";\n ///////////NO TENGO PERMISOS DE CREAR CARPETAS!!!!!!!\n if ( !is_dir($dir_subida) && is_writable(\"../redsocial\")) {\n mkdir($dir_subida,0755, true);\n }else\n $dir_subida=\"img/\";\n $path = $_FILES['imagen']['name'];\n $ext = pathinfo($path, PATHINFO_EXTENSION);\n $fichero_subido = $dir_subida . $usuario . date(\"Ymd_Hm\").\".\".$ext;\n /////NO TENGO PERMISOS PARA SUBIR ARCHIVOS!!!!\n if(is_writable($dir_subida)) {\n if (!move_uploaded_file($_FILES['imagen']['tmp_name'], $fichero_subido)) {\n echo \"Problema de ataque de subida de ficheros!.\\n\";\n }\n }\n $imagen = new Imagen(null, $fichero_subido, $entrada->getId());\n $daoImagenes = new Imagenes($bd);\n $daoImagenes->addImagen($imagen, $entrada);\n return $fichero_subido;\n }\n\n}", "function UploadSlideshow($nama_file_unik, $folder){\n $file_upload = $folder . $nama_file_unik;\n\n // Simpan gambar dalam ukuran aslinya\n move_uploaded_file($_FILES[\"gb_slideshow\"][\"tmp_name\"], $file_upload);\n \n // Identitas file asli\n $gbr_asli = imagecreatefromjpeg($file_upload);\n $lebar = imageSX($gbr_asli);\n $tinggi \t= imageSY($gbr_asli);\n\n // Simpan dalam versi thumbnail\n $thumb_lebar = 180;\n $thumb_tinggi = 180;\n\n // Proses perubahan dimensi ukuran\n $gbr_thumb = imagecreatetruecolor($thumb_lebar,$thumb_tinggi);\n imagecopyresampled($gbr_thumb, $gbr_asli, 0, 0, 0, 0, $thumb_lebar, $thumb_tinggi, $lebar, $tinggi);\n\n // Simpan gambar thumbnail\n imagejpeg($gbr_thumb,$folder . \"small_\" . $nama_file_unik);\n \n // Hapus gambar di memori komputer\n imagedestroy($gbr_asli);\n imagedestroy($gbr_thumb);\n}", "function getImg() {\n\n global $f3;\n global $tvdb;\n\n $series = $f3->get('PARAMS.param1');\n $episode_index = $f3->get('PARAMS.param2');\n $data = $tvdb->getSeries($series);\n\n if ($episode_index) {\n\t\t//if requesting episode image\n $chunks = explode(\",\", $episode_index);\n \t\t$season = $chunks[0]; //\techo \"Season \" . $season;\n \t\t$ep = $chunks[1]; //\t\techo \"Ep\" . $ep;\n \t\t$episode = $tvdb->getEpisode($data[0]->id, $season, $ep, 'en');\n\t\t echo $episode->thumbnail;\n } \n else {\n\t\t//if requesting show images\n $banner = $tvdb->getBanners($data[0]->id);\n $banner_j = json_encode($banner);\n echo $banner_j;\n }\n}", "public function getNekoImg() {\n\t\t$imgData = $this->getPhotosData();\n\t\t$this->chkFlickrErr($imgData);\n\n\t\t$this->setPhotoData($imgData);\n\n\t\t$userInfo = $this->getUserInfo();\n\t\t$this->chkFlickrErr($userInfo);\n\n\t\t$this->setUserData($userInfo);\n\n\t\t$this->createImgUri();\n\t\t$this->getImgSize();\n\n\t\t$this->setCreditInfo();\n\t\t$this->createImgTag();\n\n\t\t$imgNeko = $this->imgNeko;\n\t\t$creditInfo = $this->creditInfo;\n\t\t$this->Controller->set(compact(\"imgNeko\", \"creditInfo\"));\n\t}", "function imagenes_por_palabra_y_tipo_imagen($id_palabra,$registrado,$estado,$id_tipo_imagen) {\n\t\n\t\tif ($registrado==false) {\n\t\t\t$mostrar_registradas=\"AND imagenes.registrado=0\";\n\t\t}\n\t\t\n\t\tif ($estado !='' && $estado < 4 && $estado > 0) {\n\t\t\t$sql_estado='AND imagenes.estado='.$estado.'';\n\t\t} elseif ($estado='all') {\n\t\t\t$sql_estado='';\n\t\t} else {\n\t\t\t$sql_estado='AND imagenes.estado=1';\n\t\t}\n\t\t\n\t\tif ($id_tipo_imagen==99) { $sql_tipo_imagen=''; } \n\t\telse { $sql_tipo_imagen='AND imagenes.id_tipo_imagen='.$id_tipo_imagen.''; }\n\t\t\n\t\t$query = \"SELECT palabra_imagen.*,\n\t\timagenes.id_imagen,imagenes.id_colaborador,imagenes.imagen,imagenes.extension,imagenes.id_tipo_imagen,\n\t\timagenes.estado,imagenes.registrado,imagenes.id_licencia,imagenes.id_autor,imagenes.tags_imagen,\n\t\timagenes.tipo_pictograma,imagenes.validos_senyalectica,imagenes.original_filename\n\t\tFROM palabra_imagen, imagenes\n\t\tWHERE palabra_imagen.id_palabra='$id_palabra'\n\t\tAND palabra_imagen.id_imagen=imagenes.id_imagen\n\t\t$sql_tipo_imagen\n\t\t$mostrar_registradas\n\t\t$sql_estado\";\n\n $connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);\n\t\t\n\t\t$SelectedDB = mysql_select_db($this->DBNAME);\n\t\t$result = mysql_query($query); \n\t\t\n\t\t$numrows = mysql_num_rows($result);\n\t\tmysql_close($connection);\n\t\t// COMPROBAMOS QUE HAYA RESULTADOS\n\t\t// SI EL NUMERO DE RESULTADOS ES 0 SIGNIFICA QUE NO HAY REGISTROS CON ESOS DATOS\n\t\tif ($numrows == 0) {\n\t\t\treturn $result;\n\t\t}\n\t\telse {\n\t\t\treturn $result;\n\t\t}\n\t}", "function adapt_image( $id=0, $width=0, $height=0, $link=false, $attr=null, $circle=false, $blank=false ) {\n\n $html = '';\n\n if ( $circle !== false ) :\n if ( $width > $height ) : \n $width = $height;\n elseif ( $width <= $height ) : \n $height = $width;\n endif;\n\n $html .= '<div class=\"is-circle\">';\n endif;\n\n $link_attrs = $link ? \"href='{$link}'\" : \"href='#.'\";\n $link_attrs .= $blank ? \" target='_blank'\" : '';\n\n $html .= $link ? \"<a {$link_attrs}>\" : '';\n $html .= wp_get_attachment_image( $id, array( $width, $height ), true, $attr );\n $html .= $link ? '</a>' : '';\n\n if ( $circle !== false )\n $html .= '</div>'; \n\n}", "public function imagenTemporalArticuloController($datos){\n \n list($ancho, $alto) = getimagesize($datos);\n\n if($ancho < 800 || $alto < 400){\n echo 0;\n }else{\n\n $numAleatorio = mt_rand(100, 999);\n\n $ruta = \"../../views/images/articulos/temp/articulo\" . $numAleatorio . \".jpg\";\n\n $origen = imagecreatefromjpeg($datos);\t\t\t\n\n $destino = imagecrop($origen, [\"x\" => 0, \"y\" => 0, \"width\" => 800, \"height\" => 400]); \n\n imagejpeg($destino, $ruta); \n \n echo $ruta;\n\n }\n\n }", "function oniros_image_support(){\n\t// add as many as the project might require\n\t// smaller images do not get resized, but largeones will get cropped.\n\n\t// name width height crop?\n\tadd_image_size( 'image_size_name', 400, 400, true);\n}", "function fazParteMiniatura($imagem, $largura, $altura, $qualidade=95){\n\t\t\t\t$imagem_gerada = $imagem;\n\t\t\t\t//CRIA UMA NOVA IMAGEM\n\t\t\t\t$imagem_orig = @imagecreatefromjpeg($imagem);\n\t\t\t\t//LARGURA\n\t\t\t\t$pontoX = @imagesx($imagem_orig);\n\t\t\t\t//ALTURA\n\t\t\t\t$pontoY = @imagesy($imagem_orig); \n\t\t\t\t//CRIA O THUMBNAIL\n\t\t\t\t$imagem_fin = @imagecreatetruecolor($largura, $altura); \n\t\t\t\t//COPIA A IMAGEM ORIGINAL PARA DENTRO\n\t\t\t\t//@imagecopyresampled($imagem_fin, $imagem_orig, 0, 0, 0, 0, $largura_m+1, $altura_m+1, $pontoX, $pontoY);\n\t\t\t\t$src_x = ($pontoX/2)-($largura/2);\n\t\t\t\t$src_y = ($pontoY/2)-($altura/2);\n\t\t\t\t@imagecopyresampled($imagem_fin,$imagem_orig,0,0,$src_x,$src_y,$pontoX,$pontoY,$pontoX,$pontoY);\n\t\t\t\t//SALVA A IMAGEM\n\t\t\t\t@imagejpeg($imagem_fin, $imagem_gerada, $qualidade); \n\t\t\t\t\n\t\t\t\t//LIBERA A MEM�RIA\n\t\t\t\t@imagedestroy($imagem_orig);\n\t\t\t\t@imagedestroy($imagem_fin);\n\t\t\n\t\t\t}", "public function getImages()\n\t\t{\n\t\t\t$this->createDir();\n\t\t\t//sacamos la lista de ficheros de la carpeta photos\n\t\t\t$files = $this->getFileList();\n\t\t\t//array de salida\n\t\t\t$image_List = array();\n\t\t\t\n\t\t\t//recorremos el contenido de esa carpeta\n\t\t\tforeach($files as $file)\n\t\t\t{\n\t\t\t\t//tiene que ser jpg, gif o png para que muestre las imagenes y que no sea . o ..\n\t\t\t\tif($file!=\".\" && $file!=\"..\" && $this->validatePhoto($file))\n\t\t\t\t{\t\t\t\t\n\t\t\t\t\t//guardo en el array la lista de imagenes\n\t\t\t\t\tarray_push($image_List, $file);\n\t\t\t\t\t\n\t\t\t\t\t//miro si existe la imagen en el thumbs si no lo creo\n\t\t\t\t\tif(!$this->checkIfFileExistes($file))\n\t\t\t\t\t{\n\t\t\t\t\t\t//como NO existe la minituara la creamos\n\t\t\t\t\t\t$this->createThumb(\"$file\");\n\t\t\t\t\t}\n\t\t\t\t\t//mostramos la miniatura y al hacer clic mostramos original \n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\techo \"<a href='\".$this->ruta.\"/$file' target='_blank' ><img src='\".$this->rutaMini.\"/$file'/></a>\";\t\n\t\t\t\t}\t\t\n\t\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\t\n\t\t}", "public function image()//minuscula modeloforaneo\n {\n return $this->morphOne('App\\Image','imageable'); //1er parametro:direccion modeloforaneo, 2do parametro: modeloforaneo+'able'\n }", "public function cargarImagen() {\n\n $id = $_REQUEST[\"id\"];\n\n echo $this->usuario->getCampo($id,'imagen');\n\n }", "public function get_imgR()\n {\n return $this->_imgR;\n }", "function getImagen(){\n\t\t\treturn $this->imagen;\n\t\t}", "function mob_images() {\n\tupdate_option( 'thumbnail_size_w', 360 );\n\tupdate_option( 'thumbnail_size_h', 220 );\n\tupdate_option( 'thumbnail_crop', 1 );\n\n\tupdate_option( 'medium_size_w', 654 );\n\tupdate_option( 'medium_size_h', 9999 );\n\tupdate_option( 'medium_crop', 0 );\n\n\tupdate_option( 'medium_large_size_w', 0 );\n\tupdate_option( 'medium_large_size_h', 0 );\n\n\tupdate_option( 'large_size_w', 850 );\n\tupdate_option( 'large_size_h', 400 );\n\tupdate_option( 'large_crop', 1 );\n\n\tadd_image_size( 'archive-blog', 360, 170, true );\t\n}", "protected function processImage() {}", "function spiplistes_corrige_img_pack ($img) {\n\tif(preg_match(\",^<img src='dist/images,\", $img)) {\n\t\t$img = preg_replace(\",^<img src='dist/images,\", \"<img src='../dist/images\", $img);\n\t}\n\treturn($img);\n}", "public function getImagen()\r\n {\r\n return $this->imagen;\r\n }", "function set_img_src($imgsrc, $width = null, $height = null, $returnindex = 0) {\n if (!empty($imgsrc)) {\n $arrsrc = explode(\",\", $imgsrc);\n $src = $arrsrc[$returnindex];\n $imgpath = \"helpers/timthumb.php?src=$src\";\n $imgpath .= ($height != null ? \"&h=$height\" : null);\n $imgpath .= ($width != null ? \"&w=$width\" : null);\n return $imgpath;\n }\n return null;\n}", "public function img(){\n\t\t$ret = array('img'=>'','thumb'=>'','msg'=>'');\n\t\tdo{\n\t\t\t//get parameters\n\t\t\t$must = array();\n\t\t\t$fields = array('is_thumb','thumb_width','thumb_height','is_resize','resize_width','resize_height');\n\t\t\t$params = array();\n\t\t\tforeach ( $fields as $v ){\n\t\t\t\t$params[$v] = intval($this->input->post($v));\n\t\t\t}\n\t\t\tunset($v);\n\t\t\t//check request\n\t\t\t/**\n\t\t\tif( !self::$user ){\n\t\t\t\t$ret['msg'] = 'user is not login';\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t*/\n\t\t\t$img = uploadFile('img');\n\t\t\tif( !($img && file_exists($img['file'])) ){\n\t\t\t\t$ret['msg'] = 'image upload failure';\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t$imgInfo = getImageInfo($img['file']);\n\t\t\tif( !($imgInfo && isset($imgInfo['type']) && in_array($imgInfo['type'], array('jpeg','png','gif','bmp'))) ){\n\t\t\t\t$ret['msg'] = 'image type is not allowed';\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t$ret = array(\n\t\t\t\t'msg'\t=> 'success',\n\t\t\t\t'img'\t=> $img['url'],\n\t\t\t\t'thumb'\t=> '',\n\t\t\t);\n\t\t\t//create thumb\t\t\t\n\t\t\tif( $params['is_thumb']==1 ){\n\t\t\t\t$config = array();\n\t\t\t\t$config['image_library'] = 'gd2';\n\t\t\t\t$config['source_image'] = $img['file'];\n\t\t\t\t$config['quality'] = 100;\n\t\t\t\t$config['create_thumb'] = TRUE;\n\t\t\t\t$config['width'] = $params['thumb_width'];\n\t\t\t\t$config['height'] = $params['thumb_height'];\n\t\t\t\t$this->load->library('image_lib', $config);\n\t\t\t\t$this->image_lib->resize();\n\t\t\t\t$this->image_lib->clear();\n\t\t\t\t$ext = strrchr($img['url'], '.');\n\t\t\t\t$ret['thumb']\t= str_replace($ext, '_thumb'.$ext, $img['url']);\n\t\t\t}\n\t\t\t//resize\n\t\t\tif( $params['is_resize']==1 ){\n\t\t\t\t$config = array();\n\t\t\t\t$config['image_library'] = 'gd2';\n\t\t\t\t$config['source_image'] = $img['file'];\n\t\t\t\t$config['quality'] = 100;\n\t\t\t\t$config['width'] = $params['resize_width'];\n\t\t\t\t$config['height'] = $params['resize_height'];\n\t\t\t\t$this->load->library('image_lib', $config);\n\t\t\t\t$this->image_lib->resize();\n\t\t\t\t$this->image_lib->clear();\n\t\t\t}\n\t\t} while (false);\n\t\techo json_encode($ret);\n\t\texit;\t}", "function guardar_imagenes($idc=null,$seccion){ \r\r\n if (!is_null($idc))\r\r\n $ims = zen_deserializar($this->padre->bd->seleccion_unica(\"imagenes from contenidos where idc=\".$idc)); \r\r\n else \r\r\n $ims = array();\r\r\n //Guardar imagenes:\r\r\n $errores = \"\";\r\r\n zen___carga_funciones(\"zen_ficheros\");\r\r\n $guardar_imgs= zen_guardarFicheros(\"imagenes\",ZF_DIR_MEDIA.\"img/$seccion/\",$errores,rand(10,100).\"_\",true,104);\r\r\n $n = count($ims); \r\r\n for ($i=0; $i<$n; $i++){ \r\r\n \tif (!isset($_POST['borrar_'.str_replace(\".\",\"_\",$ims[$i])])) {\r\r\n \t array_push($guardar_imgs,$ims[$i]); \r\r\n \t} else echo $_POST['borrar_'.$ims[$i]];\r\r\n }\r\r\n return zen_serializar($guardar_imgs);\r\r\n }", "function tampilPhoto($nrk=''){\n $rs=$this->mdl->get_data($nrk)->row();\n $result = $rs->X_PHOTO->load();\n// If any text (or whitespace!) is printed before this header is sent,\n// the text won't be displayed and the image won't display properly.\n// Comment out this line to see the text and debug such a problem.\n header(\"Content-type: image/JPEG\");\n echo $result;\n }", "function get_object_images($obj_type, $obj_id, $image_sizes = array(), $order = 'ASC')\n{\n $rows = db_get_list_by_query('SELECT * FROM object_images WHERE obj_type = \"' . \n strtok($obj_type, \" \") . '\" AND obj_id = ' . (int)$obj_id . \n ' ORDER by `order` ' . strtok($order, \" \"));\n if (!$rows)\n return;\n\n\n $images = array();\n foreach ($rows as $id => $row) {\n $images[$id] = get_images($row['img_id'], $image_sizes);\n $images[$id]['id'] = $row['id'];\n }\n\n $images = add_prev_next($images);\n return $images;\n}", "public function frontImage()\r\n {\r\n $wrapper = imagecreatetruecolor(16 * $this->ratio(), 32 * $this->ratio());\r\n $background = imagecolorallocatealpha($wrapper, 255, 255, 255, 127);\r\n imagefill($wrapper, 0, 0, $background);\r\n\r\n imagecopy($wrapper, $this->image, 4 * $this->ratio(), 0 * $this->ratio(), 8 * $this->ratio(),\r\n 8 * $this->ratio(), 8 * $this->ratio(), 8 * $this->ratio());\r\n //arms\r\n imagecopy($wrapper, $this->image, 0 * $this->ratio(), 8 * $this->ratio(), 44 * $this->ratio(),\r\n 20 * $this->ratio(), 4 * $this->ratio(), 12 * $this->ratio());\r\n $this->imageflip($wrapper, $this->image, 12 * $this->ratio(), 8 * $this->ratio(), 44 * $this->ratio(),\r\n 20 * $this->ratio(), 4 * $this->ratio(), 12 * $this->ratio());\r\n //chest\r\n imagecopy($wrapper, $this->image, 4 * $this->ratio(), 8 * $this->ratio(), 20 * $this->ratio(),\r\n 20 * $this->ratio(), 8 * $this->ratio(), 12 * $this->ratio());\r\n //legs\r\n imagecopy($wrapper, $this->image, 4 * $this->ratio(), 20 * $this->ratio(), 4 * $this->ratio(),\r\n 20 * $this->ratio(), 4 * $this->ratio(), 12 * $this->ratio());\r\n $this->imageflip($wrapper, $this->image, 8 * $this->ratio(), 20 * $this->ratio(), 4 * $this->ratio(),\r\n 20 * $this->ratio(), 4 * $this->ratio(), 12 * $this->ratio());\r\n //hat\r\n imagecopy($wrapper, $this->image, 4 * $this->ratio(), 0 * $this->ratio(), 40 * $this->ratio(),\r\n 8 * $this->ratio(), 8 * $this->ratio(), 8 * $this->ratio());\r\n\r\n return $wrapper;\r\n }", "private function crearImagenSinRecorte($anchoFinal,$altoFinal)\n\t{\n\t\t$ImgMediana \t= imagecreatetruecolor($anchoFinal,$altoFinal);\n\t\timagecopyresampled($ImgMediana,$this->punteroImagen,0,0,0,0,$anchoFinal,$altoFinal,$this->propiedadesImagen[0],$this->propiedadesImagen[1]);\n\t\t$this->crearArchivoDeImagen($ImgMediana);\n\t\timagedestroy($ImgMediana);\n\t}", "function __grayscale(&$tmp) {\r\r\n\t\tasido::trigger_abstract_error(\r\r\n\t\t\t__CLASS__,\r\r\n\t\t\t__FUNCTION__\r\r\n\t\t\t);\r\r\n\t\t}", "private function drawImage($image, $items, $x_origin, $y_origin, $size) {\n if (empty($items)) {\n return $image;\n }\n\n // Leafs -- stitch together photos\n if (!is_array(current($items))) {\n $uris = [];\n foreach ($items as $item) {\n $media = $this->insta->getMedia($item);\n $source_images[] = imagecreatefromjpeg($media->data->images->standard_resolution->url);\n }\n\n $n = count($source_images);\n\n /* 1 image - cover the entire square\n *\n * + - - - +\n * | |\n * | A |\n * | |\n * + - - - +\n */\n if ($n == 1) {\n // Image A\n imagecopyresampled(\n $image, $source_images[0], // destination, source images\n $x_origin, $y_origin, // x & y destination\n 0, 0, // x & y source\n $size, $size, // width & height destination\n 640, 640 // width & height source\n );\n }\n\n /* 2 images - place vertical middle portions next to each other\n *\n * + - + - +\n * | | |\n * | A | B |\n * | | |\n * + - + - +\n */\n elseif ($n == 2) {\n // Image A\n imagecopyresampled(\n $image, $source_images[0], // destination, source images\n $x_origin, $y_origin, // x & y destination\n 160, 0, // x & y source\n $size / 2, $size, // width & height destination\n 320, 640 // width & height source\n );\n\n // Image B\n imagecopyresampled(\n $image, $source_images[1], // destination, source images\n $x_origin + ($size / 2), $y_origin, // x & y destination\n 160, 0, // x & y source\n $size / 2, $size, // width & height destination\n 320, 640 // width & height source\n );\n }\n\n /* 3 images - place 1st vertical, 2nd two in right half stacked on top of one another\n *\n * + - + - +\n * | | B |\n * | A + - +\n * | | C |\n * + - + - +\n */\n elseif ($n == 3) {\n // Image A\n imagecopyresampled(\n $image, $source_images[0], // destination, source images\n $x_origin, $y_origin, // x & y destination\n 160, 0, // x & y source\n $size / 2, $size, // width & height destination\n 320, 640 // width & height source\n );\n\n // Image B\n imagecopyresampled(\n $image, $source_images[1], // destination, source images\n $x_origin + ($size / 2), $y_origin, // x & y destination\n 0, 0, // x & y source\n $size / 2, $size / 2, // width & height destination\n 640, 640 // width & height source\n );\n\n // Image C\n imagecopyresampled(\n $image, $source_images[2], // destination, source images\n $x_origin + ($size / 2), $y_origin + ($size / 2), // x & y destination\n 0, 0, // x & y source\n $size / 2, $size / 2, // width & height destination\n 640, 640 // width & height source\n );\n }\n\n /* 4 images - place in a 2x2 grid\n *\n * + - + - +\n * | A | B |\n * | - + - +\n * | C | D |\n * + - + - +\n */\n elseif ($n == 4) {\n $this->drawImage($image, [$items[0]], $x_origin + $size / 2, $y_origin, $size / 2);\n $this->drawImage($image, [$items[1]], $x_origin, $y_origin, $size / 2);\n $this->drawImage($image, [$items[2]], $x_origin, $y_origin + $size / 2, $size / 2);\n $this->drawImage($image, [$items[3]], $x_origin + ($size / 2), $y_origin + ($size / 2), $size / 2);\n }\n }\n\n // Branches -- Divide into 4 quadrants and iterate\n else {\n $this->drawImage($image, $items[0], $x_origin + $size / 2, $y_origin, $size / 2);\n $this->drawImage($image, $items[1], $x_origin, $y_origin, $size / 2);\n $this->drawImage($image, $items[2], $x_origin, $y_origin + $size / 2, $size / 2);\n $this->drawImage($image, $items[3], $x_origin + ($size / 2), $y_origin + ($size / 2), $size / 2);\n }\n\n return $image;\n }", "function insertarEstampa($urlimagen, $urlestampa)\n {\n $estampa = imagecreatefrompng($urlestampa);\n $im = imagecreatefromjpeg($urlimagen);\n // Establecer los márgenes para la estampa y obtener el alto/ancho de la imagen de la estampa\n $margen_dcho = 10;\n $margen_inf = 10;\n $sx = imagesx($estampa);\n $sy = imagesy($estampa);\n // Copiar la imagen de la estampa sobre nuestra foto usando los índices de márgen y el\n // ancho de la foto para calcular la posición de la estampa. \n imagecopy($im, $estampa, imagesx($im) - $sx - $margen_dcho, imagesy($im) - $sy - $margen_inf, 0, 0, imagesx($estampa), imagesy($estampa));\n // Imprimir y liberar memoria\n imagejpeg($im, $urlimagen);\n imagedestroy($im);\n }", "function rex_com_mediaaccess_EP_images($params)\n{\n global $REX;\n\n if($params['extension_point'] == 'IMAGE_RESIZE_SEND')\n $file = $params['filename'];\n else\n $file = $params['img']['file'];\n\n ## get auth - isn't loaded yet\n require_once $REX[\"INCLUDE_PATH\"].\"/addons/community/plugins/auth/inc/auth.php\";\n \n $media = rex_com_mediaaccess::getMediaByFilename($file);\n if($media->checkPerm())\n return true;\n\n return false;\n}", "public function getPicturesSeguimiento(Request $request){\n $this->validate($request,['id' => 'required']);\n $id = $request->input('id');\n $seguimiento = Seguimiento::where('paciente_id',$id)->get();\n $result = array();\n foreach ($seguimiento as $seg){\n $foto =(string) Image::make(storage_path('recursos/seguimientos/'.$seg->foto))->encode(\"data-url\");\n $seg->foto = $foto;\n $result[] = $seg;\n }\n\n return response()->json([\n 'status' => 'ok',\n 'code' => 200,\n 'result' => $result\n ],200)\n ->header('Access-Control-Allow-Origin','*')\n ->header('Content-Type', 'application/json');\n\n }", "public function getImages($idAnuncio){\n\t\t$query = \"SELECT fi.idImagen, fi.small, fi.medium, fi.big FROM final_imagen fi WHERE idAnuncio = '\".$idAnuncio.\"'\"; \n\t\treturn $this->con->action($query);\n\t}", "function ridizain_the_attached_image() {\r\n\t$post = get_post();\r\n\t/**\r\n\t * Filter the default Ridizain attachment size.\r\n\t *\r\n\t * @since Ridizain 1.0\r\n\t *\r\n\t * @param array $dimensions {\r\n\t * An array of height and width dimensions.\r\n\t *\r\n\t * @type int $height Height of the image in pixels. Default 810.\r\n\t * @type int $width Width of the image in pixels. Default 810.\r\n\t * }\r\n\t */\r\n\t$attachment_size = apply_filters( 'ridizain_attachment_size', array( 810, 810 ) );\r\n\t$next_attachment_url = wp_get_attachment_url();\r\n\r\n\t/*\r\n\t * Grab the IDs of all the image attachments in a gallery so we can get the URL\r\n\t * of the next adjacent image in a gallery, or the first image (if we're\r\n\t * looking at the last image in a gallery), or, in a gallery of one, just the\r\n\t * link to that image file.\r\n\t */\r\n\t$attachment_ids = get_posts( array(\r\n\t\t'post_parent' => $post->post_parent,\r\n\t\t'fields' => 'ids',\r\n\t\t'numberposts' => -1,\r\n\t\t'post_status' => 'inherit',\r\n\t\t'post_type' => 'attachment',\r\n\t\t'post_mime_type' => 'image',\r\n\t\t'order' => 'ASC',\r\n\t\t'orderby' => 'menu_order ID',\r\n\t) );\r\n\r\n\t// If there is more than 1 attachment in a gallery...\r\n\tif ( count( $attachment_ids ) > 1 ) {\r\n\t\tforeach ( $attachment_ids as $attachment_id ) {\r\n\t\t\tif ( $attachment_id == $post->ID ) {\r\n\t\t\t\t$next_id = current( $attachment_ids );\r\n\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t// get the URL of the next image attachment...\r\n\t\tif ( $next_id ) {\r\n\t\t\t$next_attachment_url = get_attachment_link( $next_id );\r\n\t\t}\r\n\r\n\t\t// or get the URL of the first image attachment.\r\n\t\telse {\r\n\t\t\t$next_attachment_url = get_attachment_link( array_shift( $attachment_ids ) );\r\n\t\t}\r\n\t}\r\n\r\n\tprintf( '<a href=\"%1$s\" rel=\"attachment\">%2$s</a>',\r\n\t\tesc_url( $next_attachment_url ),\r\n\t\twp_get_attachment_image( $post->ID, $attachment_size )\r\n\t);\r\n}", "function img($image,$layout='')\n{\n return $image;\n}", "private function updateImgThumbnail(): void\n {\n //====================================================================//\n // Load Object Images List\n $allImages = Image::getImages(\n SLM::getDefaultLangId(),\n $this->ProductId,\n null,\n Shop::getContextShopID(true)\n );\n //====================================================================//\n // Walk on Object Images List\n foreach ($allImages as $image) {\n $imageObj = new Image($image['id_image']);\n $imagePath = _PS_PROD_IMG_DIR_.$imageObj->getExistingImgPath();\n if (!file_exists($imagePath.'.jpg')) {\n continue;\n }\n foreach (ImageType::getImagesTypes(\"products\") as $imageType) {\n $imgThumb = _PS_PROD_IMG_DIR_.$imageObj->getExistingImgPath();\n $imgThumb .= '-'.Tools::stripslashes($imageType['name']).'.jpg';\n if (!file_exists($imgThumb)) {\n ImageManager::resize(\n $imagePath.'.jpg',\n $imgThumb,\n (int)($imageType['width']),\n (int)($imageType['height'])\n );\n }\n }\n }\n }", "function make_vImage($element){\n\t\t$dir=base_url().$element->getFile();\n\t\tif(substr($element->getFile(),0,7)=='http://'){\n\t\t\t$dir=$element->getFile();\n\t\t\t$width=$element->getWidth();\n\t\t\t$height=$element->getHeight();\n\t\t}\n\t\t// Si están definidos ancho y alto, usamos esos\n\t\telse if($element->getWidth() or $element->getHeight()){\n\t\t\t$width=$element->getWidth();\n\t\t\t$height=$element->getHeight();\n\t\t}\n\t\t// Si no, miramos el tamaño de la imagen\n\t\telse list($width,$height)=getimagesize($element->getFile());\n\t\t\n\t\treturn '<img'.$this->setStyle($element).($width?' width=\"'.$width.'\"':'').($height?' height=\"'.$height.'\"':'').' alt=\"'.$element->getAltText().'\" src=\"'.\n\t\t\t$dir.'\" />\n\t\t';\n\t}", "function saveImage($idPublicacion, $instancia) {\r\n require_once 'class/funciones.php';\r\n \r\n // 01 session de imagenes\r\n $dataSession['productos'] = (isset($_SESSION['productos']) && count($_SESSION['productos']) > 0) ? $_SESSION['productos'] : false;\r\n \r\n // 02 recorrido de estas ('productos')\r\n $dataInsert = array();\r\n if(isset($dataSession['productos']) && count($dataSession['productos']) > 0 && $dataSession['productos'] != false) {\r\n foreach ($dataSession['productos'] as $array) {\r\n $targetFile = realpath(__DIR__ .\"/images/productos/\") .'/'. $array['img_tmp']['name'];\r\n \r\n if (!copy($array['img_tmp']['path'], $targetFile)) { echo \"failed to copy image\"; exit; }\r\n \r\n $dataInsert['publicacionID'] = $idPublicacion;\r\n $dataInsert['nombre'] = $array['img_tmp']['name'];\r\n $dataInsert['fecha_registro'] = date(\"Y-m-d h:i:s\");\r\n $dataInsert['estado'] = 1;\r\n \r\n $instancia->insertImagesByPublicacion($dataInsert);\r\n // 02.1 crear thumbnail\r\n $updir = realpath(__DIR__ .\"/images/productos/\") . \"/\";\r\n $dirLocation = realpath(__DIR__ .\"/images/productos/thumb\") . \"/\"; \r\n $extension = getFileExtension($array['img_tmp']['name']);\r\n $id = str_replace($extension, '', $array['img_tmp']['name']);\r\n makeThumbnails($updir, $extension, $id, $dirLocation);\r\n \r\n }\r\n }\r\n // 03 limpiar imagenes en session\r\n if (isset($_SESSION['productos'])) { unset($_SESSION['productos']); } \r\n}", "protected function calidadImagenDefaut(){\r\n\t\t$this->calidadImagen=100;\r\n\t}", "private function getImgRecepiesStack()\n {\n $imgRecepiesStack = [\n Image::RR_SINGLE => [],\n Image::RR_MULTI => [],\n ];\n \n if (isset($this->imageResizeRecepies)) {\n $imgRecepiesStack[Image::RR_SINGLE] = $this->imageResizeRecepies;\n }\n \n if (isset($this->multiImageResizeRecepies)) {\n $imgRecepiesStack[Image::RR_MULTI] = $this->multiImageResizeRecepies;\n }\n \n return $imgRecepiesStack;\n }", "function existeImagen($r)\n{\n if ($r == \"\") {\n $r = \"images/no_image.png\";\n }\n return $r;\n}", "function image_sizes() {\n\tadd_image_size( 'rwd-small', 400, 200 );\n\tadd_image_size( 'rwd-medium', 800, 400 );\n\tadd_image_size( 'rwd-large', 1200, 600 );\n\tadd_image_size( 'rwd-mediumx2', 1600, 800 );\n\tadd_image_size( 'rwd-xl', 2000, 1000 );\n\tadd_image_size( 'rwd-largex2', 2400, 1200 );\n\tadd_image_size( 'rwd-xlx2', 4000, 2000 );\n}", "function logo ()\n {\n global $connection;\n $sql = \"SELECT * FROM slike_logo sl ORDER BY sl.putanja_logo DESC LIMIT 0,1\";\n $sum = $connection->query($sql)->fetchAll();\n foreach($sum as $item) :\n echo \"<a href='index.php?page=pocetna'><img src=$item->putanja_logo alt=$item->ime_slike title='NanoSoft DeLux' width='177' height='106'/></a>\";\n endforeach;\n }", "function upImagenAction(){\n\t\t\n\t\t$request = $this->get('request');\n\t\t\n\t\t$estetica=$request->request->get('id');\n\t\t$img=$request->request->get('img');\n\t\t\t\t\n\t\t$em = $this->getDoctrine()->getEntityManager();\n\t\t$hcEstetica = $em->getRepository('HcBundle:Hc')->find($estetica);\n\t\t\n\t\t\t\t\n\t\tif($hcEstetica){\t\t\n\t\t\t$ruta = $this->container->getParameter('dlaser.directorio.imagenes');\n\t\t\t\n\t\t\tif ($img) {\n\t\t\t\t\n\t\t\t\t$imgData = base64_decode(substr($img,22));\n\t\t\t\t\n\t\t\t\t$file = $ruta.'grafico_'.$estetica.'.png';\n\t\t\t\t\n\t\t\t\tif (file_exists($file)) { unlink($file); }\n\t\t\t\t$fp = fopen($file, 'w');\n\t\t\t\tfwrite($fp, $imgData);\n\t\t\t\tfclose($fp);\n\t\t\t\t\n\t\t\t\t$response=array(\"responseCode\"=>200, \"msg\"=>\"La operación ha sido exitosa.\");\n\t\t\t}\n\t\t}else{\n\t\t\t$response=array(\"responseCode\"=>400, \"msg\"=>\"Ha ocurrido un error al crear la imagen.\");\n\t\t}\n\t\t\n\t\t$return=json_encode($response);\n\t\treturn new Response($return,200,array('Content-Type'=>'application/json'));\n\t}", "private function filtrandoImagens($divNoti) {\n \n $img = [];\n \n foreach ($divNoti as $divInterna) {\n foreach ($divInterna as $imagem) {\n $classeInterna = $imagem->getAttribute('class');\n\n if ($classeInterna == 'td-module-thumb') {\n $img[] = $imagem->getElementsByTagName('img');\n }\n }\n }\n return $img;\n }" ]
[ "0.6357741", "0.6304501", "0.6279307", "0.6161989", "0.6120589", "0.6120589", "0.61119133", "0.60061806", "0.5966802", "0.5960528", "0.591074", "0.591074", "0.591074", "0.591074", "0.58811456", "0.58558255", "0.58129925", "0.5787303", "0.57127684", "0.5696688", "0.5665156", "0.5654602", "0.5647894", "0.56266326", "0.5624554", "0.5623799", "0.561443", "0.55711305", "0.55629927", "0.5557607", "0.5534753", "0.5527141", "0.5521974", "0.5485309", "0.546856", "0.54470533", "0.54460996", "0.54417324", "0.54358435", "0.5424114", "0.5398014", "0.5388292", "0.53631973", "0.5347759", "0.5339234", "0.53364384", "0.53326887", "0.5330313", "0.5326338", "0.5322106", "0.53163433", "0.53163433", "0.52962714", "0.5290125", "0.5280665", "0.527866", "0.5277807", "0.5275768", "0.52742106", "0.5271561", "0.5264695", "0.5256053", "0.524635", "0.5238407", "0.5233121", "0.5224542", "0.5224245", "0.5217361", "0.52068603", "0.51986766", "0.5198142", "0.5197262", "0.51964504", "0.51946604", "0.5192718", "0.51780045", "0.51706266", "0.51704633", "0.5167519", "0.5161988", "0.51606274", "0.51605606", "0.5156472", "0.5156059", "0.5154613", "0.51532984", "0.5150807", "0.5143385", "0.5142053", "0.5141965", "0.5135467", "0.5125234", "0.5118704", "0.5118212", "0.51131964", "0.51031613", "0.51009166", "0.5084424", "0.50781345", "0.50771624", "0.5071869" ]
0.0
-1
Metodo para validar si existe una imagen
public function existeImagen($imagen) { $query = new static; $query = DB::select('select * from ldci.tb_imagen where nombre=?', [$imagen]); if (empty($query)) return false; else return true; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function file_is_valid_image($path)\n {\n }", "private function isValidImage() {\r\n\t\t\treturn in_array($this->extension, $this->extAllowed) ? true : false;\r\n\t\t}", "private function validatePhoto()\n {\n if (empty($this->photo['name'])) {\n $this->updateEditProfile();\n } else {\n $formatNamePhoto = new \\Module\\administrative\\Models\\helper\\AdmsFormatCharacter();\n $this->dados['imagem'] = $formatNamePhoto->formatCharacters($this->photo['name']);\n $uploadImg = new \\Module\\administrative\\Models\\helper\\AdmsUploadImgRed();\n $uploadImg->uploadImd(\n $this->photo,\n 'assets/image/user/' . $_SESSION['userId'] . '/',\n $this->dados['imagem'],\n 150,\n 150\n );\n if ($uploadImg->getResult()) {\n $deleteImg = new \\Module\\administrative\\Models\\helper\\AdmsDeleteImg();\n $deleteImg->deleteImage('assets/image/user/' \n . $_SESSION['userId'] . '/' . $this->imgageOld);\n $this->updateEditProfile();\n } else {\n $this->result = false;\n }\n }\n }", "function valid_image($str,$campo) {\n\t\t\n\t\tif($_FILES[$campo]['tmp_name']):\t\t\n\t\t\t/*\n\t \t\t//Check for image upload\n\t\t if(!isset($_FILES['fuente_pantalla'])) {\n\t\t $this->validation->set_message('valid_image', 'Imagen requerida.');\n\t\t return false;\n\t\t }\n\t\t \n\t\t //Check for file size\n\t\t if($_FILES['image']['size'] == 0) {\n\t\t $this->validation->set_message('valid_image', 'Imagen requerida.');\n\t\t return false;\n\t\t }\n\t\t */\t\t\n\t\t //Check for upload errors\n\t\t if($_FILES[$campo]['error'] != UPLOAD_ERR_OK) {\n\t\t $this->CI->form_validation->set_message('valid_image', 'Error al subir el archivo, intente nuevamente.');\n\t\t return false;\n\t\t }\n\t\t \n\t\t //Check for valid image upload\n\t\t $imginfo = getimagesize($_FILES[$campo]['tmp_name']);\n\t\t if(!$imginfo) {\n\t\t $this->CI->form_validation->set_message('valid_image', '&Uacute;nicamente se permiten archivos de imagen.');\n\t\t return false;\n\t\t }\n\t\t \n\t\t //Check for valid image types\n\t\t //if( !($imginfo[2] == 1 || $imginfo[2] == 2 || $imginfo[2] == 3) ) // JPG PNG Y GIF\n\t\t if( !($imginfo['mime'] == 'image/jpeg' ))\n\t\t {\n\t\t $this->CI->form_validation->set_message('valid_image', 'Solo se permiten archivos en formato JPG.');\n\t\t return false;\n\t\t }\n\t\t \n\t\t //Check for existing image\n\t\t /*\n\t\t if(file_exists(SITEPATH.'uploads/images/'.$_FILES['image']['name'])) {\n\t\t $this->validation->set_message('valid_image', 'Image by this name already exists');\n\t\t return false;\n\t\t }*/\n\t endif;\n\t return true;\n}", "function validate_image_field($field)\n {\n }", "public function correctImage(){\n parent::isImage();\n parent::exist();\n parent::sizeFile();\n return $this->uploadOk;\n }", "function Photo_Uploaded_Is_Valid($Max_Size = 500000)\n{\n //sinon $_FILES n'est pas défini\n\n // 'un_fichier' est le nom sur le formulaire HTML\n if (!isset($_FILES['un_fichier'])) {\n return 'Aucune image téléversée';\n }\n\n if ($_FILES['un_fichier']['error'] != UPLOAD_ERR_OK) {\n return 'Erreur téléchargement de la photo: code='.$_FILES['un_fichier']['error'];\n }\n\n // Vérifier taille de l'image\n if ($_FILES['un_fichier']['size'] > $Max_Size) {\n return 'Fichier trop gros, taille maximum = '.$Max_Size.' Kb';\n }\n\n // Vérifier si le fichier contient une image\n $check = getimagesize($_FILES['un_fichier']['tmp_name']);\n if ($check === false) {\n return \"Ce fichier n'est pas une image\";\n }\n\n // Vérifier si extension est jpg,JPG,gif,png\n $imageFileType = pathinfo(basename($_FILES['un_fichier']['name']), PATHINFO_EXTENSION);\n if ($imageFileType != 'jpg' && $imageFileType != 'JPG' && $imageFileType != 'gif' && $imageFileType != 'png') {\n return \"L'extension du fichier est invalide. Doit être parmis: .jpg .JPG .gif .png\";\n }\n\n return 'OK';\n}", "function logonscreener_image_is_valid($info) {\n $valid = $info['width'] == $GLOBALS['screen_width']\n && $info['height'] == $GLOBALS['screen_height']\n && $info['extension'] == 'jpeg'\n && $info['file_size'] <= LOGONSCREENER_MAX_FILESIZE;\n\n if ($valid) {\n logonscreener_log('Image is valid with no further transformation.');\n }\n\n return $valid;\n}", "function check_image_existance($path,$image_name)\n{\n //buld the url\n $image_url=$path.$image_name;\n if (file_exists($image_url) !== false) {\n return true;\n }\n}", "public function testValidate() {\n\t\t$validator = new ImageValidator();\n\t\t$validator->addRule('ext', 'Invalid extension', array('png'));\n\n\t\t$this->object->setValidator($validator);\n\n\t\ttry {\n\t\t\t$this->object->upload();\n\n\t\t\t$this->assertTrue(false);\n\n\t\t} catch (Exception $e) {\n\t\t\t$this->assertTrue(true);\n\t\t}\n\t}", "public function hasImage(): bool;", "function checkFilePhoto(string $name)\n{\n if (!($_FILES[$name]['type'] == 'image/png') && !($_FILES[$name]['type'] == 'image/jpeg') && !($_FILES[$name]['type'] == 'image/gif')) {\n return 'Некорректный формат фото';\n }\n}", "private function checkImage(){\r\n \r\n $images = $this->image;\r\n @$imageName = $images['name'];\r\n @$imageTmp = $images['tmp_name'];\r\n @$imageSize = $images['size'];\r\n @$imageError = $images['error'];\r\n $imageExe = explode('.', $imageName);\r\n $imageExe = strtolower(end($imageExe));\r\n $newName = uniqid('post' , FALSE) . '.' . $imageExe;\r\n \r\n $allowed = [\"jpg\",\"jpeg\" ,\"bmp\" , \"gif\",\"png\"];\r\n// if(in_array($imageExe, $allowed) != 1) {\r\n// Messages::setMsg(\"خطأ\", \"يجب اختيار صورة حقيقية\", \"danger\") ;\r\n// echo Messages::getMsg();\r\n if(0) {\r\n \r\n }else if($imageSize > 1024 * 1024) {\r\n echo \"حجم الصورة جدا كبير\";\r\n }else if($imageError != 0) {\r\n echo \"يرجى ادخال صورة صحيحة\";\r\n }\r\n else{\r\n $dir = __DIR__ . \"/../libs/photos/\" ;\r\n if(!file_exists($dir)){\r\n mkdir($dir,TRUE);\r\n }\r\n $filedire = $dir.$newName;\r\n if(move_uploaded_file($imageTmp, $filedire)) {\r\n $this->uploadImage = $newName;\r\n }\r\n return TRUE;\r\n } // end else\r\n \r\n return false;\r\n }", "public function isValidImage()\n\t{\n\t\t$src = $this->source_path;\n\t\t$extension = \\strtolower(\\substr($src, (\\strrpos($src, '.') + 1)));\n\n\t\tif (!\\in_array($extension, $this->image_extensions)) {\n\t\t\treturn false;\n\t\t}\n\n\t\t$r = @\\imagecreatefromstring(\\file_get_contents($src));\n\n\t\treturn \\is_resource($r) && \\get_resource_type($r) === 'gd';\n\t}", "public function is_valid_image() {\n\n if ( get_post_type( $this->slide->ID ) === 'attachment' ) {\n $image_id = $this->slide->ID;\n } else {\n $image_id = get_post_thumbnail_id( $this->slide->ID );\n }\n\n $meta = wp_get_attachment_metadata( $image_id );\n\n $is_valid = isset( $meta['width'], $meta['height'] );\n\n return apply_filters( 'metaslider_is_valid_image', $is_valid, $this->slide );\n }", "public function testGetValidImageByImagePath () {\n\t\t//count the number of rows and save it for later\n\t\t$numRows = $this->getConnection()->getRowCount(\"image\");\n\n\t\t//create a new Image and insert it into MySQL\n\t\t$image = new Image(null, $this->VALID_IMAGEPATH, $this->VALID_IMAGETYPE);\n\t\t$image->insert($this->getPDO());\n\n\t\t//grab the data from MySQL and enforce the fields match our expectations\n\t\t$results = Image::getImageByImagePath($this->getPDO(), $image->getImagePath());\n\t\t$this->assertEquals($numRows + 1, $this->getConnection()->getRowCount(\"image\"));\n\t\t$this->assertCount(1, $results);\n\t\t$this->assertContainsOnlyInstancesOf(\"Edu\\\\Cnm\\\\DevConnect\\\\Image\", $results);\n\n\t\t//grab the results from the array and validate it\n\t\t$pdoImage = $results[0];\n\t\t$this->assertEquals($pdoImage->getImageId(), $image->getImageId());\n\t\t$this->assertEquals($pdoImage->getImagePath(), $this->VALID_IMAGEPATH);\n\t\t$this->assertEquals($pdoImage->getImageType(), $this->VALID_IMAGETYPE);\n\t}", "public function valid_image($str)\n {\n if ($_FILES['image']['size'] > 0 && $_FILES['image']['error'] == UPLOAD_ERR_OK) {\n\n $imginfo = @getimagesize($_FILES['image']['tmp_name']);\n if (!$imginfo) {\n $this->form_validation->set_message('validImage', 'Only image files are allowed');\n return false;\n }\n\n if (!($imginfo[2] == 1 || $imginfo[2] == 2 || $imginfo[2] == 3)) {\n $this->form_validation->set_message('validImage', 'Only GIF, JPG and PNG Images are accepted.');\n return false;\n }\n }\n return true;\n }", "public function isValidImage() {\n return $this->_is_validimage;\n }", "public function check_image(){\n $sql=\"SELECT * FROM photos\";\n $sql.=\" WHERE name='{$this->name}' \";\n\n $row=self::$connect->query($sql)->rowCount();\n if($row>=1){\n return true;\n }\n }", "function validatePicture($fieldname)\n{\n $error = '';\n if (!empty($_FILES[$fieldname]['error'])) {\n switch ($_FILES[$fieldname]['error']) {\n case '1':\n $error = 'Upload maximum file is '.number_format(IMG_UPLOAD_MAX_SIZE/1024,2).' MB.';\n break;\n case '2':\n $error = 'File is too big, please upload with smaller size.';\n break;\n case '3':\n $error = 'File uploaded, but only halef of file.';\n break;\n case '4':\n $error = 'There is no File to upload';\n break;\n case '6':\n $error = 'Temporary folder not exists, Please try again.';\n break;\n case '7':\n $error = 'Failed to record File into disk.';\n break;\n case '8':\n $error = 'Upload file has been stop by extension.';\n break;\n case '999':\n default:\n $error = 'No error code avaiable';\n }\n } elseif (empty($_FILES[$fieldname]['tmp_name']) || $_FILES[$fieldname]['tmp_name'] == 'none') {\n $error = 'There is no File to upload.';\n } elseif ($_FILES[$fieldname]['size'] > IMG_UPLOAD_MAX_SIZE) {\n $error = 'Upload maximum file is '.number_format(IMG_UPLOAD_MAX_SIZE/1024,2).' MB.';\n } else {\n //$get_ext = substr($_FILES[$fieldname]['name'],strlen($_FILES[$fieldname]['name'])-3,3);\t\n $cekfileformat = check_image_type($_FILES[$fieldname]);\n if (!$cekfileformat) {\n $error = 'Upload Picture only allow (jpg, gif, png)';\n }\n }\n\n return $error;\n}", "function checkImg(){\n global $postpath;\n return getimagesize($postpath) !== false;\n }", "function valid_image($files = null) {\r\n if (isset($files) && !empty($files)) {\r\n $allowedExts = array(\r\n \"gif\",\r\n \"jpeg\",\r\n \"jpg\",\r\n \"png\",\r\n \"GIF\",\r\n \"JPEG\",\r\n \"JPG\",\r\n \"PNG\"\r\n );\r\n $temp = explode(\".\", $files ['name']);\r\n $extension = end($temp);\r\n\r\n if (!in_array($extension, $allowedExts)) {\r\n return 'No';\r\n }\r\n }\r\n return \"Yes\";\r\n }", "function is_imagen($arch)\r\n{$i=strlen($arch)-1;\r\n $extensiones_aceptadas=array(\"gif\",\"jpg\",\"jpeg\",\"bmp\");\r\n $extension=\"\";\r\n while(($i>=0)&&($arch[$i]!='.'))\r\n {$extension=$arch[$i].$extension;\r\n $i--;\r\n }\r\n if ($i<0) return false;\r\n else {if(in_array($extension,$extensiones_aceptadas)){return true;}\r\n else {return false;};\r\n }\r\n}", "public function imgValid($name_img, $sizeMax = 2000000, $validExtensions = array('.jpg','.jpeg','.png'))\n\t{\n $error = '';\n if ($_FILES[$name_img]['error'] > 0) {\n if ($_FILES[$name_img]['error'] != 4) {\n\t\t\t\t $error= 'Problem: ' . $_FILES[$name_img]['error'] . '<br />';\n\t\t\t }\n } else {\n //print_r($_FILES[$name_img]);\n $file_name = $_FILES[$name_img]['name']; // le nom du fichier\n\t\t\t $file_size = $_FILES[$name_img]['size']; // la taille ( peu fiable depend du navigateur)\n\t\t\t\t// OR $size = filesize($_FILES[$name_img]['tmp_name']);\n\t\t\t $file_tmp = $_FILES[$name_img]['tmp_name']; // le chemin du fichier temporaire\n\t\t\t $file_type = $_FILES[$name_img]['type']; // type MIME (peu fiable, depend du navigateur)\n\n // Taille du fichier (x2)\n if($file_size > $sizeMax || filesize($file_tmp) > $sizeMax){ //limite le fichier a 2mo\n\t\t\t\t $error = 'Le fichier est trop gros (max '. $sizeMax .'mo)';\n\t\t\t } else {\n // array of valid extensions\n $validExtensions = array('.jpg','.jpeg','.png');\n\n //$fileExtension = strrchr($file_name, \".\");\n\t\t\t\t\t$i_point = strrpos($file_name,'.');\n \t\t\t\t$fileExtension = substr($file_name, $i_point ,strlen($file_name) - $i_point);\n\n if (!in_array($fileExtension, $validExtensions)) {\n\t\t\t\t\t\t$error = 'Veuillez télécharger une image de type jpg,jpeg ou png';\n\t\t\t\t\t} else {\n // alternative, sécurité +++++\n\t\t\t\t\t\t$finfo = finfo_open(FILEINFO_MIME_TYPE); // return mime type ala mimetype extension\n\t \t\t\t$mime = finfo_file($finfo, $file_tmp);\n\t\t\t\t\t\tfinfo_close($finfo);\n\n\t\t\t\t\t\t$goodExtension = array('image/jpeg','image/png','image/jpg');\n\n\t\t\t\t\t\tif (!in_array($mime, $goodExtension)) {\n\t\t\t\t\t\t\t$error= 'Veuillez télécharger une image de type jpg,jpeg ou png';\n\t\t\t\t\t\t} else {\n $error = array(\n 'ext' => $fileExtension,\n 'file_tmp' => $file_tmp\n );\n }\n }\n }\n }\n return $error;\n }", "protected function is_valid_image_file($file_path) {\n \treturn false;\n }", "protected function validatePhoto(){\n\n $extension = $this->type;\n\n if( !empty($extension)){\n if($extension != 'image/jpeg' && $extension != 'image/png' && $extension != 'image/jpg'){\n $this->errors_on_upload[] = \"Your file should be .jpeg, .jpg or .png\";\n }\n }\n\n if($this->size > Config::MAX_FILE_SIZE){\n $this->errors_on_upload[] = \"Your picture shouldn't be more than 10 Mb\";\n }\n\n if($this->error != 0 && $this->error != 4) { //0 means no error, so if otherwise, display a respective message, 4 no files to upload, we allow that\n $this->errors_on_upload[] = $this->upload_errors_array[$this->error];\n }\n\n }", "public function valid_images($str)\n {\n if (!isset($_FILES['image']) || $_FILES['image']['size'] == 0 || $_FILES['image']['error'] != UPLOAD_ERR_OK) {\n $this->form_validation->set_message('valid_images', 'Image not uploaded.');\n return false;\n }\n\n $imginfo = @getimagesize($_FILES['image']['tmp_name']);\n\n if (!($imginfo[2] == 1 || $imginfo[2] == 2 || $imginfo[2] == 3)) {\n $this->form_validation->set_message('valid_images', 'Only GIF, JPG and PNG Images are accepted');\n return false;\n }\n return true;\n }", "public function validate()\r\n\t{\r\n\t\tLumine_Validator_PHPValidator::clearValidations($this);\r\n\t\t// adicionando as regras \r\n\t\tLumine_Validator_PHPValidator::addValidation($this, 'nomeImagensUteis', Lumine_Validator::REQUIRED_STRING, 'Informe o nome da Imagem');\r\n\t\t\r\n\t\treturn parent::validate();\r\n\t}", "protected function _checkImage() {\n if ( !is_file ( $this->src ) ) {\n $this->src = $this->default_missing_image; \n }\n $image_path_parts = pathinfo ( $this->src );\n $this->_image_name = $image_path_parts['basename'];\n $this->_thumb_filename = $this->attributes['width'] . 'x' . $this->attributes['height'] . '_' . $this->_image_name;\n $this->_thumb_src = $this->thumbs_dir_path . $this->_thumb_filename;\n if ( is_readable ( $this->_thumb_src ) ) {\n $this->_calculated_width = $this->attributes['width'];\n $this->_calculated_height = $this->attributes['height'];\n $this->src = $this->_thumb_src;\n return 'no_thumb_required';\n }\n if ( !$this->_original_image_info = getimagesize ( $this->src ) ) {\n return 'abort';\n } \n if (!in_array ( $this->_original_image_info['mime'], $this->_valid_mime ) ) {\n return 'abort';\n }\n }", "public function testGetInvalidImageByImagePath() {\n\t\t//grab an image by searching for content that does not exist\n\t\t$image = Image::getImageByImagePath($this->getPDO(), \"this image is not found\");\n\t\t$this->assertCount(0, $image);\n\t}", "function isValidImage( $file ) {\n\n\t$form_errors = array();\n\n\t$part = explode( \".\", $file );\n\t$extension = end( $part );\n\n\tswitch( strtolower( $extension ) ) {\n\n\t\tcase 'jpg':\n\t\tcase 'gif':\n\t\tcase 'bmp':\n\t\tcase 'png':\n\n\t\treturn $form_errors;\n\n\t}\n\n\t$form_errors[] = $extension . \"is not valid image extension\";\n\n\treturn $form_errors;\n\n}", "public function isValid() {\n if ($this->advanced) {\n $this->image = imagecreatefromstring($this->image);\n }\n\n if (!$this->checkFiletype()) {\n trigger_error('Image format is invalid', E_USER_ERROR);\n failed(WEBROOT . '/', 'Image format is invalid');\n return false;\n }\n if ($this->isVideo) {\n $videoAtts = $this->getVideoAttributes();\n $width = $videoAtts['width'];\n $height = $videoAtts['height'];\n if ($width != $height) {\n trigger_error('Video is not 1:1 aspect ratio', E_USER_ERROR);\n failed(WEBROOT . '/', 'Video is not 1:1 aspect ratio');\n return false;\n }\n if ($width < MINIMAGESIZE) {\n trigger_error('Video is smaller than ' . MINIMAGESIZE, E_USER_ERROR);\n failed(WEBROOT . '/', 'Video is smaller than ' . MINIMAGESIZE);\n return false;\n }\n \n $filesize = filesize($this->image);\n $maxFilesize = Helper::getInstance()->convertToBytes(MAXVIDEOFILESIZE, 'mb');\n if ($filesize > $maxFilesize) {\n trigger_error('Video is too large, max filesize is ' . MAXVIDEOFILESIZE, E_USER_ERROR);\n failed(WEBROOT . '/', 'Video is too large, max filesize is ' . MAXVIDEOFILESIZE);\n return false;\n }\n } else if ($this->filetype == 'svg') {\n \n } else {\n if ($this->advanced) {\n $width = imagesx($this->image);\n $height = imagesy($this->image);\n } else {\n $imageSize = getimagesize($this->image);\n $width = $imageSize[0];\n $height = $imageSize[1];\n }\n if ($width != $height) {\n trigger_error('Image is not 1:1 aspect ratio', E_USER_ERROR);\n failed(WEBROOT . '/', 'Image is not 1:1 aspect ratio');\n return false;\n }\n if ($width < MINIMAGESIZE) {\n trigger_error('Image is smaller than ' . MINIMAGESIZE, E_USER_ERROR);\n failed(WEBROOT . '/', 'Image is smaller than ' . MINIMAGESIZE);\n return false;\n }\n }\n \n return true;\n }", "public static function validateImageFile()\n {\n if (!isset($_FILES['logo_file'])) {\n Session::add('feedback_negative', Text::get('FEEDBACK_AVATAR_IMAGE_UPLOAD_FAILED'));\n return false;\n }\n if ($_FILES['logo_file']['size'] > 5000000) {\n // if input file too big (>5MB)\n Session::add('feedback_negative', Text::get('FEEDBACK_AVATAR_UPLOAD_TOO_BIG'));\n return false;\n }\n // get the image width, height and mime type\n $image_proportions = getimagesize($_FILES['logo_file']['tmp_name']);\n // if input file too small\n if ($image_proportions[0] < Config::get('AVATAR_SIZE') || $image_proportions[1] < Config::get('AVATAR_SIZE')) {\n Session::add('feedback_negative', Text::get('FEEDBACK_AVATAR_UPLOAD_TOO_SMALL'));\n return false;\n }\n if (!($image_proportions['mime'] == 'image/jpeg')) {\n Session::add('feedback_negative', Text::get('FEEDBACK_AVATAR_UPLOAD_WRONG_TYPE'));\n return false;\n }\n return true;\n }", "protected function isExternalImage() {}", "function validate_image(&$data, &$image, $key) { \n if(\n $image[\"error\"] != UPLOAD_ERR_NO_FILE &&\n check_real_image($image) &&\n check_image_size($image) && \n check_image_extension($image))\n\n $data[$key] = $image;\n else\n $data[$key] = null;\n\n}", "function Photo_Uploaded_Is_Valid($file_input, $Max_Size = 500000)\n{\n //Must havein HTML <form enctype=\"multipart/form-data\" .. //otherwise $_FILE is undefined // $file_input is the file input name on the HTML form\n if (!isset($_FILES[$file_input])) {\n return 'No image uploaded';\n }\n if ($_FILES[$file_input]['error'] != UPLOAD_ERR_OK) {\n return 'Error picture upload: code='.$_FILES[$file_input]['error'];\n }\n\n // Check image size\n if ($_FILES[$file_input]['size'] > $Max_Size) {\n return 'Image too big, max file size is '.$Max_Size.' Kb';\n }\n\n // Check that file actually contains an image\n $check = getimagesize($_FILES[$file_input]['tmp_name']);\n if ($check === false) {\n return 'This file is not an image';\n }\n\n // Check extension is jpg,JPG,gif,png\n $imageFileType = pathinfo(basename($_FILES[$file_input]['name']), PATHINFO_EXTENSION);\n if ($imageFileType != 'jpg' && $imageFileType != 'JPG' && $imageFileType != 'gif' && $imageFileType != 'png') {\n return 'Invalid image file type, valid extensions are: .jpg .JPG .gif .png';\n }\n\n return 'OK';\n}", "function fileChecker($nome_file){\n \n // controllo che sia stato inviato un file altrimenti restituisco false\n if(empty($_FILES['file'])){\n return false;\n }\n \n // memorizzo l'estensione\n $ext = trim(strtolower(end($nome_file)));\n \n // verifico che sia stato inviato un file contente un foto i formati disponibili sono jpg png jpeg\n if(!preg_match(VALID_FILE_FORMAT, $ext)){\n return false;\n }\n \n return true;\n}", "function existeImagen($r)\n{\n if ($r == \"\") {\n $r = \"images/no_image.png\";\n }\n return $r;\n}", "function validate_picture_file($path) {\n $acceptableTypes = array(IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_GIF);\n $detectedType = exif_imagetype($path); // WARNING: This will only work if the\n // EXIF extension is enabled.\n return in_array($detectedType, $acceptableTypes);\n}", "function image_exist( $img ) \r\n\t\t{\r\n\t\t\tif( @file_get_contents( $img,0,NULL,0,1) ){ return 1; } else{ return 0; }\r\n\t\t\t\r\n\t\t}", "public function isImage(){\n if($this->imageFileType != \"jpg\" && $this->imageFileType != \"png\" && $this->imageFileType != \"jpeg\"\n && $this->imageFileType != \"gif\" ) {\n echo \"Sorry, only JPG, JPEG, PNG & GIF files are allowed.<br>\";\n $this->uploadOk = 0;\n }\n return $this->uploadOk;\n }", "function imageCheck($target,$width=1,$height=1){\n if($width==1&&$height==1){\n return is_array(getimagesize($target));\n }else{\n $rvalue = false;\n if(is_array(getimagesize($target))){\n try {\n $img = new Imagick($target);\n if(strtoupper($img->getImageFormat())=='GIF'){\n $img = $img->coalesceImages();\n $img = $img->coalesceImages();\n do {\n if($width==0||$height==0)\n $img->resizeImage($width, $height, Imagick::FILTER_BOX, 1);\n else $img->resizeImage($width, $height, Imagick::FILTER_BOX, 1,true);\n } while ($img->nextImage());\n $img = $img->deconstructImages();\n $img->writeImages($target,true);\n }else{\n if($width==0||$height==0)\n $img->thumbnailImage($width, $height);\n else $img->thumbnailImage($width, $height,true);\n $img->writeImage($target);\n }\n $img->destroy();\n $rvalue = true;\n } catch (Exception $e) {\n }\n }\n return $rvalue;\n }\n}", "function validatePhoto(){\n\t\t\tglobal $validForm, $photo_name_Err; // use global versions of these variables\n\t\t\t// check that photo was uploaded without errors\n\t\t\tif(isset($_FILES['photo']) && $_FILES['photo']['error'] == 0){\n\t\t\t\t$allowed = array(\"jpg\" => \"image/jpg\", \"jpeg\" => \"image/jpeg\", \"gif\" => \"image/gif\", \"png\" => \"image/png\");\n\t\t\t\t$photo_name = $_FILES['photo']['name'];\n\t\t\t\t//echo $photo_name;\n\t\t\t\t$photo_type = $_FILES['photo']['type'];\n\n\t\t\t\t// Verify file extension\n\t\t\t\t$ext = pathinfo($photo_name, PATHINFO_EXTENSION);\n\t\t\t\tif(!array_key_exists($ext, $allowed)){\n\t\t\t\t\t//die(\"Error: Please select a valid file format.\");\n\t\t\t\t\t$photo_name_Err = \"*Please select a valid file format.\";\n\t\t\t\t\t$validForm=false;\n\t\t\t\t}\n\t\t\t\t// Verify file type\n\t\t\t\tif(in_array($photo_type, $allowed)){\n\t\t\t\t\t// Check whether file exists before uploading\n\t\t\t\t\tif(file_exists(\"images/\".$_FILES['photo']['name'])){\n\t\t\t\t\t\t//echo $_FILES['photo']['name'].\" already exists.\";\n\t\t\t\t\t}else{\n\t\t\t\t\t\tmove_uploaded_file($_FILES['photo']['tmp_name'], \"images/\".$_FILES['photo']['name']);\n\t\t\t\t\t\t//echo \"Your file was uploaded successfully.\";\n\t\t\t\t\t}\n\t\t\t\t}else{\n\t\t\t\t\t$displayMsg .= \"<h2>Error: there was a problem uploading your file. Please try again.</h2>\";\n\t\t\t\t}\n\t\t\t}\n\t\t}", "private function checkImage()\n\t{\n\t\tif (!$this->imageResized) {\n\t\t\t$this->resize($this->width, $this->height);\n\t\t}\n\t}", "function check_file_existance($path)\n{\n //buld the url\n $image_url=$path;\n if (file_exists($image_url) !== false) {\n return true;\n }\n}", "function image_exist($file, $path=\"\") {\n\tif ($file)\n\t{\n\t\t$checkfile=($path)?$path . \"/\" . $file:$file;\n\t\tif (file_exists($checkfile)) {\n\t\t\treturn 1;\n\t\t}\n\t}\n\t}", "protected function checkTrueImg()\n {\n\n if($this->imgFlag){\n\n if(!getimagesize($this->fileInfo['tmp_name'])){\n\n $this->error = 'The file is not image.';\n\n return false;\n\n }\n\n }\n\n return true;\n\n }", "function checkimage($img)\r\n{\r\n $imageMimeTypes = array(\r\n 'image/png',\r\n 'image/gif',\r\n 'image/jpeg');\r\n\r\n $img = mime_content_type($img);\r\n $imgcheck = false;\r\n if (in_array ($img, $imageMimeTypes))\r\n {\r\n $imgcheck = true;\r\n }\r\n return $imgcheck;\r\n}", "function validateFile($file){\n\n $check = getimagesize($file[\"tmp_name\"]);\n if($check !== false) {\n $err = \"File is an image - \" . $check[\"mime\"] . \".\";\n $uploadOk = 1;\n } else {\n $err = \"File is not an image.\";\n $uploadOk = 0;\n }\n// Allow certain file formats\nif($file[\"type\"] != \"jpg\" && $file[\"type\"] != \"png\" && $file[\"type\"] != \"jpeg\"\n&& $file[\"type\"] != \"gif\" ) {\n $err = \"Sorry, only JPG, JPEG, PNG & GIF files are allowed.\";\n $uploadOk = 0;\n}\n return ($uploadOk==1)? true : false;\n}", "function validate($files, $dir) {\n\t\n\t$keys = array_keys($files);\n\t$imgurl_array = array();\n\tfor ($i = 0; $i < count($keys); $i++) {\n\t\t$key = $keys[$i];\n\t\t$imgname = $files[$key]['name'];\n\t\t$name = generateName() . substr(basename($imgname), strrpos($imgname,\".\"));\n\t\t$imgtype = $files[$key]['type'];\n\t\t$uploadfile = $dir . $name;\n\n\t\tif ($imgtype == \"\") {\n\t\t\tcontinue;\n\t\t}\n\t\tif ($imgtype == \"image/gif\" or $imgtype == \"image/jpeg\" or $imgtype == \"image/png\") {\n\t\t\tmove_uploaded_file($files[$key]['tmp_name'], $uploadfile) \n \t\t\tor die (\"Could not copy\");\n\t\t\t$imgurl_array[] = $uploadfile; \n\t\t} \n\t\telse {\n\t\t\treturn array();\n\t\t}\n\t}\n\treturn $imgurl_array;\n}", "function Is_image($filename){\n \n $size = getimagesize($filename);\nif($size==FALSE){\n $er=FALSE; \n\n}else{\n $er=TRUE; \n}\nreturn $er;\n}", "public function validar(){\n $respuesta = array();\n //verifica que el archivo no tenga ningun error\n if ($this->file[\"error\"] > 0) {\n $respuesta[\"mensaje\"] = \"El archivo contiene errores o es corrupto.\";\n $respuesta[\"resultado\"] = false;\n } else {\n //obtengo la informacion del archivo\n $info = new SplFileInfo($this->file[\"name\"]);\n //obtengo la extension del mismo\n $extencion = $info->getExtension();\n //verifico si esta dentro de los permitods\n if(in_array($extencion, $this->permitidos)) {\n //verifico si el tamanio del archivo es menor o igual al permitido\n if ($this->file[\"size\"] <= $this->maximo_kb) {\n //verifico que las dimensiones de la imagen sean las permitidas\n list($width, $height, $type) = getimagesize($this->file[\"tmp_name\"]);\n if($width == $this->height_perm && $height == $this->width_perm){\n $respuesta[\"resultado\"] = true;\n }else{\n $respuesta[\"mensaje\"] = \"Dimensiones de la imagen no permitidas, deben de ser de $this->height_perm por $this->width_perm.\";\n $respuesta[\"resultado\"] = false;\n }\n } else {\n $respuesta[\"mensaje\"] = \"El archivo sobrepasa el limite de tamaño, deben de ser $this->maximo_kb kb como máximo.\";\n $respuesta[\"resultado\"] = false;\n }\n } else {\n $respuesta[\"mensaje\"] = \"Extensión del archivo no permitida.\";\n $respuesta[\"resultado\"] = false;\n }\n }\n return $respuesta;\n }", "function __checkImgParams() {\n\t\t/* check file type */\n\t\t$this->__checkType($this->request->data['Upload']['file']['type']);\n\t\t\n\t\n\t\t\n\t\t/* check file size */\n\t\t$this->__checkSize($this->request->data['Upload']['file']['size']);\n\t\t\n\t\t\n\t\t\n\t\t/* check image dimensions */\n\t\t$this->__checkDimensions($this->request->data['Upload']['file']['tmp_name']);\n\t\t\n\t\t\t\n\t}", "public function check_logo()\n\t{\n\t\tif (empty($_FILES['logo']['name']))\n\t\t\treturn true;\n\t\t$entreprise = $this->entreprise_model->getEntreprise(['entrepriseId' => currentSession()['id']]);\n\t\t$config['allowed_types'] = 'jpg|png';\n\t\t$config['upload_path'] = FCPATH.'uploads/logos/';\n\t\t$config['file_name'] = $entreprise->entrepriseId;\n\t\t$config['max_size'] = 1024;\n\t\t$config['overwrite'] = true;\n\t\t$this->load->library('upload', $config);\n\t\t// If upload failed display error\n\t\tif ($this->upload->do_upload('logo')) {\n\t\t\treturn true;\n\t\t} else {\n\t\t\t$this->form_validation->set_message('check_logo', strip_tags($this->upload->display_errors()));\n\t\t\treturn false;\n\t\t}\n\t}", "function __checkBase64_image($img64) {\n $img64 = substr($img64, strpos($img64, ',')+1, strlen($img64));\n $img = imagecreatefromstring(base64_decode($img64));\n if (!$img) {\n return false;\n }\n imagepng($img, 'tmp.png');\n $info = getimagesize('tmp.png');\n unlink('tmp.png');\n if ($info[0] > 0 && $info[1] > 0 && $info['mime']) {\n return true;\n }\n return false;\n }", "public function testValidateDocumentImageValidation()\n {\n }", "public function testImage()\n {\n $uploadedFile = new UploadedFile(__DIR__ . '/../Mock/image_10Mb.jpg', 'image.jpg');\n $user = new User();\n $user->setEmail('[email protected]')\n ->setImage($uploadedFile);\n $constraintViolationList = $this->validator->validate($user, null, [User::VALIDATION_GROUP_DEFAULT]);\n Assert::assertEquals('image', $constraintViolationList->get(0)->getPropertyPath());\n\n $user->setImage(null);\n $constraintViolationList = $this->validator->validate($user, null, [User::VALIDATION_IMAGE_REQUIRED]);\n Assert::assertEquals('image', $constraintViolationList->get(0)->getPropertyPath());\n }", "function checkImage($imageField, $num) {\r\n\r\n\t\t\tif ($HTTP_POST_FILES['$imageField']['size'] > $maxsize) {\r\n\r\n\t\t\t\t$errmsg .= \"Image file $num must be less than $maxsizekb MB in size.<br>\";\r\n\r\n\t\t\t\t$errflag = true;\r\n\r\n\t\t\t\tunlink($HTTP_POST_FILES['$imageField']['tmp_name']);\r\n\r\n\t\t\t}\r\n\r\n\t\t\t// image should be of the right type i.e. gif,pjpeg or jpeg\r\n\r\n\t\t\tif($HTTP_POST_FILES['$imageField']['type'] != \"image/gif\" AND\r\n\r\n\t\t\t$HTTP_POST_FILES['$imageField']['type'] != \"image/pjpeg\" AND\r\n\r\n\t\t\t$HTTP_POST_FILES['$imageField']['type'] != \"image/png\" AND\r\n\r\n\t\t\t$HTTP_POST_FILES['$imageField']['type'] !=\"image/jpeg\" ) {\r\n\r\n\t\t\t\t$errmsg .= \"Image $num may only be .gif. .png or .jpeg files.</font><br>\";\r\n\r\n\t\t\t\t$errflag = true;\r\n\r\n\t\t\t\tunlink($HTTP_POST_FILES['$imageField']['tmp_name']);\r\n\r\n\t\t\t}\r\n\r\n}", "function isImage($filename) {\n \tglobal $synAbsolutePath;\n if (file_exists($synAbsolutePath.$filename)) {\n if (getimagesize($synAbsolutePath.$filename)!==false) $ret=true;\n else $ret=false;\n } else $ret=false;\n return $ret;\n }", "function validate_image_upload ($error_arr) {\n\t$data['success'] = FALSE;\n\tif($_FILES['photos']['tmp_name'] != '') {\n\t\tif (!isset($_FILES['photos']['error']) || is_array($_FILES['photos']['error'])) {\n\t\t\tthrow new RuntimeException('Invalid parameters.');\n\t\t}\n\t\tswitch ($_FILES['photos']['error']) {\n\t\t case UPLOAD_ERR_OK:\n\t\t break;\n\t\t case UPLOAD_ERR_NO_FILE:\n\t\t \t$data['message'] = $error_arr['image_unspec_error'];\n\t\t case UPLOAD_ERR_INI_SIZE:\n\t\t case UPLOAD_ERR_FORM_SIZE:\n\t\t \t$data['message'] = $error_arr['image_large_error'];\n\t\t default:\n\t\t $data['message'] = $error_arr['upload_image_error'];\n\t\t}\n\t\t$target_dir = \"images/\";\n\t\t$data['path'] = $target_dir . basename($_FILES[\"photos\"][\"name\"]);\n\t\t$data['image_type'] = pathinfo($data['path'], PATHINFO_EXTENSION);\n\t\t// Check if image file is a actual image or fake image\n\t\t$check = getimagesize($_FILES[\"photos\"][\"tmp_name\"]);\n\t\tif($check === false) {\n\t\t $data['message'] = $error_arr['not_an_image_error'];\n\t\t}\n\t\t// Check if file already exists\n\t\tif (file_exists($data['path'])) {\n\t\t $data['message'] = $error_arr['image_exists_error'];\n\t\t}\n\t\t// Check file size, limit at 5MB\n\t\tif ($_FILES[\"photos\"][\"size\"] > $error_arr['max_size_bytes']) {\n\t\t $data['message'] = $error_arr['image_large_error'];\n\t\t}\n\t\t// Allow certain file formats\n\t\tif($data['image_type'] != \"jpg\" && $data['image_type'] != \"png\" && $data['image_type'] != \"jpeg\" && $data['image_type'] != \"gif\") {\n\t\t $data['message'] = \"Sorry, only JPG, JPEG, PNG & GIF files are allowed.\";\n\t\t}\n\t\tif(!isset($data['message']) && isset($data['path']) && isset($data['image_type'])) $data['success'] = TRUE;\n\t} else $data['message'] = $error_arr['image_unspec_error'];\n\treturn $data;\n}", "function checkImgPath()\n {\n if (is_dir($this->getPath() . '/img/')) {\n $this->setImgPath($this->getPath() . '/img/');\n return true;\n } elseif (is_dir($GLOBALS['cfg']['ThemePath'] . '/original/img/')) {\n $this->setImgPath($GLOBALS['cfg']['ThemePath'] . '/original/img/');\n return true;\n } else {\n trigger_error(\n sprintf($GLOBALS['strThemeNoValidImgPath'], $this->getName()),\n E_USER_ERROR);\n return false;\n }\n }", "function checkImage($file,$maxSize=0,$x=0,$y=0)\n {\n if($file!=\"\")\n {\n if(is_array($file))\n $pfad = $file[tmp_name];\n else $pfad = $file;\n }\n $typ = GetImageSize($pfad);\n $size = $file[size];\n\n\n if($maxSize==0)\n $fileSizeLimit = 10485760; // 10MB in BYTE, 100MB stehen in der upload_max_size\n else\n $fileSizeLimit = $maxSize;\n\n if(0 < $typ[2] && $typ[2] < 4)\n {\n if($size<$fileSizeLimit)\n {\n if($typ[0]>$x && $x!=0)\n $error = \"Das Bild ist zu breit.\";\n if($typ[1]>$y && $y!=0)\n $error = \"Das Bild ist zu hoch.\";\n }else\n $error = \"Die Datei darf eine Gr&ouml;&szlig;e von \".($fileSizeLimit/8388608).\" MB nicht &uuml;berschreiten.\";\n }else\n $error = \"Die Datei muss vom Typ GIF, JPG oder PNG sein\";\n return $error;\n }", "public function validarDir(){\n\t\t\t$dir = './assets/uploads/alumnos/1.png';\n\t\t\tif (file_exists($dir)) {\n\t\t\t\tunlink($dir);\n\t \techo \"Borrado\";\n\t }\n\t else{\n\t \techo \"FALSE\";\n\t }\n\t\t}", "function urlimageisvalid($image) {\n $params = array('http' => array('method' => 'HEAD'));\n $ctx = stream_context_create($params);\n $fp = @fopen($image, 'rb', false, $ctx);\n if (!$fp) \n return false; // Problem with url\n\n $meta = stream_get_meta_data($fp);\n if ($meta === false)\n {\n fclose($fp);\n return false; // Problem reading data from url\n }\n\n $wrapper_data = $meta[\"wrapper_data\"];\n if(is_array($wrapper_data)){\n foreach(array_keys($wrapper_data) as $hh){\n if (substr($wrapper_data[$hh], 0, 19) == \"Content-Type: image\") // strlen(\"Content-Type: image\") == 19 \n {\n fclose($fp);\n return true;\n }\n }\n }\n\n fclose($fp);\n return false;\n}", "protected function _checkImage() {\n if ( !is_file ( $this->src ) ) {\n $this->src = $this->default_missing_image; \n }\n $image_path_parts = pathinfo ( $this->src );\n $this->_image_name = $image_path_parts['basename'];\n $this->_thumb_filename = $this->attributes['width'] . 'x' . $this->attributes['height'] . '_' . $this->_image_name;\n $this->_thumb_src = $this->thumbs_dir_path . $this->_thumb_filename;\n if ( is_readable ( $this->_thumb_src ) ) {\n $this->_calculated_width = $this->attributes['width'];\n $this->_calculated_height = $this->attributes['height'];\n $this->src = $this->_thumb_src;\n return 'no_thumb_required';\n }\n if ( KISSIT_MAIN_PRODUCT_WATERMARK_SIZE == 0 ) {\n \tif ( !$this->_original_image_info = getimagesize ( $this->src ) ) {\n \t\treturn 'abort';\n \t} \n \tif (!in_array ( $this->_original_image_info['mime'], $this->_valid_mime ) ) {\n \t\treturn 'abort';\n \t}\n }\n }", "function validateImage($src) {\n\t\t$imageResult = '';\n\t\tif ($_FILES[$src]['tmp_name'] == '') {\n\t\t\tif (1 == $_FILES[$src]['error']) {\n\t\t\t\t$imageResult = 'Image Size is above server max upload size';\n\t\t\t}\n\t\t\t$imageResult .= '<br/>Image is empty!';\n\t\t}\n\t\tif (!is_uploaded_file($_FILES[$src]['tmp_name'])) {\n\t\t\t$imageResult .= '<br/>Image not uploaded';\n\t\t}\n\t\tif ($_FILES[$src]['size'] == 0) {\n\t\t\t$imageResult .= '<br/>Image size is 0';\n\t\t}\n\t\tif ($_FILES[$src]['size'] > 8388608) {\n\t\t\t$imageResult .= '<br/>Image size is greater than 8mb';\n\t\t}\n\t\t$size = GetImageSize($_FILES[$src]['tmp_name']);\n\t\tif ($size[2] != 1 && $size[2] != 2 && $size[2] != 3) {\n\t\t\t$imageResult .= '<br/>File Not an image';\n\t\t}\n\t\treturn ($imageResult == '') ? true : $imageResult;\n\t}", "function zm_imagedeletionscheck ($data) {\n }", "public function testImageCandidateFactoryWithInvalidFile()\n {\n ImageCandidateFactory::createImageCandidateFromFileAndDescriptor('');\n }", "public function edit_fileupload_check()\n { \n \n // we retrieve the number of files that were uploaded\n $number_of_files = sizeof($_FILES['img']['tmp_name']);\n \n // considering that do_upload() accepts single files, we will have to do a small hack so that we can upload multiple files. For this we will have to keep the data of uploaded files in a variable, and redo the $_FILE.\n $files = $_FILES['img'];\n \n // first make sure that there is no error in uploading the files\n for($i=0; $i<$number_of_files; $i++)\n {\n if($_FILES['img']['error'][$i] != 0)\n {\n // save the error message and return false, the validation of uploaded files failed\n $this->form_validation->set_message('fileupload_check', 'Please add at least one Image');\n return FALSE;\n }\n return TRUE;\n }\n }", "public function fileisinvalid($request,$addeditid=0)\n {\n \n \n //**** image code starts\n \n \n $allowedFileExtAr=array();\n $allowedFileExtAr[]=\"jpg\";\n $allowedFileExtAr[]=\"jpeg\";\n $allowedFileExtAr[]=\"png\";\n \n $filecontrolname=\"image_name\";\n \n \n\t\t\t\t$allowedFileExtSizeAr=array();\n $allowedFileExtSizeAr['jpg']=(5*1024*1024);\n\t\t\t\t$allowedFileExtSizeAr['jpeg']=(5*1024*1024);\n $allowedFileExtSizeAr['png']=(5*1024*1024);\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t//max_width & max_height ,min_width & min_height,equal_width & equal_height \n\t\t\t\t$allowedFileResolAr=array();\n\t\t\t\t\n\t\t\t\t$allowedFileResolAr['jpeg']=array('min_width'=>537,'min_height'=>507);\n\t\t\t\t$allowedFileResolAr['jpg']=array('min_width'=>537,'min_height'=>507);\n $allowedFileResolAr['png']=array('min_width'=>537,'min_height'=>507);\n $func=\"validatefile\";//validatefile/uploadfile\n \n \n $destinationsourcePath=public_path().\"/upload/venueimage/source-file/\"; \n $chkimgresp=Imageuploadlib::imageupload($request,$filecontrolname,$allowedFileExtAr,$allowedFileExtSizeAr,$allowedFileResolAr,$func,$addeditid,$destinationsourcePath,$errfileAr=array()) ;\n \n \n \n \n \n /* echo \"==chkimg1==><pre>\";\n print_r($chkimgresp);\n echo \"</pre>\"; */ //exit();\n \n \n $invalidresp=false;\n \n $errormsgs=''; $fileuploadednames=array(); $errfileAr=array();\n $totalfileposted=0;\n \n if(!empty($chkimgresp))\n {\n \n \n if(array_key_exists('errormsgs',$chkimgresp))\n {\n $errormsgs=$chkimgresp['errormsgs'];\n }\n \n if(array_key_exists('errfileAr',$chkimgresp))\n {\n $errfileAr=$chkimgresp['errfileAr'];\n }\n \n if(array_key_exists('totalfileposted',$chkimgresp))\n {\n $totalfileposted=$chkimgresp['totalfileposted'];\n }\n \n }\n \n $resparray=array();\n $resparray['errormsgs']=$errormsgs;\n $resparray['errfileAr']=$errfileAr;\n $resparray['totalfileposted']=$totalfileposted;\n \n return $resparray;\n }", "public function isImage(){\n if(isset($_POST[\"submit\"])) {\n $check = getimagesize($_FILES[\"fileToUpload\"][\"tmp_name\"]);\n if($check !== false) {\n echo \"File is an image - \" . $check[\"mime\"] . \".<br>\";\n $this->uploadOk = 1;\n } else {\n echo \"File is not an image.<br>\";\n $this->uploadOk = 0;\n }\n }\n return $this->uploadOk;\n }", "public static function imagemValida($imagem){\n\t\t\tif($imagem['type'] == 'image/jpeg' || \n\t\t\t\t$imagem['type'] == 'image/jpg' ||\n\t\t\t\t$imagem['type'] == 'image/png'){\n\n\t\t\t\t//VERIFICAR SE O TAMANHO DA IMAGEM E VALIDA\n\t\t\t\t//CONVERTER BYTES PARA KBYTES E ARREDONDAR PARA INTEIRO\n\t\t\t\t$tamanho = intval($imagem['size']/1024);\n\t\t\t\t//SE O TAMANHO FOR MENOR QUE 300KB\n\t\t\t\tif($tamanho < 600)\n\t\t\t\t\treturn true;\n\t\t\t\telse\n\t\t\t\t\treturn false;\n\t\t\t}else{\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}", "public function isImage($ext=null){\n global $VALID_IMAGES;\n if (!$ext)\n $ext = $this->ext; \n return (in_Array( $ext, $VALID_IMAGES )); \n }", "public function isPictureValid(ExecutionContextInterface $context);", "public function check_exists(){\n if(!file_exists($this->file['tmp_name']) ){\n $this->file_name = 'sample.jpg';\n }else{\n $this->tmp_file_name = $this->file['tmp_name'];\n $this->file_type = $this->file['type'];\n $this->file_name = time() . '_' . $this->file['name']; //give name a timestamp to ensure no duplicate images made in the future\n }\n }", "function set_valid_image_data() {\n $base_image = $this->get_config('base_image', false);\n if ($base_image !== false) {\n // Definitely configured\n if ($base_image == '0') {\n // Configured to text-only\n $this->image_name = $base_image;\n } else {\n $imagesize = serendipity_getimagesize(dirname(__FILE__) . \"/img/\" . $base_image);\n if ($imagesize['noimage']) {\n // Leave as default\n } else {\n // Set to valid image name\n $this->image_name = $base_image;\n }\n }\n }\n // Is the (possibly default) image valid?\n if ($this->image_name) {\n $imagesize = serendipity_getimagesize(dirname(__FILE__) . \"/img/\" . $this->image_name);\n if (isset($imagesize['noimage']) && $imagesize['noimage']) {\n // No valid image; use text-only\n $this->image_name = '0';\n } else {\n // Valid graphical image; set the dimensions, too\n $this->image_width = $imagesize[0];\n $this->image_height = $imagesize[1];\n }\n }\n }", "public function has_image() {\r\n return ! empty( $this->image );\r\n }", "public function validateImagePath($attribute, $params)\n {\n $file = Yii::getAlias('@app/web') . '/img/' . $this->$attribute;\n\n if (strlen($this->$attribute) && !file_exists($file)) {\n $this->addError($attribute, 'Неверный путь к файлу обложки');\n }\n }", "function check_image_type($ftype)\n{\n$ext = strtolower(end(explode('.',$ftype)));\n$img_array = array('jpeg','jpg','gif','png');\n\n//\tif($ftype == \"image/jpeg\" || $ftype == \"image/jpg\" || $ftype == \"image/gif\" || $ftype == \"image/png\" )\n\tif(in_array($ext,$img_array))\n\t\treturn 1;\n\t\telse\n\t\t\treturn 0;\n}", "public function testValidateDocumentPngValidation()\n {\n }", "public static function ValidateImage($file, &$errors){\n\t\t$hasErrors = false;\n\t\t$fileName = $file[\"name\"];\n\t\t$fileType = $file[\"type\"];\n\t\t$fileSize = intval($file[\"size\"]);\n\t\t$fileTmp = $file[\"tmp_name\"];\n\t\t$fileError = intval($file[\"error\"]);\n\t\t$imageWidth = 0;\n\t\t$imageHeight = 0;\n\t\tif(empty($fileName) || empty($fileSize)){\n\t\t\t$errors .= ' <li><p class=\"error\"><img src=\"img/error.png\" alt=\"Error\" />Debe seleccionar una imagen</p></li>';\n\t\t\t$hasErrors = true;\n\t\t}\n\t\tif($fileType != 'image/gif' && $fileType != 'image/jpeg' && $fileType != 'image/jpg' && $fileType != 'image/png'){\n\t\t\t$errors .= ' <li><p class=\"error\"><img src=\"img/error.png\" alt=\"Error\" />Solo se permiten imagenes jpg, png y gif</p></li>';\n\t\t\t$hasErrors = true;\n\t\t} else {\n\t\t\t$errors .= ' <li><p class=\"success\"><img src=\"img/accept.png\" alt=\"Valido\" />Formato \"'.$fileType.'\" v&aacute;lido</p></li>';\n\t\t\t$info = getimagesize($fileTmp);\n\t\t\t$imageWidth = intval($info[0]);\n\t\t\t$imageHeight = intval($info[1]);\n\t\t}\n\t\tif($imageWidth < 300){\n\t\t\t$errors .= '<li><p class=\"error\"><img src=\"img/error.png\" alt=\"Error\" />La imagen debe tener al menos 300 pixeles de ancho</p></li>';\n\t\t\t$hasErrors = true;\n\t\t} else {\n\t\t\t$errors .= ' <li><p class=\"success\"><img src=\"img/accept.png\" alt=\"Valido\" />La imagen supera los 300 p&iacute;xeles de ancho</p></li>';\n\t\t}\n\t\tif($imageHeight < 200){\n\t\t\t$errors .= '<li><p class=\"error\"><img src=\"img/error.png\" alt=\"Error\" />La imagen debe tener al menos 200 pixeles de alto</p></li>';\n\t\t\t$hasErrors = true;\n\t\t} else {\n\t\t\t$errors .= ' <li><p class=\"success\"><img src=\"img/accept.png\" alt=\"Valido\" />La imagen supera los 200 p&iacute;xeles de alto</p></li>';\n\t\t}\n\t\tif($fileSize > 2097152){\n\t\t\t$errors .= '<li><p class=\"error\"><img src=\"img/error.png\" alt=\"Error\" />El archivo no debe superar los 2048 KB (2 MB)</p></li>';\n\t\t\t$hasErrors = true;\n\t\t} elseif (!empty($fileSize)) {\n\t\t\t$errors .= ' <li><p class=\"success\"><img src=\"img/accept.png\" alt=\"Valido\" />El archivo pesa menos de 2 MB</p></li>';\n\t\t}\n\t\tif($fileError > 0 && $fileError != 4){\n\t\t\t$errors .= '<li><p class=\"error\"><img src=\"img/error.png\" alt=\"Error\" />Error al subir el archivo, intentelo nuevamente.</p></li>';\n\t\t\t$hasErrors = true;\n\t\t}\n\t\treturn $hasErrors;\n\t}", "public function validateMultiple()\n {\n if (is_array($this->name)) {\n for ($i = 0; $i < count($this->name); $i++) {\n $this->name[$i] = strtolower($this->name[$i]);\n $name = explode(\".\", $this->name[$i]);\n // image name\n $this->name[$i] = sha1($name[0] . time() . rand());\n // image extension\n $this->ext[$i] = array_values(array_slice($name, -1))[0];\n\n if (!in_array($this->ext[$i], $this->extensions)) {\n $this->uploadErrors[] = \"error File type not allowed\";\n }\n if ($this->size[$i] > 50000000) {\n $this->uploadErrors[] = \"Image File is too large\";\n }\n if ($this->errors[$i] > 0) {\n $this->uploadErrors[] = \"error uploading File\";\n }\n $this->image[$i] = $this->name[$i] . \".\" . $this->ext[$i];\n\n }\n }\n }", "public static function post_image_validation($type,$size){\n\t\t\t$check_type = Posts_image::get_image_type($type);\n\t\t\t$check_size = $size;\n\t\t\t$check_ext = Posts_image::get_image_ext($type);\n\t\t\t\n\t\t\tif($check_type !== \"image\"){\n\t\t\t\tself::$_errors['imagetype'] = \"Your file must be image.\";\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t\n\t\t\tif($check_ext !== \".jpg\" && $check_ext !== \".png\" && $check_ext !== \".gif\"){\n\t\t\t\tself::$_errors['imageext'] = \"Only <b>JPG, PNG and GIF</b> format are allowed.\";\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t\n\t\t\tif($check_size > 4000000){\n\t\t\t\tself::$_errors['imagesize'] = \"Image can't be larger then 4MB.\";\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t\n\t\t\tif(empty(self::$_errors)){return true;}else{return false;}\n\t\t\t\n\t\t}", "public function testInsertValidImage() {\n\t\t//count the number of rows and save it for later\n\t\t$numRows = $this->getConnection()->getRowCount(\"image\");\n\n\t\t//create a new Image and insert into MySQL\n\t\t$image = new Image(null, $this->VALID_IMAGEPATH, $this->VALID_IMAGETYPE);\n\t\t$image->insert($this->getPDO());\n\n\t\t//grab the data from MySQL and enforce that the fields match our expectations\n\t\t$pdoImage = Image::getImageByImageId($this->getPDO(), $image->getImageId());\n\t\t$this->assertEquals($numRows + 1, $this->getConnection()->getRowCount(\"image\"));\n\t\t$this->assertEquals($pdoImage->getImageId(), $image->getImageId());\n\t\t$this->assertEquals($pdoImage->getImagePath(), $this->VALID_IMAGEPATH);\n\t\t$this->assertEquals($pdoImage->getImageType(), $this->VALID_IMAGETYPE);\n\t}", "function checkImagexists($dir, $img){\n\t$file = $dir . $img . '.jpg'; // 'images/'.$file (physical path)\n\n\tif (file_exists($file)) {\n\t\treturn true;\n\t} else {\n\t\treturn false;\n\t}\n}", "function guardar_imagen($id_sponsor){\r\n \t$this->erkana_auth->required();\r\n \t$this->firephp->info($_FILES);\r\n \t$config['file_name'] = $id_sponsor.'.jpg';\r\n \t$config['upload_path'] = './imagenes/sponsors/';\r\n $config['allowed_types'] = 'gif|jpg|png';\r\n $config['max_size'] = '2000';\r\n $config['overwrite'] = TRUE;\r\n \r\n \t$this->load->library('firephp');\r\n \t$this->load->library('upload', $config);\r\n \t\r\n \tif ($_FILES['imagen']['size']>0) {\r\n \r\n if ( $this->upload->do_upload('imagen') == FALSE){ \r\n \t$this->firephp->info($this->upload->display_errors());\r\n\t\t\t\treturn FALSE; \r\n }\r\n else { \r\n \t$result = $this->upload->data();\r\n \t$this->firephp->info($result);\r\n \t$this->image_thumbs($id_sponsor);\r\n return TRUE;\r\n } \r\n } else {\r\n \treturn FALSE;\r\n }\r\n }", "function is_image($path)\n{\n\t$controle_type_mime_autorises = ['image/gif', 'image/jpeg', 'image/pjpeg', 'image/png'];\n\t$fichier_mime_type = mime_content_type($path);\n\t//echo $fichier_mime_type;\n\n\tif(in_array($fichier_mime_type, $controle_type_mime_autorises)){\n\t return TRUE;\n\t}else{\n\t return FALSE;\n\t}\n}", "function check_image_type($source_pic)\n{\n $image_info = check_mime_type($source_pic);\n\n switch ($image_info) {\n case 'image/gif':\n return true;\n break;\n\n case 'image/jpeg':\n return true;\n break;\n\n case 'image/png':\n return true;\n break;\n\n case 'image/wbmp':\n return true;\n break;\n\n default:\n return false;\n break;\n }\n}", "public function testDeleteValidImage() {\n\t\t//count the number of rows and save it for later\n\t\t$numRows = $this->getConnection()->getRowCount(\"image\");\n\n\t\t//create a new Image and insert into MySQL\n\t\t$image = new Image(null, $this->VALID_IMAGEPATH, $this->VALID_IMAGETYPE);\n\t\t$image->insert($this->getPDO());\n\n\t\t//delete the Image from MySQL\n\t\t$this->assertEquals($numRows + 1, $this->getConnection()->getRowCount(\"image\"));\n\t\t$image->delete($this->getPDO());\n\n\t\t//grab the data from MySQL and enforce that the fields match our expectations\n\t\t$pdoImage = Image::getImageByImageId($this->getPDO(), $image->getImageId());\n\t\t$this->assertNull($pdoImage);\n\t\t$this->assertEquals($numRows, $this->getConnection()->getRowCount(\"image\"));\n\t}", "public function testInsertInvalidImage() {\n\t\t//create an Image with a non null ImageId and watch it fail\n\t\t$image = new Image(DevConnectTest::INVALID_KEY, $this->VALID_IMAGEPATH, $this->VALID_IMAGETYPE);\n\t\t$image->insert($this->getPDO());\n\t}", "function is_image( string $path ):bool\r\n {\r\n $a = getimagesize($path);\r\n $image_type = $a[2];\r\n\r\n if( in_array( $image_type , array( IMAGETYPE_GIF , IMAGETYPE_JPEG ,IMAGETYPE_PNG , IMAGETYPE_BMP) ) )\r\n {\r\n return true;\r\n }\r\n return false;\r\n }", "function imagen(){\n if (file_exists($avatar))\n {\n echo \"<img src='$avatar' alt='Logo' />\";\n }\n else\n {\n echo \"<p>La imagen no existe</p>\";\n }\n}", "public function validate() {\n \n if (in_array($this->ext, $this->allow) !==false){\n \n if ($this->size < 10000000 ) {\n if ($this->error === 0) {\n $enc = uniqid('',true).\".\".$this->ext;\n $dest = $_SERVER['DOCUMENT_ROOT'].'/'.'tempSTR/'.$enc;\n\n move_uploaded_file($this->filetmp, $dest);\n \n } else {\n echo \"something wrong with this image\";\n }\n } else {\n echo \"Your file is to big\";\n }\n\n } else {\n echo \"You can't upload image with this exstension\";\n }\n }", "function file_is_an_image($temporary_path, $new_path)\n {\n $allowed_mime_types = ['image/gif', 'image/jpeg', 'image/png'];\n $allowed_file_extensions = ['gif', 'jpg', 'jpeg', 'png'];\n\n $actual_file_extension = pathinfo($new_path, PATHINFO_EXTENSION);\n $actual_mime_type = getimagesize($temporary_path)['mime'];\n\n $file_extension_is_valid = in_array($actual_file_extension, $allowed_file_extensions);\n $mime_type_is_valid = in_array($actual_mime_type, $allowed_mime_types);\n\n return $file_extension_is_valid && $mime_type_is_valid;\n }", "function check_image_type(&$type, &$error, &$error_msg)\n{\n\tglobal $lang;\n\n\tswitch( $type )\n\t{\n\t\tcase 'jpeg':\n\t\tcase 'pjpeg':\n\t\tcase 'jpg':\n\t\t\treturn '.jpg';\n\t\t\tbreak;\n\t\tcase 'gif':\n\t\t\treturn '.gif';\n\t\t\tbreak;\n\t\tcase 'png':\n\t\t\treturn '.png';\n\t\t\tbreak;\n\t\tdefault:\n\t\t\t$error = true;\n\t\t\t$error_msg = (!empty($error_msg)) ? $error_msg . '<br />' . $lang['Avatar_filetype'] : $lang['Avatar_filetype'];\n\t\t\tbreak;\n\t}\n\n\treturn false;\n}", "public function validateExtensionplan(){\n $allowed = array('jpeg', 'jpg', 'png');\n $filename = $this->getplanFloor('name');\n $ext = pathinfo($filename, PATHINFO_EXTENSION);\n if(!in_array($ext,$allowed)) {\n return false;\n } else {\n return true;\n }\n }", "function check_image_type_array($source_pic)\n{\n switch ($source_pic) {\n case 'image/gif':\n return true;\n break;\n\n case 'image/jpeg':\n return true;\n break;\n\n case 'image/png':\n return true;\n break;\n\n case 'image/wbmp':\n return true;\n break;\n\n default:\n return false;\n break;\n }\n}", "public function validate() {\n $error = $this->error;\n switch ($error) {\n case UPLOAD_ERR_PARTIAL :\n case UPLOAD_ERR_NO_TMP_DIR :\n case UPLOAD_ERR_CANT_WRITE :\n $errCode = $this->getConfig(\"UPLOAD_ERROR_SYSTEM\");\n $errMessage = $this->getErrorMessage($errCode);\n throw new TMUploadException($errMessage);\n }\n\n $maxSize = (int) TMConfig::get(\"upload\", \"file_max_size\");\n if ($this->size > $maxSize * 1024) {\n $errCode = $this->getConfig(\"UPLOAD_ERROR_SIZE\");\n $errMessage = $this->getErrorMessage($errCode);\n throw new TMUploadException($errMessage);\n }\n\n $pix = TMUtil::getSuffix($this->name);\n if (!in_array($pix, $this->getValidatedTypes($this->configTypes))) {\n $errCode = $this->getConfig(\"UPLOAD_ERROR_PIX\");\n $errMessage = $this->getErrorMessage($errCode);\n throw new TMUploadException($errMessage);\n }\n }", "public function fileupload_check()\n { \n \n // we retrieve the number of files that were uploaded\n $number_of_files = sizeof($_FILES['img']['tmp_name']);\n \n // considering that do_upload() accepts single files, we will have to do a small hack so that we can upload multiple files. For this we will have to keep the data of uploaded files in a variable, and redo the $_FILE.\n $files = $_FILES['img'];\n \n // first make sure that there is no error in uploading the files\n for($i=0; $i<$number_of_files; $i++)\n {\n if($_FILES['img']['error'][$i] != 0)\n {\n // save the error message and return false, the validation of uploaded files failed\n $this->form_validation->set_message('fileupload_check', 'Please add at least one Image');\n return FALSE;\n }\n return TRUE;\n }\n }", "function isImage(string $filename) : bool {\n return (bool) preg_match(\"/(png|gif|jpg|jpeg)/\", pathinfo($filename, PATHINFO_EXTENSION));\n}" ]
[ "0.73605204", "0.6905445", "0.6844959", "0.6806867", "0.66387385", "0.6616085", "0.6581344", "0.6579421", "0.647616", "0.646593", "0.6463263", "0.6459568", "0.64401466", "0.64385164", "0.64296144", "0.6421179", "0.6419258", "0.6418464", "0.63864833", "0.637504", "0.63741165", "0.63602453", "0.62993157", "0.6295064", "0.62926036", "0.6280284", "0.62645626", "0.62603253", "0.6246728", "0.624641", "0.62365806", "0.62152135", "0.6214656", "0.62045956", "0.62012917", "0.6192577", "0.61905235", "0.61881924", "0.61748", "0.6168792", "0.6150727", "0.61391276", "0.6131171", "0.6129685", "0.61260676", "0.608607", "0.60695106", "0.6036435", "0.6035361", "0.6031448", "0.6024321", "0.6019029", "0.60122216", "0.5991828", "0.5957849", "0.59491056", "0.59349763", "0.59320134", "0.5922133", "0.59161377", "0.5914778", "0.5909983", "0.5909595", "0.59091514", "0.58954483", "0.5892066", "0.5885076", "0.5873282", "0.5853948", "0.5852916", "0.58411604", "0.5834573", "0.58316165", "0.58298177", "0.5827363", "0.58273286", "0.5820919", "0.5792924", "0.5773384", "0.5772837", "0.5767585", "0.5767273", "0.5767211", "0.57435375", "0.5732563", "0.5731365", "0.5726592", "0.57129824", "0.57110125", "0.5710202", "0.57059014", "0.5696911", "0.569268", "0.5690123", "0.5684975", "0.56808645", "0.567943", "0.5679324", "0.56697816", "0.56696564" ]
0.6046322
47
Funcion para eliminar una imagen
public function eliminarImagen($imagen) { DB::beginTransaction(); $query_imagen = new static; $query_imagen = DB::select('DELETE FROM ldci.tb_imagen WHERE nombre=? RETURNING id_imagen', [$imagen]); if (empty($query_imagen)) { DB::rollBack(); return false; } else { $query_detalle = new static; $query_detalle = DB::select('DELETE FROM ldci.tb_detalle_imagen WHERE id_imagen=?', [$query_imagen[0]->id_imagen]); if ($query_detalle) { DB::commit(); return true; } else { DB::rollBack(); return false; } } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function eliminarImagenArreglo($campo, $tabla, $llavePrimaria, $campoLlave)\n {\n $data=$this->analisisRiesgo->getNombreImagenTabla($campo, $tabla, $llavePrimaria, $campoLlave);\n //Delete el nombre de la imagen de la base de datos\n $borrar=Array($campo => null);\n $this->analisisRiesgo->deleteImagenTabla($borrar, $tabla, $llavePrimaria, $campoLlave);\n //Unlink el nombre de la imagen del servidor\n foreach($data as $row)\n {\n $nombreImagen=$row[$campo];\n unlink(\"assets/img/fotoAnalisisRiesgo/$campo/$nombreImagen\");\n echo \"OK\";\n }\n\n }", "public static function deleteImage(){}", "public function borrar($imagen)\n {\n }", "public function excluirImagemGaleria(){ \n\t\t\n\t\t//deleta a imagem da pasta\n\t\tinclude_once(\"../funcoes/geral.php\");\n\t\t$sql = \"\n\t\t\tSELECT thumb\n\t\t\tFROM programa_imagem\n\t\t\"; \n\t\tif($this->idImagem)\n\t\t\t$sql .=\" WHERE id = '$this->idImagem'\";\n\n\t\t$this->sql = $sql;\n\t\t$this->qr = self::execSql($this->sql);\t\n\t\t$qtRegistros = $this->getQuantidadeData($sql); // retorna a quantidade de registro\t \n\t\tif($qtRegistros > 0){\n\t\t\twhile($lista = self::resultsAll($this->qr)){\n\n\t\t\t\tdeletaImagem($lista[\"thumb\"]);//deleto a imagem do arquivo\n\t\t\t\n\t\t\t}\n\t\t}\n\n\t}", "function eliminarImagenSusQ($campo, $tabla, $idAsignacion)\n {\n $data=$this->analisisRiesgo->getNombreImagen($campo, $tabla, $idAsignacion);\n //Delete el nombre de la imagen de la base de datos\n $borrar=Array($campo => null);\n $this->analisisRiesgo->deleteImagen($borrar, $tabla, $idAsignacion);\n //Unlink el nombre de la imagen del servidor\n foreach($data as $row)\n {\n $nombreImagen=$row[$campo];\n unlink(\"assets/img/fotoAnalisisRiesgo/fotoSustanciasQuimicas/$nombreImagen\");\n echo \"OK\";\n }\n\n }", "public function EliminarImagen($imagen)\n {\n $resultado = array();\n //Eliminar foto\n if ($imagen != \"\") {\n $dir = 'uploads/sliders/';\n if (is_file($dir . $imagen)) {\n unlink($dir . $imagen);\n }\n }\n\n $em = $this->getDoctrine()->getManager();\n\n $entity = $this->getDoctrine()->getRepository('IcanBundle:Slider')\n ->findOneBy(array('imagen' => $imagen));\n if ($entity != null) {\n $entity->setImagen(\"\");\n }\n\n $em->flush();\n\n $resultado['success'] = true;\n return $resultado;\n }", "public function removeImage()\n {\n // Suppression de l'image principale\n $fichier = $this->getAbsolutePath();\n\n if (file_exists($fichier))\n {\n unlink($fichier);\n }\n\n // Suppression des thumbnails\n foreach($this->thumbnails as $key => $thumbnail)\n {\n $thumb = $this->getUploadRootDir() . '/' . $key . '-' . $this->name;\n if (file_exists($thumb))\n {\n unlink($thumb);\n }\n }\n }", "function eliminarImagenCarpeta($campo, $tabla, $idAsignacion, $carpeta)\n {\n $data=$this->analisisRiesgo->getNombreImagen($campo, $tabla, $idAsignacion);\n //Delete el nombre de la imagen de la base de datos\n $borrar=Array($campo => null);\n $this->analisisRiesgo->deleteImagen($borrar, $tabla, $idAsignacion);\n //Unlink el nombre de la imagen del servidor\n foreach($data as $row)\n {\n $nombreImagen=$row[$campo];\n unlink(\"assets/img/fotoAnalisisRiesgo/$carpeta/$nombreImagen\");\n echo \"OK\";\n }\n\n }", "function eliminarImagenServidor($campo, $tabla, $idAsignacion)\n {\n $data=$this->analisisRiesgo->getNombreImagen($campo, $tabla, $idAsignacion);\n //Delete el nombre de la imagen de la base de datos\n $borrar=Array($campo => null);\n $this->analisisRiesgo->deleteImagen($borrar, $tabla, $idAsignacion);\n //Unlink el nombre de la imagen del servidor\n foreach($data as $row)\n {\n $nombreImagen=$row[$campo];\n unlink(\"assets/img/fotoAnalisisRiesgo/$nombreImagen\");\n echo \"OK\";\n }\n\n }", "public function EliminarImagen($imagen)\n {\n $resultado = array();\n //Eliminar foto \n if ($imagen != \"\") {\n $dir = 'uploads/promociones/';\n if (is_file($dir . $imagen)) {\n unlink($dir . $imagen);\n //unlink($dir . \"portada-\" . $imagen);\n //unlink($dir . \"thumb-\" . $imagen);\n }\n }\n\n $em = $this->getDoctrine()->getManager();\n\n $promocion = $this->getDoctrine()->getRepository('IcanBundle:Promocion')\n ->findOneBy(\n array('imagen' => $imagen)\n );\n if ($promocion != null) {\n $promocion->setImagen(\"\");\n }\n $em->flush();\n\n $resultado['success'] = true;\n return $resultado;\n }", "function imageAllDelete();", "public function EliminarImagen($imagen)\n {\n $resultado = array();\n //Eliminar foto \n if ($imagen != \"\") {\n $dir = 'uploads/productos/';\n if (is_file($dir . $imagen)) {\n unlink($dir . $imagen);\n //unlink($dir . \"portada-\" . $imagen);\n //unlink($dir . \"thumb-\" . $imagen);\n }\n }\n\n $em = $this->getDoctrine()->getManager();\n $productoimagen = $this->getDoctrine()->getRepository('IcanBundle:ProductoImagen')\n ->findOneBy(\n array('imagen' => $imagen)\n );\n if ($productoimagen != null) {\n $em->remove($productoimagen);\n }\n\n $producto = $this->getDoctrine()->getRepository('IcanBundle:Producto')\n ->findOneBy(\n array('imagen' => $imagen)\n );\n if ($producto != null) {\n $producto->setImagen(\"\");\n }\n $em->flush();\n\n $resultado['success'] = true;\n return $resultado;\n }", "public function galeriasExcluir_action()\n\t{\n\t\t$bd = new GaleriasImagens_Model();\n\t\t$id = abs((int) $this->getParam(2));\n\t\t$resultado = $bd->read(\"id={$id} AND usuario={$this->_usuario}\");\n\t\tunlink('uploads/img_'.$resultado[0]['imagem']);\n\t\tunlink('uploads/tb_'.$resultado[0]['imagem']);\n\t\tunlink('uploads/destaque_'.$resultado[0]['imagem']);\n\t\t$bd->delete(\"id={$id} AND usuario={$this->_usuario}\");\n\t\tHTML::certo('Imagem exclu&iacute;da.');\n\t\t//POG Temporário\n\t\tHTML::Imprime('<script>Abrir(\"#abreImagemGaleria\",\"#imagens\");</script>');\n\t}", "function magic_erase($image, $pixels) {\n foreach ($pixels as $y => $xs) {\n foreach ($xs as $x => $erase) {\n if ($erase > 0) {\n $radians = 0;\n $radius = 1;\n do {\n $radians += M_PI / 6;\n if ($radians >= 2 * M_PI) {\n $radians = 0;\n $radius++;\n }\n $nearest_x = $x + round($radius * cos($radians));\n $nearest_y = $y + round($radius * sin($radians));\n } while ($pixels[$nearest_y][$nearest_x] > 0);\n $nearest_color = imagecolorat($image, $nearest_x, $nearest_y);\n\n // Replace this pixel with the nearest non-text color.\n imagesetpixel($image, $x, $y, $nearest_color);\n }\n }\n }\n}", "public function removeImage() {\n //check if we have an old image\n if ($this->image) {\n //store the old name to delete the image on the upadate\n $this->temp = $this->image;\n //delete the current image\n $this->setImage(NULL);\n }\n }", "public function remove_image() {\n\t\t$this->join_name = \"images\";\n\t\t$this->use_layout=false;\n\t\t$this->page = new $this->model_class(Request::get('id'));\n\t\t$image = new WildfireFile($this->param(\"image\"));\n\t\t$this->page->images->unlink($image);\n\t}", "function borrarImagen($idImagen, $ruta){\n $conn=connexioBD();\n $sql=\"DELETE FROM imatges WHERE id='$idImagen'\";\n if (!$resultado =$conn->query($sql)){\n die(\"Error al comprobar datos\".$conn->error);\n }\n unlink($ruta);\n $conn->close();\n}", "function removeImage() {\n\t\t\n $image = $this->getImageByImageId();\n \n $file_image = $this->dir_path.$image['path_image'];\n\n $this->deleteImage(array('image_id' => $image['image_id'] ));\n\n if(file_exists($file_image)) {\n @unlink($file_image);\n }\n\t\t\n\t}", "public function DeleteNotasImagenes() {\n\t\t\t$this->objNotasImagenes->Delete();\n\t\t}", "public function removeImage($data)\n\t{\n\t\t$this->db->delete('tbl_gambar', $data);\n\t}", "public function supprimerImageMorphoAction()\n\t{\n\t\t$id_cons = $this->params()->fromPost('id_cons');\n\t\t$id = $this->params()->fromPost('id'); //numero de l'image dans le diapo\n\t\t$typeExamen = $this->params()->fromPost('typeExamen');\n\t\n\t\t/**\n\t\t * RECUPERATION DE TOUS LES RESULTATS DES EXAMENS MORPHOLOGIQUES\n\t\t*/\n\t\t $result = $this->demandeExamensTable()->recupererDonneesExamenMorpho($id_cons, $id, $typeExamen);\n\t\t/**\n\t\t * SUPPRESSION PHYSIQUE DE L'IMAGE\n\t\t*/\n\t\t unlink ( 'C:\\wamp\\www\\simens\\public\\images\\images\\\\' . $result['NomImage'] . '.jpg' );\n\t\t/**\n\t\t * SUPPRESSION DE L'IMAGE DANS LA BASE\n\t\t*/\n\t\t $this->demandeExamensTable()->supprimerImage($result['IdImage']);\n\t\n\t\t$this->getResponse()->getHeaders ()->addHeaderLine ( 'Content-Type', 'application/html' );\n\t\treturn $this->getResponse ()->setContent(Json::encode ());\n\t}", "public function delImage($idAnuncio, $idImagen){\n\t\t$query = \"DELETE FROM final_imagen WHERE idAnuncio = '\".$idAnuncio.\"' AND idImagen = '\".$idImagen.\"'\";\n\t\treturn $this->con->action($query);\n\t}", "function unsetImage($uid,$table,$data,$path) {\n\t\n\t $this->db->select($data);\n $this->db->from($table);\n\t\t$this->db->where('uid',$uid);\n $query=$this->db->get();\t\t\n\t\tif($query->num_rows()>0)\n\t\t{\n\t\t $query=$query->result();\n\t\t $img=$query[0]->$data;\n @unlink($path.$img);\n\t\t}\t\n return true;\t\t\n\t}", "public function delete() {\n\t\t$canvas = $this->original->getCanvas();\n\t\timagefilledrectangle($this->original->getImage(), $this->x, $this->y, $this->x+$this->getWidth()-1, $this->y+$this->getHeight()-1, imagecolorallocate($this->original->getImage(), $canvas['r'], $canvas['g'], $canvas['b']));\n\t}", "function zm_imagedeletionscheck ($data) {\n }", "public function stripImage() {\n return $this->im->stripImage();\n }", "public function excluirAnuncio($id){\n global $pdo;\n $sql = $pdo->prepare(\"DELETE FROM anuncios_imagens WHERE id_anuncio = :id_anuncio\"); // vai remover o registro de imagens\n $sql->bindValue(\":id_anuncio\", $id);\n $sql->execute(); \n\n $sql = $pdo->prepare(\"DELETE FROM anuncios WHERE id = :id\"); \n $sql->bindValue(\":id\", $id);\n $sql->execute(); \n\n \n\n\n\n }", "function hapus($id)\n{\n $conn = koneksi();\n\n // menghapus gambar di foldder img\n $p = query(\"SELECT * FROM products WHERE id = $id\")[0];\n if ($p['picture'] != 'nophoto.png') {\n unlink('../assets/img/' . $p['picture']);\n // die;\n } \n\n mysqli_query($conn, \"DELETE FROM products WHERE id = $id\") or die(mysqli_error($conn));\n return mysqli_affected_rows($conn);\n}", "public function deleteImage(){\n if(file_exists($this->getImage())){\n unlink($this->getImage());\n }\n $this->setImage(null);\n }", "function delete_image() {\n\tif(isset($_POST['remove'])){\n\t\tglobal $wpdb;\n\t\t$img_path = $_POST['path'];\n\n\t\t// We need to get the images meta ID.\n\t\t$query = \"SELECT ID FROM wp_posts where guid = '\" . esc_url($img_path) . \"' AND post_type = 'attachment'\";\n\t\t$results = $wpdb->get_results($query);\n\n\t\t// And delete it\n\t\tforeach ( $results as $row ) {\n\t\t\twp_delete_attachment( $row->ID ); //delete the image and also delete the attachment from the Media Library.\n\t\t}\n\t\tdelete_option('pochomaps_map_image'); //delete image path from database.\n\t}\n}", "public function deleteImage1()\n {\n Storage::delete($this->image1);\n }", "public function deleteImage(){\n \tStorage::delete($this->image);\n }", "function borrarImagenes($id){\n $conn=connexioBD();\n $sql=\"DELETE FROM imatges WHERE producte_id='$id'\";\n if (!$resultado =$conn->query($sql)){\n die(\"Error al comprobar datos\".$conn->error);\n }\n $conn->close();\n}", "public function delImg($item_id, $imgfile)\n {\n $this->db->update(array('id'=>$item_id), array('$pull'=>array('imgs'=>$imgfile)));\n \n // if this img is defimg, remove it, and replace with next img if still exists\n if ( $this->db->getOne(array('id'=>$item_id, 'defimg'=>$imgfile)) )\n {\n $defimg = ( $imgs = $this->db->getOne(array('id'=>$item_id, array('imgs'))) ) ? $imgs[0] : null;\n $this->db->update(array('id'=>$item_id), array('defimg'=>null));\n }\n }", "public function deleteldImage() {\n\n if (!empty($this->oldImg) && $this->oldImg != $this->avatar) {\n $file = Yii::app()->basePath . DIRECTORY_SEPARATOR . \"..\" . DIRECTORY_SEPARATOR;\n $file.= \"uploads\" . DIRECTORY_SEPARATOR . \"user_profile\" . DIRECTORY_SEPARATOR . $this->user->primaryKey . DIRECTORY_SEPARATOR . $this->oldImg;\n\n DTUploadedFile::deleteExistingFile($file);\n }\n }", "public function deleteImage()\n {\n $this->checkImage($this->logo, $this);\n }", "function remove_image_size($name)\n {\n }", "function eliminar($bd);", "function borrar ($arrayLineas,$id,$foto){\n $valorRetornado=false; \n foreach ($arrayLineas as $key => $value) {\n $auxArray= (array)$value; \n if($auxArray){\n if($auxArray[\"patente\"] === $id){\n var_dump($foto[\"name\"]);\n var_dump($auxArray[\"foto\"]);\n if($foto[\"name\"] !== $auxArray[\"foto\"] ){\n var_dump(\"./imagenes/\".$auxArray[\"foto\"]);\n //cambia de directorio la imagen vieja a backUpFotos, pero no la conserva.\n //rename(\"./imagenes/\".$auxArray[\"foto\"], './backUpFotos/'.$auxArray[\"patente\"].$auxArray[\"foto\"]);\n //cambia de directorio la imagen vieja a backUpFotos, pero la conserva en ambos directorios.\n copy(\"./imagenes/\".$auxArray[\"foto\"], './backUpFotos/'.$auxArray[\"patente\"].$auxArray[\"foto\"]);\n }\n unset($arrayLineas[$key]);\n $valorRetornado=true;\n break;\n }\n } \n } \n if($valorRetornado){\n echo(\"Se Removio: \".$id.\"\\n\\n\");\n }\n else{\n echo('No se encontro'.\"\\n\\n\");\n $arrayLineas=null;\n } \n return $arrayLineas;\n}", "function photo_remove() {\n if ( ! $this->input->is_ajax_request() || ! $this->auth->is_login()) {\n return redirect(config_item('site_url'));\n }\n \n $item = filter($this->uri->segment(3), 'str', 40);\n $photo = $this->media->get_by_id($item);\n \n if ( ! $photo || empty($photo)) {\n log_write(LOG_WARNING, 'Photo not found, ID: ' . $item . ', USER: ' . $this->auth->get_user_id(), __METHOD__);\n return $this->output->set_output(json_encode(array(\n 'code' => 'error'\n )));\n }\n \n if ($photo->item_author != $this->auth->get_user_id()) {\n log_write(LOG_ERR, 'User is not the author of the photo, ID: ' . $item . ', USER: ' . $this->auth->get_user_id(), __METHOD__);\n return $this->output->set_output(json_encode(array(\n 'code' => 'error'\n )));\n }\n\n $image = explode('.', $photo->item_filename);\n\n unlink(FCPATH . '/uploads/' . $photo->item_point . '/' . $image[0] . '_thumb.' . $image[1]);\n unlink(FCPATH . '/uploads/' . $photo->item_point . '/' . $image[0] . '.' . $image[1]);\n\n $this->media->remove($item);\n \n return $this->output->set_output(json_encode(array(\n 'code' => 'luck'\n )));\n }", "public function borrarImagen($id)\n {\n DAOVideojuegos::getInstance()->borrarImagen($id);\n if($this->imagen!=$this->carpeta.\"default.jpg\")\n unlink(\"./\".$this->imagen);\n }", "function _delete_photo($file){\n\t\t@unlink('web/upload/'.image_small($file));\n\t\t@unlink('web/upload/'.image_large($file));\n\t}", "public function product_image_remove($data)\n {\n \n\n $imageid = $data['imagekey'];\n $image_path = $data['image_path'];\n $product_id = $data['product_id'];\n\n $query = \"DELETE\n FROM \" . $this->db_table_prefix . \"images WHERE id = $imageid\";\n \n $result = $this->commonDatabaseAction($query);\n\n\n\n// if (@mysql_affected_rows($result) > 0)\n if ($result > 0)\n {\n\n $query2 = \"SELECT image_path FROM \" . $this->db_table_prefix. \"products where id = '\" . $product_id . \"'\";\n $result2 = $this->commonDatabaseAction($query2);\n $prArray = $this->resultArray($result2);\n \n if(trim($prArray[0]['image_path']) == trim($image_path))\n {\n\n $query3 = \"SELECT image_path FROM \" . $this->db_table_prefix. \"images where product_id = '\" . $product_id . \"' order by id DESC\";\n $result3 = $this->commonDatabaseAction($query3);\n $imgArray = $this->resultArray($result3);\n /*print_r(count($imgArray[0])); \n exit;*/\n if(count($imgArray[0])==1)\n { \n $query4= \"UPDATE \" . $this->db_table_prefix . \"products set image_path = '\".$imgArray[0]['image_path'].\"'WHERE id = $product_id\";\n $result4 = $this->commonDatabaseAction($query4);\n }\n else\n {\n $query5= \"UPDATE \" . $this->db_table_prefix . \"products set image_path = '' WHERE id = $product_id\";\n $result5 = $this->commonDatabaseAction($query5);\n }\n\n }\n\n return TRUE;\n }\n else\n {\n return FALSE;\n }\n }", "function delImage($filename)\n\t{\n\t\t// TODO: Retrieve different pictures from root model\t\t\n\t\tif(is_file(WWW_ROOT . \"img/thumbnails/\" . $filename)) {\n\t\t\tunlink(WWW_ROOT . \"img/thumbnails/\" . $filename);\n\t\t}\n\t\tif(is_file(WWW_ROOT . \"img/medium/\" . $filename)) {\n\t\t\tunlink(WWW_ROOT . \"img/medium/\" . $filename);\n\t\t}\n\t\tif(is_file(WWW_ROOT . \"img/large/\" . $filename)) {\n\t\t\tunlink(WWW_ROOT . \"img/large/\" . $filename);\n\t\t}\n\t\tif(is_file(WWW_ROOT . \"img/original/\" . $filename)) {\n\t\t\tunlink(WWW_ROOT . \"img/original/\" . $filename);\n\t\t}\n\t\treturn true;\n\t}", "public function deleteImage(){\n\n\n Storage::delete($this->image);\n }", "function imageAllReset();", "public function unsetImage($index)\n {\n unset($this->image[$index]);\n }", "public function imageUnlink($imgdata){\r\n $about_us_team_member_id = $imgdata['team_member_id'];\r\n $sql = \"SELECT member_image FROM tbl_aboutus_team WHERE team_member_id='$about_us_team_member_id'\";\r\n $query_result = mysqli_query($this->db_connect, $sql);\r\n $member_image = mysqli_fetch_assoc($query_result);\r\n return unlink($member_image['member_image']);\r\n }", "function magazinevibe_child_remove_first_image( $content ) {\n\t$dom = new DOMDocument();\n\t$dom->loadHTML( $content );\n\t$images = $dom->getElementsByTagName( 'img' );\n\n\tforeach ( $images as $image ) {\n\t\t$parent = $image->parentNode;\n\t\tif ( $parent->nodeName ) {\n\t\t\t$parent->parentNode->removeChild( $parent );\n\t\t\t$content = $dom->saveHTML();\n\t\t\t$content = str_replace('&Acirc;', '', $content);\n\t\t\treturn $content;\n\t\t}\n\t}\n\n\t$content = str_replace('&Acirc;', '', $content);\n\n\treturn $content;\n}", "function del_image_from_object($obj_type, $obj_id, $img_id)\n{\n db()->query('DELETE FROM object_images WHERE obj_type = \"' . strtok($obj_type, \" \") .\n '\" AND obj_id = ' . (int)$obj_id . ' AND img_id = ' . (int)$img_id);\n\n delete_image($img_id);\n}", "public function removeImg(Request $request, $id)\n {\n $this->validate($request, [\n 'urlImg' => 'required'\n ]);\n\n $spl = explode('/', $request->input('urlImg'));\n $namefile = $spl[(count($spl) - 1)];\n $path = $spl[(count($spl) - 4)].'/'.$spl[(count($spl) - 3)].'/'.$spl[(count($spl) - 2)].'/'.$spl[(count($spl) - 1)];\n $produk = Produk::select('multipath', 'path')->whereId($id)->first();\n $data = array();\n if ($produk->multipath) {\n $spl2 = explode(',', $produk->path);\n if (($key = array_search($path, $spl2)) !== false) {\n unset($spl2[$key]);\n }\n $data['multipath'] = count($spl2) > 1;\n $data['path'] = implode(\",\", $spl2);\n Produk::whereId($id)->update($data);\n } else {\n Produk::whereId($id)->update(['multipath' => false, 'path' => null]);\n }\n Storage::disk('public')->delete('images/produk' . $namefile);\n Alert::success('Succesfully Delete Photos', 'Update data has been saved !!!');\n return redirect()->back();\n }", "public function delAllImages($idAnuncio){\n\t\t$query = \"DELETE FROM final_imagen WHERE idAnuncio = '\".$idAnuncio.\"'\";\n\t\treturn $this->con->action($query);\n\t}", "public function galeriaExcluir_action()\n\t{\n\t\t$bd = new GaleriasImagens_Model();\n\t\t$id = abs((int) $this->getParam(3));\n\t\t$resultado = $bd->read(\"galeria={$id} AND usuario={$this->_usuario}\");\n\t\tforeach($resultado as $dados){\n\t\t\tunlink('uploads/img_'.$dados['imagem']);\n\t\t\tunlink('uploads/tb_'.$dados['imagem']);\n\t\t\tunlink('uploads/destaque_'.$dados['imagem']);\n\t\t}\n\t\t$bd->delete(\"galeria={$id} AND usuario={$this->_usuario}\");\n\t\t\n\t\t$bd = new Galerias_Model();\n\t\t$bd->delete(\"id={$id} AND usuario={$this->_usuario}\");\n\t\t\n\t\tHTML::certo('Galeria exclu&iacute;da.');\n\t\t//POG Temporário\n\t\tHTML::Imprime('<script>Abrir(\"#abreGaleriasListar\",\"#galerias\");</script>');\n\t}", "function excluir_imagem_publicacao(){\n\t\t\n\t\t// tabela\n\t\t$tabela = TABELA_IMAGENS_ALBUM;\n\t\t\n\t\t// id\n\t\t$id = remove_html($_REQUEST['id']);\n\t\t\n\t\t// valida id e usuario administrador\n\t\tif($id == null or retorne_usuario_administrador() == false){\n\t\t\t\n\t\t\t// retorno nulo\n\t\t\treturn null;\n\t\t\t\n\t\t};\n\t\t\n\t\t// query\n\t\t$query[0] = \"select *from $tabela where id='$id';\";\n\t\t$query[1] = \"delete from $tabela where id='$id';\";\n\t\t\n\t\t// dados\n\t\t$dados = retorne_dados_query($query[0]);\n\t\t\n\t// pasta de usuario\n\t$pasta_usuario = retorne_pasta_usuario($dados['idusuario'], 2, true);\n\t\n\t// separa os dados\n\t$url_imagem = $pasta_usuario.basename($dados['url_imagem']);\n\t$url_imagem_miniatura = $pasta_usuario.basename($dados['url_imagem_miniatura']);\n\t\n\t// excluindo arquivo\n\texclui_arquivo_unico($url_imagem);\n\texclui_arquivo_unico($url_imagem_miniatura);\n\t\n\t// comando executa\n\tcomando_executa($query[1]);\n\t\n\t}", "public function actionDelImg(){\n $img_id = Yii::$app->request->post('img_id');\n $model_id = Yii::$app->request->post('model_id');\n\n $docModel = Product::find()\n ->where([\n 'id' => $model_id\n ])\n ->limit(1)\n ->one();\n $img = $docModel->getImageById($img_id);\n $docModel->removeImageNoDel($img);\n }", "public function delete_imagen($img_id){\n\t\t$img = $this->get_img($img_id);\n\n\t\tif(!$this->db->where(\"sli_id\",$img_id)->delete(\"slide\") ){\n\t\t\treturn FALSE;\n\t\t}\n\t\tunlink(\"./imagenes/\".$img->sli_img_nombre);\n\t\treturn TRUE;\n\t}", "function imageDelete($property);", "function deletePhoto($imageNom, $link)\n{\n /* SUPPRIME DU SERVEUR */\n unlink($imageNom);\n\n /* SUPPRIME DE LA BASE DE DONNEES */\n $query = \"DELETE FROM Photo WHERE nomFich = '\" . $imageNom . \"'\";\n executeUpdate($link, $query);\n\n $imageNom = str_replace(array( '..', '/', '\\\\', ':' ), '', $imageNom);\n}", "public function removePhoto($value)\n {\n if($value == 'photo0')\n return $this->photo0 = '';\n if($value == 'photo1')\n return $this->photo1='';\n if($value == 'photo2')\n return $this->photo2='';\n if($value == 'photo3')\n return $this->photo3 = '';\n if($value == 'photo4')\n return $this->photo4='';\n if($value == 'photo5')\n return $this->photo5='';\n\n }", "public function removePhoto($value)\n {\n $key = array_search($value, $this->photos);\n if($key !== false) {\n unset($this->photos[$key]);\n }\n }", "private static function toDelete(){\n $filesNotToDelete = [];\n $dir = public_path().'/images/';\n $filesInPublicFolder = scandir($dir);\n\n // izbacivanje assets foldera, .. i .\n $ignoreFiles = ['assets', '.', '..', 'pig.png', 'placeholder.png', 'logo.png', 'index.php'];\n foreach ($ignoreFiles as $toIgnore) {\n if (($key = array_search($toIgnore, $filesInPublicFolder)) !== false) {\n unset($filesInPublicFolder[$key]);\n }\n }\n // dd($filesInPublicFolder);\n $images = [];\n $collectionsOfObjectsWithImages = [Product::all(), ProductGroup::all(), Manufacturer::all(),\n Suggestion::all(), ImageSuggestion::all(), MainAd::all(),SecondAd::all()];\n\n foreach ($collectionsOfObjectsWithImages as $collection) {\n foreach ($collection as $object) {\n if($object->images->count()){\n foreach ($object->images as $image) {\n $images[] = $image->name;\n }\n }\n }\n }\n\n // dd($images);\n // dd(array_diff($filesInPublicFolder, $images));\n // dd($filesNotToDelete, $filesInPublicFolder);\n return $toDelete = array_diff($filesInPublicFolder, $images); //za fju array_dif vazan je redoslijed argumenata\n\n }", "public function unlink($logo_name){\r\n global $db,$upload_path;\r\n\r\n $sql = \"SELECT logo FROM hrms_gsettings\";\r\n $query=mysqli_query($db,$sql);\r\n $row=mysqli_fetch_assoc($query);\r\n $logo = $row['logo'];\r\n\r\n if($logo != $logo_name){\r\n unlink($upload_path.\"/logo/\".$logo);\r\n }\r\n\r\n\r\n}", "function deleteUserImage($id)\n {\n $connect = new Config();\n $sql = \"SELECT user_info FROM user_db WHERE id = :id\";\n $query = $connect->connectPDO()->prepare($sql);\n $query->bindParam(':id', $id, \\PDO::PARAM_INT);\n $query->execute();\n $delImage = $query->fetch();\n\n $decoded = json_decode($delImage['user_info'], true);\n $image = $decoded['user_image'];\n\n if ($delImage != DEFAULT_IMAGE) {\n unlink($_SERVER['DOCUMENT_ROOT'] . $image);\n }\n }", "function deleteSymboly($q) {\n\n\t// hodnoty parametru pro produkt\n\t$v111 = my_DB_QUERY($q,__LINE__,__FILE__);\n\twhile ($z111 = mysql_fetch_array($v111)) {\n\t\n\t\tunlink(IMG_I_S.$z111['img']);\n\t\tunlink(IMG_I_O.$z111['img']);\n\t\n\t}\n\n}", "function deleteImage($filename, $target_file)\n{\n // remove from list\n $list = read_file_list();\n $pivot = array_search($filename, $list);\n $left = array_slice($list, 0, $pivot);\n $right = array_slice($list, $pivot+1);\n $list = array_merge($left, $right);\n\n // remove file and output modified list\n unlink($target_file);\n write_file_list($list);\n\n echo $target_file . \" deleted successfully.<br>\";\n}", "public function delImage($img_name){\n\t\t\n\t\t$db = $this->_connect;\n\t\t$img = $db->prepare(\"DELETE FROM img WHERE img_name = ?\");\n\t\t$img->bind_param(\"s\",$img_name);\n\t\tif(!$img->execute()){\n\t\t\techo $db->error;\n\t\t}\n\t\t\n\t}", "public function delete_photo(){\n $sql=\"DELETE FROM photos WHERE id=\".$this->id;\n self::$connect->query($sql);\n\n }", "function delete_logoimage() \n {\n \n $fullpath = './assets/uploads/fashion_prod/';\n $thumbpath = './assets/uploads/fashion_prod/thumbs/';\n $picture=$_POST[\"r_logoimage\"];\n \n unlink($fullpath.$picture);\n unlink($thumbpath.$picture);\n $this->db->delete('productimages', array('imagename' => $picture));\n echo true;\n \n }", "function remove_custom_image_header()\n {\n }", "function imagetrim($im) {\n // imagecropauto() doesn't work reliably. For example, it doesn't crop SGRMTW2C.png.\n //$im2 = imagecropauto($im);\n\n $tbox = null;\n $w = imagesx($im);\n $h = imagesy($im);\n for ($x = $w; $x--; ) {\n for ($y = $h; $y--; ) {\n if (imagecolorat($im, $x, $y) >> 24 !== 127) {\n $tbox = combineRect([$x, $y, $x + 1, $y + 1], $tbox);\n }\n }\n }\n\n $im2 = imagecrop($im, ['x' => $tbox[0], 'y' => $tbox[1], 'width' => $tbox[2] - $tbox[0], 'height' => $tbox[3] - $tbox[1]]);\n imagedestroy($im);\n return $im2;\n}", "public function removeCoverPhoto($id_product)\n {\n $sql = \"UPDATE \" . _DB_PREFIX_ . \"image SET cover=NULL WHERE id_product = \" . (int) $id_product;\n Db::getInstance()->query($sql);\n //lay tat ca cac anh cover\n $sql = 'SELECT * FROM ' . _DB_PREFIX_ . 'image WHERE id_product=' . (int) $id_product;\n if ($results = Db::getInstance()->ExecuteS($sql, true, false)) {\n foreach ($results as $row) {\n $id_image = $row[\"id_image\"];\n $sql = \"UPDATE \" . _DB_PREFIX_ . \"image_shop SET cover=NULL WHERE id_image = \" . (int) $id_image;\n Db::getInstance()->query($sql);\n }\n }\n }", "function medula_remove_plugin_image_sizes() {\n\tremove_image_size('image-name');\n}", "static public function ctrEliminarGaleria(){\n\t\tif(isset($_POST[\"accionGaleria\"]) && $_POST[\"accionGaleria\"] == \"eliminar\"){\t\t\t\n\t\t\t$tabla1 = \"vtaca_galeria\";\n\t\t\t$tabla2 = \"vtade_galeria\";\n\t\t\t$codigo = $_POST[\"codigoGaleria\"];\t\t\t\n\t\t\t//OBTENER IMAGENES\n\t\t\t$item = \"cod_galeria\";\n\t\t\t$entrada = \"imagenTipoGaleria\";\n\t\t\t$imagenes = ModeloGaleria::mdlMostrarGaleriaDetalle($tabla2,$item,$codigo,$entrada);\n\t\t\t//ELIMINAR GALERIA\n\t\t\t$respuesta = ModeloGaleria::mdlEliminarGaleria($tabla1,$tabla2,$codigo);\t\t\t\n\t\t\tif($respuesta == \"ok\"){\n\t\t\t\t$rutaGlobal = realpath(dirname(__FILE__));\n\t\t\t\t$rutaGlobal = rutaGlobal($rutaGlobal);\n\t\t\t\tforeach ($imagenes as $key => $value) {\n\t\t\t\t\t$rutaEliminarImagen = $rutaGlobal.\"/archivos/galeria/\".utf8_decode($value[\"imagen\"]);\n\t\t\t\t\tunlink($rutaEliminarImagen);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn $respuesta;\n\t\t}//if\n\t}", "function remove_image($image_id)\n\t{\n\t\t// global variables from config/db_config.php\n\t\tglobal $idea_db;\n\t\tglobal $images_db_table;\n\t\tglobal $db_hostname;\n\t\tglobal $db_user;\n\t\tglobal $db_password;\n\n\t\t// get the image's name to remove from file system\n\t\t$image = get_image($image_id);\n\n\t\t// construct query\n\t\t$query = \"DELETE FROM images WHERE images . id='$image_id'\";\n\n\t\t//send query\n\t\tif (send_query($query,$db_hostname,$db_user,$db_password,$idea_db))\n\t\t{\n\t\t\t// remove from file system\n\t\t\tunlink($image);\n\t\t} else {\n\t\t\t// TODO: Error occured with removing image. Redirect Appropriately.\n\t\t\t// debug\n\t\t\techo \"<h1> Image Not Deleted </h1>\";\n\t\t}\n\t}", "public function remove_pic($by_admin,$desc)\n {\n if(!$this->img_path || !file_exists($this->img_path)){ return; }\n unlink($this->img_path);\n $this->img_path = null;\n if($by_admin) {\n $this->img_takedown_msg = $desc;\n }\n $this->save();\n }", "public function remove_image($item)\n\t{\n\t\tthrow new Exception('Not implemented yet.');\n\t}", "function delete_post_thumbnail($post)\n {\n }", "public function del_pic($i_id)\r\n\t{\r\n\t\ttry\r\n {\r\n\t\t\treturn $this->db->update($this->tbl, array('s_photo'=>''), array('i_id'=>$i_id));\r\n\t\t}\r\n catch(Exception $err_obj)\r\n {\r\n show_error($err_obj->getMessage());\r\n } \r\n\t}", "public function deleteAboutImg(){\n\t\t\n\t\t//echo '<pre>'; print_r($_POST); die;\n\t\tif(count($_POST)>0){\t\t\t\n\t\t\t\t\t\t\n\t\t\t$location_id = $_POST['location_id'];\n\t\t\t$this->db->where(\"location_id\", $location_id);\n\t\t\t\n\t\t\tif($this->db->query(\"update tblschool_about_school set photo='' where location_id=\".$location_id.\"\"))\n\t\t\t{\t\n\t\t\t\t/*$dir=pathinfo(BASEPATH);\n\t\t\t\t//echo $dir; die;\n\t\t\t\t$img=$dir['dirname'].'/'.$_POST['image_path'];\t\t\t\t\n\t\t\t\tunlink($img); */\t\t\t\t\t\n\t\t\t\techo 1;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\techo 0;\n\t\t\t}\n\t\t}else{\n\t\t\t\techo 0;\n\t\t}\n\t\n\t}", "public function deleteVideoSectionImg(){\n\t\tif(count($_POST)>0){\t\t\t\n\t\t\t\t\t\t\n\t\t\t$location_id = $_POST['location_id'];\n\t\t\t$this->db->where(\"location_id\", $location_id);\n\t\t\t\n\t\t\tif($this->db->query(\"update tbl_school_video_section set photo='' where location_id=\".$location_id.\"\"))\n\t\t\t{\t\n\t\t\t\t/*$dir=pathinfo(BASEPATH);\n\t\t\t\t//echo $dir; die;\n\t\t\t\t$img=$dir['dirname'].'/'.$_POST['image_path'];\t\t\t\t\n\t\t\t\tunlink($img); */\t\t\t\t\t\n\t\t\t\techo 1;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\techo 0;\n\t\t\t}\n\t\t}else{\n\t\t\t\techo 0;\n\t\t}\n\t\n\t}", "public function handleDeleteImage(){\n\n $session = $this->hlp->sess(\"images\");\n $img = $session->toDelete;\n $listingID = $this->hlp->sess(\"listing\")->listingID;\n $imgs = $this->listings->getListingImages($listingID);\n \n unset($imgs[$img]);\n\n //reindexed array after unset\n $newArray = array();\n \n foreach ($imgs as $image){\n array_push($newArray, $image);\n }\n \n unset($imgs);\n \n //final array - updated - without deleted images to store in db\n $images = serialize($newArray);\n \n $this->listings->updateListingImages($listingID, $images);\n $this->redirect(\"Listings:editListing\", $listingID);\n }", "public function delete_unknown_images() {\n global $wpdb;\n $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_image` WHERE gallery_id=0');\n }", "function removeProfileimg($userId)\n {\n $this->db->select(PROFILE_IMAGE);\n $this->db->from(TBL_USERS);\n $this->db->where(USERID, $userId);\n $query = $this->db->get();\n if ($query->num_rows() > 0) {\n $result = $query->result_array();\n unlink(FCPATH . \"assets/uploads/profilephoto/\" . $result[0][PROFILE_IMAGE]);\n $data = array(\n PROFILE_IMAGE => 0\n );\n $this->db->where(USERID, $userId);\n $this->db->update(TBL_USERS, $data);\n return true;\n } else {\n return false;\n }\n }", "public function delete_inline($str = '')\n\t{\n\t\t$img = array();\n\t\t$start = '<img';\n\t\t$end = '>';\n\t\t$pattern = sprintf('/%s(.+?)%s/ims', preg_quote($start, '/'), preg_quote($end, '/'));\n\t\t$search = true;\n $i = 1;\n\t\twhile($search)\n\t\t{\n\t\t\tif (preg_match($pattern, $str, $matches))\n {\n\t\t\t\tlist(, $match) = $matches;\n\t\t\t\t$img[$i] = $start . $match . $end;\n\t\t\t\t$str = str_replace($start . $match . $end, \"{gambar_$i}\", $str);\n $i++;\n\t\t\t}\n else\n {\n\t\t\t\t$search = false;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n \n $img_to_check = array();\n foreach ($img as $key=>$val)\n {\n if(strpos($val, base_url($this->upload_dir)) !== FALSE)\n \t{\n \t\t$ex_val = explode(base_url(), $val);\n \t\t$to_check = substr($ex_val[1], 0, strpos($ex_val[1], '\"'));\n \t\t$img_nm = str_replace($this->upload_dir, '', $to_check);\n \t\t$img_nm_2 = substr($img_nm, 0, strpos($img_nm, '-img'));\n \t\tif(!in_array($img_nm_2, $img_to_check))\n \t\t\t$img_to_check[] = $img_nm_2;\n \t}\n }\n\n\t\tforeach ($img_to_check as $k => $v)\n\t\t{\n\t\t\t$old_images = $this->get($v, '', TRUE);\n\t\t\tforeach($old_images as $k2 => $v2)\n\t\t\t{\n\t\t\t\tunlink($v2);\n\t\t\t}\n\t\t}\n\t}", "function deleteSitePicture($bossId)\n {\n $this->db->where(\"boss_id\", $bossId);\n $result = $this->db->delete(\"site_picture\");\n return $result;\n }", "public function removeUpload()\n {\n $this->picture = null;\n }", "public function deleteImage($id){\n $id = strip_tags($id);\n\n $sql = \"DELETE FROM image WHERE id = :id\";\n $query = $this->db->prepare($sql);\n $query->execute(array(':id' => $id));\n\n }", "function deletePicture() {\n\t\tglobal $DB_LINK, $db_table_recipes, $g_rb_database_type, $LangUI;\n\t\t$sql = \"UPDATE $db_table_recipes SET recipe_picture='', recipe_picture_type='' WHERE recipe_id=\" . $DB_LINK->addq($this->id, get_magic_quotes_gpc());\n\t\t$rc = $DB_LINK->Execute($sql);\n\t\tDBUtils::checkResult($rc, NULL, $LangUI->_('There was an error removing the picture'), $sql);\n\n\t\t// Do the postgres cleanup\n\t\tif ($this->picture_oid && $g_rb_database_type==\"postgres\") {\n\t\t\t$rc = $DB_LINK->BlobDelete($this->picture_oid);\n\t\t\t$this->picture_oid=NULL;\n\t\t\tDBUtils::checkResult($rc, NULL, $LangUI->_('There was an error removing the picture'), $sql);\n\t\t}\n\t\treturn TRUE;\n\t}", "public function desactivar_img($id){\n\t\t$data = array(\n 'sli_estado' => \"0\"\n );\n\n\t\t$this->db->where('sli_id', $id);\n\t\t$this->db->update('slide', $data); \n\t\treturn $this->db->affected_rows();\n\t}", "public function deletePicture($id){\n $picName = null;\n $images = new Images();\n $dataPic = $images->get_image($id);\n foreach ($dataPic as $key => $value) {\n $picName = $value->img_url;\n }\n $checkFile = file_exists(public_path() . '/' . $picName);\n if ($checkFile){\n unlink(public_path() . '/' . $picName);\n }\n }", "function redimensionne_image($photo)\n{\n\t$info_image = getimagesize($photo);\n\t// largeur et hauteur de l'image d'origine\n\t$largeur = $info_image[0];\n\t$hauteur = $info_image[1];\n\t// largeur et/ou hauteur maximum à afficher\n\tif(basename($_SERVER['PHP_SELF'],\".php\") === \"trombi_impr\") {\n\t\t// si pour impression\n\t\t$taille_max_largeur = getSettingValue(\"l_max_imp_trombinoscopes\");\n\t\t$taille_max_hauteur = getSettingValue(\"h_max_imp_trombinoscopes\");\n\t} else {\n\t// si pour l'affichage écran\n\t\t$taille_max_largeur = getSettingValue(\"l_max_aff_trombinoscopes\");\n\t\t$taille_max_hauteur = getSettingValue(\"h_max_aff_trombinoscopes\");\n\t}\n\n\t// calcule le ratio de redimensionnement\n\t$ratio_l = $largeur / $taille_max_largeur;\n\t$ratio_h = $hauteur / $taille_max_hauteur;\n\t$ratio = ($ratio_l > $ratio_h)?$ratio_l:$ratio_h;\n\n\t// définit largeur et hauteur pour la nouvelle image\n\t$nouvelle_largeur = $largeur / $ratio;\n\t$nouvelle_hauteur = $hauteur / $ratio;\n\n\treturn array($nouvelle_largeur, $nouvelle_hauteur);\n}", "function del_images_object($obj_type, $obj_id)\n{\n $rows = db()->query('SELECT img_id FROM object_images WHERE obj_type = \"' . strtok($obj_type, \" \") .\n '\" AND obj_id = ' . (int)$obj_id);\n if (!$rows)\n return false;\n\n foreach ($rows as $row)\n delete_image($row['img_id']);\n\n db()->query('DELETE FROM object_images WHERE obj_type = \"' . strtok($obj_type, \" \") .\n '\" AND obj_id = ' . (int)$obj_id);\n\n return true;\n}", "function remove_portfolio_picture($portfolio_id, $picture_id) {\n\t\tglobal $con;\n\t\t\n\t\t$query = \"DELETE FROM portfolio_picture WHERE portfolio_id = $portfolio_id AND picture_id = $picture_id\";\n\t\t$result = mysqli_query($con, $query);\n\t\treturn $result;\n\t}", "function delete_image($imageId) {\n\t\t\tglobal $wpdb;\n\t\t\t$sql = \"select `filename` from `\".$this->table_img_name.\"` where `id` = '\".$imageId.\"'\";\n\t\t\t$img = $wpdb->get_row($sql, ARRAY_A, 0);\n\n\t\t\t$sql = \"delete from `\".$this->table_img_name.\"` where `id` = '\".$imageId.\"'\";\n\t\t\t$wpdb->query($sql);\n\n\t\t\t$page = $this->plugin_path.$this->images_dir.\"/\".$img['filename'];\n\n\t\t\t@unlink( $page );\n\n\t\t\t$fileExt = split( \"\\.\", $img['filename'] );\n\t\t\tif( $fileExt[1] != \"swf\" ) \n\t\t\t\t{\n\t\t\t\t\t $thumb = $this->plugin_path.$this->images_dir.\"/thumb_\".$img['filename'];\n\t\t\t\t\t @unlink( $thumb );\n\t\t\t\t}\n\t\t}", "public function removeImages($object)\n {\n return $this->createQuery('i')\n ->delete()\n ->where('i.imaged_model_id = ?', $object['id'])\n ->andWhere('i.imaged_model = ?', get_class($object))\n ->execute();\n }", "function newsItem_DeleteImage( $tbl_news, $id ){\n\t$sql = mysql_query(\"UPDATE $tbl_news SET \n\t\tgambarkecil = '', \n\t\tgambarbesar ='' , \n\t\tdirektorigambar = '' \n\t\tWHERE id = '$id'\n\t\");\n\treturn $sql;\n}", "public function remove()\n {\n $file = $this->security->xss_clean($this->input->post(\"file\"));\n $id = $this->security->xss_clean($this->input->post(\"id\"));\n if ($file && file_exists($file)) {\n unlink($file);\n $this->db->where(array('url_image'=>$file,'idProduct'=>$id));\n $this->db->delete('imageProduct');\n }\n }", "function deleteimages($a)\n{\n //connecting to database\n include ('dbconnect.php');\n\n //part for deleting images from folder\n $query1 = \"SELECT * FROM images WHERE id IN ($a)\";\n \n //function call to fetcharray\n $result = fetchfunction($query1);\n while( $row = $result->fetch_assoc())\n {\n unlink(\"images/\".$row[\"images\"]);\n }\n\n //query to delete images from database\n $query = \"DELETE FROM images WHERE id IN($a)\";\n\n //executing query\n mysqli_query($conn, $query);\n}", "abstract public function deregisterImage($image_id);", "function del_img_tour($type,$item){\n\tif($type == 'belarus'){\n\t\t$patch = '../../jsdb/JSON/tours/belarus.json';\n\t}\n\tif($type == 'belarus_pref'){\n\t\t$patch = '../../jsdb/JSON/tours/belarus_pref.json';\n\t}\n\tif($type == 'foreigners'){\n\t\t$patch = '../../jsdb/JSON/tours/foreigners.json';\n\t}\n\tif($type == 'foreigners_pref'){\n\t\t$patch = '../../jsdb/JSON/tours/foreigners_pref.json';\n\t}\n\t$exItem = explode('%',$item);\n\t$type = $exItem[0];\n\t$tour = (int)$exItem[1];\n\t$imgName = $exItem[2];\n\t$object = json_decode(file_get_contents($patch));\n\t$object_item = $object[0]->$type;\n\t$folder = $object_item[$tour]->img;\n\t// return $folder;\n\tunlink('../../'.$folder.'/'.$imgName);\n\treturn true;\n}" ]
[ "0.6601605", "0.65859026", "0.6583458", "0.6568819", "0.65631473", "0.64764065", "0.6476341", "0.6449532", "0.63415146", "0.6300948", "0.62666917", "0.62272453", "0.621898", "0.621622", "0.6192425", "0.61273396", "0.61229897", "0.6095876", "0.6090222", "0.6076658", "0.6061736", "0.60052764", "0.5991199", "0.59831285", "0.5921261", "0.5895246", "0.5892642", "0.5889212", "0.5873257", "0.5865233", "0.5845819", "0.58395165", "0.5786428", "0.57603264", "0.57530487", "0.57472146", "0.5740327", "0.5729657", "0.5695471", "0.56825185", "0.56803954", "0.56794286", "0.56788015", "0.5674578", "0.56708497", "0.56707054", "0.56644744", "0.56618696", "0.56577075", "0.56556857", "0.56488484", "0.5642437", "0.5636804", "0.56354815", "0.5631072", "0.5621324", "0.5602688", "0.5596403", "0.5585744", "0.55826664", "0.556803", "0.5562468", "0.5550977", "0.55428797", "0.55419725", "0.55396396", "0.5532605", "0.55311847", "0.5530231", "0.5529527", "0.5521039", "0.5520915", "0.55110574", "0.5510754", "0.550301", "0.5500657", "0.54972714", "0.54940784", "0.5487125", "0.54737556", "0.5471392", "0.54699266", "0.54691535", "0.5456112", "0.5450591", "0.5442747", "0.5435919", "0.5433532", "0.542966", "0.5419152", "0.54177123", "0.54152614", "0.5413297", "0.5406566", "0.54048777", "0.5398124", "0.5392548", "0.5387891", "0.53710794", "0.53703564" ]
0.59912336
22
funcion oara eliminar un evento de una rastreo
public function eliminar($id_detalle, $id_session) { $query = new static; $query = DB::UPDATE('UPDATE ldci.tb_detalle_seguimiento SET estado=-1, usuario_modificacion=?, fecha_modificacion=now() WHERE id_detalle_seguimiento=?', [$id_session, $id_detalle]); return $query; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function removeEvent($event);", "public function onRemove();", "public function remove();", "public function remove();", "public function remove();", "public function remove();", "public function postEventDel();", "function redart_undo_recurrence_oembed_logic() {\r\n\r\n\tif ( ! class_exists( 'Tribe__Events__Pro__Main' ) ) return;\r\n \r\n\t$pro_object = Tribe__Events__Pro__Main::instance();\r\n\t$pro_callback = array( $pro_object, 'oembed_request_post_id_for_recurring_events' );\r\n \r\n\tremove_filter( 'oembed_request_post_id', $pro_callback );\r\n}", "public function destroy(Riesgo_evento $riesgo_evento)\n {\n //\n }", "function eventUnRegister($eventName, $id);", "function deleteUnsaveNode()\n {\n //vymaze az po 2 hodinach ak sa nezmeni stav\n $list = $this->getFluent()->where(\"status = 'not_in_system' AND add_date < ( NOW() - 60*2 )\")->fetchAll();\n\n if (!empty($list)) {\n\n foreach ($list as $l) {\n\n $this->delete($l['id_node']);\n\n $module_name = $this->context->getService('ModuleContainer')->fetch($l['id_type_module'])->service_name;\n\n $this->context->getService($module_name)->delete($l['id_node']);\n }\n }\n }", "function deleteEvent($eventToDelete, $userID){\n\n $date = $eventToDelete[\"date\"];\n\n require_once 'model/dbConnector.php';\n\n //supprimer uniquement l'event choisi\n if($eventToDelete[\"sup\"] != \"\"){\n\n if($eventToDelete[\"recurrence\"] != 0){\n\n $suppQuery2='DELETE from `event-recurrence` where ID = :id';\n $suppData2= array(\":id\" => $eventToDelete['sup']);\n\n $result = executeQueryInsert($suppQuery2, $suppData2);\n\n }\n else{\n $suppQuery='DELETE from events where ID = :id AND FKusers = :idUser';\n $suppData= array(\":id\" => $eventToDelete['sup'], \":idUser\" => $userID);\n\n $result = executeQueryInsert($suppQuery, $suppData);\n }\n\n }\n //supprimer l'event et toutes les recurrences\n if($eventToDelete[\"supAll\"] != \"\"){\n\n $suppQuery2='DELETE from `event-recurrence` where FKevents = :id';\n $suppData2= array(\":id\" => $eventToDelete['supAll']);\n\n $result2 = executeQueryInsert($suppQuery2, $suppData2);\n\n $suppQuery='DELETE from events where ID = :id AND FKusers = :idUser';\n $suppData= array(\":id\" => $eventToDelete['supAll'], \":idUser\" => $userID);\n\n $result = executeQueryInsert($suppQuery, $suppData);\n\n }\n //supprimer l'event choisi et les suivantes recurrences\n if($eventToDelete[\"supAfter\"] != \"\"){\n\n $suppQuery=\"DELETE FROM `event-recurrence` WHERE FKevents = :id AND date > '$date' \";\n $suppData= array(\":id\" => $eventToDelete['supAfter']);\n\n $result = executeQueryInsert($suppQuery, $suppData);\n\n }\n\n return $result;\n}", "public function remove() {}", "public function remove() {}", "function removeObject(mofilmEvent $inObject) {\n\t\treturn $this->_removeItemWithValue($inObject);\n\t}", "public function removeListeners($event = NULL)\n\t{\n\t\tif (!empty($event) && array_key_exists($event, static::$events)) {\n\t\t\tstatic::$events[$event] = [];\n\t\t} else {\n\t\t\tforeach (static::$events as $evt => $events)\n\t\t\t\tstatic::$events[$evt] = [];\n\t\t}\n\t}", "private function uninstallEvents()\n {\n $this->load->model('setting/event');\n $this->model_setting_event->deleteEvent('payment_mundipagg');\n }", "function UnInstallEvents()\n\t{\n\t}", "public function eliminar($objeto){\r\n\t}", "function delete(){\n\t\t$eventDet = $this->get_full_details();\n\t\t//print_r($eventDet);\n\t\t#unlink all images for the event\n\t\tif ($eventDet->news_image_logo) { \n\t\t\t//unlink($this->imgPath.$eventDet->news_image_logo);\n\t\t}\n\t\tif ($eventDet->news_photo1) { \n\t\t\tunlink($this->imgPath.$eventDet->news_photo1);\n\t\t}\n\t\tif ($eventDet->news_photo2) { \n\t\t\tunlink($this->imgPath.$eventDet->news_photo2);\n\t\t}\n\t\tif ($eventDet->news_photo3) { \n\t\t\tunlink($this->imgPath.$eventDet->news_photo3);\n\t\t}\t\t\t\t\t\t\n\t\t\n\t\t#remove event entry from the db\n\t\tglobal $db;\n\t\t$sQl = \"delete from cms_news where id = '\".$this->event_id.\"'\";\n\t\tif ($db->query($sQl)){\n\t\t\t$this->message = \"Event \".$eventDet->news_title.\" deleted successfully\";\n\t\t\treturn true;\n\t\t} else {\n\t\t\t$this->error = \"Cannot delete Event \".$eventDet->news_title.\"\";\n\t\t\treturn false;\n\t\t}\n\t}", "function unregister_elgg_event_handler($event, $object_type, $function) {\n\tglobal $CONFIG;\n\tforeach($CONFIG->events[$event][$object_type] as $key => $event_function) {\n\t\tif ($event_function == $function) {\n\t\t\tunset($CONFIG->events[$event][$object_type][$key]);\n\t\t}\n\t}\n}", "public function removeSubEvent($value)\n {\n $key = array_search($value, $this->subEvents);\n if($key !== false) {\n unset($this->subEvents[$key]);\n }\n }", "public function delete_event($nome, $data){\n $sql=\"DELETE FROM \".static::getTables().\" WHERE nome= '\".$nome.\"' and data_e= '\".$data.\"' ;\";\n if(parent::delete($sql))\n return true;\n else\n return false;\n }", "public function delete(){\n $this->probe_requests()->detach();\n\n // Delete the event itself\n $result = parent::delete();\n\n return $result;\n }", "abstract public function remove();", "abstract public function remove();", "abstract public function remove();", "function evento_pessoa_delete($idevento){\r\n\r\n\t\t$this->idevento = $idevento;\r\n\t\t$this->status = 2;\r\n\t\t$bd = Crud_Evento::conexao();\r\n\t\t$sql = \"UPDATE evento set status = :status WHERE idevento = :idevento\";\r\n\t\t$stmt = $bd->prepare( $sql );\r\n\t\t$stmt->bindParam(':idevento',$this->idevento,PDO::PARAM_INT);\r\n\t\t$stmt->bindParam(':status', $this->status, PDO::PARAM_INT);\r\n\r\n\t\t\r\n\r\n\t\t$bd = Crud_Evento::conexao();\r\n\r\n\t\t$sql = \"DELETE FROM evento_pessoa WHERE idevento = :idevento \";\r\n\t\t$stmt = $bd->prepare($sql);\r\n\t\t$stmt->bindParam(':idevento',$idevento, PDO::PARAM_INT);\r\n\r\n\t\t$result = $stmt->execute();\r\n\r\n\t}", "public function quitar_evento(Request $request)\n {\n DB::table('sesion_evento')->where('id_evento',$request->input('id_evento'))\n ->where('id_sesion',$request->input('id_sesion'))\n ->delete();\n\n return redirect()->route('sesion.show',$request->input('id_sesion'))\n ->with('success','Evento removido correctamente');\n }", "public function clear($event);", "function destroy($event) {\n $timers =& Timer::timers();\n unset($timers[$event]);\n }", "public function remove($event, $listener);", "function deleteReminderForEvent($eventUid) {\n\t\t$result = $GLOBALS ['TYPO3_DB']->exec_SELECTquery ('uid_local', 'tx_cal_fe_user_event_monitor_mm', 'uid_local = ' . $eventUid);\n\t\twhile ($monitorRow = $GLOBALS ['TYPO3_DB']->sql_fetch_assoc ($result)) {\n\t\t\t/* Check for existing gabriel events and remove them */\n\t\t\t$this->deleteReminder ($monitorRow ['uid_local']);\n\t\t}\n\t}", "public function action_remove()\r\n\t{\r\n\t\t$event = ORM::factory('event', array('id' => $this->request->param('id')));\r\n\t\t\r\n\t\t// Can user remove this event?\r\n\t\tif ( ! $this->user->can('event_remove', array('event' => $event)))\r\n\t\t{\r\n\t\t\t// Error notification\r\n\t\t\tNotices::error('event.remove.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// Cancel the event (will be hidden from view)\r\n\t\t$event->cancel_event();\r\n\t\t\r\n\t\tNotices::success('event.remove.success');\r\n\t\t\r\n\t\t// Show event list\r\n\t\t$this->request->redirect(Route::url('event'));\r\n\t}", "static function eliminar_instancia()\n\t{\n\t\tself::$instancia = null;\n\t}", "public function eliminar() {\n //$this->delete();\n $campo_fecha_eliminacion = self::DELETED_AT;\n $this->$campo_fecha_eliminacion = date('Y-m-d H:i:s');\n $this->status = 0;\n $this->save();\n }", "public function clearListeners(string $event): void;", "function eliminarUoFuncionario(){\r\n\t\t$this->objFunSeguridad=$this->create('MODUoFuncionario');\t\r\n\t\t$this->res=$this->objFunSeguridad->eliminarUoFuncionario($this->objParam);\r\n\t\t$this->res->imprimirRespuesta($this->res->generarJson());\r\n\r\n\t}", "function delete_post_type_event(){\n\tunregister_post_type( 'event' );\n}", "public function removeSingleEvent() {\n\t\ttry {\n\t\t\t$id = Request::input('id');\n\t\t\t$before_end_date = Request::input('beforeEndDate');\n\t\t\t$after_start_date = Request::input('afterStartDate');\n\t\t\t$talk_show = ConnectContent::findOrFail($id);\n\n\t\t\t$before = $talk_show->replicate();\n\t\t\t$after = $talk_show->replicate();\n\n\t\t\t//We split the talk show timelines into before and after current date\n\t\t\t$before->end_date = $before_end_date;\n\t\t\t$after->start_date = $after_start_date;\n\n\t\t\t$before->save();\n\t\t\t$after->save();\n\n\t\t\tif (\\Auth::User()->station->is_private) {\n\t\t\t\t$before->updateContentToTagsLinkStatic();\n\t\t\t\t$after->updateContentToTagsLinkStatic();\n\t\t\t} else {\n\t\t\t\t$before->updateContentToTagsLink();\n\t\t\t\t$after->updateContentToTagsLink();\n\t\t\t}\n\t\t\t\n\t\t\t//Replicate attachments for new before and after talk show recurrences\n\t\t\t$attachments = ConnectContentAttachment::where('content_id', $id)\n\t\t\t\t->get();\n\t\t\tforeach($attachments as $attachment) {\n\t\t\t\t$attachment_for_before = $attachment->replicate();\n\t\t\t\t$attachment_for_before->content_id= $before->id;\n\t\t\t\t$attachment_for_after = $attachment->replicate();\n\t\t\t\t$attachment_for_after ->content_id = $after->id;\n\t\t\t\t$attachment_for_before->save();\n\t\t\t\t$attachment_for_after->save();\n\t\t\t\t//Should we delete the original attachments?\n\t\t\t}\n\n\t\t\t$talk_show->removeConnectContent();\n\n\t\t\treturn response()->json(array('code' => 0, 'msg' => 'Event Deleted', 'data' => array('id'=> $id, 'before' => $before, 'after' => $after, 'att'=> $attachments)));\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}", "function removeOutbound($rId, $state)\r\n {\r\n //pokupi informacije requesta da se mogu pobrisati dupli\r\n\r\n $sql=\"SELECT * FROM phone_order_outbound WHERE randomID='$rId' ORDER BY id DESC LIMIT 1\";\r\n $var=$this->conn->fetchAssoc($sql);\r\n\r\n $ime = $var['name'];\r\n $phone = $var['phone'];\r\n\r\n //BRISANJE REQUESTA PO ID-u\r\n $sql=\"DELETE FROM phone_order_outbound WHERE randomID='$rId' AND state = '$state' AND (phone_order_outbound.type = 6 OR phone_order_outbound.type = 9 OR phone_order_outbound.type = 7 OR phone_order_outbound.type = 8 OR phone_order_outbound.type = 10) LIMIT 1\";\r\n $this->conn->executeQuery($sql);\r\n\r\n // BRISANJE REQUESTA PO IMENU I BROJU\r\n $sql=\"DELETE FROM phone_order_outbound WHERE state = '$state' AND (`name`= '{$ime}' OR `phone` = '{$phone}') AND (phone_order_outbound.type = 6 OR phone_order_outbound.type = 7 OR phone_order_outbound.type = 8 OR phone_order_outbound.type = 9 OR phone_order_outbound.type = 10 OR phone_order_outbound.type = 11) AND `submitDate` > NOW() - INTERVAL 2 HOUR\";\r\n $this->conn->executeQuery($sql);\r\n\r\n\r\n\r\n $sql=\"SELECT * FROM phone_order_outbound WHERE randomID='$rId' ORDER BY id DESC LIMIT 1\";\r\n $var=$this->conn->fetchAssoc($sql);\r\n\r\n if(empty($var['id']))\r\n {\r\n echo 1;\r\n } else {\r\n echo -1;\r\n }\r\n }", "public static function deregister_event() {\n\t\twp_clear_scheduled_hook( 'learn_press_schedule_cleanup_temp_users' );\n\t}", "function removeRegistro($id) {\n GLOBAL $con;\n\n //busca info\n $querybusca = \"select * from kardexs where id='\" . $id . \"'\";\n $qry = mysql_query($querybusca);\n $linha = mysql_fetch_assoc($qry);\n\n //Apagua\n $query = \"delete from kardexs where id='\" . $id . \"'\";\n mysql_query($query, $con) or die(mysql_error());\n\n if (saldoExiste($linha['produto_id'], $linha['estoque_id'])) {\n //atualiza retirando saldo\n $saldoAtual = saldoByEstoque($linha['produto_id'], $linha['estoque_id']);\n if ($linha['sinal'] == '+') {\n $saldoAtual_acerto = $saldoAtual - $linha['qtd'];\n } else {\n $saldoAtual_acerto = $saldoAtual + $linha['qtd'];\n }\n\n\n saldo_atualiza($linha['produto_id'], $linha['estoque_id'], $saldoAtual_acerto);\n }\n}", "protected function _unsubscribeFromEngineEvents()\n {\n $controller = $this->getController();\n $controller->removeEventListener(\n Streamwide_Engine_Events_Event::ENDOFFAX,\n array( 'callback' => array( $this, 'onEndOfFax' ) )\n );\n $controller->removeEventListener(\n Streamwide_Engine_Events_Event::FAXPAGE,\n array( 'callback' => array( $this, 'onFaxPage' ) )\n );\n }", "public function eliminarPorDominio($dominio)\n {\n }", "public function clearEvents()\n {\n $this->recorded = [];\n }", "public function deleteEvent()\n {\n $result = new stdClass;\n $instance = null;\n\n if (!($kronolith_driver = $this->_getDriver($this->vars->cal)) ||\n !isset($this->vars->id)) {\n return $result;\n }\n\n try {\n $event = $kronolith_driver->getEvent($this->vars->id);\n if (!$event->hasPermission(Horde_Perms::DELETE)) {\n $GLOBALS['notification']->push(_(\"You do not have permission to delete this event.\"), 'horde.warning');\n return $result;\n }\n $range = null;\n if ($event->recurs() && $this->vars->r != 'all') {\n switch ($this->vars->r) {\n case 'future':\n // Deleting all future instances.\n // @TODO: Check if we need to find future exceptions\n // that are after $recurEnd and remove those as well.\n $instance = new Horde_Date($this->vars->rstart, $event->timezone);\n $recurEnd = clone($instance);\n $recurEnd->hour = 0;\n $recurEnd->min = 0;\n $recurEnd->sec = 0;\n $recurEnd->mday--;\n if ($event->end->compareDate($recurEnd) > 0) {\n $kronolith_driver->deleteEvent($event->id);\n $result = $this->_signedResponse($this->vars->cal);\n $result->events = array();\n } else {\n $event->recurrence->setRecurEnd($recurEnd);\n $result = $this->_saveEvent($event, $event, $this->vars);\n }\n $range = Kronolith::RANGE_THISANDFUTURE;\n break;\n case 'current':\n // Deleting only the current instance.\n $instance = new Horde_Date($this->vars->rstart, $event->timezone);\n $event->recurrence->addException(\n $instance->year, $instance->month, $instance->mday);\n $result = $this->_saveEvent($event, $event, $this->vars);\n }\n } else {\n // Deleting an entire series, or this is a single event only.\n $kronolith_driver->deleteEvent($event->id);\n $result = $this->_signedResponse($this->vars->cal);\n $result->events = array();\n $result->uid = $event->uid;\n }\n\n if ($this->vars->sendupdates) {\n Kronolith::sendITipNotifications(\n $event, $GLOBALS['notification'], Kronolith::ITIP_CANCEL, $instance, $range);\n }\n $result->deleted = true;\n } catch (Horde_Exception_NotFound $e) {\n $GLOBALS['notification']->push(_(\"The requested event was not found.\"), 'horde.error');\n } catch (Exception $e) {\n $GLOBALS['notification']->push($e, 'horde.error');\n }\n\n return $result;\n }", "public function erase_history()\n {\n $this->_event_history = [];\n }", "public function off($event);", "protected function _unsubscribeFromEngineEvents()\n {\n $events = array(\n Streamwide_Engine_Events_Event::SDP,\n Streamwide_Engine_Events_Event::CHILD,\n Streamwide_Engine_Events_Event::OKMOVED,\n Streamwide_Engine_Events_Event::MOVED,\n Streamwide_Engine_Events_Event::FAILMOVED\n );\n \n $controller = $this->getController();\n foreach ( $events as $event ) {\n $controller->removeEventListener( $event, array( 'callback' => array( $this, 'onSignalReceived' ) ) );\n }\n }", "public function __deleteEvents() {\n $_deleteEventCodes_ = array(\n 'wk_pa_add_column_menu',\n 'wk_pa_addJs_product',\n 'wk_pa_product_model_delete',\n 'wk_pricealert_account_view',\n 'wk_pricealert_header',\n 'wk_pricealert_addJs_add',\n 'wk_pricealert_addJs_edit',\n 'wk_pa_product_model_update',\n 'wk_pa_product_model_add',\n );\n\n foreach ($_deleteEventCodes_ as $_DE_code) {\n $this->helper_event->deleteEventByCode($_DE_code);\n }\n }", "public function removeObserver() {\n //$this->__observers = array();\n foreach($this->__observers as $obj) {\n unset($obj);\n }\n }", "public function remove_old_log_events() {\n global $wpdb;\n\n $older_than = (time() - H5PEventBase::$log_time);\n\n $wpdb->query($wpdb->prepare(\"\n DELETE FROM {$wpdb->prefix}h5p_events\n\t\t WHERE created_at < %d\n \", $older_than));\n }", "public static function clear($event) {\n unset(static::$events[$event]);\n }", "function eliminarImagenSusQ($campo, $tabla, $idAsignacion)\n {\n $data=$this->analisisRiesgo->getNombreImagen($campo, $tabla, $idAsignacion);\n //Delete el nombre de la imagen de la base de datos\n $borrar=Array($campo => null);\n $this->analisisRiesgo->deleteImagen($borrar, $tabla, $idAsignacion);\n //Unlink el nombre de la imagen del servidor\n foreach($data as $row)\n {\n $nombreImagen=$row[$campo];\n unlink(\"assets/img/fotoAnalisisRiesgo/fotoSustanciasQuimicas/$nombreImagen\");\n echo \"OK\";\n }\n\n }", "function eliminar_reserva($id_sede,$id_area,$fecha,$hora) {\n $this->db->where('fecha =',$fecha);\n $this->db->where('id_sede =',$id_sede);\n $this->db->where('id_area =',$id_area);\n $this->db->where('hora =',$hora);\n $this->db->delete('edicion');\n }", "public function destroy($id)\n {\n $ev=new EventlogRegister;\n $ev->registro(2,'Intento de eliminación. Tabla=Indicadores, id='.$id,$this->req->user()->id);\n $res=new Borrador;\n $res->delIndicadores($id); // Usando el borrador de cascada.\n $msj='Borrado. Tabla=Indicadores, id='.$id;\n $ev->registro(2,$msj,$this->req->user()->id);\n return response()->json(['msj'=>$msj]);\n }", "function pp_events_remove_single_screen_notification() {\r\n\tglobal $post; \r\n\t\r\n\tbp_notifications_mark_notifications_by_item_id( bp_loggedin_user_id(), $post->ID, 'events', 'event_attender', $secondary_item_id = false, $is_new = false );\r\n}", "function eliminarHerrajeaccesorio(){\n\t\t$this->procedimiento='snx.ft_herrajeaccesorio_ime';\n\t\t$this->transaccion='SNX_HAC_ELI';\n\t\t$this->tipo_procedimiento='IME';\n\t\t\t\t\n\t\t//Define los parametros para la funcion\n\t\t$this->setParametro('id_herrajeaccesorio','id_herrajeaccesorio','int4');\n\n\t\t//Ejecuta la instruccion\n\t\t$this->armarConsulta();\n\t\t$this->ejecutarConsulta();\n\n\t\t//Devuelve la respuesta\n\t\treturn $this->respuesta;\n\t}", "function eliminaRuta()\r\n\t{\r\n\t\t$query = \"DELETE FROM \" . self::TABLA . \" WHERE IdRuta = \".$this->IdRuta.\";\";\r\n\t\treturn parent::eliminaRegistro( $query);\r\n\t}", "private function delete(SincronizacaoEvent $sincronizacaoEvent)\n {\n $sync = $sincronizacaoEvent->getData();\n $tutorGrupo = $this->tutorGrupoRepository->find($sync->sym_table_id);\n $tutor = $this->tutorRepository->find($tutorGrupo->ttg_tut_id);\n $grupo = $this->grupoRepository->find($tutorGrupo->ttg_grp_id);\n\n $ambiente = $this->ambienteVirtualRepository->getAmbienteByTurma($grupo->grp_trm_id);\n\n if ($ambiente) {\n $pessoa = $this->pessoaRepository->find($tutor->tut_pes_id);\n\n $data['tutor']['pes_id'] = $pessoa->pes_id;\n $data['tutor']['grp_id'] = $grupo->grp_id;\n\n $param['url'] = $ambiente->url;\n $param['token'] = $ambiente->token;\n $param['action'] = 'post';\n $param['functioname'] = 'local_integracao_unenrol_tutor_group';\n $param['data'] = $data;\n\n $response = Moodle::send($param);\n $status = 3;\n\n if (array_key_exists('status', $response) && $response['status'] == 'success') {\n $status = 2;\n }\n\n event(new AtualizarSyncEvent($tutorGrupo, $status, $response['message'], 'DELETE'));\n return true;\n }\n\n return false;\n }", "function eliminar_autonomo()\n\t{\n\t\ttry {\n\t\t\t$this->db->abrir_transaccion();\n\t\t\t$this->db->retrasar_constraints();\n\t\t\t$this->eliminar();\n\t\t\t$this->db->cerrar_transaccion();\n\t\t\t$this->manejador_interface->mensaje(\"El proyecto '{$this->identificador}' ha sido eliminado\");\n\t\t} catch ( toba_error $e ) {\n\t\t\t$this->db->abortar_transaccion();\n\t\t\t$this->manejador_interface->error( \"Ha ocurrido un error durante la eliminacion de TABLAS de la instancia:\\n\".\n\t\t\t\t\t\t\t\t\t\t\t\t$e->getMessage() );\n\t\t}\n\t}", "public function removeMe()\n {\n $this->current_signal=self::SIGNAL_NONE;\n $this->sigtable=[];\n Bot::remove($this->bot_slot,0);\n }", "function vizadplug_cron_deactivate() {\t\n\t// find out when the last event was scheduled\n\t$timestamp = wp_next_scheduled ('mytrius-sync');\n\t// unschedule previous event if any\n\twp_unschedule_event ($timestamp, 'mytrius-sync');\n}", "public function delete($event): void;", "public function stopListeningForEvents()\n\t\t{\n\n\t\t\t// Initialize the crontab manager if this has not been done before\n\t\t\tif(is_null($this->CronManager)) $this->CronManager = new ssh2_crontab_manager();\n\n\t\t\t// Stop cronjob to call $this-->captureSongHistory()\n\t\t\t$this->CronManager->remove_cronjob(\"checkTimeEventExecutionNeeds\");\n\n\t\t\t// Write status to the config\n\t\t\t$this->data['config']['mod_time__checkTimeEventExecutionNeedsCron'] = \"disabled\";\n\t\t\t$this->writeConfFile($this->data['config'], true);\n\n\t\t}", "public function Eliminar_Exp_Laboral($data){\n $modelo = new HojaVida();\n $fechahora = $modelo->get_fecha_actual();\n $datosfecha = explode(\" \",$fechahora);\n $fechalog = $datosfecha[0];\n $horalog = $datosfecha[1];\n $tiporegistro = \"Experiencia Laboral\";\n $accion = \"Elimina una Nueva \".$tiporegistro.\" de el Sistema (Hoja vida) TALENTO HUMANO\";\n $detalle = $_SESSION['nombre'].\" \".$accion.\" \".$fechalog.\" \".\"a las: \".$horalog;\n $tipolog = 15;\n $idusuario = $_SESSION['idUsuario'];\n //$idusuario = $_POST['id_user'];;\n try {\n $this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); \n //EMPIEZA LA TRANSACCION\n $this->pdo->beginTransaction();\n $sql = \"DELETE FROM th_experiencia_laboral WHERE exp_id = ?\";\n\n $this->pdo->prepare($sql)\n ->execute(\n array(\n $data->id\n )\n ); \n $this->pdo->exec(\"INSERT INTO log (fecha, accion,detalle,idusuario,idtipolog) VALUES ('$fechalog', '$accion','$detalle','$idusuario','$tipolog')\");\n //SE TERMINA LA TRANSACCION \n $this->pdo->commit();\n } catch (Exception $e) {\n $this->pdo->rollBack();\n die($e->getMessage());\n }\n }", "public function releaseEvents();", "public function releaseEvents();", "public function onUploaderFinished($event) {\n if ($event->sourceObject->isChild) {\n $event->sourceObject->removeNode();\n }\n }", "public function eliminar()\n {\n if (isset ($_REQUEST['id'])){\n $id=$_REQUEST['id'];\n $miConexion=HelperDatos::obtenerConexion();\n $resultado=$miConexion->query(\"call eliminar_rubro($id)\");\n }\n }", "public function forget($event)\n {\n unset($this->listeners[$event], $this->sorted[$event]);\n }", "public function removeTask()\n\t{\n\t\t// Check for request forgeries\n\t\tRequest::checkToken();\n\n\t\tif (!User::authorise('core.delete', $this->_option))\n\t\t{\n\t\t\tApp::abort(403, Lang::txt('JERROR_ALERTNOAUTHOR'));\n\t\t}\n\n\t\t// Incoming\n\t\t$ids = Request::getArray('rid', array());\n\t\t$ids = (!is_array($ids) ? array($ids) : $ids);\n\n\t\t$removed = 0;\n\n\t\tforeach ($ids as $id)\n\t\t{\n\t\t\t$entry = Respondent::oneOrFail(intval($id));\n\n\t\t\t// Delete the entry\n\t\t\tif (!$entry->destroy())\n\t\t\t{\n\t\t\t\tNotify::error($entry->getError());\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// Trigger before delete event\n\t\t\t\\Event::trigger('onEventsAfterDeleteRespondent', array($id));\n\n\t\t\t$removed++;\n\t\t}\n\n\t\tif ($removed)\n\t\t{\n\t\t\tNotify::success(Lang::txt('COM_EVENTS_RESPONDENT_REMOVED'));\n\t\t}\n\n\t\t// Output messsage and redirect\n\t\tApp::redirect(\n\t\t\tRoute::url('index.php?option=' . $this->_option . '&controller=' . $this->_controller . '&id[]=' . Request::getInt('event', 0), false)\n\t\t);\n\t}", "function eliminarChequera(){\n\t\t$this->procedimiento='tes.f_chequera_ime';\n\t\t$this->transaccion='TES_CHQ_ELI';\n\t\t$this->tipo_procedimiento='IME';\n\t\t\t\t\n\t\t//Define los parametros para la funcion\n\t\t$this->setParametro('id_chequera','id_chequera','int4');\n\n\t\t//Ejecuta la instruccion\n\t\t$this->armarConsulta();\n\t\t$this->ejecutarConsulta();\n\n\t\t//Devuelve la respuesta\n\t\treturn $this->respuesta;\n\t}", "public function removeTask()\n\t{\n\t\tif(isset($this->primarySearchData[$this->ref_task]))\n\t\t{\n\t\t\tunset($this->primarySearchData[$this->ref_task]);\n\t\t}\n\t}", "function erase_signal_history($signal)\n{\n return XPSPL::instance()->erase_signal_history($signal);\n}", "public function removeSubscribes();", "public function getEventDel($id , $message);", "function eliminar($bd);", "public function remove ($obj) {}", "public function remove() {\n }", "public function destroyxevento($id)\n {\n try { \n $costo_evento = CostoEvento::where('id_evento', $id)->get();\n if (count($costo_evento) == 0) {\n return $this->sendError('No se encuentran costos por evento');\n }\n CostoEvento::where('id_evento', $id)->delete();\n return $this->sendResponse($costo_evento->toArray(), 'Costos por evento eliminados con éxito');\n\n }catch (\\Illuminate\\Database\\QueryException $e){\n return response()->json(['error' => 'Los costos por evento no se puede eliminar', 'exception' => $e->errorInfo], 400);\n }\n }", "function agenda_delete_item($event_id,$repeat='this')\n{\n\t$final_result=true;\n\t$result=array();\n\n\t$tbl = get_conf('mainTblPrefix') . 'event';\n\t$sql = \"SELECT master_event_id\n\t\tFROM \" . $tbl . \"\n\t\tWHERE id = \" .(int) $event_id;\n\t$master_event_id = claro_sql_query_fetch_all($sql);\n\tif ($master_event_id == false)$result[] = $master_event_id;\n\n $tbl = get_conf('mainTblPrefix') . 'event';\n $sql = \"DELETE FROM \" . $tbl . \"\n WHERE id = \" . (int) $event_id;\n\t$result[] = claro_sql_query($sql);\n\n $tbl = get_conf('mainTblPrefix') . 'rel_event_recipient';\n $sql = \"DELETE FROM \" . $tbl . \"\n WHERE event_id= \" . (int) $event_id;\n\t$result[] = claro_sql_query($sql);\n\n\tif ($repeat=='all')\n\t{\n\t\tforeach ($master_event_id as $this_master_event_id)\n\t\t{\n\t\t\t$tbl = get_conf('mainTblPrefix') . 'event';\n\t\t\t$sql = \"SELECT id\n\t\t\t\tFROM \" . $tbl . \"\n\t\t\t\tWHERE master_event_id = \" .(int) $this_master_event_id['master_event_id'];\n\t\t\t$event_id_list = claro_sql_query_fetch_all($sql);\n\t\t\tif ($event_id_list == false)$result[] = $event_id_list;\n\t\t}\n\n\t\tforeach ($event_id_list as $this_event_id) \n\t\t{\n\t\t\t$tbl = get_conf('mainTblPrefix') . 'event';\n\t\t\t$sql = \"DELETE FROM \" . $tbl . \"\n\t\t\t\tWHERE id = \" . (int) $this_event_id['id'];\n\t\t\t$result [] = claro_sql_query($sql);\n\n\t\t\t$tbl = get_conf('mainTblPrefix') . 'rel_event_recipient';\n\t\t\t$sql = \"DELETE FROM \" . $tbl . \"\n\t\t\t\tWHERE event_id= \" . (int) $this_event_id['id'];\n\t\t\t$result []= claro_sql_query($sql);\n\t\t}\n\t}\n\tif (is_array($result) && !empty($result))\n\t{\n\t\tforeach($result as $this_result)\n\t\t{\n\t\t\tif ($this_result==false) $final_result=false;\n\t\t}\n\t}\n return $final_result;\n}", "function eliminarPeriodoVenta(){\n $this->procedimiento='obingresos.ft_periodo_venta_ime';\n $this->transaccion='OBING_PERVEN_ELI';\n $this->tipo_procedimiento='IME';\n\n //Define los parametros para la funcion\n $this->setParametro('id_periodo_venta','id_periodo_venta','int4');\n\n //Ejecuta la instruccion\n $this->armarConsulta();\n $this->ejecutarConsulta();\n\n //Devuelve la respuesta\n return $this->respuesta;\n }", "public function eliminar()\n\t{\n\t\t$idestado = $_POST['idestado'];\n\t\t//en viamos por parametro el id del estado a eliminar\n\t\tEstado::delete($idestado);\n\t}", "public function remove($listener);", "public function clearRecordedEvents()\n {\n $this->events = [];\n }", "function Remove_Unregistered_Events_From_This_Schedule($schedule)\n{\n\t$new_schedule = array();\n\n\tforeach ($schedule as $e)\n\t{\n\t\tif($e->status != 'scheduled') $new_schedule[] = $e;\n\t}\n\n\treturn $new_schedule;\n}", "public function destroy($id)\n {\n $find_partner = Event::find($id);\n $old_img = $find_partner->image;\n unlink($old_img);\n $find_partner->delete();\n }", "public static function remove_crons() {\n\t\t$events = self::get_events();\n\n\t\tforeach ( $events as $event => $recurrence ) {\n\t\t\t$timestamp = wp_next_scheduled( $event );\n\t\t\tif ( false !== $timestamp ) {\n\t\t\t\twp_unschedule_event( $timestamp, $event );\n\t\t\t}\n\t\t}\n\t}", "function delete_event($event_id) {\n\t\t$data = $this->db->query('SELECT bulletin_id FROM event_bulletin WHERE event_id='.$event_id.'');\n\t\t$bulletinIDs = $data->result();\n\t\t// Delete all bulletins with this event_id\n\t\tforeach ($bulletinIDs as &$value) {\n\t\t\t$this->db->where('bulletin_id', $value->bulletin_id);\n\t\t\t$this->db->delete('bulletin');\n\t\t}\n\t\t$this->db->where('event_id', $event_id);\n\t\t$this->db->delete('event');\n\t\t$this->db->where('event_id', $event_id);\n $this->db->delete('event_bulletin');\n\t\t$this->db->where('event_id', $event_id);\n\t\t$this->db->delete('event_location');\n\t\t$this->db->where('event_id', $event_id);\n $this->db->delete('event_owner');\n\t\t$this->db->where('event_id', $event_id);\n\t\t$this->db->delete('event_tag');\n\t\t$this->db->where('event_id', $event_id);\n\t\t$this->db->delete('organization_event');\n\t}", "public function deleteEvent($event)\n {\n $this->entityManager->remove($event);\n $this->entityManager->flush();\n }", "function removeAval($codUsr,$cod,$tipo){\r\n\t\t$fAval = new fachada_avaliacao();\r\n\t\t$fAval->removeAval($codUsr,$cod,$tipo);\r\n\t}", "public function remove_event_data($entry_id)\n\t{\n\t\t$this->data->delete_event($entry_id);\n\t}", "function deleteComentario($id_evento,$id_comentario){\n $mysqli = Conectar();\n seguridad($id_evento);\n seguridad($id_comentario);\n $mysqli->query(\"Delete From comentarios Where id_evento='$id_evento' and id_comentario='$id_comentario'\");\n }", "public function remover() {\n \n $queryVerificaInscricao = '\n select * from tb_inscricao_atividade where id_atividade = :id_atividade \n ';\n \n $stmtInscAtt = $this->conexao->prepare($queryVerificaInscricao);\n $stmtInscAtt->bindValue(':id_atividade', $_GET['id_att']);\n $stmtInscAtt->execute();\n \n $inscAtt = $stmtInscAtt->fetchAll(PDO::FETCH_OBJ);\n \n // echo '<pre>';\n // print_r($inscAtt);\n // echo '</pre>';\n \n if (!empty($inscAtt)) {\n foreach ($inscAtt as $inscAttInd) {\n $queryDeleteInscAtt = 'delete from tb_inscricao_atividade where \n id_atividade = :id_atividadeDel and \n id_evento = :id_eventoDel and \n id_usuario = :id_usuarioDel';\n \n $stmtInscAttDel = $this->conexao->prepare($queryDeleteInscAtt);\n $stmtInscAttDel->bindValue(':id_atividadeDel', $inscAttInd->id_atividade);\n $stmtInscAttDel->bindValue(':id_eventoDel', $inscAttInd->id_evento);\n $stmtInscAttDel->bindValue(':id_usuarioDel', $inscAttInd->id_usuario);\n $stmtInscAttDel->execute();\n }\n }\n\n $queryInscCupomAtt = '\n select * from tb_cupom where id_atividade = :id_atividadeCupDel\n ';\n\n $stmtInscCupomAtt = $this->conexao->prepare($queryInscCupomAtt);\n $stmtInscCupomAtt->bindValue(':id_atividadeCupDel', $_GET['id_att']);\n $stmtInscCupomAtt->execute();\n\n $cupomAtt = $stmtInscCupomAtt->fetchAll(PDO::FETCH_OBJ);\n\n // echo '<pre>';\n // print_r($cupomAtt);\n // echo '</pre>';\n\n if (!empty($cupomAtt)) {\n foreach ($cupomAtt as $cupomAttInd) {\n $queryDeleteCupomAtt = '\n delete from tb_cupom where id = :id_cupomDel\n ';\n\n echo $cupomAttInd->id;\n\n $stmtInscCupomAttDel = $this->conexao->prepare($queryDeleteCupomAtt);\n $stmtInscCupomAttDel->bindValue(':id_cupomDel', $cupomAttInd->id);\n $stmtInscCupomAttDel->execute();\n }\n }\n \n $query = '\n delete from tb_atividade \n where id = :id';\n\n $stmt = $this->conexao->prepare($query);\n $stmt->bindValue(':id', $_GET['id_att']);\n\n return $stmt->execute();\n }", "public function remove() {\n\t\t$this->setRemoved(TRUE);\n\t}", "function eliminarSesion($id){\n\t\t\n\t\t$query1 = $this->db->from('agenda')->where('id_sesion',$id)->get(); //QUERY PARA OBTENER TODO DE UNA VEZ.\n\t\t\t\t\t\n\t\tif ( ($query1->num_rows() ) == 0 )\n\t\t{\n\t\t\n\t\t$query = $this->db->delete('sesion',array('id'=>$id));\n\t\n\t\tif($query==false){\n\t\t\techo \"<script> alert('No se ha eliminado la sesion'); </script>\";\n\t\t}\n\t\t\telse{ \n\t\t\techo \"<script> alert('Se ha eliminado la sesion'); </script>\";\n\t\t\t}\n\t\t}else\n\t\techo \"<script> alert('No se puede eliminar la sesion, ya tiene una agenda asignada'); </script>\";\n\t}", "function remove($aws_data_object) {\n\t\t}", "public function remove_event($eventname)\n\t{\n\t\tCmsEvents::remove_event($this->get_name(), $eventname);\n\t}", "function eliminarRuta($id) {\n $sql = \"DELETE FROM ruta WHERE id='\" . $id . \"'\";\n $con = new DB();\n $result = $con->exec($sql);\n $con = null;\n }" ]
[ "0.64792556", "0.64071405", "0.6045015", "0.6045015", "0.6045015", "0.6045015", "0.59901845", "0.5973385", "0.59398854", "0.5917276", "0.5905676", "0.59022427", "0.58840626", "0.5881692", "0.586071", "0.5855769", "0.58152634", "0.57878613", "0.5772295", "0.5753442", "0.57520217", "0.5737657", "0.57167715", "0.5683935", "0.5678407", "0.5678407", "0.5678407", "0.56661755", "0.5641412", "0.56321657", "0.56089574", "0.5599097", "0.5590939", "0.5583417", "0.5564275", "0.55598634", "0.55463034", "0.55306315", "0.55275506", "0.55255425", "0.55236614", "0.55133635", "0.54956514", "0.5491483", "0.5489804", "0.54854494", "0.5484903", "0.54846746", "0.5481349", "0.54712707", "0.5468974", "0.5468892", "0.54586494", "0.5456555", "0.54544896", "0.5454101", "0.54473066", "0.5420745", "0.5415116", "0.5413342", "0.54132295", "0.54125434", "0.53785914", "0.5370007", "0.5365558", "0.5359586", "0.5359505", "0.535824", "0.535824", "0.5346363", "0.5342727", "0.53267664", "0.5324214", "0.53148186", "0.53107995", "0.5310213", "0.53088063", "0.5303505", "0.52965957", "0.52877545", "0.52857023", "0.5282627", "0.5279227", "0.52785504", "0.5278528", "0.52782553", "0.52717316", "0.5267228", "0.52649105", "0.5263986", "0.5263061", "0.5256229", "0.5252961", "0.5252706", "0.5252305", "0.52507687", "0.5247625", "0.52414906", "0.52397937", "0.5231601", "0.523144" ]
0.0
-1
This function takes a customer ID and returns a 2 dimensional array of all his favorites and all the elements belonging to those favorites. Connects to the CustomCupcakes database and queries the favorites table. It then builds the arrays off the results found.
function getFavoritesFromDB($customerID) { $con = mysql_connect("localhost", "DBandGUI", "narwhal"); if(!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("CustomCupcakes",$con) or die("Unable to select database: " . mysql_error()); $query = "SELECT favorite_ID,cupcakeFlavor_ID,cupcakeIcing_ID,cupcakeFilling_ID,topping_ID FROM Favorites NATURAL JOIN Cupcakes NATURAL JOIN CupcakeToppings WHERE customer_ID='" . $customerID . "';"; $result = mysql_query($query); $resultArr = array(); // Iterates over the results and builds the 2-D array for the results while($row = mysql_fetch_array($result)) { $resultArr[$row['favorite_ID']] = array( "flavor" => $row['cupcakeFlavor_ID'], "icing" => $row['cupcakeIcing_ID'], "topping" => $row['topping_ID'], "filling" => $row['cupcakeFilling_ID'] ); } mysql_close($con); return $resultArr; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function getFavoritesWithIDs(){\n\n\t$id = getUserID();\n\t$query = \"SELECT unique_networks.unique_network_id, networks.area, networks.state, activities.activity_name FROM favorites, networks, activities, unique_networks WHERE user_id = \".$id.\"\"\n\t.\" AND favorites.unique_network_id = unique_networks.unique_network_id\"\n\t.\" AND unique_networks.activity_id = activities.activity_id\"\n\t.\" AND unique_networks.network_id = networks.network_id\";\n\t$result = mysql_query($query) or die(mysql_error());\n\t$favs = array();\n\twhile($row = mysql_fetch_array($result)){\n\t\t$favs[] = $row;\n\t}\n\treturn $favs;\n}", "function getFavorites(){\n\n\t$id = getUserID();\n\t$query = \"SELECT networks.area, networks.state, activities.activity_name FROM favorites, networks, activities, unique_networks WHERE user_id = \".$id.\"\"\n\t.\" AND favorites.unique_network_id = unique_networks.unique_network_id\"\n\t.\" AND unique_networks.activity_id = activities.activity_id\"\n\t.\" AND unique_networks.network_id = networks.network_id\";\n\t$result = mysql_query($query) or die(mysql_error());\n\t$favs = array();\n\twhile($row = mysql_fetch_array($result)){\n\t\t$favs[] = $row['area']. \", \". $row['state']. \" - \" .$row['activity_name'];\n\t}\n\treturn $favs;\n}", "function getAllFoodpornsByFavorite()\n {\n $stmt = self::$_db->prepare(\"SELECT fp.* FROM favorit AS fav LEFT JOIN foodporn AS fp On fav.fs_foodporn = fp.id_foodporn AND fav.fs_user=:uid WHERE id_foodporn IS NOT NULL\");\n $uid = self::getUserID();\n $stmt->bindParam(\":uid\", $uid);\n $stmt->execute();\n return $stmt->fetchAll(PDO::FETCH_ASSOC);\n }", "public function getAllFavorites($user_id);", "public function find_favorites() {\n\t\tstatic $favorites;\n\n\t\tif (!is_array($favorites)) {\n\t\t\t$favorites = array();\n\t\t\tif ($this->loaded()) {\n\t\t\t\t$users = db::build()->select('user_id')->from('favorites')->where('event_id', '=', $this->id)->execute()->as_array();\n\t\t\t\tforeach ($users as $user) {\n\t\t\t\t\t$favorites[(int)$user['user_id']] = (int)$user['user_id'];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn $favorites;\n\t}", "function favorites() {\n if ($this->getRequestMethod() != \"GET\") {\n $this->response('', 406);\n }\n $id = (int)$this->_request['user_id'];\n $auth = $this->getAuthorization();\n if (!$this->validateAuthorization($id, $auth)) {\n $this->response('', 400);\n }\n if ($id > 0) {\n $query = \"select * from favorites where user_id=$id;\"; \n $r = $this->conn->query($query) or die($this->conn->error.__LINE__);\n if($r->num_rows > 0) {\n $result = array();\n while ($row = $r->fetch_assoc()) {\n $result[] = $row;\n } \n $this->response(json_encode($result), 200); \n } else {\n $this->response('',204);\n }\n } else {\n $this->response('', 400);\n } \n }", "public function getFavorites();", "public function favourites($id)\n\t{\n\t\tif (!isset($_SESSION['user']))\n\t\t{\n\t\t\theader(\"Location: /myrecipe/session/new\");\n\t\t\texit;\n\t\t}\n\t\t// this page is only accessable by self and admin (type 2)\n\t\tif (($_SESSION['user']['type'] != 2) && ($_SESSION['user']['id'] != $id))\n\t\t{\n\t\t\theader(\"Location: /myrecipe/users/{$_SESSION['user']['id']}\");\n\t\t\texit;\n\t\t}\n\t\n\t\tif(!$user = User::findUser(array('user_id' => $id)))\n\t\t{\n\t\t\t// something has gone wrong with db request\n\t\t\theader(\"Location: /myrecipe/users/\".$id);\n\t\t\texit;\n\t\t}\n\t\t$this->template->user = $user[0];\n\t\t\n\t\t// find all the favourites\n\t\t$data = array('favourites.user_id'=>$id, 'recipe_images.is_cover'=>'yes');\n\t\t$favourites = Favourites::findFavourites($data);\n\t\t$this->template->favourites = $favourites;\n/*\t\techo \"<pre>\";\n\t\tprint_r($favourites);\n\t\techo \"</pre>\";\n*/\n\t\t$this->template->display('favourites.html.php');\n\t}", "public function myfavorites_get()\n {\n $user = $this->getCurrentUser();\n $criteria = new \\Doctrine\\Common\\Collections\\Criteria();\n //AQUI TODAS LAS EXPRESIONES POR LAS QUE SE PUEDE BUSCAR CON TEXTO\n $expresion = new \\Doctrine\\Common\\Collections\\Expr\\Comparison(\"favorite\", \\Doctrine\\Common\\Collections\\Expr\\Comparison::EQ, 1);\n $criteria->where($expresion);\n $criteria->orderBy(array(\"visited_at\"=>\"DESC\"));\n $relacion = $user->getUserservices()->matching($criteria)->toArray();\n $result[\"desc\"] = \"Listado de los servicios marcados como favoritos por el usuario\";\n $result[\"data\"] = array();\n foreach ($relacion as $servicerel) {\n $service_obj = $servicerel->getService();\n $service_obj->loadRelatedData($user, null, site_url());\n $result[\"test\"] = $service_obj->loadRelatedUserData($user);\n $result[\"data\"][] = $service_obj;\n }\n $this->set_response($result, REST_Controller::HTTP_OK);\n\n }", "function getFavoriteIDs(){\n\t$id = getUserID();\n\t$query = \"SELECT unique_network_id FROM favorites WHERE user_id = $id\";\n\t$result = mysql_query($query) or die(mysql_error());\n\t$favIDs = array();\n\twhile($row = mysql_fetch_array($result)){\n\t\t$favIDs[] = $row[0];// this is unique_network_id\n\t}\n\treturn $favIDs;\n}", "public function actionFavorites()\n\t{\n\t\t// using the default layout 'protected/views/layouts/main.php'\n\t\t\n\t\t\t\n\t\t$unfavorite = Yii::app()->request->getParam('unfavorite');\n\t\t$user_id = Yii::app()->user->id;\n\t\t\n\n\t\tif($unfavorite && $user_id) {\n\t\t\t\n\t\t\t$record = Favorited::model()->findByAttributes(array('user_id' => $user_id, 'object_id' => $unfavorite));\n\t\t//\tdie(print_r($record));\n\t\t\tif($record)\n\t\t\t\t$record->delete();\n\t\t//\t$this->redirect('/cabinet/favorites');\n\t\t//\t Yii::app()->end();\n\n\t\t}\t\n\n\n\t\t\n\t\tif($user_id) {\n\t\t\t$cookie_favorite = Yii::app()->request->cookies['favorite']->value;\n\t\t\t$cookie_favorite = json_decode($cookie_favorite);\n\t\t\t\n\t\t\t$cookie_fav_wrap = array();\n\t\t\t\n\t\t\twhile ($fruit_name = current($cookie_favorite)) {\n\t\t\t if ($fruit_name == 1) {\n\t\t\t $cookie_fav_wrap[] = key($cookie_favorite);\n\t\t\t }\n\t\t\t next($cookie_favorite);\n\t\t\t}\n\t\t\t\n\t\t\tforeach($cookie_fav_wrap as $fav_item) {\n\t\t\t\t$favorite = Favorited::model()->findByAttributes(array('user_id' => $user_id, 'object_id' => $fav_item));\n\t\t\t\tif(!$favorite) {\n\t\t\t\t\t$record = new Favorited;\n\t\t\t\t\t$record->user_id = $user_id;\n\t\t\t\t\t$record->object_id = $fav_item;\n\t\t\t\t\t$record->save();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t//$this->checkUser();\n\t\t$favarray = array();\n\t\t\n\t\t$cookie_favorite = Yii::app()->request->cookies['favorite']->value;\n\t\t$cookie_favorite = json_decode($cookie_favorite);\n\t\t\n\t\t$cookie_fav_wrap = array();\n\t\t\n\t\t//echo print_r($cookie_favorite, true);\n\t\t\n\t\tforeach($cookie_favorite as $cookie_key => $cookie_value) {\n\t\t\t\n\t\t if ($cookie_value && $unfavorite != $cookie_key) {\n\t\t $cookie_fav_wrap[] = $cookie_key;\n\t\t }\n\t\t}\n\t\t\n\t\t\n\t\tforeach($cookie_fav_wrap as $fav_item) {\n\t\t\tif ($unfavorite != $fav_item) \n\t\t\t\t$favarray[] = $fav_item;\n\t\t\t\t\t\n\t\t}\n\t\t\n\t\t\n\t\t\t\t\t\n\t\t$order_dir = Yii::app()->request->getParam('dir', 'asc');\n\t\tif(!in_array($order_dir, array('desc','asc'))) {\n\t\t\t$order_dir = 'asc';\n\t\t}\n\t\t$order_field = Yii::app()->request->getParam('order', 'rooms');\n\t\tif(!in_array($order_field, array('rooms','square','cost'))) {\n\t\t\t$order_field = 'rooms';\n\t\t}\n\t\t\n\t\t\t\t\n\t\t$favorites = Favorited::model()->findAllByAttributes(array('user_id'=>Yii::app()->user->id));\n\t\n\t\tforeach($favorites as $fav) {\n\t\t\t$faved = Estate::model()->findByAttributes(array('id'=>$fav->object_id));\n\t\t\tif(!$faved)\t\n\t\t\t\t$fav->delete();\n\t\t\tif($fav->object_id == $unfavorite)\n\t\t\t\t$fav->delete();\n\t\t}\t\n\t\t\n\t\tif($favorites) {\n\t\t\t\n\t\t\t$cookie_fav_wrap = array();\n\t\t\tforeach($favorites as $favorite) {\n\t\t\t\tif($unfavorite != $favorite->object_id) {\n\t\t\t\t\t$favarray[] = $favorite->object_id;\n\t\t\t\t\t$cookie_fav_wrap[$favorite->object_id] = true;\n\t\t\t\t} else {\t\t\t\t\n\t\t\t\t\t$cookie_fav_wrap[$favorite->object_id] = false;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\tunset(Yii::app()->request->cookies['favorite']);\t\n\t\t\tunset($_COOKIE['favorite']);\n\t\t\t$cookie_favorite = json_encode($cookie_fav_wrap);\n\t\t\t$cookie = new CHttpCookie('favorite',$cookie_favorite);\n\t\t\t$cookie->expire = time() + 2592000;\n\t\t\t$cookie->path = '/';\n\t\t\tYii::app()->request->cookies['favorite'] = $cookie;\n\n\t\t\t\n\t\t\t$objects = Estate::model()->findAllByAttributes(array('id'=>$favarray),array('order'=>$order_field.' '.$order_dir));\n\t\t\t\n\t\t} else {\n\t\t\tif(!$user_id && $unfavorite) {\n\t\t\t\tforeach($favarray as $favorite) {\n\t\t\t\t\t$cookie_fav_wrap[$favorite] = true;\n\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tunset(Yii::app()->request->cookies['favorite']);\t\n\t\t\t\tunset($_COOKIE['favorite']);\n\t\t\t\t$cookie_favorite = json_encode($cookie_fav_wrap);\n\t\t\t\t$cookie = new CHttpCookie('favorite',$cookie_favorite);\n\t\t\t\t$cookie->expire = time() + 2592000;\n\t\t\t\t$cookie->path = '/';\n\t\t\t\tYii::app()->request->cookies['favorite'] = $cookie;\n\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\t\n\t\t\t$objects = Estate::model()->findAllByAttributes(array('id'=>$favarray),array('order'=>$order_field.' '.$order_dir));\n\t\t\t\n\t\t}\n\n\t\t\n\t\t$this->render('favorites',array('objects'=>$objects,'order_field'=>$order_field,'order_dir'=>$order_dir));\n\t}", "function get_favorites($user_id){\n $ch = curl_init();\n $url = $GLOBALS['App-Logic'].\"?\" .http_build_query([\n 'get_favorites' => 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 }", "public function getFavoritos(){\n\t\t$user_id = $_SESSION['activeUser']->getId();\n\t\tUtilidades::_log(\"getFavoritos($user_id)\");\n\t\t\n\t\t$query = \"SELECT book.*, book_lang.*\n\t\t\t\t\tFROM favourites,book, book_lang\n\t\t\t\t\tWHERE favourites.user_id = $user_id\n\t\t\t\t\t AND favourites.book_id = book.id\n\t\t\t\t\t AND favourites.book_id = book_lang.book_id\n\t\t\t\t\t and favourites.book_lang = book_lang.lang \";\n\t\t$query.= \" ORDER BY sold DESC, rating DESC\";\n\t\t\n\t\tUtilidades::_log(\"query: \".$query);\n\t\t$res = array();\n\t\t\n\t\tforeach(DB::ejecutarConsulta($query) as $row) {\n\t\t\t// Añadimos un objeto por cada elemento obtenido\n\t\t\t$res[] = new BookVO($row);\n\t\t}\n\t\treturn $res;\n\t}", "public function my_favs(){\n $current_user=Auth::user();\n if(!$current_user){ return false; }\n\n $favorites=Favorites::where('user_id',$current_user->id)->orderBy('id', 'desc')->get();\n\n $return=[];\n foreach ($favorites as $key => $value) {\n $data = json_decode(app('App\\Http\\Controllers\\GiphyController')->single($value->gif_uid));\n $return[]=($data->data);\n }\n\n return $return;\n\n }", "protected function favorited($username)\n {\n $user = User::whereUsername($username)->first();\n\n $presentIds = $user ? $user->favorites()->pluck('id')->toArray() : [];\n\n return $this->builder->whereIn('id', $presentIds);\n }", "public function getFavorites()\n {\n return $this->hasMany(Recipe::className(), ['id' => 'recipe_id'])\n ->viaTable('favorites', ['user_id' => 'id'])\n ->orderBy(['created_at' => SORT_DESC]);\n }", "public static function getFavorites($user_id, $page = 1)\n {\n $count = self::getFavoritesCount($user_id);\n $result = array(\n 'audios' => array(),\n 'load_more' => false,\n 'page' => $page,\n 'total' => $count\n );\n\n if (0 == $count) {\n return $result;\n }\n\n $total_pages = ceil($count / 10);\n\n if ($page > $total_pages) {\n return $result;\n }\n\n $columns = self::$columns;\n $columns = array_map(\n function ($value) {\n return 'A.' . $value;\n },\n $columns\n );\n $columns = implode(',', $columns);\n $query = db()->prepare(\n \"SELECT DISTINCT\n {$columns}\n FROM audios AS A\n INNER JOIN favorites AS F\n ON A.id = F.audio_id\n AND F.user_id = :user_id\n AND A.status = '1'\n ORDER BY F.date_added DESC\n LIMIT :skip, :max\"\n );\n $query->bindValue('user_id', $user_id);\n $query->bindValue(\n 'skip',\n ($page - 1) * self::$per_page,\n PDO::PARAM_INT\n );\n $query->bindValue('max', self::$per_page, PDO::PARAM_INT);\n $query->execute();\n\n while ($audio = $query->fetch(PDO::FETCH_ASSOC)) {\n $result['audios'][] = self::complete($audio);\n }\n \n $result['load_more'] = $page < $total_pages;\n $result['page'] = $page + 1;\n $result['total'] = $count;\n return $result;\n }", "function get_product_favourite( $conds = array(), $limit = false, $offset = false )\n\t{\n\t\t$this->db->select('rt_products.*'); \n\t\t$this->db->from('rt_products');\n\t\t$this->db->join('rt_favourites', 'rt_favourites.product_id = rt_products.id');\n\n\t\tif(isset($conds['user_id'])) {\n\n\t\t\tif ($conds['user_id'] != \"\" || $conds['user_id'] != 0) {\n\t\t\t\t\t\n\t\t\t\t\t$this->db->where( 'user_id', $conds['user_id'] );\t\n\n\t\t\t}\n\n\t\t}\n\n\t\tif ( $limit ) {\n\t\t// if there is limit, set the limit\n\t\t\t\n\t\t\t$this->db->limit($limit);\n\t\t}\n\t\t\n\t\tif ( $offset ) {\n\t\t// if there is offset, set the offset,\n\t\t\t$this->db->offset($offset);\n\t\t}\n\t\t\n\t\treturn $this->db->get();\n \t}", "function addFavoriteToDB($arrToAdd, $customerID)\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t// This query retrieves the current highest favorite_ID in the table, and then increments it by 1\n\t$query = \"SELECT favorite_ID FROM Favorites ORDER BY favorite_ID DESC\";\n\n\t$resultForFavoriteID = mysql_query($query);\n\n\t$rowForFavoriteID = mysql_fetch_array($resultForFavoriteID);\n\n\t$newFaveID = $rowForFavoriteID['favorite_ID'] + 1;\n\t\n\t$query = \"SELECT cupcake_ID FROM Cupcakes ORDER BY Cupcakes DESC\";\n\t\n\t$newCupcakeID = mysql_fetch_array(mysql_query($query))['cupcake_ID'] + 1;\n\n\t//This query actually adds in the new favorite\n\t$query = \"INSERT INTO Cupcakes VALUES ('\" . $newCupcakeID .\n\t\"','\" . $arrToAdd['flavor'] .\n\t\"','\" . $arrToAdd['icing'] .\n\t\"','\" . $arrToAdd['filling'] .\n\t\"',NULL,'\" . $customerID . \"');\";\n\n\tmysql_query($query);\n\t\n\t$query = \"SELECT Rn_ID FROM CupcakeToppings ORDER BY Rn_ID DESC\";\n\t\n\t$newRnID = mysql_fetch_array(mysql_query($query))['Rn_ID'] + 1;\n\t\n\t$increment = 1;\n\t\n\twhile($currentToppingID = $arrToAdd['topping'][$increment])\n\t{\n\t\t$query = \"INSERT INTO CupcakeToppings VALUES ('\" .$newCupcakeID .\n\t\t\"','\" . $currentToppingID .\n\t\t\"','\" . $newRnID . \"');\";\n\t\tmysql_query($query);\n\t\t$increment = $increment + 1;\n\t\t$newRnID = $newRnID + 1;\n\t}\n\tmysql_close($con);\n}", "public function favorites() {\n\t\t$favoriteSounds = Sound::whereHas('favorite', function($query) {\n\t\t\t$user = Auth::user();\n\n\t\t\t$query->where('userId', '=', $user->id);\n\t\t});\n\n\t\treturn Responder::success([\n\t\t\t'favoriteSounds' => $favoriteSounds->get()\n\t\t]);\n\t}", "public function favorites()\n {\n return $this->morphMany(Favorite::class, 'favorited');\n }", "public function getFavorites()\n {\n $tricks = $this->tricks->findAllFavorites($this->user);\n\n $this->view('user.favorites', compact('tricks'));\n }", "function favorites_getList ($user_id = NULL, $per_page = 25, $page = 1, $extras = NULL) {\n\t\t$params = array();\n\t\t$params['method'] = 'flickr.favorites.getList';\n\t\tif ($user_id) $params['user_id'] = $user_id;\n\t\t$params['per_page'] = $per_page;\n\t\t$params['page'] = $page;\n\t\tif ($extras) $params['extras'] = $extras;\n $response = $this->execute($params, 10);\n\t\t$object = unserialize($response);\n\t\tif ($object['stat'] == 'ok') {\n\t\t\treturn $object['photos'];\n\t\t} else {\n\t\t\t$this->setError($object['message'], $object['code']);\n\t\t\treturn FALSE;\n\t\t}\n\t}", "public function favourites()\n {\n return $this->morphMany(Favourite::class, 'favourite');\n }", "function followingFav($userID, $postID){\n\n\t$result = getAllFollowingList($user_id);\n\t$i=0;\n\twhile($row = mysql_fetch_assoc($result))\n\t{\n\t\t$following[$i] = $row['profile_ID'];\n\t\t$i++;\n\t}\n\n\tif($i < 20 )\n\t{\n\t\tif($following)$following = \"('\".implode(\"', '\", $following).\"')\";\n\t\t$list = isFav($following, $postID);\n\t\treturn $list;\n\t}\n\n\tif($following && $i > 19)\n\t{\n\t\t$following = array_chunk($following, 20);\n\t\tfor($i=0;$i<count($following, 0);$i++)\n\t\t\t$following[$i] = \"('\".implode(\"', '\", $following[$i]).\"')\";\n\t\t$cnt = $i;\n\t}\n\t$arr =array();\n\t$list =array();\n\tfor($i=0;$i<$cnt;$i++){\n\t\tif(isFav($following[$i]))\n\t\t{\n\t\t\t$arr = isFav($following[$i], $postID);\n\t\t\t$list = array_merge( $list, $arr);\n\t\t}\n\t}\n\n\treturn $list;\n}", "public function favourites()\n {\n return $this->hasMany(Favourite::class);\n }", "public function favorites()\n {\n $favoriteClass = config('favorable.favorite_model');\n\n return $this->morphMany($favoriteClass, 'favoriteable');\n }", "public function ListarProductosFavoritos()\n{\n\tself::SetNames();\n\t$sql = \" SELECT * FROM productos INNER JOIN categorias ON productos.codcategoria = categorias.codcategoria LEFT JOIN proveedores ON productos.codproveedor=proveedores.codproveedor WHERE productos.favorito = 'SI' and productos.existencia > '0'\";\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}", "public function user_favorites() {\n\t\t\tif ($this->request->is('get')) {\n\t\t\t\t$user_id = $_GET['user_id'];\n\n\t\t\t$tweet_favorites = ClassRegistry::init('tweets')->find('all', array('fields' => array('tweets.tweet,tweets.photo, tweets.created ,users_profiles.firstname, users_profiles.lastname,users_profiles.photo,users_profiles.user_id,users_profiles.handler,favorites.favorite,favorites.content_id,favorites.id ,favorites.user_id'),'order'=>'favorites.id DESC',\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'joins'=>array(\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t array('alias' => 'favorites', 'table' => 'favorites', 'type' => 'left', 'foreignKey' => false, 'conditions' => array('favorites.content_id = tweets.id ')),\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t array('alias' => 'users_profiles', 'table' => 'users_profiles', 'type' => 'left', 'foreignKey' => false, 'conditions' => array('tweets.user_id = users_profiles.user_id'))),\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'conditions'=>array('favorites.user_id ='.$user_id.' AND favorites.content_type=\"tweets\"')));\n\t\t\n\t\t$this->set('tweet_favorites',$tweet_favorites);\n\t\t\n\t\t/*user friends start*/\t\n\t$reqUser = ClassRegistry::init('connections')->find('all',array('fields'=>array('connections.friend_id,connections.user_id'),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'conditions'=>array('(connections.user_id='.$user_id.' OR connections.friend_id='.$user_id.') AND connections.request=1')));\n\t\t\t\n\t\tforeach ($reqUser as $rfid) {\n\t\t\t\tif ($rfid['connections']['friend_id'] != $user_id) {\n\t\t\t\t\t$comResult[] .= $rfid['connections']['friend_id'];\n\t\t\t\t}\n\t\t\t\tif ($rfid['connections']['user_id'] != $user_id) {\n\t\t\t\t\t$comResult[] .= $rfid['connections']['user_id'];\n\t\t\t\t} \n\t\t}\n\t\t/*user friends end*/\n\t\t\n\t\tif($comResult){\n\t\t\tif (sizeof($comResult)>1) {\n\t\t\t \t$result =@implode(',',$comResult);\n\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t\tforeach ($comResult as $key=>$value) {\n\t\t\t\t\t\t\t\t\t$result = $value;\n\t\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t$user_tweet_comments = ClassRegistry::init('Tweet_comment')->find('all', array('fields' => array('\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t Tweet_comment.tweet_comment,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t Tweet_comment.content_id,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t Tweet_comment.created,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t users_profiles.firstname,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t users_profiles.lastname,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t users_profiles.photo,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t users_profiles.handler,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t users_profiles.user_id,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t users_profiles.tags,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t favorites.favorite,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t favorites.content_id,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t favorites.id,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t favorites.user_id\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\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\t\t\t\t\t\t\t\t\t 'order'=>'Tweet_comment.id DESC',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'joins'=>array(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t array('alias' => 'favorites',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'table' => 'favorites',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type' => 'left',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'foreignKey' => false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'conditions' => array('Tweet_comment.id = favorites.content_id'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\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\t\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\t\t\t\t\t\t\t\t\t\t\t\t\t array('alias' => 'users_profiles',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'table' => 'users_profiles',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type' => 'left',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'foreignKey' => false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'conditions' => array('Tweet_comment.user_id = users_profiles.user_id'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\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\t\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\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\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\t\t\t\t\t\t\t\t\t\t\t\t\t\t array('Tweet_comment.user_id IN ('.$result.','.$user_id.')'),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'Tweet_comment.comment_type = \"tweets\"'),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'group' => 'Tweet_comment.id'\n\t\t\t\t\t\t\t\t\t\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\t\t\t\t\t\t );\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n \t\t\n\t\t$this->set('user_tweet_comments',$user_tweet_comments);\n\t\t}\n\t\t\n\t\t\t/*********************************** Retweeted tweets by user **********/\n\t$retweeted_tweets = ClassRegistry::init('tweets')->find('all',array('fields'=>array('tweets.parent_id,tweets.id,tweets.user_id,users_profiles.firstname, users_profiles.lastname, users_profiles.handler, users_profiles.user_id'),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'joins'=>array(array('alias' => 'users_profiles', 'table' => 'users_profiles', 'type' => 'left', 'foreignKey' => false, 'conditions' => array('tweets.user_id = users_profiles.user_id'))),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'conditions'=>array('tweets.parent_id !=0 AND tweets.status=2')));\n\t\t$this->set('retweeted_tweets',$retweeted_tweets);\n\t\t\n\t\t\n\t\t if ($user_id) {\n\t\t$favorites_on_Tweet = ClassRegistry::init('favorites')->find('all', array('fields'=>array('favorites.user_id,favorites.favorite,favorites.content_id'),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'order'=>'favorites.id',\n\t\t\t\t\t\t\t\t\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\t\t\t\t\t\t\t\t\t\t\t\t 'favorites.content_type=\"tweets\" AND favorites.user_id='.$user_id)));\n\n\t\t$this->set('favorites_on_Tweet',$favorites_on_Tweet);\n\t\t\n\t\t/*Tweet count for current user*/\n\t$tweets_count_added_user= ClassRegistry::init('tweets')->find('all',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tarray('conditions'=>array('tweets.user_id='.$user_id.' AND tweets.status=2')));\n\t\t\n\t$this->set('tweets_count_added_user',sizeof($tweets_count_added_user));\n\n\t\t\t\t\t/************************************** To show user following and followers ***********************/\n\t\t\t\t$userFollowings = ClassRegistry::init('users_followings')->find('all' ,array('fields'=>array('users_followings.id,users_followings.status, count(users_followings.following_id) as total_following'),'conditions'=>array('users_followings.user_id='.$user_id.' AND users_followings.following_type=\"users\" AND users_followings.status=2')));\n\t\t\n\t\t$userFollows = ClassRegistry::init('users_followings')->find('all' ,array('fields'=>array('users_followings.id,users_followings.status ,count(users_followings.user_id) as total_follow'),'conditions'=>array('users_followings.following_id='.$user_id.' AND users_followings.following_type=\"users\" AND users_followings.status=2')));\n\t\t\n\t\t\n\t\t$userFollowingsbyYou = $userFollowings[0][0];\n\t\t$userFollowingsbyYou = $userFollowingsbyYou['total_following'];\n\t\t$this->set('following',$userFollowingsbyYou);\n\t\t\n\t\t$userFollowYou = $userFollows[0][0];\n\t\t$userFollowYou = $userFollowYou['total_follow'];\n\t\t$this->set('followers',$userFollowYou);\t\t\n\t\t$this->set('userName',$this->userInfo['users_profiles']);\n\n\t\t }\n\t\t\n\t\t\n\t\t$this->autorender = false;\n\t $this->layout = false;\n\t $this->render('user_favorites');\n\t\t}\n\t}", "public function getFavoriteSongs($userId){\n return $this->DB->queryFetchAllAssoc(\"SELECT s.* FROM user u, song s, favorite_songs fs WHERE fs.user_id = u.id AND fs.song_id = s.id AND u.id = $userId\");\n }", "public function favourites()\n {\n return $this->belongsToMany(Confession::class, 'favourites', 'fb_user_id', 'confession_id');\n }", "static public function getFavorites() {\r\n self::initFav();\r\n return self::$FAV;\r\n }", "public function actionIndex()\n\t{\n\t\t// renders the view file 'protected/views/site/index.php'\n\t\t// using the default layout 'protected/views/layouts/main.php'\n\t\t\n\t\t$this->checkUser();\n\t\t$this->checkActivation();\n\t\t\n\t\t$user_id = Yii::app()->user->id;\n\t\t\n\t\t\n\t\t$cookie_favorite = Yii::app()->request->cookies['favorite']->value;\n\t\t$cookie_favorite = json_decode($cookie_favorite);\n\t\t\n\t\t$cookie_fav_wrap = array();\n\t\t\n\t\twhile ($fruit_name = current($cookie_favorite)) {\n\t\t if ($fruit_name == 1) {\n\t\t $cookie_fav_wrap[] = key($cookie_favorite);\n\t\t }\n\t\t next($cookie_favorite);\n\t\t}\n\t\t\n\t\tforeach($cookie_fav_wrap as $fav_item) {\n\t\t\t$favorite = Favorited::model()->findByAttributes(array('user_id' => $user_id, 'object_id' => $fav_item));\n\t\t\tif(!$favorite) {\n\t\t\t\t$record = new Favorited;\n\t\t\t\t$record->user_id = $user_id;\n\t\t\t\t$record->object_id = $fav_item;\n\t\t\t\t$record->save();\n\t\t\t}\n\t\t}\n\t\tunset(Yii::app()->request->cookies['favorite']);\n\t\t\t\n\t\t$order_dir = Yii::app()->request->getParam('dir', 'asc');\n\t\tif(!in_array($order_dir, array('desc','asc'))) {\n\t\t\t$order_dir = 'asc';\n\t\t}\n\t\t$order_field = Yii::app()->request->getParam('order', 'rooms');\n\t\tif(!in_array($order_field, array('rooms','square','cost'))) {\n\t\t\t$order_field = 'rooms';\n\t\t}\n\t\t\t\n\t\t$favorites = Favorited::model()->findAllByAttributes(array('user_id'=>Yii::app()->user->id));\n\t\t\n\t\t$favarray = array();\n\t\t\n\t\tif($favorites) {\n\t\t\t\n\t\t\t$cookie_fav_wrap = array();\n\t\t\tforeach($favorites as $favorite) {\n\t\t\t\t$favarray[] = $favorite->object_id;\n\t\t\t\t$cookie_fav_wrap[$favorite->object_id] = true;\n\t\t\t}\n\t\t\t$cookie_favorite = json_encode($cookie_fav_wrap);\n\t\t\t\n\t\t\t$cookie = new CHttpCookie('favorite',$cookie_favorite);\n\t\t\t\n\t\t\t$cookie->expire = time() + 2592000;\n\t\t\tYii::app()->request->cookies['favorite'] = $cookie;\n\t\t}\n\t\t\n\t\t\n\t\tforeach($favorites as $fav) {\n\t\t\t$faved = Estate::model()->findByAttributes(array('id'=>$fav->object_id));\n\t\t\tif(!$faved)\t\n\t\t\t\t$fav->delete();\n\t\t}\t\n\n\t\t\t\n\t\t$flats = Estate::model()->findAllByAttributes(array('user_id'=>Yii::app()->user->id),array('order'=>$order_field.' '.$order_dir));\n\t\t\n\t\t$this->render('index',array('flats'=>$flats, 'favarray'=>$favarray,'order_field'=>$order_field,'order_dir'=>$order_dir));\n\t}", "public function favorites()\n {\n return $this->belongsToMany(Question::class, 'favorites', 'user_id', 'question_id')->withTimestamps();\n }", "function recuperarFavoritos(){\n\t\t$codpincho = new CodigoPincho();\n\t\t$res = $codpincho->recuperarFavoritos();\n\t\treturn $res;\n\t}", "function getFavouriteTags(){\n //first we get all the info on tags that belong to tasks that the current user has clicked on\n $clickInfo = $this->qh->getClickTagInfo($_SESSION['userID']);\n return $this->getFavourites($clickInfo, 'TagID');\n }", "public static function loop_my_favorites() {\n $paged = ( get_query_var('paged')) ? get_query_var('paged') : 1;\n $favorites = get_user_meta( get_current_user_id(), 'favorites', true );\n if( ! is_array( $favorites ) || count( $favorites ) == 0 ) {\n $favorites = array( '', );\n }\n\n query_posts( array(\n 'post_type' => 'property',\n 'paged' => $paged,\n 'post__in'\t\t=> $favorites,\n 'post_status' => 'publish',\n ) );\n }", "public function getByCidFavid($cid, $favid) {\n if (empty($cid) || empty($favid)) {\n exception('参数异常!获取信息失败!');\n }\n $where['cid'] = ['EQ',$cid];\n $where['favcid'] = ['EQ',$favid];\n $favor = $this->get($where);\n return $favor;\n }", "public function favourite()\n {\n return $this->belongsToMany(Customer::class, 'favourite_videos');\n }", "public function favorites ($start = 0, $limit = 30)\n {\n\n if (! $this->getUser())\n return array('decklists' => array(), 'count' => 0);\n \n \n /* @var $dbh \\Doctrine\\DBAL\\Driver\\PDOConnection */\n $dbh = $this->get('doctrine')->getConnection();\n \n $rows = $dbh->executeQuery(\n \"SELECT SQL_CALC_FOUND_ROWS\n\t\t\t\t\td.id,\n\t\t\t\t\td.name,\n\t\t\t\t\td.prettyname,\n\t\t\t\t\td.creation,\n\t\t\t\t\td.user_id,\n\t\t\t\t\tu.username,\n\t\t\t\t\tu.faction usercolor,\n\t\t\t\t\tu.reputation,\n\t\t\t\t u.donation,\n\t\t\t\t\tc.code,\n\t\t\t\t\td.nbvotes,\n\t\t\t\t\td.nbfavorites,\n\t\t\t\t\td.nbcomments\n\t\t\t\t\tfrom decklist d\n\t\t\t\t\tjoin user u on d.user_id=u.id\n\t\t\t\t\tjoin card c on d.identity_id=c.id\n\t\t\t\t\tjoin favorite f on f.decklist_id=d.id\n\t\t\t\t\twhere f.user_id=?\n\t\t\t\t\torder by creation desc\n\t\t\t\t\tlimit $start, $limit\", array(\n $this->getUser()\n ->getId()\n ))\n ->fetchAll(\\PDO::FETCH_ASSOC);\n \n $count = $dbh->executeQuery(\"SELECT FOUND_ROWS()\")->fetch(\\PDO::FETCH_NUM)[0];\n \n return array(\n \"count\" => $count,\n \"decklists\" => $rows\n );\n \n }", "function Show_favproducts($cust_id)\n\t\t{\n\t\t\tglobal $ecom_siteid,$db,$ecom_hostname,$Settings_arr,$ecom_themeid,$default_layout,$Captions_arr,$inlineSiteComponents;\n\t\t\t$customer_id \t\t\t\t\t= get_session_var(\"ecom_login_customer\");\n if($customer_id)\n\t\t\t{\n\t\t\t$sql_last_login = \"SELECT customer_last_login_date FROM customers WHERE sites_site_id=$ecom_siteid AND customer_id=$customer_id\";\n\t\t\t$ret_last_login = $db->query($sql_last_login);\n\t\t\tlist($row_last_login) = $db->fetch_array($ret_last_login);\n\t\t\t}\n\t\t $Captions_arr['LOGIN_HOME'] = getCaptions('LOGIN_HOME'); // to get values for the captions from the general settings site captions\n\t\t\t$prodcur_arr =array();\n\t\t\t\t$prodperpage\t\t\t= ($Settings_arr['product_maxcnt_fav_category']>0)?$Settings_arr['product_maxcnt_fav_category']:10;//Hardcoded at the moment. Need to change to a variable that can be set in the console.\n\t\t\t\t//$limit = $Settings_arr['product_maxcnt_fav_category'];\n\t\t\t\t$favsort_by\t\t\t\t= $Settings_arr['product_orderby_favorite'];\n\t\t\t\t$prodsort_order\t\t\t= $Settings_arr['product_orderfield_favorite'];\n\t\t\t\tswitch ($prodsort_order)\n\t\t\t\t{\n\t\t\t\t\tcase 'product_name': // case of order by product name\n\t\t\t\t\t$prodsort_order\t\t= 'product_name';\n\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'price': // case of order by price\n\t\t\t\t\t$prodsort_order\t\t= 'product_webprice';\n\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'product_id': // case of order by price\n\t\t\t\t\t$prodsort_order\t\t= 'product_id';\n\t\t\t\t\tbreak;\t\n\t\t\t\t};\n\t\t\t\tif ($_REQUEST['req']!='')// LIMIT for Favorites is applied only if not displayed in home page\n\t\t\t\t{\n\t\t\t\t\t$start_varprod \t\t= prepare_paging($_REQUEST[$pg_variableprod],$prodperpage,$tot_cntprod);\n\t\t\t\t\t$Limitprod\t\t\t= \" LIMIT \".$start_varprod['startrec'].\", \".$prodperpage;\n\t\t\t\t}\t\n\t\t\t\telse\n\t\t\t\t\t$Limitprod = '';\n\t\t\t\t$pg_variableprod\t\t= 'prod_pg';\n\t\t \t $sql_fav_products = \"SELECT id,a.product_id,a.product_name,a.product_variablestock_allowed,a.product_show_cartlink,\n\t\t\t\t\t\t\t\ta.product_preorder_allowed,a.product_show_enquirelink,a.product_webstock,a.product_webprice,\n\t\t\t\t\t\t\t\ta.product_discount,a.product_discount_enteredasval,a.product_bulkdiscount_allowed,\n\t\t\t\t\t\t\t\tproduct_total_preorder_allowed,a.product_applytax,a.product_shortdesc,a.product_bonuspoints,\n\t\t\t\t\t\t\t\ta.product_stock_notification_required,a.product_alloworder_notinstock,a.product_variables_exists,a.product_variablesaddonprice_exists,\n\t\t\t\t\t\t\t\ta.product_variablecomboprice_allowed,a.product_variablecombocommon_image_allowed,a.default_comb_id,\n\t\t\t\t\t\t\t\ta.price_normalprefix,a.price_normalsuffix, a.price_fromprefix, a.price_fromsuffix,a.price_specialofferprefix, a.price_specialoffersuffix, \n\t\t\t\t\t\t\t\ta.price_discountprefix, a.price_discountsuffix, a.price_yousaveprefix, a.price_yousavesuffix,a.price_noprice,\n\t\t\t\t\t\t\t\ta.product_averagerating,a.product_saleicon_show,a.product_saleicon_text,a.product_newicon_show,a.product_newicon_text,\n\t\t\t\t\t\t\t\ta.product_freedelivery \n\t\t\t\t\t\t\t\t\tFROM \n\t\t\t\t\t\t\t\t\t\tproducts a,customer_fav_products cfp\n\t\t\t\t\t\t\t\t\tWHERE\n\t\t\t\t\t\t\t\t\t\t a.product_id = cfp.products_product_id AND a.product_hide='N' AND\n\t\t\t\t\t\t\t\tcfp.sites_site_id = $ecom_siteid AND cfp.customer_customer_id = $cust_id\n\t\t\t\t\t\t\t\t\tORDER BY $prodsort_order $favsort_by $Limitprod\t\";\n\t\t\t\t\t$ret_fav_products = $db->query($sql_fav_products);\n\t\t\t\t\t$tot_cnt \t= $db->num_rows($ret_fav_products); \n\t\t\t$prod_compare_enabled = isProductCompareEnabled();\n\t\t\t?>\n\t\t\t<div class=\"treemenu\"><a href=\"<? url_link('');?>\"><?=$Captions_arr['COMMON']['TREE_MENU_HOME_LINK'];?></a> >> \n\t\t\t<?php\n\t\t\t\tif ($db->num_rows($ret_fav_products)==1)\n\t\t\t\t\techo stripslash_normal($Captions_arr['LOGIN_HOME']['LOGIN_HOME_FAV_PRODUCT_HEADER']);\n\t\t\t\telse\n\t\t\t\t\techo stripslash_normal($Captions_arr['LOGIN_HOME']['LOGIN_HOME_FAV_PRODUCTS_HEADER']);\n\t\t\t?>\n\t\t\t</div>\n\t\t\t\n\t\t\t<?php\t\n\t\t\t$displaytype = $Settings_arr['favorite_prodlisting'];\n\t\t\t$pass_type = get_default_imagetype('midshelf');\n\t\t\t$comp_active = isProductCompareEnabled();\n\t\t\tswitch($displaytype)\n\t\t\t{ \n\t\t\t\tcase '1row':\n\t\t\t\t?>\n\t\t\t\t\t<div class=\"shelf_main_con\" >\n\t\t\t\t\t<div class=\"shelf_top\"><?=stripslash_normal($Captions_arr['LOGIN_HOME']['LOGIN_HOME_FAV_PRODUCTS_HEADER'])?></div>\n\t\t\t\t\t<div class=\"shelf_mid\">\n\t\t\t\t\t\t<?php\n\t\t\t\t\t\t$cur = 1;\n\t\t\t\t\t\twhile($row_prod = $db->fetch_array($ret_fav_products))\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tif($cur==$tot_cnt)\n\t\t\t\t\t\t\t\t$main_shelf = 'shlf_main_last';\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\t$main_shelf = 'shlf_main';\n\t\t\t\t\t\t\t$cur++;\n\t\t\t\t\t\t\t\n\t\t\t\t\t?>\n\t\t\t\t\t\t\t<div class=\"<?php echo $main_shelf?>\">\n\t\t\t\t\t\t\t<div class=\"shlf_pdt_img_outr\">\n\t\t\t\t\t\t\t<div class=\"shlf_pdt_img\">\n\t\t\t\t\t\t\t\t<a href=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'],-1)?>\" title=\"<?php echo stripslashes($row_prod['product_name'])?>\">\n\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t// Calling the function to get the image to be shown\n\t\t\t\t\t\t\t\t\t$img_arr = get_imagelist('prod',$row_prod['product_id'],$pass_type,0,0,1);\n\t\t\t\t\t\t\t\t\tif(count($img_arr))\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tshow_image(url_root_image($img_arr[0][$pass_type],1),$row_prod['product_name'],$row_prod['product_name']);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t// calling the function to get the default image\n\t\t\t\t\t\t\t\t\t\t$no_img = get_noimage('prod',$pass_type); \n\t\t\t\t\t\t\t\t\t\tif ($no_img)\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tshow_image($no_img,$row_prod['product_name'],$row_prod['product_name']);\n\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?>\n\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t$module_name = 'mod_product_reviews';\n\t\t\t\t\t\t\t\t\tif(in_array($module_name,$inlineSiteComponents))\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tif($row_prod['product_averagerating']>=0)\n\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\t\t<div class=\"shelfB_rate\">\n\t\t\t\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t\t\t\tdisplay_rating($row_prod['product_averagerating']);\n\t\t\t\t\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<?php\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\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div class=\"shlf_pdt_compare\" >\n\t\t\t\t\t\t\t<?php if($comp_active) {\n\t\t\t\t\t\t\t\t\t\tdislplayCompareButton($row_prod['product_id']);\n\t\t\t\t\t\t\t\t\t}?>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div class=\"shlf_pdt_txt\">\n\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\tif($row_prod['product_freedelivery']==1)\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\t<div class=\"free_delivery\"></div>\n\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif($row_prod['product_bulkdiscount_allowed']=='Y')\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\t\t<div class=\"bulk_discount\"></div>\n\t\t\t\t\t\t\t\t<?php\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<ul class=\"shlf_pdt_ul\">\n\t\t\t\t\t\t\t<li class=\"shlf_pdt_name\" ><h3><a href=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'],-1)?>\" title=\"<?php echo stripslashes($row_prod['product_name'])?>\"><?php echo stripslashes($row_prod['product_name'])?></a></h3></li>\n\t\t\t\t\t\t\t<li class=\"shlf_pdt_des\"><h6>\t<?php echo stripslashes($row_prod['product_shortdesc'])?></h6></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t$price_class_arr['ul_class'] \t\t= 'shelf_price_ul';\n\t\t\t\t\t\t\t\t$price_class_arr['normal_class'] \t= 'shelfAnormalprice';\n\t\t\t\t\t\t\t\t$price_class_arr['strike_class'] \t= 'shelfAstrikeprice';\n\t\t\t\t\t\t\t\t$price_class_arr['yousave_class'] \t= 'shelfAyousaveprice';\n\t\t\t\t\t\t\t\t$price_class_arr['discount_class'] \t= 'shelfAdiscountprice';\n\t\t\t\t\t\t\t\techo show_Price($row_prod,$price_class_arr,'shelfcenter_1');\n\t\t\t\t\t\t\t\tshow_excluding_vat_msg($row_prod,'vat_div');// show excluding VAT msg\n\t\t\t\t\t\t\t\tshow_bonus_points_msg($row_prod,'bonus_point'); // Show bonus points\n\t\t\t\t\t\t\t\t$frm_name = uniqid('favprod_');\n\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t<form method=\"post\" action=\"<?php url_link('manage_products.html')?>\" name='<?php echo $frm_name?>' id=\"<?php echo $frm_name?>\" class=\"frm_cls\" onsubmit=\"return product_enterkey(this,<?php echo $row_prod['product_id']?>)\">\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"fpurpose\" value=\"\" />\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"fproduct_id\" value=\"\" />\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"pass_url\" value=\"<?php echo $_SERVER['REQUEST_URI']?>\" />\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"fproduct_url\" value=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'])?>\" />\n\t\t\t\t\t\t\t<div class=\"infodiv\">\n\t\t\t\t\t\t\t<div class=\"infodivleft\"><?php show_moreinfo($row_prod,'infolink')?></div>\n\t\t\t\t\t\t\t<div class=\"infodivright\">\n\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t$class_arr \t\t\t\t\t\t\t= array();\n\t\t\t\t\t\t\t\t\t$class_arr['ADD_TO_CART']\t= 'quantity_infolink';\n\t\t\t\t\t\t\t\t\t$class_arr['PREORDER']\t\t\t= 'quantity_infolink';\n\t\t\t\t\t\t\t\t\t$class_arr['ENQUIRE']\t\t\t= 'quantity_infolink';\n\t\t\t\t\t\t\t\t\tshow_addtocart($row_prod,$class_arr,$frm_name)\n\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</form>\n\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\tif($row_prod['product_saleicon_show']==1)\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t$desc = stripslash_normal(trim($row_prod['product_saleicon_text']));\n\t\t\t\t\t\t\t\t\tif($desc!='')\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t\t\t\t<div class=\"mid_shlf_pdt_sale\"><?php echo $desc?></div>\n\t\t\t\t\t\t\t<?php\n\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\tif($row_prod['product_newicon_show']==1)\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t$desc = stripslash_normal(trim($row_prod['product_newicon_text']));\n\t\t\t\t\t\t\t\t\tif($desc!='')\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t\t\t\t<div class=\"mid_shlf_pdt_new\"><?php echo $desc?></div>\t\t\n\t\t\t\t\t\t\t<?php\n\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</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t<?php\n\t\t\t\t\t\t}\n\t\t\t\t\t?>\n\t\t\t\t\t</div>\n\t\t\t\t <div class=\"shelf_bottom\"></div>\n\t\t\t </div>\n\t\t\t\t<?\n\t\t\t\tbreak;\n\t\t\t\tcase '3row':\n\t\t\t?>\t\t\t\t\t\n\t\t\t\t<div class=\"shelfA_main_con\" > \n\t\t\t\t<div class=\"shelfA_top\"><?=stripslash_normal($Captions_arr['LOGIN_HOME']['LOGIN_HOME_FAV_PRODUCTS_HEADER'])?></div>\n\t\t\t\t<div class=\"shelfA_mid\">\n\t\t\t\t<?php\n\t\t\t\t\t$max_col = 3;\n\t\t\t\t\t$cur_col = 0;\n\t\t\t\t\t$prodcur_arr = array();\n\t\t\t\t\t$cur_tot_cnt = $db->num_rows($ret_fav_products);\n\t\t\t\t\t$cur = 1;\n\t\t\t\t\twhile($row_prod = $db->fetch_array($ret_fav_products))\n\t\t\t\t\t{\n\t\t\t\t\t\t$prodcur_arr[] = $row_prod;\n\t\t\t\t\t\tif($cur>($cur_tot_cnt-$max_col))\n\t\t\t\t\t\t\t$main_shelf = 'shlfA_main_last';\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\t$main_shelf = 'shlfA_main';\n\t\t\t\t\t\t$cur++;\n\t\t\t\t\t\t//##############################################################\n\t\t\t\t\t\t// Showing the title, description and image part for the product\n\t\t\t\t\t\t//##############################################################\n\t\t\t\t\t\tif($cur_col==0)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$main_inner_shelf = 'shlfA_inner_main_lst';\n\t\t\t\t?>\n\t\t\t\t\t\t\t <div class=\"<?php echo $main_shelf?>\">\n\t\t\t\t<?php\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\t$main_inner_shelf = 'shlfA_inner_main';\n\t\t\t\t?>\n\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"<?php echo $main_inner_shelf?>\">\n\t\t\t\t\t\t\t<div class=\"shlfA_pdt_img\">\n\t\t\t\t\t\t\t<a href=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'],-1)?>\" title=\"<?php echo stripslashes($row_prod['product_name'])?>\">\n\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t// Calling the function to get the type of image to shown for current \n\t\t\t\t\t\t\t\t// Calling the function to get the image to be shown\n\t\t\t\t\t\t\t\t$img_arr = get_imagelist('prod',$row_prod['product_id'],$pass_type,0,0,1);\n\t\t\t\t\t\t\t\tif(count($img_arr))\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tshow_image(url_root_image($img_arr[0][$pass_type],1),$row_prod['product_name'],$row_prod['product_name']);\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// calling the function to get the default image\n\t\t\t\t\t\t\t\t\t$no_img = get_noimage('prod',$pass_type); \n\t\t\t\t\t\t\t\t\tif ($no_img)\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tshow_image($no_img,$row_prod['product_name'],$row_prod['product_name']);\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?>\n\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t </div>\t\n\t\t\t\t\t\t\t \t\n\t\t\t\t\t\t <div class=\"shlfA_pdt_txt\">\n\t\t\t\t\t\t\t\t\t\t\t <ul class=\"shlfA_pdt_ul\">\n\t\t\t\t\t\t\t\t\t<li class=\"shlfA_pdt_name\" ><h3><a href=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'],-1)?>\" title=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'],-1)?>\"><?php echo stripslashes($row_prod['product_name'])?></a></h3></li>\n\t\t\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t\t\t$module_name = 'mod_product_reviews';\n\t\t\t\t\t\t\t\t\t\t\t\tif(in_array($module_name,$inlineSiteComponents))\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\tif($row_prod['product_averagerating']>=0)\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?>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><div class=\"shelf_rate\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisplay_rating($row_prod['product_averagerating']);\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</div></li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<?php\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\t?>\n\t\t\t\t\t\t\t\t\t\t<li class=\"shlfA_pdt_des\" ><h6><?php echo stripslashes($row_prod['product_shortdesc'])?></h6></li>\n\t\t\t\t\t\t\t\t<li class='shlfA_pdt_bonus'><h6><?php show_bonus_points_msg($row_prod,'bonus_point'); // Show bonus points?></h6></li>\n\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\tif($row_prod['product_saleicon_show']==1)\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t$desc = stripslash_normal(trim($row_prod['product_saleicon_text']));\n\t\t\t\t\t\t\t\t\t\t\tif($desc!='')\n\t\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\t\t\t<li><div class=\"mid_shlf_pdt_salea\"><?php echo $desc?></div></li>\n\t\t\t\t\t\t\t\t\t<?php\n\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\tif($row_prod['product_newicon_show']==1)\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t$desc = stripslash_normal(trim($row_prod['product_newicon_text']));\n\t\t\t\t\t\t\t\t\t\t\tif($desc!='')\n\t\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\t\t\t<li><div class=\"mid_shlf_pdt_newa\"><?php echo $desc?></div></li>\n\t\t\t\t\t\t\t\t\t<?php\n\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\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t\t\t\t$price_class_arr['ul_class'] \t\t= 'shelfA_price_ul';\n\t\t\t\t\t\t\t\t\t\t\t\t$price_class_arr['normal_class'] \t= 'shelfBnormalprice';\n\t\t\t\t\t\t\t\t\t\t\t\t$price_class_arr['strike_class'] \t= 'shelfBstrikeprice';\n\t\t\t\t\t\t\t\t\t\t\t\t$price_class_arr['yousave_class'] \t= 'shelfByousaveprice';\n\t\t\t\t\t\t\t\t\t\t\t\t$price_class_arr['discount_class'] \t= 'shelfBdiscountprice';\n\t\t\t\t\t\t\t\t\t\t\t\techo show_Price($row_prod,$price_class_arr,'shelfcenter_3');\n\t\t\t\t\t\t\t\t\t\t\t\tshow_excluding_vat_msg($row_prod,'vat_div');// show excluding VAT msg\n\t\t\t\t\t\t\t\t\t\t\t?>\t\n\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t<div class=\"bulk_discount_con\">\n\t\t\t\t\t\t\t\t <?php\n\t\t\t\t\t\t\t\t\tif($row_prod['product_freedelivery']==1)\n\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\t\t<div class=\"free_deliverya\"></div>\n\t\t\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif($row_prod['product_bulkdiscount_allowed']=='Y')\n\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\t\t<div class=\"bulk_discounta\"></div>\n\t\t\t\t\t\t\t\t\t\t<?php\n\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</div>\n\t\t\t\t\t\t <?php \n\t\t\t\t\t\t if($comp_active) \n\t\t\t\t\t\t {\n\t\t\t\t\t\t ?>\n\t\t\t\t\t\t\t<div class=\"shlfA_pdt_compare\" >\n\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\tdislplayCompareButton($row_prod['product_id']);\n\t\t\t\t\t\t?>\t\t\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<?php\n\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<?php\n\t\t\t\t\t\t\t\t\t$frm_name = uniqid('best_');\n\t\t\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t\t\t<form method=\"post\" action=\"<?php url_link('manage_products.html')?>\" name='<?php echo $frm_name?>' id=\"<?php echo $frm_name?>\" class=\"frm_cls\" onsubmit=\"return product_enterkey(this,<?php echo $row_prod['product_id']?>)\">\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"fpurpose\" value=\"\" />\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"fproduct_id\" value=\"\" />\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"pass_url\" value=\"<?php echo $_SERVER['REQUEST_URI']?>\" />\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"fproduct_url\" value=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'])?>\" />\n\t\t\t\t\t\t\t\t\t<div class=\"infodivB\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"infodivleftB\"><?php show_moreinfo($row_prod,'infolinkB')?></div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"infodivrightB\">\n\t\t\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t\t\t\t$class_arr \t\t\t\t\t\t\t= array();\n\t\t\t\t\t\t\t\t\t\t\t\t$class_arr['ADD_TO_CART']\t= 'quantity_infolinkB';\n\t\t\t\t\t\t\t\t\t\t\t\t$class_arr['PREORDER']\t\t\t= 'quantity_infolinkB';\n\t\t\t\t\t\t\t\t\t\t\t\t$class_arr['ENQUIRE']\t\t\t= 'quantity_infolinkB';\n\t\t\t\t\t\t\t\t\t\t\t\tshow_addtocart($row_prod,$class_arr,$frm_name)\n\t\t\t\t\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t</form>\n\t\t\t\t\t\t </div>\n\t\t\t\t\t\t </div>\n\t\t\t\t\t<?php\n\t\t\t\t\t\t$cur_col++;\n\t\t\t\t\t\tif ($cur_col>=$max_col)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t $cur_col = 0;\n\t\t\t\t\t\t}\t \n\t\t\t\t\t}\n\t\t\t\t\tif ($cur_col<$max_col and $cur_col>0)\n\t\t\t\t\t{\n\t\t\t\t\t\techo '</div>';\n\t\t\t\t\t}\n\t\t\t\t\t?>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"shelfA_bottom\"></div>\n\t\t\t\t</div>\n\t\t\t\t<? \n\t\t\t\tbreak;\n\t\t\t\t}//end of switchcase\n\t\t}", "public function getFavorites(Request $request)\n {\n\n $id = Auth::user()->id;\n $favorites = Favorite::select('favorite_user.id', 'favorite_user.user_id as userid', 'favorite_user.merchant_id', 'user_merchant.*')\n ->where('favorite_user.user_id', $id)\n //->leftJoin('users', 'users.id', '=', 'favorite_user.merchant_id')\n ->leftJoin('user_merchant', 'user_merchant.user_id', '=', 'favorite_user.merchant_id')\n ->get();\n if ($favorites->isEmpty()) {\n return response()->json(array(\n 'status' => 201,\n 'favorites' => 'No favorites merchant yet.',\n ));\n } else {\n return response()->json(array(\n 'status' => 200,\n 'favorites' => $favorites,\n ));\n }\n\n }", "public function getResidentFavouriteInvites($id, $sender_cell_number){\n $array1 = [];\n $query = DB::table('visitors') \n ->Join('my_friends',[['my_friends.reciever_cell_number','=','visitors.cell_number']])\n ->where('my_friends.sender_id', $id)\n ->where('my_friends.favourite_visitor', '1')\n ->select('visitors.*','my_friends.sender_type')\n ->get();\n\n $i = 0;\n foreach ($query as $key => $value) {\n $array1[$i] = $value;\n $i++;\n }\n \n $query1 = DB::table('visitors') \n ->Join('my_friends',[['my_friends.sender_cell_number','=','visitors.cell_number']])\n ->where('my_friends.reciever_id', $id)\n ->where('my_friends.favourite_visitor', '1')\n ->select('visitors.*','my_friends.sender_type')\n ->get();\n\n foreach ($query1 as $key => $value) {\n $array1[$i] = $value;\n $i++;\n }\n return $array1;\n }", "public static function getCustomers(){\n\t\t$sql = \"\n\t\t\tSELECT *\n\t\t\tFROM customer\n\t\t\t\";\n\n\t\t// Make a PDO statement\n\t\t$statement = DB::prepare($sql);\n\n\t\t// Execute\n\t\tDB::execute($statement);\n\n\t\t// Get all the results of the statement into an array\n\t\t$results = $statement->fetchAll();\n\n\t\t$customers = [];\n\t\tforeach($results as $row) {\n\t\t\t$customers[]= new Customer($row['id'], $row['first_name'], $row['last_name'], $row['email'], $row['gender'], $row['customer_since']);\n\t\t}\n\t\treturn $customers;\n\t}", "public function favorites($user, $options = []);", "public function favourites()\n {\n return $this->hasManyThrough('App\\Favourite', 'favorite_tbl');\n }", "public function favorites()\n\t{\n\t\treturn $this->morphMany(Favorite::class, 'favoriteable');\n\t}", "function updateFavorites() {\n try {\n $favorites_table = TABLE_PREFIX . 'favorites';\n $starred_objects_table = TABLE_PREFIX . 'starred_objects';\n $project_objects_table = TABLE_PREFIX . 'project_objects';\n\n // Starred objects\n $rows = DB::execute(\"SELECT DISTINCT $project_objects_table.type AS 'parent_type', $project_objects_table.id AS 'parent_id', $starred_objects_table.user_id AS 'user_id' FROM $project_objects_table, $starred_objects_table WHERE $project_objects_table.id = $starred_objects_table.object_id\");\n\n if($rows) {\n $to_insert = array();\n\n foreach($rows as $row) {\n $to_insert[] = DB::prepare('(?, ?, ?)', $row['parent_type'], $row['parent_id'], $row['user_id']);\n } // foreach\n\n DB::execute(\"INSERT INTO $favorites_table (parent_type, parent_id, user_id) VALUES \" . implode(', ', $to_insert));\n } // if\n\n // Pinned projects to favorites\n $rows = DB::execute('SELECT project_id, user_id FROM ' . TABLE_PREFIX . 'pinned_projects');\n if($rows) {\n $to_insert = array();\n\n foreach($rows as $row) {\n $to_insert[] = DB::prepare(\"('Project', ?, ?)\", $row['project_id'], $row['user_id']);\n } // foreach\n\n DB::execute(\"INSERT INTO $favorites_table (parent_type, parent_id, user_id) VALUES \" . implode(', ', $to_insert));\n } // if\n\n // Drop old tables\n DB::execute(\"DROP TABLE $starred_objects_table\");\n DB::execute('DROP TABLE ' . TABLE_PREFIX . 'pinned_projects');\n\n return true;\n } catch(Exception $e) {\n return $e->getMessage();\n } // try\n }", "public function favorites() {\n return $this->hasMany(Favorite::class);\n }", "public function favorites()\n {\n return $this->belongsToMany(Product::class, 'favorites');\n }", "public function favourites(){\n return $this->hasMany('App\\Favourite', 'user_id');\n }", "function generateFavoriteImages(){\r\n\tif( !empty($_SESSION['FavoriteImages']) ){\r\n\t\t$favoriteArray = $_SESSION['FavoriteImages'];\r\n\t\t\r\n\t\tforeach($favoriteArray as $favorites){\t\t\r\n\t\t\techo '<tr>';\r\n\t\t\techo '<td>';\r\n\t\t\techo '<a href=\"single-image.php?id=' . $favorites['ID'] . '\">';\r\n\t\t\techo '<img src=\"travel-images/square-small/' . $favorites['Path'] .'\" class= \"img-thumbnail\"/></td>';\r\n\t\t\techo '</a>';\r\n\t\t\techo '<td>' .$favorites['Title'] . '</td>';\r\n\t\t\techo '<td>' .$favorites['Country'] . '</td>';\r\n\t\t\techo '<td>';\r\n\t\t\techo '<a href=\"removeFavoriteImage.php?id=' . $favorites['ID'] . '\">';\r\n\t\t\techo 'Remove</td>';\r\n\t\t\techo '</a>';\r\n\t\t\techo '</tr>';\r\n\t\t} \r\n\t}\r\n}", "function selectChocolates ()\n {\n $mysqli = connectdb();\n\t\t\n\t \n\t\t// Add Prepared Statement\n\t\t$Query = \"Select ID, ChocolateName, Price from Chocolates\";\t \n\t \n\t\t$result = $mysqli->query($Query);\n\t\t$myChocolates = array();\nif ($result->num_rows > 0) { \n while($row = $result->fetch_assoc()) {\n \t// Assign values\n \t$id = $row[\"ID\"];\n \t$chocolateName = $row[\"ChocolateName\"];\n \t$price = $row[\"Price\"]; \t\n \n // Create a Chocolate instance \n $chocolateData = new ChocolateClass($id,$chocolateName,$price);\n $myChocolates[] = $chocolateData; \n } \n } \n\n\t$mysqli->close();\n\t\n\treturn $myChocolates;\t\t\n\t\t\n\t}", "public function favorites(){\n return $this->morphMany(Favorite::class, 'favorited');\n }", "public function get_favorites()\n {\n return view('content.favorites')\n ->with('page_title', 'Your Favorite Pages')\n ->with('titles', Favorite::all());\n }", "public function getFanartsOfUser($id){\n $sql = \"SELECT f.title, f.pathFile, f.pubDate, f.id FROM fanart f\n WHERE f.author=\".intval($id).\" ORDER BY f.pubDate DESC;\";\n $res = mysqli_query($this->link, $sql);\n $fanarts = mysqli_fetch_all($res);\n return $fanarts;\n }", "public function testFavorites() {\n //Add favorite\n $userID = Sentry::user()->get('id');\n $user = User::find($userID);\n $course2 = Course::where('name', 'LIKE', 'Course 2 of group Test xy')->first();\n $catalog2 = $course2->catalog()->first();\n $subcatalog2 = $catalog2->children()->first();\n $user->favorites()->attach($subcatalog2);\n\n $course1 = Course::where('name', 'LIKE', 'Course 1 of group Test xy')->first();\n $catalog1 = $course1->catalog()->first();\n $user->favorites()->attach($catalog1);\n\n\n //Send get request\n $response = $this->get('profile/favorites');\n $this->assertEquals('200', $response->foundation->getStatusCode());\n $data = $response->content->data['content']->data();\n $this->assertArrayHasKey('courses', $data);\n $this->assertArrayHasKey('catalogs', $data);\n $this->assertCount(1, $data['courses']);\n $this->assertCount(1, $data['catalogs']);\n }", "function ciniki_poma_favItemDelete(&$ciniki, $tnid, $args) {\n \n //\n // Check args\n //\n if( !isset($args['object']) || $args['object'] == '' ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.poma.29', 'msg'=>'No item specified.'));\n }\n if( !isset($args['object_id']) || $args['object_id'] < 1 || $args['object_id'] == '' ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.poma.30', 'msg'=>'No item specified.'));\n }\n if( !isset($args['customer_id']) || $args['customer_id'] < 1 ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.poma.31', 'msg'=>'No customer specified.'));\n }\n\n //\n // Check if item already exists as a fav\n //\n $strsql = \"SELECT id, uuid, status \"\n . \"FROM ciniki_poma_customer_items \"\n . \"WHERE tnid = '\" . ciniki_core_dbQuote($ciniki, $tnid) . \"' \"\n . \"AND customer_id = '\" . ciniki_core_dbQuote($ciniki, $args['customer_id']) . \"' \"\n . \"AND itype = 20 \"\n . \"AND object = '\" . ciniki_core_dbQuote($ciniki, $args['object']) . \"' \"\n . \"AND object_id = '\" . ciniki_core_dbQuote($ciniki, $args['object_id']) . \"' \"\n . \"\";\n $rc = ciniki_core_dbHashQuery($ciniki, $strsql, 'ciniki.poma', 'item');\n if( $rc['stat'] != 'ok' ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.poma.32', 'msg'=>'Unable to add favourite.', 'err'=>$rc['err']));\n }\n //\n // Remove the favourite, and if multiple rows due to bug, remove all rows\n //\n if( isset($rc['rows']) && count($rc['rows']) > 0 ) {\n foreach($rc['rows'] as $row) {\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'objectDelete');\n $rc = ciniki_core_objectDelete($ciniki, $tnid, 'ciniki.poma.customeritem', $row['id'], $row['uuid'], 0x07);\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n }\n }\n\n return array('stat'=>'ok');\n}", "public function getfavForUser($data,$type,$id)\n{\n\n //print_r($data);\n \terror_reporting(E_ERROR | E_PARSE);//to remove warning message due to array puch function\n //echo \"SELECT `userfav` FROM `users_fav` WHERE `userid` = '$id' AND `module` = '$type'\";\n \t$query = mysql_query(\"SELECT `userfav` FROM `users_fav` WHERE `userid` = '$id' AND `module` = '$type'\");\n\n if($type == '1' || $type == '2' || $type == '3')\n {\n\n $type = 'id';\n }\n else if ($type == '4' || $type == '5')\n {\n $type = 'userid';\n }\n\n if(mysql_num_rows($query)>0 && $id != \"\")\n\n {\n \n while($row = mysql_fetch_row($query))\n {\n \n $fav = $row[0];\n\n $fav = split(\",\",$fav);\n $num = sizeof($data);\n //print_r($data);\n for($i = 0 ; $i< $num ; $i++)\n { \n $val = $data[$i][$type];\n if(in_array($val, $fav)){\n\n array_push($data[$i]['fav'], 1);\n $data[$i]['fav'] = \"1\";\n \t\n }\n else\n {\n\n \tarray_push($data[$i]['fav'], 0);\n \t$data[$i]['fav'] = \"0\";\n }\n\n // if($type != 1 && $type != \"\"){\n // $end = $data[$i]['entry_end_date'];\n // $now = date(\"Y-m-d\");\n // $date1=date_create($st);\n // $date2=date_create($end);\n // $diff=date_diff($date2,$date1);\n // if($diff > 0)\n // {\n // //echo $diff->format(\"%a\");\n // $dayremain = $diff->format(\"%a\");\n // $data[$i]['days'] = $dayremain;}\n\n // else{\n \n // $data[$i]['days'] = 0;\n\n // }\n // }\n }\n return $data;\n \n\n }\n\n\n }\nelse\n\n {\n $num = sizeof($data);\n for($i = 0 ; $i< $num ; $i++)\n { \n $val = $data[$i][$type];\n //echo $val;\n array_push($data[$i]['fav'], 1);\n \t$data[$i]['fav'] = \"0\";\n // if($type != 1 && $type != \"\"){\n // $end = $data[$i]['entry_end_date'];\n // $now = date(\"Y-m-d\");\n // $date1=date_create($st);\n // $date2=date_create($end);\n // $diff=date_diff($date2,$date1);\n // if($diff > 0){\n // //echo $diff->format(\"%a\");\n // $dayremain = $diff->format(\"%a\");\n // $data[$i]['days'] = $dayremain;}\n\n // else{\n \n // $data[$i]['days'] = 0;\n\n // }\n // }\n\n }\n //print_r($data);\n return $data;\n }\n }", "public function getByCid($cid) {\n if (empty($cid)) {\n exception('参数异常!获取信息失败!');\n }\n $where['cid'] = ['EQ',$cid];\n $favors = $this->where($where)->order('create_time','DESC')->select();\n return $favors;\n }", "public function get_fav_doctor($requested_data) {\n\n $columns = \"user_id, \n CONCAT(user_first_name,' ',user_last_name) AS user_name,\n user_phone_number,\n user_email\n \";\n\n $get_doctor_detail_query = \" SELECT \" . $columns . \" \n FROM \n \" . TBL_FAV_DOCTORS . \" \n JOIN \" . TBL_USERS . \" \n ON fav_doctors_other_doctor_id=user_id AND fav_doctors_status=1\n WHERE\n user_status=1 AND\n user_type=2 AND \n fav_doctors_doctor_id=\" . $requested_data['doctor_id'] . \" \n \";\n if (!empty($requested_data)) {\n $get_doctor_detail_query.=\" AND \n (\n user_first_name LIKE '%\" . $requested_data['search'] . \"%' OR\n user_last_name LIKE '%\" . $requested_data['search'] . \"%' OR\n user_email LIKE '%\" . $requested_data['search'] . \"%' \n )\n \";\n }\n\n\n $get_doctor_data = $this->get_all_rows_by_query($get_doctor_detail_query);\n\n return $get_doctor_data;\n }", "public function selectAllFish()\n {\n\n $result = $this->conn->query('SELECT * FROM fishes');\n return ( $result->num_rows > 0 ? $result->fetch_all(MYSQLI_ASSOC) : [] );\n\n }", "private function getCustomersArray(): void {\n\n $mdlCustomer = new \\App\\Models\\Customer();\n $rows = $mdlCustomer->getAll();\n\n $this->customers = array_column($rows, 'id');\n }", "public function getCustomers()\n {\n return $this->hasMany(User::className(), ['id' => 'customer_id'])->viaTable('favorite_contractor', ['contractor_id' => 'id']);\n }", "function favorites($pid, $query = array(), $rawJson = false) {\n \t\tif ( $json = $this->_get('/merchants/'.$pid.'/favorites.json', $query) )\n \t\t\treturn $this->_parseApi($json, $rawJson);\n \t\telse\n \t\t\treturn false;\n }", "public function getMyFanarts($id){\n $sql = \"SELECT f.title, f.pathFile, f.pubDate, f.id FROM fanart f\n WHERE f.author=\".intval($id).\" ORDER BY f.pubDate DESC;\";\n $res = mysqli_query($this->link, $sql);\n $fanarts = mysqli_fetch_all($res);\n return $fanarts;\n }", "public function index()\n {\n return Favourite::all();\n }", "public function get_user_fav_ids($username = '', $count = 10, $offset = 0) {\n\n\t\t$ids = array();\n\t\t\n\t\tif ($username == '') return $ids;\n\t\t\n\t\t$key = $this->_get_user_fav_key($username);\n\n \t// fix offset_score for sort desc\n \tif ($offset == 0) {\n \t\t$offset = '+inf';\n \t} else {\n \t\t$offset = '('.$offset;\n \t}\n \t//\n\n\t\t// get from redis\n\t\tif ($count == 'all') {\n\t\t\t$ids = Redis::zrevrangebyscore($key, '+inf', '-inf');\n\t\t} else {\n\t\t\t$ids = Redis::zrevrangebyscore($key, $offset, '-inf', array('limit'=> array(0,$count)));\n\t\t}\n\t\t\n\t\treturn $ids;\n\t }", "public function showFavorites()\n {\n\n $favorites = Auth::user()->favorites()->orderBy('company_name')->get();\n\n $allFavoritesTags = Favorite::getTagsForFavorites();\n\n return view('pages.favorites')->with([\n 'favoritesList' => $favorites,\n 'favorites' => $favorites,\n 'allFavoritesTags' => $allFavoritesTags,\n ]);\n\n }", "public function addToFavorites($objid);", "public function favorite(){\n $attributes = ['user_id' => auth()->id()];\n\n if(! $this->favorites()->where($attributes)->exists()){\n return $this->favorites()->create($attributes);\n }\n }", "public function getCustomers() {\n $customerList = array();\n $i = 0;\n $sql = \"SELECT email, passwd, customer_name, address, city, state, country, zip, phone From signup_app.customers\";\n $customers = $this->db->query($sql);\n //$customer = $customers->fetch();\n if ($customers->num_rows > 0) {\n while ($customer = $customers->fetch_assoc()) {\n $customerList[$i++] = new Customer(\n $customer['email'], $customer['passwd'], $customer['customer_name'], $customer['address']\n , $customer['city'], $customer['state'], $customer['country'], $customer['zip'], $customer['phone']\n );\n }\n return $customerList;\n }\n }", "public function favorite()\n {\n $attributes = ['user_id' => auth()->id()];\n\n if (! $this->favorites()->where($attributes)->exists()) {\n return $this->favorites()->create($attributes);\n }\n }", "function getFlavorsSalesFromDB()\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t$query = \"SELECT flavor_Name,purchase_Amount FROM CupcakeFlavor;\";\n\n\t$result = mysql_query($query);\n\n\t$finalArr = array();\n\n\t// This loop iterates over the results from the query and builds it into an array that will be returned later\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$finalArr[$row['flavor_Name']] = $row['purchase_Amount'];\n\t}\n\n\tmysql_close($con);\n\n\treturn $finalArr;\n}", "public function get_user_wishlist($customer_id)\n\t{\n\t\t$this->db->select('brand.brand_name, product.*, wishlist.date_added, wishlist.wishlist_id');\n\t\t$this->db->where('product.brand_id = brand.brand_id AND product.product_id = wishlist.product_id AND wishlist.customer_id = '.$customer_id);\n\t\t$this->db->order_by('wishlist.date_added', 'DESC');\n\t\t$query = $this->db->get('product, wishlist, brand');\n\t\t\n\t\treturn $query;\n\t}", "public function userFavorites() {\n return $this->belongsToMany('App\\User');\n }", "function getFavorites($username) {\n global $con;\n try {\n $sql = \"SELECT `favorites` FROM `users` WHERE username = :username\";\n $sql = $con->prepare($sql);\n $sql->bindParam(\":username\", $username);\n $sql->execute();\n buildFavorites($sql->fetch());\n } catch (PDOException $e) {\n echo $e;\n }\n}", "public function getFavoritesPublications($user)\n {\n return $this->getByFavorite($user);\n }", "public function index()\n {\n $favorites = Favorite::where('buyer_id', $this->buyer->id)->get();\n \n\n return view('dashboard.buyer.favourites', compact(['favorites']));\n }", "public function getFanarts(){\n $sql = \"SELECT f.title, f.pathFile, f.pubDate, a.username, f.author, f.id FROM fanart f\n INNER JOIN account a ON f.author=a.id\n ORDER BY f.pubDate DESC;\";\n $res = mysqli_query($this->link, $sql);\n $fanarts = mysqli_fetch_all($res);\n return $fanarts;\n }", "public function index()\n {\n $idUser = Auth::id();\n $sellFlats = null;\n $favorite = Favorite::query()\n ->where('user_id', $idUser)\n ->get();\n\n if (isset($favorite)){\n foreach ($favorite as $item) {\n $sellFlats[] = sellApartment::query()\n ->where('id', $item->favoriteable_id)\n ->where('is_banned',false)\n ->paginate(8);\n }\n }\n\n return view('main.user.favorite.allFlats', compact('sellFlats'));\n }", "public function get_wishlist($customer_id)\n\t{\n\t\t$query = \"SELECT * FROM tbl_wishlist WHERE customerId = '$customer_id' order by id desc\";\n\t\t$result = $this->db->select($query);\n\t\treturn $result;\n\t}", "function generateFavoritePosts(){\r\n if( !empty($_SESSION['FavoritePosts']) ){\r\n\t\t$favoriteArray = $_SESSION['FavoritePosts']; \r\n\t\t\r\n\t\tforeach($favoriteArray as $favorites){\r\n\t\t\techo '<tr>';\r\n\t\t\techo '<td>';\r\n\t\t\techo '<a href=\"single-post.php?Pid=' . $favorites['PID'] . '\">';\r\n\t\t\techo '<img src=\"travel-images/square-small/' . $favorites['Path'] .'\" class= \"img-thumbnail\"/></td>';\r\n\t\t\techo '</a>';\r\n\t\t\techo '<td>' .$favorites['Title'] . '</td>';\r\n\t\t\techo '<td>' .$favorites['Author'] . '</td>';\r\n\t\t\techo '<td>';\r\n\t\t\techo '<a href=\"removeFavoritePost.php?Pid=' . $favorites['PID'] . '\">';\r\n\t\t\techo 'Remove</td>';\r\n\t\t\techo '</a>';\r\n\t\t\techo '</tr>';\r\n\t\t} \r\n\t}\r\n}", "public function markBeauticianFavourite(MarkBeauticianFavouriteRequest $request) {\n $beauticianId = $request->input('beauticianId');\n $response = CustomerServiceProvider::markBeauticianFavourite($beauticianId);\n return $this->sendJsonResponse($response);\n }", "public function getFarmsFruits(){\n\t\t$url = 'http://www.vermontfresh.net/member-search/MemberSearchForm?Keywords=&ProductCategoryID=8&Categories%5B13%5D=13&RegionID=&action_doMemberSearch=Search';\n\t\treturn $this->parse_data($url);\n\t}", "public function run()\n {\n \n\n \\DB::table('favorites')->delete();\n \n \\DB::table('favorites')->insert(array (\n 0 => \n array (\n 'id' => 3,\n 'food_id' => 1,\n 'user_id' => 18,\n 'created_at' => '2019-08-30 15:31:52',\n 'updated_at' => '2019-08-30 15:31:53',\n ),\n 1 => \n array (\n 'id' => 14,\n 'food_id' => 2,\n 'user_id' => 18,\n 'created_at' => '2019-10-09 12:42:45',\n 'updated_at' => '2019-10-09 12:42:45',\n ),\n 2 => \n array (\n 'id' => 15,\n 'food_id' => 2,\n 'user_id' => 19,\n 'created_at' => '2019-10-15 15:30:23',\n 'updated_at' => '2019-10-15 15:30:23',\n ),\n 3 => \n array (\n 'id' => 16,\n 'food_id' => 3,\n 'user_id' => 1,\n 'created_at' => '2019-10-17 22:22:26',\n 'updated_at' => '2019-10-17 22:22:26',\n ),\n 4 => \n array (\n 'id' => 25,\n 'food_id' => 1,\n 'user_id' => 1,\n 'created_at' => '2019-10-18 12:40:22',\n 'updated_at' => '2019-10-18 12:40:22',\n ),\n ));\n \n \n }", "public function initUserFavorites()\n\t{\n\t\t$this->collUserFavorites = array();\n\t}", "public function index()\n {\n //list favourites for each user\n $favourites = DB::table('books')\n ->join('favourites','favourites.book_id','=', 'books.id' )\n ->where('favourites.user_id','=',Auth::id())\n ->get();\n $fav= \\App\\User::find(Auth::id())->favorites()->pluck('book_id')->all();\n\n \n return view('FavouritesPage',['favourites'=>$favourites,\"favs\"=>$fav]);\n }", "public function favorites(OutputInterface $output, array $response)\n {\n $this->printProducts($output, $response['favorites']);\n }", "public function favourite()\n {\n return $this->belongsToMany('App\\User', 'favourite', 'media_id', 'user_id');\n }", "function fetch_restaurants_by_user_info($user_id)\n\t{\n\t\treturn $this->db->select('*')\n\t\t\t\t\t\t->from('restaurants')\n\t\t\t\t\t\t->where('restaurant_creator', $user_id)\n\t\t\t\t\t\t->get()\n\t\t\t\t\t\t->result_array();\n\t}", "public function getFavoriteVideos() {\r\n $category_id = Input::get('category_id');\r\n $user_id = Input::get('user_id');\r\n\r\n $sql = \"SELECT v.*\"\r\n . \" FROM videos AS v\"\r\n . \" LEFT JOIN video_categories AS c ON c.id = v.category_id\"\r\n . \" WHERE v.visibility=1 AND v.category_id = ? AND v.id IN (SELECT video_id FROM video_favorites WHERE user_id = ?)\";\r\n $rows = DB::select($sql, [$category_id, $user_id]);\r\n\r\n return response()->json($rows);\r\n }", "public function getUserFavorites($limit = null)\r\n {\r\n $args = array();\r\n if (!empty($limit)) {\r\n $args['limit'] = (int)$limit;\r\n }\r\n return self::makeCall('getUserFavoriteSongs', $args, 'songs', false, $this->sessionID);\r\n }", "function photos_getFavorites ($photo_id, $page = 1, $per_page = 20) {\n $response = $this->execute(array('method' => 'flickr.photos.getFavorites', 'photo_id' => $photo_id, 'page' => $page, 'per_page' => $per_page));\n\t\t$object = unserialize($response);\n\t\tif ($object['stat'] == 'ok') {\n\t\t\treturn $object['photo']['person'];\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 bp_activity_action_favorites_feed() {\n\tif ( ! bp_is_user_activity() || ! bp_is_current_action( 'favorites' ) || ! bp_is_action_variable( 'feed', 0 ) ) {\n\t\treturn false;\n\t}\n\n\t// get displayed user's favorite activity IDs\n\t$favs = bp_activity_get_user_favorites( bp_displayed_user_id() );\n\t$fav_ids = implode( ',', (array) $favs );\n\n\t// setup the feed\n\tbuddypress()->activity->feed = new BP_Activity_Feed( array(\n\t\t'id' => 'favorites',\n\n\t\t/* translators: User activity favorites RSS title - \"[Site Name] | [User Display Name] | Favorites\" */\n\t\t'title' => sprintf( __( '%1$s | %2$s | Favorites', 'buddypress' ), bp_get_site_name(), bp_get_displayed_user_fullname() ),\n\n\t\t'link' => bp_displayed_user_domain() . bp_get_activity_slug() . '/favorites/',\n\t\t'description' => sprintf( __( \"Activity feed of %s's favorites.\", 'buddypress' ), bp_get_displayed_user_fullname() ),\n\t\t'activity_args' => 'include=' . $fav_ids\n\t) );\n}", "public function getTTCoffees() {\n $result = $this->_db->select('SELECT * FROM '.PREFIX.'coffee AS c\n INNER JOIN '.PREFIX.'roaster AS r ON c.roaster_id = r.roaster_id\n INNER JOIN '.PREFIX.'grower AS g ON c.grower_id = g.grower_id\n INNER JOIN '.PREFIX.'contact AS ct ON r.contact_id = ct.contact_id');\n $ttcoffees = array();\n foreach ($result as $ttcoffee) {\n $current = new \\TTCoffee($ttcoffee->coffee_id, $ttcoffee->roaster_name, $ttcoffee->roaster_logo, $ttcoffee->farm_name, $ttcoffee->farm_country, $ttcoffee->farm_region, $ttcoffee->coffee_name,\n $ttcoffee->description, $ttcoffee->retail_price, $ttcoffee->currency, $ttcoffee->bag_size, $ttcoffee->gppp, $ttcoffee->egs, $ttcoffee->url);\n $ttcoffees[] = $current;\n }\n return $ttcoffees;\n }", "function getReviews($which) {\n\n\t$id = getUserID();\n\t$reviews = array();\n\t\n\tif ($which == 'positive') {\n\t\t$query = \"SELECT * FROM reviews WHERE reviews.user_id = \".$id.\" AND reviews.is_positive\";\n\t} else {\n\t\t$query = \"SELECT * FROM reviews WHERE reviews.user_id = \".$id.\" AND !reviews.is_positive\";\n\t}\n\t\n\t$result = mysql_query($query) or die(mysql_error());\n\twhile($row = mysql_fetch_array($result)){\n\t\t$reviews[] = $row;\n\t}\n\t\n\treturn $reviews;\n}", "public function getFavoriteIds($by_id)\n\t{\n\t\t$data = $this->db\n\t\t\t->where(['d_member_id' => $by_id])\n\t\t\t->from('product_favorite')\n\t\t\t->get()\n\t\t\t->result_array();\n\t\treturn array_column($data, 'd_product_id');\n\t}", "public function index()\n {\n $client_id = Auth::guard('client')->user()->id;\n $favs = Favorite::where('client_id', $client_id)->get();\n return view('home.fav',compact('favs'));\n }", "function favorites_getPublicList ($user_id = NULL, $per_page = 25, $page = 1, $extras = NULL) {\n\t\t$user_id = ($user_id) ? $user_id : $this->getUserId();\n\t\t$params = array();\n\t\t$params['method'] = 'flickr.favorites.getPublicList';\n\t\t$params['user_id'] = $user_id;\n\t\t$params['per_page'] = $per_page;\n\t\t$params['page'] = $page;\n\t\tif ($extras) $params['extras'] = $extras;\n $response = $this->execute($params, 10);\n\t\t$object = unserialize($response);\n\t\tif ($object['stat'] == 'ok') {\n\t\t\treturn $object['photos'];\n\t\t} else {\n\t\t\t$this->setError($object['message'], $object['code']);\n\t\t\treturn FALSE;\n\t\t}\n\t}" ]
[ "0.69129306", "0.6623661", "0.6391229", "0.6348808", "0.6324056", "0.6254882", "0.62117887", "0.61436236", "0.60608274", "0.6024527", "0.59506977", "0.59270066", "0.59224254", "0.5846817", "0.5703129", "0.5675031", "0.5634525", "0.55993056", "0.55988324", "0.55960214", "0.5578477", "0.5552184", "0.55335224", "0.55211526", "0.5495884", "0.5485896", "0.5470806", "0.5448463", "0.54199296", "0.5407457", "0.54062474", "0.5399529", "0.5396688", "0.5389598", "0.53702", "0.5363892", "0.5349896", "0.534776", "0.53317803", "0.53261995", "0.5322506", "0.5310378", "0.5248674", "0.5248291", "0.5225032", "0.52226573", "0.5222576", "0.52107644", "0.5198584", "0.51964253", "0.5190629", "0.5187367", "0.5137589", "0.51274246", "0.5120579", "0.5109086", "0.51052433", "0.5091511", "0.5080309", "0.50752944", "0.5068335", "0.5058456", "0.50569594", "0.5049202", "0.5047328", "0.50442433", "0.5041048", "0.5040105", "0.50338596", "0.5031909", "0.50307125", "0.5028442", "0.50205755", "0.50176656", "0.49983636", "0.4995091", "0.49884942", "0.49718353", "0.49668095", "0.49639747", "0.49632218", "0.49424717", "0.49423984", "0.4927222", "0.49138802", "0.4912486", "0.49113297", "0.4899465", "0.48840037", "0.48736262", "0.48646984", "0.4857469", "0.48560232", "0.48506206", "0.484956", "0.4846746", "0.48417616", "0.4832823", "0.48302737", "0.48286158" ]
0.79836535
0
Takes in a favorite for the user and stores it in the table. This function receives both the customer's ID and his favorite to be added. This favorite is then inserted into the Favorites table
function addFavoriteToDB($arrToAdd, $customerID) { $con = mysql_connect("localhost", "DBandGUI", "narwhal"); if(!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("CustomCupcakes", $con) or die('Could not select db: ' . mysql_error()); // This query retrieves the current highest favorite_ID in the table, and then increments it by 1 $query = "SELECT favorite_ID FROM Favorites ORDER BY favorite_ID DESC"; $resultForFavoriteID = mysql_query($query); $rowForFavoriteID = mysql_fetch_array($resultForFavoriteID); $newFaveID = $rowForFavoriteID['favorite_ID'] + 1; $query = "SELECT cupcake_ID FROM Cupcakes ORDER BY Cupcakes DESC"; $newCupcakeID = mysql_fetch_array(mysql_query($query))['cupcake_ID'] + 1; //This query actually adds in the new favorite $query = "INSERT INTO Cupcakes VALUES ('" . $newCupcakeID . "','" . $arrToAdd['flavor'] . "','" . $arrToAdd['icing'] . "','" . $arrToAdd['filling'] . "',NULL,'" . $customerID . "');"; mysql_query($query); $query = "SELECT Rn_ID FROM CupcakeToppings ORDER BY Rn_ID DESC"; $newRnID = mysql_fetch_array(mysql_query($query))['Rn_ID'] + 1; $increment = 1; while($currentToppingID = $arrToAdd['topping'][$increment]) { $query = "INSERT INTO CupcakeToppings VALUES ('" .$newCupcakeID . "','" . $currentToppingID . "','" . $newRnID . "');"; mysql_query($query); $increment = $increment + 1; $newRnID = $newRnID + 1; } mysql_close($con); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function add_favorite() {\n\t\t\tif ($this->userInfo['users']['id']) {\n\t\t\t\t$uid = $this->userInfo['users']['id'];\n\t\t\t}\n\t\t\tif ($this->request->is('get')) {\n\t \t\t\t$user_id = $_GET['user_id'];\n\t\t\t\t$favorite = $_GET['favorite'];\n\t \t\t$content_id = $_GET['content_id'];\n\t\t\t\t$created = date(\"Y-m-d H:i:s\");\n\t\t\t\t$content_type = \"tweets\";\n\t\t\t\t$this->request->data = '';\n\t\t\t\t$this->loadModel('Favorite');\n\t\t\t\t$checkInDB = $this->Favorite->find('first',array('fields'=>array('Favorite.id'),'conditions'=>array('Favorite.content_id='.$content_id)));\n\t\t\t\tif ($checkInDB) {\n\t\t\t\t\t$id = $checkInDB['Favorite']['id'];\n\t\t\t\t\t$this->Favorite->id = $id;\n\t\t\t\t\t$this->request->data['Favorite']['created'] = $created;\n\t\t\t\t\t$this->request->data['Favorite']['favorite'] = $favorite;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t$this->request->data['Favorite']['user_id'] = $user_id;\n\t\t\t\t\t$this->request->data['Favorite']['content_type'] = $content_type;\n\t\t\t\t\t$this->request->data['Favorite']['content_id'] = $content_id;\n\t\t\t\t\t$this->request->data['Favorite']['created'] = $created;\n\t\t\t\t\t$this->request->data['Favorite']['favorite'] = $favorite;\n\t\t\t\t}\n\t\t\t\tif (ClassRegistry::init('Favorite')->save($this->request->data)){\n\t\t\t\t//echo \"field value saved\";\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\n\t\t\t\techo \"field value not saved\";\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t$this->set('favorite',$favorite);\n\t\t\t$this->set('content_id',$content_id);\n\t\t\t$this->autorender = false;\n\t \t$this->layout = false;\n\t \t$this->render('add_favorite');\n\t\t}", "function addToFavorites() {\n if ($this->getRequestMethod() != \"POST\") {\n $this->response('', 406);\n }\n $data = json_decode(file_get_contents(\"php://input\"),true);\n $userId = $data[\"user_id\"];\n $videoId = $data[\"video_id\"];\n $auth = $this->getAuthorization();\n if (!$this->validateAuthorization($userId, $auth)) {\n $this->response('', 400);\n }\n \n $query = \"insert into favorites (user_id, video_id) values($userId, $videoId);\";\n $r = $this->conn->query($query) or die($this->conn->error.__LINE__);\n $success = array('status' => \"Success\", \"msg\" => \"Added to Favorites.\", \"data\" => $data);\n $this->response(json_encode($success),200);\n }", "public function favorite(){\n $attributes = ['user_id' => auth()->id()];\n\n if(! $this->favorites()->where($attributes)->exists()){\n return $this->favorites()->create($attributes);\n }\n }", "public function addFavourite(Request $request){\n \t$this->validate($request, [\n \t\t'job_id' => 'required|integer',\n \t]);\n\n \t// Find the currently authenticated user\n \t$user = Auth::user();\n\n \t$favourite = new Favourite();\n \t$favourite->job_id = $request->input('job_id');\n\n \t$user->favourites()->save($favourite);\n\n \treturn redirect('/jobs/'.$request->input('job_id'))->with('success', 'Favourite added');\n }", "public function addToFavorite($account_id, $item_id);", "public function favorite()\n {\n $attributes = ['user_id' => auth()->id()];\n\n if (! $this->favorites()->where($attributes)->exists()) {\n return $this->favorites()->create($attributes);\n }\n }", "public function favorite($userId=null)\n {\n if (is_null($userId)) {\n $userId = Auth()->id();\n }\n \n if ($userId) {\n $favorite = $this->favorites()\n ->where('user_id', '=', $userId)\n ->first();\n \n if ($favorite) {\n return;\n }\n\n $favoriteClass = config('favorable.favorite_model');\n\n $favorite = new $favoriteClass();\n $favorite->user_id = $userId;\n $this->favorites()->save($favorite);\n }\n\n $this->incrementFavoriteCount();\n }", "public function favorite($id)\n {\n\n $uid = Auth::user()->id;\n $user = \\App\\User::where('id', $uid)->first();\n $recipe = \\App\\Recipe::where('id', $id)->first();\n $hasfavorited = \\App\\User::whereHas('favorites', function($q) use($uid, $id) {\n $q->where ('favorited', '1');\n $q->where ('recipe_id', $id);\n })->exists();\n\n $user->favorites()->attach($recipe->id, ['favorited' => '1']);\n return redirect()->route('recipes.show',$recipe->id)->with('message', 'You succesfully favorited the recipe.');\n}", "public function favorite($userId=null)\n\t{\n\t\tif(is_null($userId)) {\n\t\t\t$userId = $this->loggedInUserId();\n\t\t}\n\n\t\tif($userId) {\n\t\t\t$favorite = $this->favorites()\n\t\t\t\t->where('user_id', '=', $userId)\n\t\t\t\t->first();\n\n\t\t\tif($favorite) return;\n\n\t\t\t$favorite = new Favorite();\n\t\t\t$favorite->user_id = $userId;\n\t\t\t$this->favorites()->save($favorite);\n\t\t}\n\n\t\t$this->incrementFavoriteCount();\n\t}", "public function favorite(Request $request)\n {\n // check for login\n if(!Auth::user()){\n // error message\n Session::flash('error', 'Onbevoegde toegang');\n return redirect('/home');\n }\n\n // validate the form data that we got via POST request\n $this->validate($request, [\n 'favoriteCarId' => 'required|string'\n ]);\n \n // Get id of current car we are adding as favorite\n $favoriteCarId = $request->input('favoriteCarId');\n // find the current user by id and get his data\n $user = User::findOrFail(auth()->user()->id);\n // Get current favorites\n $userFavorites = json_decode($user->favorites);\n\n // if user does not have favorites create array of favorites and add the car to add\n if ($userFavorites == '' or $userFavorites == []){\n // add id to favorites when user has no favorites \n $userFavorites[] = $favoriteCarId;\n Session::flash('success', 'Aan favorieten toegevoegd');\n }\n //if user has favorites save the favorites\n else {\n // If the id already exists in favorites remove it\n if (in_array($favoriteCarId, $userFavorites)){\n // remove the id\n $userFavorites = array_diff($userFavorites, array($favoriteCarId));\n // Reindex the array\n $userFavorites = array_values($userFavorites);\n Session::flash('success', 'Uit favorieten verwijderd');\n }\n // If the id does not exist add to favorites\n else {\n $userFavorites[] = $favoriteCarId;\n Session::flash('success', 'Aan favorieten toegevoegd');\n }\n }\n\n // Save changes to database\n $user->favorites = json_encode($userFavorites, JSON_NUMERIC_CHECK);\n $user->save();\n\n //redirect\n return redirect()->route('occasions.index');\n }", "private function addFavorite()\n {\n try\n {\n $request = $_POST;\n\n if (!isset($request['type'])) {\n throw_error_msg(\"Type not provided\");\n }\n\n if ($request['type'] == 'video' || $request['type'] == 'collection') {\n //check if video id provided\n if( !isset($request['type_id']) || $request['type_id']==\"\" )\n throw_error_msg(\"type_id not provided.\");\n\n if( !is_numeric($request['type_id']) )\n throw_error_msg(\"invalid type_id\");\n\n $type_id = mysql_clean($request['type_id']);\n if ($request['type'] == 'video') {\n global $cbvid;\n $cbvid->action->add_to_fav($type_id);\n }\n\n if ($request['type'] == 'collection') {\n global $cbcollection;\n $cbcollection->action->add_to_fav($type_id);\n }\n \n }\n \n if( error() )\n {\n throw_error_msg(error('single')); \n }\n else\n { \n $data = array('code' => \"200\", 'status' => \"success\", \"msg\" => 'added to favorites', \"data\" => array());\n $this->response($this->json($data));\n } \n\n }\n catch(Exception $e)\n {\n $this->getExceptionDelete($e->getMessage());\n }\n }", "public function addToFavorites($data);", "function add_to_fav($id)\r\n\t{\r\n\t\t global $db;\r\n\t\t $id = mysql_clean($id);\r\n\t\t //First checking weather object exists or not\r\n\t\t if($this->exists($id))\r\n\t\t {\r\n\t\t\tif(userid())\r\n\t\t\t{\r\n\t\t\t\tif(!$this->fav_check($id))\r\n\t\t\t\t{\r\n\t\t\t\t\t\r\n\t\t\t\t\t$db->insert(tbl($this->fav_tbl),array('type','id','userid','date_added'),array($this->type,$id,userid(),NOW()));\r\n\t\t\t\t\taddFeed(array('action'=>'add_favorite','object_id' => $id,'object'=>'video'));\r\n\t\t\t\t\t//adding according to type\r\n\t\t\t\t\tswitch ($this->type) {\r\n\t\t\t\t\t\tcase 'cl':\r\n\t\t\t\t\t\t\t# code...\r\n\t\t\t\t\t\t\t$the_type = 'collection';\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\tcase 'p':\r\n\t\t\t\t\t\t\t# code...\r\n\t\t\t\t\t\t\t$the_type = 'photo';\r\n\t\t\t\t\t\t\tbreak;\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\tdefault:\r\n\t\t\t\t\t\t\t# code...\r\n\t\t\t\t\t\t\t$the_type = 'video';\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t//Logging Favorite\r\n\t\t\t\t\t$log_array = array(\r\n\t\t\t\t\t\t'success'=>'yes',\r\n\t\t\t\t\t\t'details'=> \"added \".$this->name.\" to favorites\",\r\n\t\t\t\t\t\t'action_obj_id' => $id,\r\n\t\t\t\t\t\t'action_done_id' => $db->insert_id()\r\n\t\t\t\t\t);\r\n\t\t\t\t\tinsert_log($this->name.'_favorite',$log_array);\r\n\r\n\t\t\t\t\te('<div class=\"alert alert-success\">'.sprintf(lang('add_fav_message'), lang($this->name)).'</div>', \"m\" );\r\n\t\t\t\t} else {\r\n\t\t\t\t\te(sprintf(lang('already_fav_message'), lang($this->name)));\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\te(lang(\"you_not_logged_in\"));\r\n\t\t\t}\r\n\t\t } else {\r\n\t\t\t e(sprintf(lang(\"obj_not_exists\"),$this->name));\r\n\t\t }\r\n\t }", "public function user_can_add_news_into_favorite()\n {\n //Arrange\n $user = User::create([\n \"email\"=>\"[email protected]\",\n \"name\" =>\"test\",\n \"date_of_birth\"=>\"2000-12-12\",\n \"password\"=>bcrypt(\"12345678\")\n ]);\n $this->post('api/login',[\"email\"=>\"[email protected]\",\"password\"=>\"12345678\"]);\n\n //Act\n $response = $this->post('api/favorite',[\n \"url\"=>\"test.com\",\n \"urlToImage\"=>\"test.com/a.jpg\",\n \"title\"=>\"test\",\n \"description\"=>\"testing\",\n \"author\"=>\"tester\",\n \"publishedAt\"=>\"2001-12-12\"\n ]);\n \n $favorite = Favorite::where('url','test.com')->first();\n \n //Assert\n\n // Check a new record for the favorite inserted in the favorite table\n $this->assertDatabaseHas('favorites',['url'=>'test.com']);\n // Check a new record holds relation bewteen favorite and user\n $this->assertDatabaseHas('user_favorite',['user_id'=>$user->id,'favorite_id'=>$favorite->id]);\n $response->assertStatus(201);\n }", "public function favorite($id)\n {\n $product = Product::findOrFail($id);\n $favorite = new Favorite;\n\n $favorite->product_id = $product->id;\n $favorite->user_id = Auth::id();\n\n $favorite->save();\n\n return back();\n }", "public function AddFavourite($uid, $msgID) {\n\t$uid = mysqli_real_escape_string($this->db, $uid);\n\t$msgID = mysqli_real_escape_string($this->db, $msgID);\n\t$query = mysqli_query($this->db,\"INSERT INTO favourite(fav_uid,fav_msgID ) VALUES('$uid','$msgID')\")or die(mysqli_error($this->db));\n\t\n}", "function addFavorite($name,$recipe){\n\t\t\t$str_query=\"INSERT INTO cuisine_favorite SET username='$name', fav_recipe_id='$recipe'\";\n\t\t\treturn $this->query($str_query);\n\t\t}", "public function FavoriteAdd($idItem){\n try{\n $this->executeQuery([\"idUser\"=>$this->idUser,\"idItem\"=>$idItem],\"favoriteAdd\",\"/[^0-9]/\");\n }catch(Exception $e){\n\n }\n }", "public function favorite()\n\t{\n\t\t$service = $this->lib->input_post('service');\n\t\t$service = $this->services[$service];\n\n\n\t\t$video_page = $this->lib->input_post('video_page');\n\n\t\t$video_id = $service->get_video_id($video_page);\n\n\n\t\t// check if already a fav\n\n\t\t$already_fav = $service->is_favorite($video_id);\n\n\n\t\tif($already_fav)\n\t\t{\n\t\t\t// remove favorite if it is\n\t\t\t\n\t\t\t$service->remove_favorite($video_id);\n\t\t}\n\t\telse\n\t\t{\n\t\t\t// add favorite if it's not\n\n\t\t\t$service->add_favorite($video_id);\n\t\t}\n\t}", "function add_favs() {\n $sql = \"INSERT INTO Items (name, category, notes, favorite) SELECT name, category, notes, favorite FROM Favorites\";\n mysql_query($sql);\n}", "function setFavouriteFeedback($user_id, $feedback_id)\n {\n $this->db->select(\"*\");\n $this->db->from('favourite_feedback');\n $this->db->where('user_id', $user_id);\n $this->db->where(\"feedback_id\", $feedback_id);\n $query = $this->db->get()->result();\n if (count($query) > 0) {\n $this->db->where('user_id', $user_id);\n $this->db->where(\"feedback_id\", $feedback_id);\n $this->db->delete(\"favourite_feedback\");\n } else {\n $info['user_id'] = $user_id;\n $info['feedback_id'] = $feedback_id;\n $this->db->insert(\"favourite_feedback\", $info);\n }\n return true;\n }", "public function addFavourite(User $user)\n {\n $favourite = $user->favourites()\n ->where('favourite_id', $this->id)\n ->first();\n\n if(isset($favourite->id))\n {\n return $favourite->delete();\n }\n\n return $this->favourites()->create([\n 'user_id' => $user->id\n ]);\n }", "public function favourite($id){\n $category = CategoryModel::instantiate()->findOrFail($id);\n $user = auth_user();\n\n // Store that user searched this product\n // If user visited before, increment count\n $userCategory = $category->stats();\n\n if (!$userCategory){\n $userCategory = new UserCategoriesModel([\n 'user_id' => $user->id,\n 'category_id' => $category->id,\n 'followed' => (bool) false,\n 'count' => 0\n ]);\n $userCategory->save();\n }\n $userCategory->followed = !$userCategory->followed;\n $userCategory->update();\n\n $msg = new \\Plasticbrain\\FlashMessages\\FlashMessages();\n if (!$userCategory->followed){\n $msg->success( 'Category removed from favourites categories!' );\n } else {\n $msg->success( 'Category added to favourites categories!' );\n }\n\n return $this->redirectBack();\n\n }", "public function actionFavorites()\n\t{\n\t\t// using the default layout 'protected/views/layouts/main.php'\n\t\t\n\t\t\t\n\t\t$unfavorite = Yii::app()->request->getParam('unfavorite');\n\t\t$user_id = Yii::app()->user->id;\n\t\t\n\n\t\tif($unfavorite && $user_id) {\n\t\t\t\n\t\t\t$record = Favorited::model()->findByAttributes(array('user_id' => $user_id, 'object_id' => $unfavorite));\n\t\t//\tdie(print_r($record));\n\t\t\tif($record)\n\t\t\t\t$record->delete();\n\t\t//\t$this->redirect('/cabinet/favorites');\n\t\t//\t Yii::app()->end();\n\n\t\t}\t\n\n\n\t\t\n\t\tif($user_id) {\n\t\t\t$cookie_favorite = Yii::app()->request->cookies['favorite']->value;\n\t\t\t$cookie_favorite = json_decode($cookie_favorite);\n\t\t\t\n\t\t\t$cookie_fav_wrap = array();\n\t\t\t\n\t\t\twhile ($fruit_name = current($cookie_favorite)) {\n\t\t\t if ($fruit_name == 1) {\n\t\t\t $cookie_fav_wrap[] = key($cookie_favorite);\n\t\t\t }\n\t\t\t next($cookie_favorite);\n\t\t\t}\n\t\t\t\n\t\t\tforeach($cookie_fav_wrap as $fav_item) {\n\t\t\t\t$favorite = Favorited::model()->findByAttributes(array('user_id' => $user_id, 'object_id' => $fav_item));\n\t\t\t\tif(!$favorite) {\n\t\t\t\t\t$record = new Favorited;\n\t\t\t\t\t$record->user_id = $user_id;\n\t\t\t\t\t$record->object_id = $fav_item;\n\t\t\t\t\t$record->save();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t//$this->checkUser();\n\t\t$favarray = array();\n\t\t\n\t\t$cookie_favorite = Yii::app()->request->cookies['favorite']->value;\n\t\t$cookie_favorite = json_decode($cookie_favorite);\n\t\t\n\t\t$cookie_fav_wrap = array();\n\t\t\n\t\t//echo print_r($cookie_favorite, true);\n\t\t\n\t\tforeach($cookie_favorite as $cookie_key => $cookie_value) {\n\t\t\t\n\t\t if ($cookie_value && $unfavorite != $cookie_key) {\n\t\t $cookie_fav_wrap[] = $cookie_key;\n\t\t }\n\t\t}\n\t\t\n\t\t\n\t\tforeach($cookie_fav_wrap as $fav_item) {\n\t\t\tif ($unfavorite != $fav_item) \n\t\t\t\t$favarray[] = $fav_item;\n\t\t\t\t\t\n\t\t}\n\t\t\n\t\t\n\t\t\t\t\t\n\t\t$order_dir = Yii::app()->request->getParam('dir', 'asc');\n\t\tif(!in_array($order_dir, array('desc','asc'))) {\n\t\t\t$order_dir = 'asc';\n\t\t}\n\t\t$order_field = Yii::app()->request->getParam('order', 'rooms');\n\t\tif(!in_array($order_field, array('rooms','square','cost'))) {\n\t\t\t$order_field = 'rooms';\n\t\t}\n\t\t\n\t\t\t\t\n\t\t$favorites = Favorited::model()->findAllByAttributes(array('user_id'=>Yii::app()->user->id));\n\t\n\t\tforeach($favorites as $fav) {\n\t\t\t$faved = Estate::model()->findByAttributes(array('id'=>$fav->object_id));\n\t\t\tif(!$faved)\t\n\t\t\t\t$fav->delete();\n\t\t\tif($fav->object_id == $unfavorite)\n\t\t\t\t$fav->delete();\n\t\t}\t\n\t\t\n\t\tif($favorites) {\n\t\t\t\n\t\t\t$cookie_fav_wrap = array();\n\t\t\tforeach($favorites as $favorite) {\n\t\t\t\tif($unfavorite != $favorite->object_id) {\n\t\t\t\t\t$favarray[] = $favorite->object_id;\n\t\t\t\t\t$cookie_fav_wrap[$favorite->object_id] = true;\n\t\t\t\t} else {\t\t\t\t\n\t\t\t\t\t$cookie_fav_wrap[$favorite->object_id] = false;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\tunset(Yii::app()->request->cookies['favorite']);\t\n\t\t\tunset($_COOKIE['favorite']);\n\t\t\t$cookie_favorite = json_encode($cookie_fav_wrap);\n\t\t\t$cookie = new CHttpCookie('favorite',$cookie_favorite);\n\t\t\t$cookie->expire = time() + 2592000;\n\t\t\t$cookie->path = '/';\n\t\t\tYii::app()->request->cookies['favorite'] = $cookie;\n\n\t\t\t\n\t\t\t$objects = Estate::model()->findAllByAttributes(array('id'=>$favarray),array('order'=>$order_field.' '.$order_dir));\n\t\t\t\n\t\t} else {\n\t\t\tif(!$user_id && $unfavorite) {\n\t\t\t\tforeach($favarray as $favorite) {\n\t\t\t\t\t$cookie_fav_wrap[$favorite] = true;\n\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tunset(Yii::app()->request->cookies['favorite']);\t\n\t\t\t\tunset($_COOKIE['favorite']);\n\t\t\t\t$cookie_favorite = json_encode($cookie_fav_wrap);\n\t\t\t\t$cookie = new CHttpCookie('favorite',$cookie_favorite);\n\t\t\t\t$cookie->expire = time() + 2592000;\n\t\t\t\t$cookie->path = '/';\n\t\t\t\tYii::app()->request->cookies['favorite'] = $cookie;\n\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\t\n\t\t\t$objects = Estate::model()->findAllByAttributes(array('id'=>$favarray),array('order'=>$order_field.' '.$order_dir));\n\t\t\t\n\t\t}\n\n\t\t\n\t\t$this->render('favorites',array('objects'=>$objects,'order_field'=>$order_field,'order_dir'=>$order_dir));\n\t}", "public function addToFavorites($objid);", "public function store(Request $request)\n {\n //\n $userFavorite = new UserFavorite;\n $userFavorite->create($request->all());\n }", "public function addFavorite() {\r\n $video_id = Input::get('video_id');\r\n $user_id = Input::get('user_id');\r\n\r\n $favorite = VideoFavorites::where('video_id', $video_id)\r\n ->where('user_id', $user_id)\r\n ->first();\r\n if ($favorite) {\r\n $data = ['result' => 'already_exist'];\r\n } else {\r\n $favorite = new VideoFavorites();\r\n $favorite->video_id = $video_id;\r\n $favorite->user_id = $user_id;\r\n if ($favorite->save())\r\n $data = ['result' => 'success'];\r\n else\r\n $data = ['result' => 'error'];\r\n }\r\n\r\n return response()->json($data);\r\n }", "function bp_activity_action_mark_favorite() {\n\n\tif ( !is_user_logged_in() || !bp_is_activity_component() || !bp_is_current_action( 'favorite' ) )\n\t\treturn false;\n\n\t// Check the nonce\n\tcheck_admin_referer( 'mark_favorite' );\n\n\tif ( bp_activity_add_user_favorite( bp_action_variable( 0 ) ) )\n\t\tbp_core_add_message( __( 'Activity marked as favorite.', 'buddypress' ) );\n\telse\n\t\tbp_core_add_message( __( 'There was an error marking that activity as a favorite, please try again.', 'buddypress' ), 'error' );\n\n\tbp_core_redirect( wp_get_referer() . '#activity-' . bp_action_variable( 0 ) );\n}", "public function markBeauticianFavourite(MarkBeauticianFavouriteRequest $request) {\n $beauticianId = $request->input('beauticianId');\n $response = CustomerServiceProvider::markBeauticianFavourite($beauticianId);\n return $this->sendJsonResponse($response);\n }", "public function store(Request $request)\n {\n $fav = new Favourite;\n $fav->user_id = Auth::id();\n $fav->book_id = $request->id;\n $fav->save();\n return redirect()->back();\n \n }", "public function saveFavorite()\n {\n\n $this->addFavorite();\n\n return redirect('/search')->withInput();\n\n }", "function fanwood_dim_favorite () {\n\t$user_id = bbp_get_current_user_id();\n\t$id = intval( $_POST['id'] );\n\n\tif ( !current_user_can( 'edit_user', $user_id ) )\n\t\tdie( '-1' );\n\n\tif ( !$topic = bbp_get_topic( $id ) )\n\t\tdie( '0' );\n\n\tcheck_ajax_referer( \"toggle-favorite_$topic->ID\" );\n\n\tif ( bbp_is_user_favorite( $user_id, $topic->ID ) ) {\n\t\tif ( bbp_remove_user_favorite( $user_id, $topic->ID ) )\n\t\t\tdie( '1' );\n\t} else {\n\t\tif ( bbp_add_user_favorite( $user_id, $topic->ID ) )\n\t\t\tdie( '1' );\n\t}\n\n\tdie( '0' );\n}", "public static function add_favorite() {\n header( 'HTTP/1.0 200 OK' );\n header( 'Content-Type: application/json' );\n\n $data = array();\n\n if( ! is_user_logged_in() ) {\n $data = array(\n 'success' => false,\n 'message' => __( 'You need to log in at first.', 'realia-favorites' ),\n );\n } else if ( ! empty( $_GET['id'] ) ) {\n $favorites = get_user_meta( get_current_user_id(), 'favorites', true );\n $favorites = ! is_array( $favorites ) ? array() : $favorites;\n\n if ( empty( $favorites ) ) {\n $favorites = array();\n }\n\n $post = get_post( $_GET['id'] );\n $post_type = get_post_type( $post->ID );\n\n if ( 'property' != $post_type ) {\n $data = array(\n 'success' => false,\n 'message' => __( 'This is not property ID.', 'realia-favorites' ),\n );\n } else {\n $found = false;\n\n foreach ( $favorites as $property_id ) {\n if ( $property_id == $_GET['id']) {\n $found = true;\n break;\n }\n }\n\n if ( ! $found ) {\n $favorites[] = $post->ID;\n update_user_meta( get_current_user_id(), 'favorites', $favorites );\n\n $data = array(\n 'success' => true,\n );\n } else {\n $data = array(\n 'success' => false,\n 'message' => __( 'Property is already in list', 'realia-favorites' ),\n );\n }\n }\n } else {\n $data = array(\n 'success' => false,\n 'message' => __( 'Property ID is missing.', 'realia-favorites' ),\n );\n }\n\n echo json_encode( $data );\n exit();\n }", "public function ajax_favorite() {\n\n\t\t// Bail if favorites are not active\n\t\tif ( ! bbp_is_favorites_active() ) {\n\t\t\tbbp_ajax_response( false, __( 'Favorites are no longer active.', 'bbpress' ), 300 );\n\t\t}\n\n\t\t// Bail if user is not logged in\n\t\tif ( ! is_user_logged_in() ) {\n\t\t\tbbp_ajax_response( false, __( 'Please login to make this topic a favorite.', 'bbpress' ), 301 );\n\t\t}\n\n\t\t// Get user and topic data\n\t\t$user_id = bbp_get_current_user_id();\n\t\t$id = !empty( $_POST['id'] ) ? intval( $_POST['id'] ) : 0;\n\n\t\t// Bail if user cannot add favorites for this user\n\t\tif ( ! current_user_can( 'edit_user', $user_id ) ) {\n\t\t\tbbp_ajax_response( false, __( 'You do not have permission to do this.', 'bbpress' ), 302 );\n\t\t}\n\n\t\t// Get the topic\n\t\t$topic = bbp_get_topic( $id );\n\n\t\t// Bail if topic cannot be found\n\t\tif ( empty( $topic ) ) {\n\t\t\tbbp_ajax_response( false, __( 'The topic could not be found.', 'bbpress' ), 303 );\n\t\t}\n\n\t\t// Bail if user did not take this action\n\t\tif ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'toggle-favorite_' . $topic->ID ) ) {\n\t\t\tbbp_ajax_response( false, __( 'Are you sure you meant to do that?', 'bbpress' ), 304 );\n\t\t}\n\n\t\t// Take action\n\t\t$status = bbp_is_user_favorite( $user_id, $topic->ID ) ? bbp_remove_user_favorite( $user_id, $topic->ID ) : bbp_add_user_favorite( $user_id, $topic->ID );\n\n\t\t// Bail if action failed\n\t\tif ( empty( $status ) ) {\n\t\t\tbbp_ajax_response( false, __( 'The request was unsuccessful. Please try again.', 'bbpress' ), 305 );\n\t\t}\n\n\t\t// Put subscription attributes in convenient array\n\t\t$attrs = array(\n\t\t\t'topic_id' => $topic->ID,\n\t\t\t'user_id' => $user_id\n\t\t);\n\n\t\t// Action succeeded\n\t\tbbp_ajax_response( true, bbp_get_user_favorites_link( $attrs, $user_id, false ), 200 );\n\t}", "public function action_add(){\n\t\t$monumentId = $this->request->param('id');\n\t\t$user = Auth::instance()->get_user();\n\t\t\n\t\t// Add the monument to the favorite list of the current user\n\t\t$favoriteList = new Model_List_Favorite();\t\t\n\t\t$favoriteList->add($monumentId, $user->UserID);\n\t\t\n\t\t// Redirect the user back to the monument page\n\t\t$this->request->redirect('monument/view/' . $monumentId);\n\t}", "public function store($prop_id)\n {\n\n $favourite = new UserFavourite;\n\n $favourite->user_id = Sentry::getUser()->id;\n $favourite->prop_id = $prop_id;\n\n $favourite->save();\n\n\n return Redirect::back();\n\n }", "public function favoritePost(Post $post){\n\t Auth::user()->favorites()->attach($post->id);\n\t return back();\n\t}", "public function favoriteAction ()\n {\n /* @var $em \\Doctrine\\ORM\\EntityManager */\n $em = $this->get('doctrine')->getManager();\n \n $user = $this->getUser();\n if(!$user) {\n throw new UnauthorizedHttpException('You must be logged in to comment.');\n }\n \n $request = $this->getRequest();\n $decklist_id = filter_var($request->get('id'), FILTER_SANITIZE_NUMBER_INT);\n \n /* @var $decklist \\Netrunnerdb\\BuilderBundle\\Entity\\Decklist */\n $decklist = $em->getRepository('NetrunnerdbBuilderBundle:Decklist')->find($decklist_id);\n if (! $decklist)\n throw new NotFoundHttpException('Wrong id');\n \n $author = $decklist->getUser();\n \n $dbh = $this->get('doctrine')->getConnection();\n $is_favorite = $dbh->executeQuery(\"SELECT\n\t\t\t\tcount(*)\n\t\t\t\tfrom decklist d\n\t\t\t\tjoin favorite f on f.decklist_id=d.id\n\t\t\t\twhere f.user_id=?\n\t\t\t\tand d.id=?\", array(\n $user->getId(),\n $decklist_id\n ))\n ->fetch(\\PDO::FETCH_NUM)[0];\n \n if ($is_favorite) {\n $decklist->setNbfavorites($decklist->getNbfavorites() - 1);\n $user->removeFavorite($decklist);\n if ($author->getId() != $user->getId())\n $author->setReputation($author->getReputation() - 5);\n } else {\n $decklist->setNbfavorites($decklist->getNbfavorites() + 1);\n $user->addFavorite($decklist);\n $decklist->setTs(new \\DateTime());\n if ($author->getId() != $user->getId())\n $author->setReputation($author->getReputation() + 5);\n }\n $this->get('doctrine')\n ->getManager()\n ->flush();\n \n return new Response(count($decklist->getFavorites()));\n \n }", "function addFavorite(){\n $name=$_REQUEST['name'];\n $recipe=$_REQUEST['recipe'];\n\n include(\"../model/favorite.php\");\n $obj = new favorite();\n if($obj->addFavorite($name, $recipe)){\n echo '{\"result\":1}';\n }else {\n echo '{\"result\":0}';\n }\n }", "private function incrementFavoriteCount()\n\t{\n\t\t$counter = $this->favoriteCounter()->first();\n\n\t\tif($counter) {\n\t\t\t$counter->count++;\n\t\t\t$counter->save();\n\t\t} else {\n\t\t\t$counter = new FavoriteCounter;\n\t\t\t$counter->count = 1;\n\t\t\t$this->favoriteCounter()->save($counter);\n\t\t}\n\t}", "public function set_fav($username = '', $id = '') {\n\t\t\n\t\tif ($username == '') return 0;\n\t\tif ($id == '') return 0;\n\t\t\n\t\t$key = $this->_get_user_fav_key($username);\n\t\t\n\t\t// check whether it is already set\n\t\t$score = Redis::zscore($key, $id);\n\t\tif ($score != '') \n\t\t\treturn 1;\n\t\t//\n\t\t\n\t\t//use current time as score\n\t\t$ret = Redis::zadd($key, time(), $id); \n\t\t\n\t\tif ($ret == 1)\n\t\t\treturn 1;\n\t\t\n\t\treturn 0;\n\t }", "public function favorite($id, $options = []);", "public function add($id){\n $user = \\Auth::user();\n $user->festivals()->syncWithoutDetaching($id);\n\n return redirect('/favorites');\n }", "public function add( $args, $assoc_args ) {\n\t\t$user = $this->get_user_id_from_identifier( $assoc_args['user-id'] );\n\n\t\t// Check if topic exists.\n\t\t$topic_id = $assoc_args['topic-id'];\n\t\tif ( ! bbp_is_topic( $topic_id ) ) {\n\t\t\t\\WP_CLI::error( 'No topic found by that ID.' );\n\t\t}\n\n\t\t// True if added.\n\t\tif ( bbp_add_user_favorite( $user->ID, $topic_id ) ) {\n\t\t\t\\WP_CLI::success( 'Favorite successfully added.' );\n\t\t} else {\n\t\t\t\\WP_CLI::error( 'Could not add favorite.' );\n\t\t}\n\t}", "function addSurferToFavorites($surferId) {\n // If this surfer id already is a favorite, return\n if ($this->isFavoriteSurfer($surferId)) {\n return;\n }\n // Make up the data array\n $data = array(\n 'favorite_surferid' => $surferId,\n 'favorite_timestamp' => time()\n );\n // Get the amount of existing favorite surfers\n $sql = \"SELECT COUNT(*)\n FROM %s\";\n $sqlParams = array($this->tableFavorites);\n $amount = 0;\n if ($res = $this->databaseQueryFmt($sql, $sqlParams)) {\n if ($count = $res->fetchField()) {\n $amount = $count;\n }\n }\n // If we have reached the maximum amount, replace the oldest one\n $maxFavoriteSurfers = $this->getProperty('MAX_FAVORITE_SURFERS', 25);\n if ($amount >= $maxFavoriteSurfers) {\n $sql = \"SELECT favorite_surferid, favorite_timestamp\n FROM %s\n ORDER BY favorite_timestamp\";\n $sqlParams = array($this->tableFavorites);\n $replacedId = '';\n if ($res = $this->databaseQueryFmt($sql, $sqlParams, 1)) {\n if ($row = $res->fetchRow(DB_FETCHMODE_ASSOC)) {\n $replacedId = $row['favorite_surferid'];\n }\n }\n if ($replacedId != '') {\n $s = $this->databaseUpdateRecord(\n $this->tableFavorites, $data, 'favorite_surferid', $replacedId\n );\n return;\n }\n }\n // Otherwise, insert a new record\n $s = $this->databaseInsertRecord($this->tableFavorites, NULL, $data);\n }", "function save() {\n\t\t$return = false;\n\t\tif ( $this->getUserID() ) {\n\t\t\tif ( $this->isModified() ) {\n\t\t\t\t/*\n\t\t\t\t * Clear all existing objects\n\t\t\t\t */\n\t\t\t\t$this->delete();\n\t\t\t\t\n\t\t\t\tif ( $this->getCount() > 0 ) {\n\t\t\t\t\t$query = '\n\t\t\t\t\t\tINSERT INTO '.system::getConfig()->getDatabase('mofilm_content').'.userEventFavourites\n\t\t\t\t\t\t\t(userID, eventID, sequence)\n\t\t\t\t\t\tVALUES';\n\t\t\t\t\t\n\t\t\t\t\t$values = array();\n\t\t\t\t\tforeach ( $this as $index => $oObject ) {\n\t\t\t\t\t\t$values[] = \"({$this->getUserID()}, {$oObject->getID()}, $index)\";\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\tif ( count($values) > 0 ) {\n\t\t\t\t\t\t$query .= implode(', ', $values);\n\t\t\t\t\t\t\n\t\t\t\t\t\t$oStmt = dbManager::getInstance()->prepare($query);\n\t\t\t\t\t\tif ( $oStmt->execute() ) {\n\t\t\t\t\t\t\t$return = true;\n\t\t\t\t\t\t\t$this->setModified(false);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t$oStmt->closeCursor();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $return;\n\t}", "public function store()\n\t{\n\t\tif ( ! $benefitId = Input::get('benefit_id') ) return Redirect::back();\n\n\t\t$this->benefitsRepository->attachToCurrentUser($benefitId);\n\n\t\treturn Redirect::back()->with('benefit-created', 'Se guardo el beneficio');\n\t}", "private function incrementFavoriteCount()\n {\n $counter = $this->favoriteCounter()->first();\n\n if ($counter) {\n $counter->count++;\n $counter->save();\n } else {\n $counter = new FavoriteCounter;\n $counter->count = 1;\n $this->favoriteCounter()->save($counter);\n }\n }", "public static function favProductsInsert($params, $user_id)\n\t{\n\t\tif(array_key_exists('campaign_favourites',$params)) {\n\t\t\t$products_favourites = $params['campaign_favourites'];\n\t\t\t$delete = Yii::$app->db->createCommand()->delete('fav_products', ['user_id' => $user_id])->execute();\n\t\t\tif (!empty($products_favourites)) {\n\t\t\t\t$insert1 = \"INSERT INTO fav_products (product_id, user_id) VALUES\";\n\t\t\t\t$insert2 = '';\n\t\t\t\tforeach ($products_favourites as $fav_products) {\n\t\t\t\t\t$insert2 .= \"('\".$fav_products.\"', '\".$user_id.\"'),\";\n\t\t\t\t}\n\t\t\t\t$insert3 = trim($insert2, ',');\n\t\t\t\t$products_insert = $insert1 . $insert3;\n\t\t\t\t$products_query = Yii::$app->db->createCommand($products_insert)->execute();\n\t\t\t}\n\t\t} if(array_key_exists('channel_favourites',$params)) {\n\t\t\t$products_favourites = $params['channel_favourites'];\n\t\t\t//$delete = Yii::$app->db->createCommand()->delete('fav_products', ['user_id' => $user_id])->execute();\n\t\t\tif (!empty($products_favourites)) {\n\t\t\t\t$insert1 = \"INSERT INTO fav_products (product_id, user_id,is_channel_fav) VALUES\";\n\t\t\t\t$insert2 = '';\n\t\t\t\tforeach ($products_favourites as $fav_products) {\n\t\t\t\t\t$insert2 .= \"('\".$fav_products.\"', '\".$user_id.\"',1),\";\n\t\t\t\t}\n\t\t\t\t$insert3 = trim($insert2, ',');\n\t\t\t\t$products_insert = $insert1 . $insert3.\" ON DUPLICATE KEY UPDATE is_channel_fav = 1\";\n\t\t\t\t$products_query = Yii::$app->db->createCommand($products_insert)->execute();\n\t\t\t}\n\t\t}\n\t}", "public function addUserFavorite(UserFavorite $l)\n\t{\n\t\tif ($this->collUserFavorites === null) {\n\t\t\t$this->initUserFavorites();\n\t\t}\n\t\tif (!in_array($l, $this->collUserFavorites, true)) { // only add it if the **same** object is not already associated\n\t\t\tarray_push($this->collUserFavorites, $l);\n\t\t\t$l->setUser($this);\n\t\t}\n\t}", "function process_form() {\n global $db;\n\n // Get a unique ID for this customer\n $customer_id = $db->nextID('customers');\n\n // Insert the new customer into the table\n $db->query('INSERT INTO customers (customer_id, customer_name, phone, favorite_dish_id) VALUES (?,?,?,?)',\n array($customer_id, $_POST['customer_name'], $_POST['phone'], $_POST['favorite_dish_id']));\n\n // Tell the user that we added a customer.\n print 'Added ' . htmlentities($_POST['customer_name']) . ' to the database.';\n}", "public static function addFavorite($item, $member)\n\t{\n\t\t$db = new CSF\\Modules\\Data(\"nutrition\");\n\n\t\t$selectParam = array(\n\t\t\t\t\"table\"=>\"users\",\n\t\t\t\t\"columns\"=>array(\"favorites\")\n\t\t\t);\n\n\t\t$selectCheck = $db->selectData($selectParam)\n\t\t\t\t\t\t ->where(array(\"member\"=>$member))\n\t\t\t\t\t\t ->execute();\n\n\t\t$itemCheck = explode(\",\", $selectCheck[0][\"favorites\"]);\n\n\t\tif(in_array($item, $itemCheck)) {\n\t\t\techo '2';\n\t\t} else {\n\t\t\tif(strlen($selectCheck[0][\"favorites\"]) == 0) {\n\t\t\t\t$query = \"UPDATE users SET favorites='\" . $item . \"' WHERE member='\" . $member . \"'\";\n\n\t\t\t\t$check = $db->rawRequest($query);\n\t\t\t} else {\n\t\t\t\t$query = \"UPDATE users SET favorites=CONCAT_WS(',', favorites, '\" . $item . \"') WHERE member='\" . $member . \"'\";\n\n\t\t\t\t$check = $db->rawRequest($query);\n\t\t\t}\n\n\t\t\tif($check) {\n\t\t\t\techo '1';\n\t\t\t} else {\n\t\t\t\techo '0';\n\t\t\t}\n\t\t}\n\t}", "function save() {\n if (empty($this->id)) {\n\n $statement = $this->db->prepare('INSERT INTO favs (name, lat, lon, address) VALUES (:name, :lat, :lon, :address)');\n foreach (array('name', 'lat', 'lon', 'address') as $property) {\n $placeholders[':' . $property] = $this->get($property);\n }\n $statement->execute($placeholders);\n $this->set('id', $this->db->lastInsertId());\n\n return $this->get('id');\n }\n // If this is an update to an existing favorite...\n else {\n\n // Prepare the SQL.\n $sql = 'UPDATE favs SET ';\n\n // Loop through each included field to prepare the piece of the SQL\n // statement and the array of PDO::execute() placeholders.\n foreach ($this->getAll() as $field => $value) {\n if (!empty($value)) {\n $updates[] = $field . \" = :\" . $field;\n $params[':' . $field] = $value;\n }\n }\n\n // Turn the update SQL into a string separated by commas and include the\n // where clause.\n $sql .= implode(', ', $updates);\n $sql .= \" WHERE id = :id\";\n\n // Execute the query.\n $statement = $this->db->prepare($sql);\n $statement->execute($params);\n\n return $this->get('id');\n }\n }", "public function getAllFavorites($user_id);", "public function addToFavorites(Request $request)\n {\n $input = array();\n $input['common_id']= $request->id;\n $input['type']= $request->type;\n $exist = Favorites::where(['common_id'=>$request->id,\"type\"=>$request->type]);\n if($exist->count()>0)\n {\n $response = ['success' => false,'status'=> 404,'message' => 'Favorites already exist']; \n }\n else\n {\n Favorites::unguard();\n $favorites = Favorites::create($input);\n \n if($favorites)\n {\n $response = ['success' => true,'status' => 200,'message' => 'Added to favorites successfully.','data'=>$favorites];\n }\n else{\n $response = ['success' => false,'status'=> 404,'message' => 'Something Wrong, Not able to add as favorites']; \n }\n }\n return response()->json($response);\n }", "public function add($id)\n {\n $newFav = Favourite::insert(\n ['user_id' => Auth()->id(), 'pack_id' => $id]\n );\n if($newFav) {\n return back()->with('success', 'The pack has been added to favourites successfully');\n }else{\n return back()->with('error', 'Something went wrong please try again later');\n }\n }", "public function update(Request $request, UserFavorite $userFavorite)\n {\n //\n }", "public function addExistingSongToFavorites($userId, $songId){\n return $this->DB->exec(\"INSERT INTO favorite_songs VALUES (null, $userId, $songId)\");\n }", "public function actionRequestFavorite() {\n $data = array();\n if(!Yii::$app->user->isGuest && isset($_POST['stuff_id'])) {\n $model = new FavoriteForm();\n $model->user_id = Yii::$app->user->getId();\n $model->stuff_id = $_POST['stuff_id'];\n \n if($model->validate() && $model->requestFavorite()) {\n $this->createNotificationPostThanks($_POST['stuff_id']);\n $data['status'] = 1;\n return json_encode($data);\n }\n } \n\n $data['status'] = 0;\n return json_encode($data);\n }", "public function favourites($id)\n\t{\n\t\tif (!isset($_SESSION['user']))\n\t\t{\n\t\t\theader(\"Location: /myrecipe/session/new\");\n\t\t\texit;\n\t\t}\n\t\t// this page is only accessable by self and admin (type 2)\n\t\tif (($_SESSION['user']['type'] != 2) && ($_SESSION['user']['id'] != $id))\n\t\t{\n\t\t\theader(\"Location: /myrecipe/users/{$_SESSION['user']['id']}\");\n\t\t\texit;\n\t\t}\n\t\n\t\tif(!$user = User::findUser(array('user_id' => $id)))\n\t\t{\n\t\t\t// something has gone wrong with db request\n\t\t\theader(\"Location: /myrecipe/users/\".$id);\n\t\t\texit;\n\t\t}\n\t\t$this->template->user = $user[0];\n\t\t\n\t\t// find all the favourites\n\t\t$data = array('favourites.user_id'=>$id, 'recipe_images.is_cover'=>'yes');\n\t\t$favourites = Favourites::findFavourites($data);\n\t\t$this->template->favourites = $favourites;\n/*\t\techo \"<pre>\";\n\t\tprint_r($favourites);\n\t\techo \"</pre>\";\n*/\n\t\t$this->template->display('favourites.html.php');\n\t}", "public function post($request) {\n\n\t\t$query \t\t= \"INSERT INTO `deezer`.`favorites` (`favorite_id`, `track`, `user`) VALUES (NULL, :track_id, :user_id)\";\n\t\t$track_id \t= $request->parameters['track_id']; \t// From POST\n\t\t$user_id \t= $request->parameters['user_id']; \t\t// From GET\n\n\t\t// Variable type check\n\t\tif(isset($track_id) && is_numeric($track_id) && isset($user_id) && is_numeric($user_id)) {\n\n\t\t\t$track_id \t= intval($track_id);\n\t\t\t$user_id \t= intval($user_id);\n\n\t\t\t$pdo = Database::getPDO();\n\t\t\t$pdoStatement = $pdo->prepare($query);\n\t\t\t\n\t\t\t// Execute query\n\t\t\tif($pdoStatement->execute(array(':track_id' => $track_id, ':user_id' => $user_id))) {\n\t\t\t\t// == SUCCEED == //\n\t\t\t\treturn array(\"status\" => \"success\", \"id\" => $pdo->lastInsertId('favorite_id'));\n\t\t\t}\n\n\t\t}\n\n\t\t// == FAIL == //\n\t\treturn;\n\n\t}", "public function favorito(Request $req){\n $id = $req->input('id');\n $esta = DB::table('favorito')\n ->where('idUsu',Auth::user()->idUsu)\n ->where('idPuesto',$id)\n ->first();\n \n if(empty($esta))\n Favorito::create([\n 'idUsu' => Auth::user()->idUsu,\n 'idPuesto' => $id,\n ]);\n \n return redirect()->route('puesto',['id' => $id]);\n }", "public function store()\n {\n $rules = array(\n 'user_id' => 'required',\n 'recette_id' => 'required'\n );\n $validator = Validator::make(Input::all(), $rules);\n\n // process the login\n if ($validator->fails()) {\n return Redirect::to('recettes/'.Input::get('recette_id'))\n ->withErrors($validator)\n ->withInput(Input::all());\n } else {\n // store\n $favorite = new \\App\\Favorite();\n $favorite->user_id = Input::get('user_id');\n $favorite->recette_id = Input::get('recette_id');\n $favorite->save();\n\n // redirect\n Session::flash('message', 'Favori créé avec succès !');\n return Redirect::to('recettes/'.Input::get('recette_id'));\n }\n }", "public function avoir_realisateur_favoris_new(){\r\n\t\tglobal $conn;\r\n\t\t$query = $conn->prepare(\"INSERT INTO avoir_realisateur_favoris(id_realisateur, id_films) VALUES (:id_realisateur, :id_films)\");\r\n\t\t$query->execute(array(\"id_realisateur\" => $this->id_realisateur, \"id_films\" => $this->id_films));\r\n\t}", "function save_res_to_profile($res_id, $user_id) {\n\t\t# get the new like number\n\t\t$query = \"SELECT MAX(lik_no) FROM likes WHERE user_id = \".$user_id;\n\t\t$lik_no = execute_scalar($query) + 1;\n\t\t\n\t\t# get the features id of the favourite user restaurant\n\t\t$query = sprintf(\n\t\t\t\"SELECT fea_id\n\t\t\tFROM res_fea\n\t\t\tWHERE res_id = %s\",\n\t\t\t$res_id);\n\t\t$features_id = execute_rows($query);\n\t\t\n\t\t# saves the features of the favorite restaurant in the user profile\n\t\tforeach($features_id as $row) {\n\t\t\t$query = sprintf(\n\t\t\t\t\"INSERT INTO likes(res_id, user_id, fea_id, lik_no, lik_value)\n\t\t\t\tVALUES (%s, %s, %s, %s, 1)\",\n\t\t\t\t$res_id,\n\t\t\t\t$user_id,\n\t\t\t\t$row[0],\n\t\t\t\t$lik_no);\n\t\t\texecute_query($query);\n\t\t}\n\t}", "public function toggleFavorite(Request $request, Favorite $favorite)\n {\n $request->validate([\n 'annonceId' => 'required|exists:annonces,id',\n ]);\n\n if (!Auth::check())\n// return response()->json([\"error\" => true, \"message\" => \"Unauthorized\", 'user' => Auth::user()], 401);\n return back()->with([\n 'message' => 'Unauthorized.'\n ]);\n\n $fav = $favorite->where([['annonce_id', $request->annonceId], ['user_id', Auth::id()]])->first();\n if ($fav) {\n $fav->delete();\n return back()->with([\n 'message' => 'Deleted',\n \"fav\" => $fav\n ]);\n } else {\n $favo = new Favorite;\n $favo->user_id = Auth::id();\n $favo->annonce_id = $request->annonceId;\n $favo->save();\n\n return back()->with([\n 'message' => 'Deleted',\n \"fav\" => $favo\n ]);\n }\n }", "public function favorite( $tweet_id ) {\n $favorite = $this->_api_call_post('https://api.twitter.com/1.1/favorites/create.json', array('id' => $tweet_id));\n return $favorite;\n }", "public function store(Request $request)\n {\n //store favourite book to favourite list\n\n // $favourite=new Favourite ;\n // $favourite->book_id =$request->bookID;\n // $favourite->user_id=Auth::id();\n // if(Favourite::where('user_id LIKE' . Auth::id() .' and book_id LIKE '.$request->book_id) {\n \n // } else {\n // $favourite->save();\n // }\n \n $favourite=Favourite::firstOrNew(['book_id' => $request->bookID , 'user_id'=> Auth::id()]);\n // $favourite->book_id =$request->bookID;\n // $favourite->user_id=Auth::id();\n $favourite->save();\n \n //redirect\n return redirect()->route('home');\n }", "public function store(Request $request)\n {\n $model = new FavoritesModel();\n $model->id = UUID::generate();\n $model->users_id = $request->input('users_id');\n $model->news_id = $request->input('news_id');\n if($model->save()){\n return Common::returnErrorResult(200,'收藏成功','');\n }\n else{\n return Common::returnErrorResult(400,'传参错误','');\n }\n // $result = \\Auth::user()->favorites()->attach($request->get('news_id'));\n }", "public function run()\n {\n \n\n \\DB::table('favorites')->delete();\n \n \\DB::table('favorites')->insert(array (\n 0 => \n array (\n 'id' => 3,\n 'food_id' => 1,\n 'user_id' => 18,\n 'created_at' => '2019-08-30 15:31:52',\n 'updated_at' => '2019-08-30 15:31:53',\n ),\n 1 => \n array (\n 'id' => 14,\n 'food_id' => 2,\n 'user_id' => 18,\n 'created_at' => '2019-10-09 12:42:45',\n 'updated_at' => '2019-10-09 12:42:45',\n ),\n 2 => \n array (\n 'id' => 15,\n 'food_id' => 2,\n 'user_id' => 19,\n 'created_at' => '2019-10-15 15:30:23',\n 'updated_at' => '2019-10-15 15:30:23',\n ),\n 3 => \n array (\n 'id' => 16,\n 'food_id' => 3,\n 'user_id' => 1,\n 'created_at' => '2019-10-17 22:22:26',\n 'updated_at' => '2019-10-17 22:22:26',\n ),\n 4 => \n array (\n 'id' => 25,\n 'food_id' => 1,\n 'user_id' => 1,\n 'created_at' => '2019-10-18 12:40:22',\n 'updated_at' => '2019-10-18 12:40:22',\n ),\n ));\n \n \n }", "public function favorites($user, $options = []);", "function addconfig_to_favoritesAction()\n\t{\n\t\t$session = Mage::getSingleton('customer/session');\n\t\t $this->_customerId = $session->getCustomer()->getId();\n\t\t $list = Mage::getModel('amlist/list');\n\t \t $listId = $this->getRequest()->getParam('list');\n\t\t $post = $this->getRequest()->getPost();\n\t\t $products = $post['product'];\n\t\t if (!$listId){ //get default - last\n\t $listId = Mage::getModel('amlist/list')->getLastListId($this->_customerId);\n\t \t }\n\t \t if (!$listId) \n\t\t { \n\t\t //create new\n\t\t //print_r($post['selected_productid']);\n\t\t //exit;\n\t Mage::getSingleton('amlist/session')->setAddProductId($post['selected_productid']);\n\t\t Mage::getSingleton('amlist/session')->setAddAllProductId($products);\n\t $this->_redirect('amlist/list/edit/');\n\t return;\n\t }\n\t\t\tif($post['selected_productid'])\n\t\t\t{\n\t\t\t\t\n\t\t\t\tforeach($products as $_product)\n\t\t\t\t{\n\t\t\t\t\tif($post['selected_productid']==$_product[product]):\n\t\t\t\t\t\t$item = Mage::getModel('amlist/item')\n\t\t\t\t\t\t->setProductId($_product[product])\n\t\t\t\t\t\t->setListId($listId) \n\t\t\t\t\t\t->setQty($_product[qty])\n\t\t\t\t\t\t->setBuyRequest(serialize($_product));\n\t\t\t\t\t\t$item->save();\n\t\t\t\t\t\n\t\t\t\t\tendif;\n\t\t\t\t}\n\t\t\t\t Mage::getSingleton('core/session')->addSuccess($this->__('Product has been successfully added to the folder.'));\n\t\t\t\t $this->_redirectReferer();\n\t\t\t}\n\t}", "public function addfavcontrib($contrib, $client)\n {\n $this->_name = 'Favourite_contributor';\n\n $chkQuery = \"SELECT * FROM \" . $this->_name . \" WHERE client_id='\" . $client . \"' AND contrib_id='\" . $contrib . \"'\";\n\n if (($resultfav = $this->getQuery($chkQuery, true)) != NULL) {\n $wherefav = \"client_id='\" . $client . \"' AND contrib_id='\" . $contrib . \"' \";\n\n $remfav = array();\n $remfav[\"status\"] = 1;\n $this->updateQuery($remfav, $wherefav);\n } else {\n $adfav = array();\n $adfav[\"contrib_id\"] = $contrib;\n $adfav[\"client_id\"] = $client;\n $this->insertQuery($adfav);\n }\n }", "public static function favourite ( $type = 'create', $id = '' ) {\n\n\t\tif ( ! in_array($type, array('destroy', 'create'))) {\n\t\t\t$type = 'create';\n\t\t}\n\n\t\tstatic::api()->request('POST', static::api()->url('1.1/favorites/' . $type), array(\n\t\t\t'id' => $id,\n\t\t\t'include_entities' => false\n\t\t));\n\n\t\t$response = static::api()->response['response'];\n\t\t$code = static::api()->response['code'];\n\n\t\tif ($code === 200) {\n\t\t\treturn json_decode($response, false, 512, JSON_BIGINT_AS_STRING);\n\t\t}\n\n\t\treturn false;\n\n\t}", "public static function favorite($id) {\n $token = Auth::getToken();\n $opts = [\n 'http' => [\n 'method' => 'POST',\n 'header' => \"Authorization: bearer $token\"\n . \"\\r\\nContent-type: application/x-www-form-urlencoded\"\n . \"\\r\\nUser-Agent: twiddit:v0.1 (by /u/Zolokar)\",\n 'content' => \"id=$id\"\n ]\n ];\n\n $context = stream_context_create($opts);\n file_get_contents('https://oauth.reddit.com/api/save', false, $context);\n }", "public function favorite(Post $post)\n {\n if (Groupe::findOrFail($post->groupe_id)->is_member())\n return $post->favorited_users()->toggle(Auth::user());\n \n return response()->json(['message' => 'Not a member'], 200);\n /*if (empty($post->favorited_users()->find(Auth::id()))) {\n $post->favorited_users()->attach(Auth::id());\n return response()->json(['message' => 'Le post a été aimé avec succès'], 200);\n } else {\n DB::table('favorises')->where('compte_id', Auth::id())->where('post_id', $post->id)->delete();\n return response()->json(['message' => 'Le post a été - avec succès'], 200);\n }*/\n }", "public function show(UserFavorite $userFavorite)\n {\n //\n return $userFavorite;\n }", "public function run()\n {\n DB::table('favorites')->insert([\n [\n 'CARNO' => 'Z12-123456',\n 'user_id' => 1,\n 'created_at' => new DateTime(),\n ],\n ]);\n }", "function updateFavorites() {\n try {\n $favorites_table = TABLE_PREFIX . 'favorites';\n $starred_objects_table = TABLE_PREFIX . 'starred_objects';\n $project_objects_table = TABLE_PREFIX . 'project_objects';\n\n // Starred objects\n $rows = DB::execute(\"SELECT DISTINCT $project_objects_table.type AS 'parent_type', $project_objects_table.id AS 'parent_id', $starred_objects_table.user_id AS 'user_id' FROM $project_objects_table, $starred_objects_table WHERE $project_objects_table.id = $starred_objects_table.object_id\");\n\n if($rows) {\n $to_insert = array();\n\n foreach($rows as $row) {\n $to_insert[] = DB::prepare('(?, ?, ?)', $row['parent_type'], $row['parent_id'], $row['user_id']);\n } // foreach\n\n DB::execute(\"INSERT INTO $favorites_table (parent_type, parent_id, user_id) VALUES \" . implode(', ', $to_insert));\n } // if\n\n // Pinned projects to favorites\n $rows = DB::execute('SELECT project_id, user_id FROM ' . TABLE_PREFIX . 'pinned_projects');\n if($rows) {\n $to_insert = array();\n\n foreach($rows as $row) {\n $to_insert[] = DB::prepare(\"('Project', ?, ?)\", $row['project_id'], $row['user_id']);\n } // foreach\n\n DB::execute(\"INSERT INTO $favorites_table (parent_type, parent_id, user_id) VALUES \" . implode(', ', $to_insert));\n } // if\n\n // Drop old tables\n DB::execute(\"DROP TABLE $starred_objects_table\");\n DB::execute('DROP TABLE ' . TABLE_PREFIX . 'pinned_projects');\n\n return true;\n } catch(Exception $e) {\n return $e->getMessage();\n } // try\n }", "public function actionIndex()\n\t{\n\t\t// renders the view file 'protected/views/site/index.php'\n\t\t// using the default layout 'protected/views/layouts/main.php'\n\t\t\n\t\t$this->checkUser();\n\t\t$this->checkActivation();\n\t\t\n\t\t$user_id = Yii::app()->user->id;\n\t\t\n\t\t\n\t\t$cookie_favorite = Yii::app()->request->cookies['favorite']->value;\n\t\t$cookie_favorite = json_decode($cookie_favorite);\n\t\t\n\t\t$cookie_fav_wrap = array();\n\t\t\n\t\twhile ($fruit_name = current($cookie_favorite)) {\n\t\t if ($fruit_name == 1) {\n\t\t $cookie_fav_wrap[] = key($cookie_favorite);\n\t\t }\n\t\t next($cookie_favorite);\n\t\t}\n\t\t\n\t\tforeach($cookie_fav_wrap as $fav_item) {\n\t\t\t$favorite = Favorited::model()->findByAttributes(array('user_id' => $user_id, 'object_id' => $fav_item));\n\t\t\tif(!$favorite) {\n\t\t\t\t$record = new Favorited;\n\t\t\t\t$record->user_id = $user_id;\n\t\t\t\t$record->object_id = $fav_item;\n\t\t\t\t$record->save();\n\t\t\t}\n\t\t}\n\t\tunset(Yii::app()->request->cookies['favorite']);\n\t\t\t\n\t\t$order_dir = Yii::app()->request->getParam('dir', 'asc');\n\t\tif(!in_array($order_dir, array('desc','asc'))) {\n\t\t\t$order_dir = 'asc';\n\t\t}\n\t\t$order_field = Yii::app()->request->getParam('order', 'rooms');\n\t\tif(!in_array($order_field, array('rooms','square','cost'))) {\n\t\t\t$order_field = 'rooms';\n\t\t}\n\t\t\t\n\t\t$favorites = Favorited::model()->findAllByAttributes(array('user_id'=>Yii::app()->user->id));\n\t\t\n\t\t$favarray = array();\n\t\t\n\t\tif($favorites) {\n\t\t\t\n\t\t\t$cookie_fav_wrap = array();\n\t\t\tforeach($favorites as $favorite) {\n\t\t\t\t$favarray[] = $favorite->object_id;\n\t\t\t\t$cookie_fav_wrap[$favorite->object_id] = true;\n\t\t\t}\n\t\t\t$cookie_favorite = json_encode($cookie_fav_wrap);\n\t\t\t\n\t\t\t$cookie = new CHttpCookie('favorite',$cookie_favorite);\n\t\t\t\n\t\t\t$cookie->expire = time() + 2592000;\n\t\t\tYii::app()->request->cookies['favorite'] = $cookie;\n\t\t}\n\t\t\n\t\t\n\t\tforeach($favorites as $fav) {\n\t\t\t$faved = Estate::model()->findByAttributes(array('id'=>$fav->object_id));\n\t\t\tif(!$faved)\t\n\t\t\t\t$fav->delete();\n\t\t}\t\n\n\t\t\t\n\t\t$flats = Estate::model()->findAllByAttributes(array('user_id'=>Yii::app()->user->id),array('order'=>$order_field.' '.$order_dir));\n\t\t\n\t\t$this->render('index',array('flats'=>$flats, 'favarray'=>$favarray,'order_field'=>$order_field,'order_dir'=>$order_dir));\n\t}", "function bp_activity_action_favorites_feed() {\n\tif ( ! bp_is_user_activity() || ! bp_is_current_action( 'favorites' ) || ! bp_is_action_variable( 'feed', 0 ) ) {\n\t\treturn false;\n\t}\n\n\t// get displayed user's favorite activity IDs\n\t$favs = bp_activity_get_user_favorites( bp_displayed_user_id() );\n\t$fav_ids = implode( ',', (array) $favs );\n\n\t// setup the feed\n\tbuddypress()->activity->feed = new BP_Activity_Feed( array(\n\t\t'id' => 'favorites',\n\n\t\t/* translators: User activity favorites RSS title - \"[Site Name] | [User Display Name] | Favorites\" */\n\t\t'title' => sprintf( __( '%1$s | %2$s | Favorites', 'buddypress' ), bp_get_site_name(), bp_get_displayed_user_fullname() ),\n\n\t\t'link' => bp_displayed_user_domain() . bp_get_activity_slug() . '/favorites/',\n\t\t'description' => sprintf( __( \"Activity feed of %s's favorites.\", 'buddypress' ), bp_get_displayed_user_fullname() ),\n\t\t'activity_args' => 'include=' . $fav_ids\n\t) );\n}", "public function created(User $user)\n {\n //Creating default bookmark for registered user\n $this->folderRepository->create(\n [\n 'name' => 'Favorites',\n 'user_id' => $user->id,\n ]\n );\n }", "protected function createUserFoods()\n\t{\n\t\t$userFoods = [\n\t\t\t[\n\t\t\t\t'user_id' => 1,\n\t\t\t\t'meal_time' => '4',\n\t\t\t\t'food_type' => 'Vegetables',\n\t\t\t\t'food_name' => 'Foodin',\n\t\t\t\t'food_calories' => 545,\n\t\t\t\t'food_fat' => 44,\n\t\t\t\t'food_carbs' => 36,\n\t\t\t\t'food_protein' => 8,\n\t\t\t\t'food_serving' => 35,\n\t\t\t\t'date' => time()\n\t\t\t]\n\t\t];\n\n\t\tUserFood::insert($userFoods);\n\t}", "public function favorite($favid = '', $params = null)\n {\n if (is_array($favid) && $params == null)\n {\n $params = $favid;\n $favid = '';\n }\n $this->core->_appendUri('/favorite/%s', $favid);\n $this->core->_setParamList($params);\n }", "public function store(Request $request)\n {\n if (Favorite::where(['entity_id' => $request->post_id, 'user_id' => $request->user_id])->first()) {\n return response('', 204);\n }\n $favorite = new Favorite();\n $favorite->user_id = $request->user_id;\n $favorite->entity_id = $request->post_id;\n $favorite->save();\n return response('OK');\n\n }", "public function actionAdd_favorite() {\n\n if (Yii::app()->request->isAjaxRequest) {\n $model = new ResumeFavorite;\n\n $data = json_decode($_POST['data']);\n //\n $model->user_id = Yii::app()->user->id;\n $model->resume_id = $_POST['reid'];\n $model->music = $data->music;\n $model->tvshow = $data->tvshow;\n $model->movie = $data->movie;\n $model->quote = $data->quote;\n $model->book = $data->book;\n $model->website = $data->website;\n //\n if ($model->save()) {\n echo $model->id;\n } else {\n echo 0;\n }\n } else {\n echo 0;\n }\n }", "public function favorite($id)\n {\n // $user_id = Auth::user()->id;\n $favorite= Fav_property::whereUser_id(Auth::user()->id)->whereProperty_id($id)->get();\n if ($favorite->count() == 0) {\n $fav = new Fav_property();\n $fav->user_id = Auth::user()->id; \n $fav->property_id = $id;\n $fav->save();\n return 1;\n }else{\n $favorite[0]->delete();\n return 0;\n }\n // return return response()->json(\"success\", 200);\n }", "public function store(Request $request)\n {\n $user = Auth::user();\n $product_id=request('id');\n $favourite=Favourite::where('user_id',$user->id)->where('product_id',$product_id)->first();\n if(!$favourite){\n $favourite=new Favourite();\n $favourite->user_id=$user->id;\n $favourite->product_id=$product_id;\n $favourite->save();\n }\n $product=Product::find($product_id);\n NotificationController::add_notification($product->user_id,'تم اضافة المنتج '. $product->name .' إلى قائمة إعجاب أحد المستخدمين',\"#\");\n\n }", "public function insert_kosfav( $data,$table)\n {\n \n $this->db->insert('wishlist',$data);\n \n }", "public function edit(Favorite $favorite)\n {\n //\n }", "public function favorite(Request $request)\n\t{\n\t\t// Ajax request so no debugbar on the response\n\t\t\\Debugbar::disable();\n\t\t\n\t\t// Check if it exists, cause we're going to undo it if it's there\n\t\t$favorite = Favorite::where('user_id', '=', Auth::user()->id)->where('listing_id', '=', $request->listing_id)->first();\n\t\t\n\t\tif(isset($favorite)){\n\t\t\t// Delete it\n\t\t\t$favorite->delete();\n\t\t} else {\n\t\t\t// Add it\n\t\t\t$favorite = new Favorite();\n\t\t\t$favorite->listing_id = $request->listing_id;\n\t\t\t$favorite->user_id = Auth::user()->id;\n\t\t\t$favorite->save();\n\t\t}\n\t\t\n\t\treturn 200;\n\t}", "public function create(Request $request)\n {\n $pid = $request->product_id;\n $bid = $request->buyer_id;\n Favorite::updateOrCreate(['buyer_id' => $bid, 'product_id' => $pid], [\n 'buyer_id' => $bid,\n 'product_id' => $pid\n ]);\n return $this->send_response(true, [], 200, 'Product added to your favorites');\n }", "public function Favourite(Request $request)\n {\n if(auth()->check()){\n $products = Products::where('id',$request->product_id)->first();\n if($products){\n $favourite = Favourite::where('product_id',$request->product_id)->where('type',$products->type)->where('user_id',auth()->id())->first();\n if($favourite){\n $favourite->delete();\n return response()->json('2');\n }else{\n Favourite::create([\n 'product_id' => $request->product_id,\n 'type' => $products->type,\n 'user_id' => auth()->id(),\n ]);\n return response()->json('1');\n }\n }\n }else{\n session()->flash('error', trans(\"admin.must_login\"));\n return redirect()->back();\n }\n\n }", "function ciniki_poma_favItemDelete(&$ciniki, $tnid, $args) {\n \n //\n // Check args\n //\n if( !isset($args['object']) || $args['object'] == '' ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.poma.29', 'msg'=>'No item specified.'));\n }\n if( !isset($args['object_id']) || $args['object_id'] < 1 || $args['object_id'] == '' ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.poma.30', 'msg'=>'No item specified.'));\n }\n if( !isset($args['customer_id']) || $args['customer_id'] < 1 ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.poma.31', 'msg'=>'No customer specified.'));\n }\n\n //\n // Check if item already exists as a fav\n //\n $strsql = \"SELECT id, uuid, status \"\n . \"FROM ciniki_poma_customer_items \"\n . \"WHERE tnid = '\" . ciniki_core_dbQuote($ciniki, $tnid) . \"' \"\n . \"AND customer_id = '\" . ciniki_core_dbQuote($ciniki, $args['customer_id']) . \"' \"\n . \"AND itype = 20 \"\n . \"AND object = '\" . ciniki_core_dbQuote($ciniki, $args['object']) . \"' \"\n . \"AND object_id = '\" . ciniki_core_dbQuote($ciniki, $args['object_id']) . \"' \"\n . \"\";\n $rc = ciniki_core_dbHashQuery($ciniki, $strsql, 'ciniki.poma', 'item');\n if( $rc['stat'] != 'ok' ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.poma.32', 'msg'=>'Unable to add favourite.', 'err'=>$rc['err']));\n }\n //\n // Remove the favourite, and if multiple rows due to bug, remove all rows\n //\n if( isset($rc['rows']) && count($rc['rows']) > 0 ) {\n foreach($rc['rows'] as $row) {\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'objectDelete');\n $rc = ciniki_core_objectDelete($ciniki, $tnid, 'ciniki.poma.customeritem', $row['id'], $row['uuid'], 0x07);\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n }\n }\n\n return array('stat'=>'ok');\n}", "public function user_favorites() {\n\t\t\tif ($this->request->is('get')) {\n\t\t\t\t$user_id = $_GET['user_id'];\n\n\t\t\t$tweet_favorites = ClassRegistry::init('tweets')->find('all', array('fields' => array('tweets.tweet,tweets.photo, tweets.created ,users_profiles.firstname, users_profiles.lastname,users_profiles.photo,users_profiles.user_id,users_profiles.handler,favorites.favorite,favorites.content_id,favorites.id ,favorites.user_id'),'order'=>'favorites.id DESC',\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'joins'=>array(\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t array('alias' => 'favorites', 'table' => 'favorites', 'type' => 'left', 'foreignKey' => false, 'conditions' => array('favorites.content_id = tweets.id ')),\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t array('alias' => 'users_profiles', 'table' => 'users_profiles', 'type' => 'left', 'foreignKey' => false, 'conditions' => array('tweets.user_id = users_profiles.user_id'))),\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'conditions'=>array('favorites.user_id ='.$user_id.' AND favorites.content_type=\"tweets\"')));\n\t\t\n\t\t$this->set('tweet_favorites',$tweet_favorites);\n\t\t\n\t\t/*user friends start*/\t\n\t$reqUser = ClassRegistry::init('connections')->find('all',array('fields'=>array('connections.friend_id,connections.user_id'),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'conditions'=>array('(connections.user_id='.$user_id.' OR connections.friend_id='.$user_id.') AND connections.request=1')));\n\t\t\t\n\t\tforeach ($reqUser as $rfid) {\n\t\t\t\tif ($rfid['connections']['friend_id'] != $user_id) {\n\t\t\t\t\t$comResult[] .= $rfid['connections']['friend_id'];\n\t\t\t\t}\n\t\t\t\tif ($rfid['connections']['user_id'] != $user_id) {\n\t\t\t\t\t$comResult[] .= $rfid['connections']['user_id'];\n\t\t\t\t} \n\t\t}\n\t\t/*user friends end*/\n\t\t\n\t\tif($comResult){\n\t\t\tif (sizeof($comResult)>1) {\n\t\t\t \t$result =@implode(',',$comResult);\n\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t\tforeach ($comResult as $key=>$value) {\n\t\t\t\t\t\t\t\t\t$result = $value;\n\t\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t$user_tweet_comments = ClassRegistry::init('Tweet_comment')->find('all', array('fields' => array('\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t Tweet_comment.tweet_comment,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t Tweet_comment.content_id,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t Tweet_comment.created,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t users_profiles.firstname,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t users_profiles.lastname,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t users_profiles.photo,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t users_profiles.handler,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t users_profiles.user_id,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t users_profiles.tags,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t favorites.favorite,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t favorites.content_id,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t favorites.id,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t favorites.user_id\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\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\t\t\t\t\t\t\t\t\t 'order'=>'Tweet_comment.id DESC',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'joins'=>array(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t array('alias' => 'favorites',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'table' => 'favorites',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type' => 'left',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'foreignKey' => false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'conditions' => array('Tweet_comment.id = favorites.content_id'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\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\t\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\t\t\t\t\t\t\t\t\t\t\t\t\t array('alias' => 'users_profiles',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'table' => 'users_profiles',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type' => 'left',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'foreignKey' => false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'conditions' => array('Tweet_comment.user_id = users_profiles.user_id'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\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\t\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\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\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\t\t\t\t\t\t\t\t\t\t\t\t\t\t array('Tweet_comment.user_id IN ('.$result.','.$user_id.')'),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'Tweet_comment.comment_type = \"tweets\"'),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'group' => 'Tweet_comment.id'\n\t\t\t\t\t\t\t\t\t\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\t\t\t\t\t\t );\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n \t\t\n\t\t$this->set('user_tweet_comments',$user_tweet_comments);\n\t\t}\n\t\t\n\t\t\t/*********************************** Retweeted tweets by user **********/\n\t$retweeted_tweets = ClassRegistry::init('tweets')->find('all',array('fields'=>array('tweets.parent_id,tweets.id,tweets.user_id,users_profiles.firstname, users_profiles.lastname, users_profiles.handler, users_profiles.user_id'),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'joins'=>array(array('alias' => 'users_profiles', 'table' => 'users_profiles', 'type' => 'left', 'foreignKey' => false, 'conditions' => array('tweets.user_id = users_profiles.user_id'))),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'conditions'=>array('tweets.parent_id !=0 AND tweets.status=2')));\n\t\t$this->set('retweeted_tweets',$retweeted_tweets);\n\t\t\n\t\t\n\t\t if ($user_id) {\n\t\t$favorites_on_Tweet = ClassRegistry::init('favorites')->find('all', array('fields'=>array('favorites.user_id,favorites.favorite,favorites.content_id'),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'order'=>'favorites.id',\n\t\t\t\t\t\t\t\t\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\t\t\t\t\t\t\t\t\t\t\t\t 'favorites.content_type=\"tweets\" AND favorites.user_id='.$user_id)));\n\n\t\t$this->set('favorites_on_Tweet',$favorites_on_Tweet);\n\t\t\n\t\t/*Tweet count for current user*/\n\t$tweets_count_added_user= ClassRegistry::init('tweets')->find('all',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tarray('conditions'=>array('tweets.user_id='.$user_id.' AND tweets.status=2')));\n\t\t\n\t$this->set('tweets_count_added_user',sizeof($tweets_count_added_user));\n\n\t\t\t\t\t/************************************** To show user following and followers ***********************/\n\t\t\t\t$userFollowings = ClassRegistry::init('users_followings')->find('all' ,array('fields'=>array('users_followings.id,users_followings.status, count(users_followings.following_id) as total_following'),'conditions'=>array('users_followings.user_id='.$user_id.' AND users_followings.following_type=\"users\" AND users_followings.status=2')));\n\t\t\n\t\t$userFollows = ClassRegistry::init('users_followings')->find('all' ,array('fields'=>array('users_followings.id,users_followings.status ,count(users_followings.user_id) as total_follow'),'conditions'=>array('users_followings.following_id='.$user_id.' AND users_followings.following_type=\"users\" AND users_followings.status=2')));\n\t\t\n\t\t\n\t\t$userFollowingsbyYou = $userFollowings[0][0];\n\t\t$userFollowingsbyYou = $userFollowingsbyYou['total_following'];\n\t\t$this->set('following',$userFollowingsbyYou);\n\t\t\n\t\t$userFollowYou = $userFollows[0][0];\n\t\t$userFollowYou = $userFollowYou['total_follow'];\n\t\t$this->set('followers',$userFollowYou);\t\t\n\t\t$this->set('userName',$this->userInfo['users_profiles']);\n\n\t\t }\n\t\t\n\t\t\n\t\t$this->autorender = false;\n\t $this->layout = false;\n\t $this->render('user_favorites');\n\t\t}\n\t}", "public function get_add_to_favorites($page_id)\n {\n if (Favorite::add($page_id))\n {\n return Redirect::to(\"page/{$page_id}\")->with('added', true);\n }\n return Response::error('500');\n }", "function add_item($table) {\n $item = mysql_real_escape_string($_POST['item']);\n if (isset($_POST['category'])) {\n $category = mysql_real_escape_string($_POST['category']);\n }\n else {\n $category = '0';\n }\n if ($table == \"Favorites\") {\n $sql = \"INSERT INTO $table (name, category, favorite) \n VALUES ('$item', $category, '1')\";\n }\n else {\n $sql = \"INSERT INTO $table (name, category) \n VALUES ('$item', $category)\";\n }\n\tmysql_query($sql);\n}", "public function show(Favorite $favorite)\n {\n //\n }", "public function favourites(){\n return $this->hasMany('App\\Favourite', 'user_id');\n }", "function favorites() {\n if ($this->getRequestMethod() != \"GET\") {\n $this->response('', 406);\n }\n $id = (int)$this->_request['user_id'];\n $auth = $this->getAuthorization();\n if (!$this->validateAuthorization($id, $auth)) {\n $this->response('', 400);\n }\n if ($id > 0) {\n $query = \"select * from favorites where user_id=$id;\"; \n $r = $this->conn->query($query) or die($this->conn->error.__LINE__);\n if($r->num_rows > 0) {\n $result = array();\n while ($row = $r->fetch_assoc()) {\n $result[] = $row;\n } \n $this->response(json_encode($result), 200); \n } else {\n $this->response('',204);\n }\n } else {\n $this->response('', 400);\n } \n }" ]
[ "0.68174607", "0.6816221", "0.680767", "0.66911525", "0.66699564", "0.65925646", "0.65797734", "0.65682685", "0.6556725", "0.655053", "0.65243995", "0.64799565", "0.6475596", "0.64518684", "0.63547343", "0.6354329", "0.63461024", "0.6319612", "0.6306823", "0.6298512", "0.627491", "0.62635565", "0.6262831", "0.62411493", "0.62311023", "0.62001073", "0.61809015", "0.61120015", "0.6079894", "0.6069047", "0.6039377", "0.6027979", "0.6021466", "0.59778565", "0.59749365", "0.5958474", "0.5931225", "0.593002", "0.58959246", "0.58493704", "0.583905", "0.58316344", "0.58287174", "0.5811674", "0.58008647", "0.57949823", "0.5791334", "0.57867455", "0.57805264", "0.5773206", "0.57599044", "0.5744081", "0.57397383", "0.5726194", "0.57223964", "0.56872237", "0.56792074", "0.56710386", "0.5655805", "0.5653472", "0.5646028", "0.5644891", "0.56413776", "0.5638716", "0.56303734", "0.5609859", "0.56059587", "0.55922973", "0.55845547", "0.55684566", "0.5562179", "0.55568826", "0.5547833", "0.5544884", "0.5539706", "0.5533519", "0.5528621", "0.5528512", "0.5517032", "0.5496377", "0.549319", "0.54904014", "0.5488877", "0.548001", "0.54794097", "0.5469854", "0.54693645", "0.54668546", "0.54589957", "0.5447714", "0.54407454", "0.5425665", "0.54214793", "0.5395432", "0.53938013", "0.538142", "0.5375665", "0.53725624", "0.5365891", "0.53525424" ]
0.65145314
11
This function gets the sales info of flavors from the database. This information is stored in an array that links the flavor's name and the amount purchased.
function getFlavorsSalesFromDB() { $con = mysql_connect("localhost", "DBandGUI", "narwhal"); if(!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("CustomCupcakes", $con) or die('Could not select db: ' . mysql_error()); $query = "SELECT flavor_Name,purchase_Amount FROM CupcakeFlavor;"; $result = mysql_query($query); $finalArr = array(); // This loop iterates over the results from the query and builds it into an array that will be returned later while($row = mysql_fetch_array($result)) { $finalArr[$row['flavor_Name']] = $row['purchase_Amount']; } mysql_close($con); return $finalArr; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function getFlavors()\r\n{\r\n return array(\"grasshopper\",\"maple\",\"carrot\", \"caramel\",\"velvet\",\"lemon\",\"tiramisu\");\r\n}", "public function print_flavors()\n {\n $flavors = $this->service->FlavorList();\n while($flavor = $flavors->Next()) {\n printf(\"%2d) Flavor %s has %dMB of RAM, %d vCPUs and %dGB of disk\\n\",\n $flavor->id, $flavor->name, $flavor->ram, $flavor->vcpus, $flavor->disk);\n }\n }", "function getFillingsSalesFromDB()\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t$query = \"SELECT filling_Name,purchase_Amount FROM CupcakeFilling;\";\n\n\t$result = mysql_query($query);\n\n\t$finalArr = array();\n\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$finalArr[$row['filling_Name']] = $row['purchase_Amount'];\n\t}\n\n\tmysql_close($con);\n\n\treturn $finalArr;\n}", "public function flavors()\n {\n return $this->belongsToMany('App\\Flavour')->withTimestamps();\n }", "public function allProduct($flower) {\n $result = $this->connection->query(\n \"SELECT p.ID id, p.name name, p.price price, p.availability availability,\n p.description description, COUNT(pu.ID) quantity\n FROM product p LEFT JOIN purchase pu ON (p.ID=pu.id_product)\n WHERE p.id_flower=$flower\n GROUP BY p.ID, p.name, p.price, p.availability, p.description;\"\n );\n return $result->fetchAll(PDO::FETCH_OBJ);\n }", "public function getFarmsFruits(){\n\t\t$url = 'http://www.vermontfresh.net/member-search/MemberSearchForm?Keywords=&ProductCategoryID=8&Categories%5B13%5D=13&RegionID=&action_doMemberSearch=Search';\n\t\treturn $this->parse_data($url);\n\t}", "public function getItemBreakdown() {\n echo 'Cone type: '.$this->coneType['name'].'- $'.number_format($this->coneType['price'], 2).\"\\n\";\n echo \"Flavors used:\\n\";\n foreach ($this->scoops as $scoop) {\n echo ' '.$scoop['name'].' - $'.number_format($scoop['price'], 2).\"\\n\";\n }\n echo \"\\n\\n\";\n }", "private function get_costing_finish_goods($costing_id){\n $costing = Costing::with(['style'])->find($costing_id);\n $product_feature = ProductFeature::find($costing->style->product_feature_id);\n $item = [];\n\n if($product_feature->count > 1){//has sfg items\n $list = DB::select(\"SELECT\n costing_sfg_item.costing_id,\n costing_fng_item.costing_fng_id,\n costing_fng_item.fng_id,\n item_master_fng.master_code AS fng_code,\n item_master_fng.master_description AS fng_description,\n org_color_fng.color_code AS fng_color_code,\n org_color_fng.color_name AS fng_color_name,\n costing_sfg_item.costing_sfg_id,\n costing_sfg_item.sfg_id,\n item_master_sfg.master_code AS sfg_code,\n item_master_sfg.master_description AS sfg_description,\n org_color_sfg.color_code AS sfg_color_code,\n org_color_sfg.color_name AS sfg_color_name,\n org_country.country_description\n FROM\n costing_sfg_item\n INNER JOIN costing_fng_item ON costing_fng_item.costing_fng_id = costing_sfg_item.costing_fng_id\n INNER JOIN item_master AS item_master_sfg ON item_master_sfg.master_id = costing_sfg_item.sfg_id\n INNER JOIN item_master AS item_master_fng ON item_master_fng.master_id = costing_fng_item.fng_id\n INNER JOIN org_country ON org_country.country_id = costing_sfg_item.country_id\n INNER JOIN org_color AS org_color_fng ON org_color_fng.color_id = costing_fng_item.fng_color_id\n INNEr JOIN org_color AS org_color_sfg ON org_color_sfg.color_id = costing_sfg_item.sfg_color_id\n WHERE costing_sfg_item.costing_id = ?\", [$costing_id]);\n }\n else {//no sfg items\n $list = DB::select(\"SELECT\n costing_fng_item.costing_id,\n costing_fng_item.costing_fng_id,\n costing_fng_item.fng_id,\n item_master.master_code AS fng_code,\n item_master.master_description AS fng_description,\n org_color.color_code AS fng_color_code,\n org_color.color_name AS fng_color_name,\n 0 AS costing_sfg_id,\n 0 AS sfg_id,\n '' AS sfg_code,\n '' AS sfg_description,\n '' AS sfg_color_code,\n '' AS sfg_color_name,\n org_country.country_description\n FROM\n costing_fng_item\n INNER JOIN item_master ON item_master.master_id = costing_fng_item.fng_id\n INNER JOIN org_country ON org_country.country_id = costing_fng_item.country_id\n INNER JOIN org_color ON org_color.color_id = costing_fng_item.fng_color_id\n WHERE costing_fng_item.costing_id = ?\", [$costing_id]);\n }\n\n return $list;\n }", "function getToppingsSalesFromDB()\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t$query = \"SELECT topping_Name,purchase_Amount FROM CupcakeTopping;\";\n\n\t$result = mysql_query($query);\n\n\t$finalArr = array();\n\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$finalArr[$row['topping_Name']] = $row['purchase_Amount'];\n\t}\n\n\tmysql_close($con);\n\n\treturn $finalArr;\n}", "function wcfmgs_group_manager_stats_box() {\r\n \tglobal $WCFM, $wpdb, $WCFMgs;\r\n \t\r\n \t$is_marketplace = wcfm_is_marketplace();\r\n\t\tif( !$is_marketplace ) return;\r\n \t\r\n \t$manager_vendors = $this->wcfmgs_group_manager_allow_vendors_list( array(0), $is_marketplace );\r\n \t\r\n \t$gross_sales = 0;\r\n \t$total_commission = 0;\r\n \t$total_products = 0;\r\n \t$total_item_sales = 0;\r\n \t\r\n \tif( $manager_vendors && is_array( $manager_vendors ) && !empty( $manager_vendors ) ) {\r\n \t\t// Getting Products\r\n\t\t\t$products_args = array(\r\n\t\t\t\t\t\t\t\t\t'posts_per_page' => -1,\r\n\t\t\t\t\t\t\t\t\t'offset' => 0,\r\n\t\t\t\t\t\t\t\t\t'category' => '',\r\n\t\t\t\t\t\t\t\t\t'category_name' => '',\r\n\t\t\t\t\t\t\t\t\t'orderby' => 'date',\r\n\t\t\t\t\t\t\t\t\t'order' => 'DESC',\r\n\t\t\t\t\t\t\t\t\t'include' => '',\r\n\t\t\t\t\t\t\t\t\t'exclude' => '',\r\n\t\t\t\t\t\t\t\t\t'meta_key' => '',\r\n\t\t\t\t\t\t\t\t\t'meta_value' => '',\r\n\t\t\t\t\t\t\t\t\t'post_type' => 'product',\r\n\t\t\t\t\t\t\t\t\t'post_mime_type' => '',\r\n\t\t\t\t\t\t\t\t\t'post_parent' => '',\r\n\t\t\t\t\t\t\t\t\t//'author'\t => get_current_user_id(),\r\n\t\t\t\t\t\t\t\t\t'post_status' => array('draft', 'pending', 'publish'),\r\n\t\t\t\t\t\t\t\t\t'suppress_filters' => 0 \r\n\t\t\t\t\t\t\t\t);\r\n\t\t\t$products_args = apply_filters( 'wcfm_products_args', $products_args );\r\n\t\t\t$wcfm_products_array = get_posts( $products_args );\r\n\t\t\t$total_products = count( $wcfm_products_array );\r\n\t\t\t\r\n \t\tforeach( $manager_vendors as $manager_vendor ) {\r\n \t\t\tif( $manager_vendor ) {\r\n\t\t\t\t\t$gross_sales += $WCFM->wcfm_vendor_support->wcfm_get_gross_sales_by_vendor( $manager_vendor );\r\n\t\t\t\t\t$total_commission += $WCFM->wcfm_vendor_support->wcfm_get_commission_by_vendor( $manager_vendor );\r\n\t\t\t\t\t$total_item_sales += $WCFM->wcfm_vendor_support->wcfm_get_total_sell_by_vendor( $manager_vendor );\r\n\t\t\t\t}\r\n \t\t}\r\n \t}\r\n \t\r\n \t?>\r\n\t\t<div class=\"wcfm_dashboard_stats\">\r\n\t\t\r\n\t\t <?php if ( apply_filters( 'wcfm_is_allow_orders', true ) && current_user_can( 'edit_shop_orders' ) ) { ?>\r\n\t\t\t\t<div class=\"wcfm_dashboard_stats_block\">\r\n\t\t\t\t\t<a href=\"<?php echo get_wcfm_orders_url(); ?>\">\r\n\t\t\t\t\t\t<span class=\"fa fa-currency\"><?php echo get_woocommerce_currency_symbol() ; ?></span>\r\n\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t<strong><?php echo wc_price( $gross_sales ); ?></strong><br />\r\n\t\t\t\t\t\t\t<?php _e( 'gross sales in last 7 days', 'wc-frontend-manager' ); ?>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</a>\r\n\t\t\t\t</div>\r\n\t\t\t<?php } ?>\r\n\t\t\r\n\t\t\t<?php if ( apply_filters( 'wcfm_is_allow_orders', true ) && current_user_can( 'edit_shop_orders' ) ) { ?>\r\n\t\t\t\t<?php\r\n\t\t\t\t$admin_fee_mode = false;\r\n\t\t\t\tif( $is_marketplace == 'wcfmmarketplace' ) {\r\n\t\t\t\t\tglobal $WCFMp;\r\n\t\t\t\t\tif (isset($WCFMp->wcfmmp_commission_options['commission_for'])) {\r\n\t\t\t\t\t\tif ($WCFMp->wcfmmp_commission_options['commission_for'] == 'admin') {\r\n\t\t\t\t\t\t\t$admin_fee_mode = true;\r\n\t\t\t\t\t\t\t$total_commission = $gross_sales - $total_commission;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t} elseif( $is_marketplace == 'wcmarketplace' ) {\r\n\t\t\t\t\tglobal $WCMp;\r\n\t\t\t\t\tif (isset($WCMp->vendor_caps->payment_cap['revenue_sharing_mode'])) {\r\n\t\t\t\t\t\tif ($WCMp->vendor_caps->payment_cap['revenue_sharing_mode'] == 'admin') {\r\n\t\t\t\t\t\t\t$admin_fee_mode = true;\r\n\t\t\t\t\t\t\t$total_commission = $gross_sales - $total_commission;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t} elseif( $is_marketplace == 'dokan' ) {\r\n\t\t\t\t\t$total_commission = $gross_sales - $total_commission;\r\n\t\t\t\t}\r\n\t\t\t\t?>\r\n\t\t\t\t<div class=\"wcfm_dashboard_stats_block\">\r\n\t\t\t\t\t<a href=\"<?php echo get_wcfm_orders_url( ); ?>\">\r\n\t\t\t\t\t\t<span class=\"fa fa-money\"></span>\r\n\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t<strong><?php echo wc_price( $total_commission ); ?></strong><br />\r\n\t\t\t\t\t\t\t<?php if( $admin_fee_mode ) { _e( 'admin fees in last 7 days', 'wc-frontend-manager' ); } else { _e( 'commission in last 7 days', 'wc-frontend-manager' ); } ?>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</a>\r\n\t\t\t\t</div>\r\n\t\t\t<?php } ?>\r\n\t\t\r\n\t\t\t<?php if ( current_user_can( 'edit_products' ) && apply_filters( 'wcfm_is_allow_manage_products', true ) ) { ?>\r\n\t\t\t\t<div class=\"wcfm_dashboard_stats_block\">\r\n\t\t\t\t\t<a href=\"<?php echo get_wcfm_products_url(); ?>\">\r\n\t\t\t\t\t\t<span class=\"fa fa-cubes\"></span>\r\n\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t<strong><?php echo $total_products; ?></strong><br />\r\n\t\t\t\t\t\t\t<?php _e( 'total products posted', 'wc-frontend-manager-groups-staffs' ); ?>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</a>\r\n\t\t\t\t</div>\r\n\t\t\t<?php } ?>\r\n\t\t\t\r\n\t\t\t<?php if ( apply_filters( 'wcfm_is_allow_orders', true ) && current_user_can( 'edit_shop_orders' ) ) { ?>\r\n\t\t\t\t<div class=\"wcfm_dashboard_stats_block\">\r\n\t\t\t\t\t<a href=\"<?php echo get_wcfm_orders_url(); ?>\">\r\n\t\t\t\t\t\t<span class=\"fa fa-cart-plus\"></span>\r\n\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t<?php printf( _n( \"<strong>%s item</strong><br />\", \"<strong>%s items</strong><br />\", $total_item_sales, 'wc-frontend-manager' ), $total_item_sales ); ?>\r\n\t\t\t\t\t\t\t<?php _e( 'sold in last 7 days', 'wc-frontend-manager' ); ?>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</a>\r\n\t\t\t\t</div>\r\n\t\t <?php } ?>\r\n\t\t</div>\r\n\t\t<div class=\"wcfm-clearfix\"></div>\r\n\t\t<?php\r\n }", "public function index(Flavor $flavor) {\n\n $flavorList = Flavor::latest()->get();\n\n return view('flavors.index', compact('flavorList'));\n }", "function femaleSizes(){\n\n $female_products= Product::where(\"sub_section\", \"female\")->get();\n\n $sizes_qty_array= [];\n\n $female_products->map(function($product) use (&$sizes_qty_array){\n\n $sizes_qty_array= \\array_merge($sizes_qty_array, \\json_decode($product->options, true));\n\n });\n\n // Loop through to get sizes only\n $sizes_array= [];\n\n foreach($sizes_qty_array as $size_qty){\n \\array_push($sizes_array, $size_qty[\"size\"]);\n }\n\n $sizes_collect= collect($sizes_array);\n\n $sizes_collect= $sizes_collect->unique();\n\n return response()->json($sizes_collect);\n\n }", "function getIcingsSalesFromDB()\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t$query = \"SELECT icing_Name,purchase_Amount FROM CupcakeIcing;\";\n\n\t$result = mysql_query($query);\n\n\t$finalArr = array();\n\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$finalArr[$row['icing_Name']] = $row['purchase_Amount'];\n\t}\n\n\tmysql_close($con);\n\n\treturn $finalArr;\n}", "public function getFeaturedbrand(){\n\t\t \n\t\t $collections = Mage::getModel('brand/brand')->getCollection()\n\t\t\t\t\t\t->addFieldToFilter('is_feature',1);\n\t\t\t\t\n\t\treturn $collections;\n\t }", "public function dbGetBrand()\n\t{\n\t\t// Return the Brand Names\n\t\treturn array(\"-\", \"Coke\", \"Coke Light\", \"Coke Zero\", \"Sprite\", \"Dr Pepper\", \"Fanta\");\n\t}", "public function show(Flavor $flavor)\n {\n return view('flavors.show', compact('flavor'));\n }", "public function get_featured_products()\n\t{\n\t\t$this->db->select('product.*, category.category_name, brand.brand_name')->from('product, category, brand')->where(\"product.product_status = 1 AND product.category_id = category.category_id AND product.brand_id = brand.brand_id AND product.featured = 1 AND product.product_balance > 0\")->order_by(\"created\", 'DESC');\n\t\t$query = $this->db->get('',8);\n\t\t\n\t\treturn $query;\n\t}", "public function getVariation()\n {\n return $this->db->get($this->product_variant);\n }", "function get_by_gender() {\n return $this->mysqli->query(\"SELECT * FROM `product_variations` JOIN `products` on `product_variations`.`product_id` = `products`.`product_id` WHERE 1 ORDER BY `gender`, `price` ASC\");\n }", "public function getAbleToDeliver()\n {\n\n $data = Order::where('IsTakeOut',1)\n ->where('IsDelivery',1)\n ->where('Status',6)\n //->join('orderitem', 'orderitem.OrderID', '=', 'orders.OrderID')\n // ->join('store', 'store.StoreID', '=', 'orders.StoreID')\n // ->join('meal', 'meal.MealID', '=', 'orderitem.MealID')\n // ->leftJoin('orderitemflavor', 'orderitem.OrderItemID', '=', 'orderitemflavor.OrderItemID')\n // ->leftJoin('flavor', 'orderitemflavor.FlavorID', '=', 'flavor.FlavorID')\n // ->leftJoin('flavortype', 'flavortype.FlavorTypeID', '=', 'flavor.FlavorTypeID')\n // ->select('*', 'orders.Memo', 'orderitem.OrderItemID', 'orders.DateTime as OrderDate')\n // ->orderBy('orders.OrderID', 'desc')\n ->get();\n\n\n if ($data->isEmpty()) {\n return \\response(\"\", 204);\n }\n\n \n $collection = collect();\n $flavors = null;\n $flavorsPrice = 0;\n $temp = null;\n $count = 0;\n\n $orders = $data->groupBy('OrderID');\n\n foreach ($orders as $order) {\n $items = collect();\n $count = 0;\n\n $orderItems = $order->groupBy('OrderItemID');\n\n foreach ($orderItems as $orderItem) {\n if ($count >= 3) {\n break;\n }\n\n $flavors = collect();\n $flavorsPrice = 0;\n \n foreach ($orderItem as $orderItemFlavor) {\n if ($orderItemFlavor->FlavorTypeID == null) {\n break;\n }\n\n $flavors->push(\n collect([\n 'flavorType' => $orderItemFlavor->FlavorTypeName,\n 'flavor' => $orderItemFlavor->FlavorName,\n ])\n );\n\n $flavorsPrice += $orderItemFlavor->ExtraPrice;\n }\n\n\n $temp = $orderItem[0];\n\n $items->push(\n collect([\n 'id' => $temp->OrderItemID,\n 'name' => $temp->MealName,\n 'memo' => $temp->Memo,\n 'quantity' => $temp->Quantity,\n 'mealPrice' => $temp->MealPrice,\n 'flavors' => $flavors,\n 'amount' => $temp->MealPrice + $flavorsPrice,\n ])\n );\n\n ++$count;\n }\n\n $collection->push(\n collect([\n 'id' => $temp->OrderID,\n 'orderNumber' => $temp->OrderNumber,\n 'store' => $temp->StoreName,\n 'status' => $temp->Status,\n 'orderDate' => $temp->OrderDate,\n 'estimatedTime' => $temp->EstimatedTime,\n 'orderMemo' => $temp->Memo,\n 'orderPrice' => $temp->Price,\n 'isTakeOut' => $temp->IsTakeOut,\n 'isDelivery' => $temp->IsDelivery,\n 'orderItems' => $items,\n 'serviceFee' => $temp->ServiceFee,\n 'destination' => $temp->Destination,\n 'totalAmount' => $temp->TotalAmount\n ])\n );\n }\n /* return collect([\n 'id' => $temp->OrderID,\n 'orderNumber' => $temp->OrderNumber,\n 'store' => $temp->StoreName,\n 'status' => $temp->Status,\n 'orderDate' => $temp->OrderDate,\n 'estimatedTime' => $temp->EstimatedTime,\n 'orderMemo' => $temp->Memo,\n 'orderPrice' => $temp->Price,\n 'isTakeOut' => $temp->IsTakeOut,\n 'orderItems' => $items,\n 'isDelivery' => $temp->IsDelivery,\n 'destination' => $temp->Destination,\n 'totalAmount' => $temp->TotalAmount\n ]);*/\n\n return response()->json($collection);\n\n }", "public function ListarIngredientesVendidos() \n{\n\tself::SetNames();\n\t$sql =\"SELECT \n\tproductos.codproducto, productos.producto, productos.codcategoria, productos.precioventa, productos.existencia, productos.stockminimo, categorias.nomcategoria, SUM(detalleventas.cantventa) as cantidad \n\tFROM\n\t(productos LEFT OUTER JOIN detalleventas ON productos.codproducto=detalleventas.codproducto) LEFT OUTER JOIN categorias ON \n\tcategorias.codcategoria=productos.codcategoria WHERE detalleventas.codproducto is not null GROUP BY productos.codproducto\";\n\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}", "public function getproduct_feathered()\n\t\t{\n\t\t\t$query = \"SELECT * FROM tbl_product WHERE type = '0'\";\n\t\t\t$result = $this->db->select($query);\n\t\t\treturn $result;\n\t\t}", "function getFavoritesFromDB($customerID)\n{\n\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\",$con) or die(\"Unable to select database: \" . mysql_error());\n\n\t$query = \"SELECT favorite_ID,cupcakeFlavor_ID,cupcakeIcing_ID,cupcakeFilling_ID,topping_ID FROM Favorites NATURAL JOIN Cupcakes NATURAL JOIN CupcakeToppings WHERE customer_ID='\" . $customerID . \"';\";\n\n\t$result = mysql_query($query);\n\n\t$resultArr = array();\n\n\t// Iterates over the results and builds the 2-D array for the results\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$resultArr[$row['favorite_ID']] = array(\n\t\t\t\"flavor\" => $row['cupcakeFlavor_ID'],\n\t\t\t\"icing\" => $row['cupcakeIcing_ID'],\n\t\t\t\"topping\" => $row['topping_ID'],\n\t\t\t\"filling\" => $row['cupcakeFilling_ID']\n\t\t);\n\t}\n\n\tmysql_close($con);\n\n\treturn $resultArr;\n}", "public function getShelf() {\n $fields = array(\"shelf\" => array(\n 'shelfHeader' => 'header',\n 'shelfMusic',\n 'shelfClassification' => \"searchCode\",\n )\n );\n $result = TingOpenformatMethods::parseFields($this->_getDetails(), $fields);\n\n return (is_array($result)) ? reset($result) : $result;\n }", "public function index()\n {\n\n $id = $this->fast_food_grocery->id;\n $catalogues = FoodCatalogue::all();\n\n $orders = $this->fast_food_grocery->order_details()->get();\n $sales = [];\n foreach($this->fast_food_grocery->order_details()->get() as $sales) {\n\n if ($sales->status == 'delivered') {\n\n $sales[] = $sales;\n\n }\n }\n // dd($sales);\n return view('dashboard.fast_food_grocery.home',compact(['orders','sales','catalogues']));\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 }", "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 }", "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 run()\n\t{\n\t\t// DB::table('suppliers')->truncate();\n\n\n\n\t\t$insert = [\n\t\t\t[\n\t\t\t'itemName' => 'Paracetamol', \n\t\t\t'Description' => ' It is commonly used for the relief of headaches and other minor aches and pains',\n\t\t\t'inStockQuantity'=>'100',\n\t\t\t'unitPrice'=>'3.5'\n\t\t\t],\n\t\t\t[\n\t\t\t'itemName' => 'Biogesic', \n\t\t\t'Description' => 'The most prescribed Headache and Fever brand that\\'s Effective and Safe.',\n\t\t\t'inStockQuantity'=>'200',\n\t\t\t'unitPrice'=>'4.5'\n\t\t\t],\n\t\t\t[\n\t\t\t'itemName' => 'Bioflu', \n\t\t\t'Description' => ' Relief of clogged nose, runny nose, postnasal drip, sneezing, headache, body aches & fever associated w/ common cold',\n\t\t\t'inStockQuantity'=>'50',\n\t\t\t'unitPrice'=>'13.5'\n\t\t\t],\n\t\t\t[\n\t\t\t'itemName' => 'Medicol', \n\t\t\t'Description' => 'Provides advance relief from intense headache and pain.',\n\t\t\t'inStockQuantity'=>'55',\n\t\t\t'unitPrice'=>'3.5'\n\t\t\t],\n\t\t\t[\n\t\t\t'itemName' => 'Test item no. 1', \n\t\t\t'Description' => 'default description for test item no. 1.',\n\t\t\t'inStockQuantity'=>'100',\n\t\t\t'unitPrice'=>'60'\n\t\t\t],\n\t\t\t[\n\t\t\t'itemName' => 'Test item no. 2', \n\t\t\t'Description' => 'default description for test item no. 2.',\n\t\t\t'inStockQuantity'=>'33',\n\t\t\t'unitPrice'=>'10'\n\t\t\t],\n\t\t\t[\n\t\t\t'itemName' => 'Test item no. 3', \n\t\t\t'Description' => 'default description for test item no. 4.',\n\t\t\t'inStockQuantity'=>'50',\n\t\t\t'unitPrice'=>'160'\n\t\t\t],\n\t\t\t[\n\t\t\t'itemName' => 'Test item no. 4', \n\t\t\t'Description' => 'default description for test item no. 4.',\n\t\t\t'inStockQuantity'=>'40',\n\t\t\t'unitPrice'=>'160'\n\t\t\t],\n\t\t\t[\n\t\t\t'itemName' => 'Test item no. 5', \n\t\t\t'Description' => 'default description for test item no. 5.',\n\t\t\t'inStockQuantity'=>'100',\n\t\t\t'unitPrice'=>'60'\n\t\t\t],\n\t\t\t[\n\t\t\t'itemName' => 'Test item no. 6', \n\t\t\t'Description' => 'default description for test item no. 6.',\n\t\t\t'inStockQuantity'=>'120',\n\t\t\t'unitPrice'=>'560'\n\t\t\t],\n\t\t\t[\n\t\t\t'itemName' => 'Test item no. 7', \n\t\t\t'Description' => 'default description for test item no. 7.',\n\t\t\t'inStockQuantity'=>'25',\n\t\t\t'unitPrice'=>'120'\n\t\t\t]\n\n\t\t];\n\n\n\n\t\t// Uncomment the below to run the seeder\n\t\tDB::table('tblItemList')->insert($insert);\n\t}", "public function getSupplierData(){\n\n\t\t$supperDataSQL = \"select * FROM\n\t\t\t\t\t\t(\n\t\t\t\t\t\t\tSELECT *,\n\t\t\t\t\t\t\t(SELECT COUNT(inward_id) FROM inward AS inw WHERE inw.legal_entity_id=l.legal_entity_id) AS 'TotalGRN'\n\t\t\t\t\t\t\tFROM legal_entities AS l\n\t\t\t\t\t\t\tWHERE legal_entity_type_id='1002' AND is_posted=0\n\t\t\t\t\t\t) AS innertbl WHERE TotalGRN>0\";\n\n\t\t$supperData = DB::select(DB::raw($supperDataSQL));\n\n\t\t/*$supperData = DB::table('legal_entities_live')\n\t\t\t\t\t->where(\"legal_entity_type_id\",\"=\",\"1002\")\n\t\t\t\t\t->where('is_posted', '=', '0')\n\t\t\t\t\t->get();*/\n\n\t\treturn $supperData;\n\n\t}", "public function getAllSalesMan(){\n\t\t$sql = \"SELECT * FROM vendedor\";\n\t\treturn $this->Model->getData($sql);\n\t}", "public function selectAllFish()\n {\n\n $result = $this->conn->query('SELECT * FROM fishes');\n return ( $result->num_rows > 0 ? $result->fetch_all(MYSQLI_ASSOC) : [] );\n\n }", "public function providerDiscountPurchases()\r\n\t{\r\n\t\t$appleProduct = $this->getAppleProduct(self::PRODUCT_WITH_DISCOUNT_PRICE);\r\n\t\t$lightProduct = $this->getLightProduct(self::PRODUCT_WITH_DISCOUNT_PRICE);\r\n\t\t$starshipProduct = $this->getStarshipProduct(self::PRODUCT_WITH_DISCOUNT_PRICE);\r\n\r\n\t\treturn array(\r\n\t\t\tarray(\r\n\t\t\t\t7.0 * self::PRODUCT_APPLE_DISCOUNT_PRICE,\r\n\t\t\t\tarray(\r\n\t\t\t\t\tnew ProductToPurchase($appleProduct, 7.0),\r\n\t\t\t\t),\r\n\t\t\t),\r\n\t\t\tarray(\r\n\t\t\t\t5 * self::PRODUCT_LIGHT_PRICE + 8.0 * self::PRODUCT_APPLE_DISCOUNT_PRICE,\r\n\t\t\t\tarray(\r\n\t\t\t\t\tnew ProductToPurchase($lightProduct, 5),\r\n\t\t\t\t\tnew ProductToPurchase($appleProduct, 8.0),\r\n\t\t\t\t),\r\n\t\t\t),\r\n\t\t\tarray(\r\n\t\t\t\t4 * self::PRODUCT_STARSHIP_PRICE,\r\n\t\t\t\tarray(\r\n\t\t\t\t\tnew ProductToPurchase($starshipProduct, 6)\r\n\t\t\t\t),\r\n\t\t\t),\r\n\t\t);\r\n\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 index()\n {\n return json_encode(Ingredient::all());\n }", "static function getRestaurantReservationRevenue($id)\n {\n //lay ra cac san pham trong mot bar reservation\n $product_items =RestaurantTotalReportDB::get_reservation_product($id);\n //System::debug($product_items);\n $total_discount = 0;\n\t\t$total_price = 0;\n $product_for_report = array();\n $product_for_report['product']['original_price'] = 0;\n $product_for_report['product']['real_price'] = 0;\n $product_for_report['is_processed']['real_price'] = 0;\n $product_for_report['is_processed']['original_price'] = 0;\n $product_for_report['service']['real_price'] = 0;\n $product_for_report['service']['original_price'] = 0;\n foreach($product_items as $key=>$value)\n\t\t{\n\t\t\tif($value['is_processed'] == 1 and $value['type'] != 'SERVICE')\n {\n\t\t\t\t$ttl = $value['price']*($value['quantity'] - $value['quantity_discount']);\n\t\t\t\t$discnt = ($ttl*$value['discount_category']/100) + (($ttl*(100-$value['discount_category'])/100)*$value['discount_rate']/100);\n\t\t\t\t$total_discount += $discnt;\n\t\t\t\tif($ttl<0)\n {\n\t\t\t\t\t$ttl = 0;\n\t\t\t\t}\n\t\t\t\t$total_price += $ttl-$discnt;\n $product_for_report['is_processed']['original_price'] += $value['original_price'];\n $product_for_report['is_processed']['real_price'] += $ttl-$discnt;\n\t\t\t}\n if($value['is_processed'] == 0 and $value['type'] != 'SERVICE')\n {\n\t\t\t\t$ttl = $value['price']*($value['quantity'] - $value['quantity_discount']);\n\t\t\t\t$discnt = ($ttl*$value['discount_category']/100) + (($ttl*(100-$value['discount_category'])/100)*$value['discount_rate']/100);\n\t\t\t\t$total_discount += $discnt;\n\t\t\t\tif($ttl<0)\n {\n\t\t\t\t\t$ttl = 0;\n\t\t\t\t}\n\t\t\t\t$total_price += $ttl-$discnt;\n $product_for_report['product']['original_price'] += $value['original_price'];\n $product_for_report['product']['real_price'] += $ttl-$discnt;\t\n\t\t\t}\n if($value['type'] == 'SERVICE')\n {\n $ttl = $value['price']*($value['quantity'] - $value['quantity_discount']);\n\t\t\t\t$discnt = ($ttl*$value['discount_category']/100) + (($ttl*(100-$value['discount_category'])/100)*$value['discount_rate']/100);\n\t\t\t\t$total_discount += $discnt;\n\t\t\t\tif($ttl<0)\n {\n\t\t\t\t\t$ttl = 0;\n\t\t\t\t}\n\t\t\t\t$total_price += $ttl-$discnt;\n $product_for_report['service']['original_price'] += $value['original_price'];\n $product_for_report['service']['real_price'] += $ttl-$discnt;\t\n }\n\t\t}\n return $product_for_report;\n }", "public function index()\n {\n $saledProducts = DB::table('sales')->orderBy('id', 'desc')\n ->select('id','sku', 'product_name', 'sale_date', 'product_qty')\n ->get();\n\n return $saledProducts->toArray();\n }", "public function getTotalsForDisplay()\n {\n $vouchers = $this->getVouchers();\n if (empty($vouchers)) {\n return array();\n }\n\n $fontSize = $this->getFontSize() ? $this->getFontSize() : 7;\n\n $total = array();\n foreach ($vouchers as $voucher) {\n $salePriceInclVat = $voucher['emag_sale_price'] + $voucher['emag_sale_price_vat'];\n\n $total[] = array(\n 'label' => $voucher['emag_voucher_name'] . ':',\n 'amount' => $this->getOrder()->formatPriceTxt($salePriceInclVat),\n 'font_size' => $fontSize,\n );\n }\n\n return $total;\n }", "function getServiceDetail(){\n $serviceData = DB::table('servicing')\n ->get();\n return $serviceData;\n }", "function viewNormal(){\n $sql = \"select * from goods where gd_variation=:gd_variation order by gd_id ASC limit $this->start, $this->limit\";\n $args = [':gd_variation'=>$this->gd_variation];\n return $this->run($sql, $args);\n }", "public function store(FlowerVariety $flower_variety, StoreFlowerVarietySource $request)\n {\n $sources = [];\n\n DB::transaction(function () use ($flower_variety, $request, &$sources) {\n foreach ($request->all() as $record) {\n if (array_key_exists('vendor_id', $record) && !is_null($record['vendor_id'])) {\n $vendor = $this->getVendor($record['vendor_id']);\n } else {\n $vendor = $this->createVendor($record['vendor_name']);\n }\n\n // Create a new flower variety source\n $source = new FlowerVarietySource;\n $source->cost = $record['cost'];\n $source->stems_per_bunch = $record['stems_per_bunch'];\n $source->account()->associate(Auth::user()->account);\n $source->variety()->associate($flower_variety);\n $source->vendor()->associate($vendor);\n $source->save();\n\n array_push($sources, $source);\n }\n });\n\n return response()->json($sources);\n }", "function getProductVariantsShopify($id) {\n\n try {\n $client = HttpClient::create();\n $response = $client->request('GET', shopifyApiurl . 'variants/'.$id.'.json');\n } catch (\\Exception $e) {\n var_dump($e);\n }\n\n return new Response($response->getContent());\n }", "public function getAllFish(Request $request){\n $fishs = Fishs::all();\n\n return $this->response(200, ['fishs' => $fishs]);\n }", "function drush_sandwich_spreads_status() {\n return array(\n 'ketchup' => array(\n 'name' => 'Ketchup',\n 'description' => 'Some say its a vegetable, but we know its a sweet spread.',\n 'available' => '7',\n 'taste' => 'sweet',\n ),\n 'mayonnaise' => array(\n 'name' => 'Mayonnaise',\n 'description' => 'A nice dairy-free spead.',\n 'available' => '12',\n 'taste' => 'creamy',\n ),\n 'mustard' => array(\n 'name' => 'Mustard',\n 'description' => 'Pardon me, but could you please pass that plastic yellow bottle?',\n 'available' => '8',\n 'taste' => 'tangy',\n ),\n 'pickles' => array(\n 'name' => 'Pickles',\n 'description' => 'A necessary part of any sandwich that does not taste terrible.',\n 'available' => '63',\n 'taste' => 'tasty',\n ),\n );\n}", "public function products()\n {\n // api call to shopify\n// try {\n// $request = $this->client->get($this->url);\n// $response = $request->getBody();\n\n $response = array(\n 0 =>\n array(\n 'id' => 799,\n 'name' => 'Ship Your Idea',\n 'slug' => 'ship-your-idea-22',\n 'permalink' => 'https://example.com/product/ship-your-idea-22/',\n 'date_created' => '2017-03-23T17:03:12',\n 'date_created_gmt' => '2017-03-23T20:03:12',\n 'date_modified' => '2017-03-23T17:03:12',\n 'date_modified_gmt' => '2017-03-23T20:03:12',\n 'type' => 'variable',\n 'status' => 'publish',\n 'featured' => false,\n 'catalog_visibility' => 'visible',\n 'description' => '<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>\n',\n 'short_description' => '<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>\n',\n 'sku' => '',\n 'price' => '',\n 'regular_price' => '',\n 'sale_price' => '',\n 'date_on_sale_from' => NULL,\n 'date_on_sale_from_gmt' => NULL,\n 'date_on_sale_to' => NULL,\n 'date_on_sale_to_gmt' => NULL,\n 'price_html' => '',\n 'on_sale' => false,\n 'purchasable' => false,\n 'total_sales' => 0,\n 'virtual' => false,\n 'downloadable' => false,\n 'downloads' =>\n array(),\n 'download_limit' => -1,\n 'download_expiry' => -1,\n 'external_url' => '',\n 'button_text' => '',\n 'tax_status' => 'taxable',\n 'tax_class' => '',\n 'manage_stock' => false,\n 'stock_quantity' => NULL,\n 'stock_status' => 'instock',\n 'backorders' => 'no',\n 'backorders_allowed' => false,\n 'backordered' => false,\n 'sold_individually' => false,\n 'weight' => '',\n 'dimensions' =>\n array(\n 'length' => '',\n 'width' => '',\n 'height' => '',\n ),\n 'shipping_required' => true,\n 'shipping_taxable' => true,\n 'shipping_class' => '',\n 'shipping_class_id' => 0,\n 'reviews_allowed' => true,\n 'average_rating' => '0.00',\n 'rating_count' => 0,\n 'related_ids' =>\n array(\n 0 => 31,\n 1 => 22,\n 2 => 369,\n 3 => 414,\n 4 => 56,\n ),\n 'upsell_ids' =>\n array(),\n 'cross_sell_ids' =>\n array(),\n 'parent_id' => 0,\n 'purchase_note' => '',\n 'categories' =>\n array(\n 0 =>\n array(\n 'id' => 9,\n 'name' => 'Clothing',\n 'slug' => 'clothing',\n ),\n 1 =>\n array(\n 'id' => 14,\n 'name' => 'T-shirts',\n 'slug' => 't-shirts',\n ),\n ),\n 'tags' =>\n array(),\n 'images' =>\n array(\n 0 =>\n array(\n 'id' => 795,\n 'date_created' => '2017-03-23T14:03:08',\n 'date_created_gmt' => '2017-03-23T20:03:08',\n 'date_modified' => '2017-03-23T14:03:08',\n 'date_modified_gmt' => '2017-03-23T20:03:08',\n 'src' => 'https://example.com/wp-content/uploads/2017/03/T_4_front-11.jpg',\n 'name' => '',\n 'alt' => '',\n ),\n 1 =>\n array(\n 'id' => 796,\n 'date_created' => '2017-03-23T14:03:09',\n 'date_created_gmt' => '2017-03-23T20:03:09',\n 'date_modified' => '2017-03-23T14:03:09',\n 'date_modified_gmt' => '2017-03-23T20:03:09',\n 'src' => 'https://example.com/wp-content/uploads/2017/03/T_4_back-10.jpg',\n 'name' => '',\n 'alt' => '',\n ),\n 2 =>\n array(\n 'id' => 797,\n 'date_created' => '2017-03-23T14:03:10',\n 'date_created_gmt' => '2017-03-23T20:03:10',\n 'date_modified' => '2017-03-23T14:03:10',\n 'date_modified_gmt' => '2017-03-23T20:03:10',\n 'src' => 'https://example.com/wp-content/uploads/2017/03/T_3_front-10.jpg',\n 'name' => '',\n 'alt' => '',\n ),\n 3 =>\n array(\n 'id' => 798,\n 'date_created' => '2017-03-23T14:03:11',\n 'date_created_gmt' => '2017-03-23T20:03:11',\n 'date_modified' => '2017-03-23T14:03:11',\n 'date_modified_gmt' => '2017-03-23T20:03:11',\n 'src' => 'https://example.com/wp-content/uploads/2017/03/T_3_back-10.jpg',\n 'name' => '',\n 'alt' => '',\n ),\n ),\n 'attributes' =>\n array(\n 0 =>\n array(\n 'id' => 6,\n 'name' => 'Color',\n 'position' => 0,\n 'visible' => false,\n 'variation' => true,\n 'options' =>\n array(\n 0 => 'Black',\n 1 => 'Green',\n ),\n ),\n 1 =>\n array(\n 'id' => 0,\n 'name' => 'Size',\n 'position' => 0,\n 'visible' => true,\n 'variation' => true,\n 'options' =>\n array(\n 0 => 'S',\n 1 => 'M',\n ),\n ),\n ),\n 'default_attributes' =>\n array(),\n 'variations' =>\n array(),\n 'grouped_products' =>\n array(),\n 'menu_order' => 0,\n 'meta_data' =>\n array(),\n '_links' =>\n array(\n 'self' =>\n array(\n 0 =>\n array(\n 'href' => 'https://example.com/wp-json/wc/v3/products/799',\n ),\n ),\n 'collection' =>\n array(\n 0 =>\n array(\n 'href' => 'https://example.com/wp-json/wc/v3/products',\n ),\n ),\n ),\n ),\n 1 =>\n array(\n 'id' => 794,\n 'name' => 'Premium Quality',\n 'slug' => 'premium-quality-19',\n 'permalink' => 'https://example.com/product/premium-quality-19/',\n 'date_created' => '2017-03-23T17:01:14',\n 'date_created_gmt' => '2017-03-23T20:01:14',\n 'date_modified' => '2017-03-23T17:01:14',\n 'date_modified_gmt' => '2017-03-23T20:01:14',\n 'type' => 'simple',\n 'status' => 'publish',\n 'featured' => false,\n 'catalog_visibility' => 'visible',\n 'description' => '<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>\n',\n 'short_description' => '<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>\n',\n 'sku' => '',\n 'price' => '21.99',\n 'regular_price' => '21.99',\n 'sale_price' => '',\n 'date_on_sale_from' => NULL,\n 'date_on_sale_from_gmt' => NULL,\n 'date_on_sale_to' => NULL,\n 'date_on_sale_to_gmt' => NULL,\n 'price_html' => '<span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>21.99</span>',\n 'on_sale' => false,\n 'purchasable' => true,\n 'total_sales' => 0,\n 'virtual' => false,\n 'downloadable' => false,\n 'downloads' =>\n array(),\n 'download_limit' => -1,\n 'download_expiry' => -1,\n 'external_url' => '',\n 'button_text' => '',\n 'tax_status' => 'taxable',\n 'tax_class' => '',\n 'manage_stock' => false,\n 'stock_quantity' => NULL,\n 'stock_status' => 'instock',\n 'backorders' => 'no',\n 'backorders_allowed' => false,\n 'backordered' => false,\n 'sold_individually' => false,\n 'weight' => '',\n 'dimensions' =>\n array(\n 'length' => '',\n 'width' => '',\n 'height' => '',\n ),\n 'shipping_required' => true,\n 'shipping_taxable' => true,\n 'shipping_class' => '',\n 'shipping_class_id' => 0,\n 'reviews_allowed' => true,\n 'average_rating' => '0.00',\n 'rating_count' => 0,\n 'related_ids' =>\n array(\n 0 => 463,\n 1 => 47,\n 2 => 31,\n 3 => 387,\n 4 => 458,\n ),\n 'upsell_ids' =>\n array(),\n 'cross_sell_ids' =>\n array(),\n 'parent_id' => 0,\n 'purchase_note' => '',\n 'categories' =>\n array(\n 0 =>\n array(\n 'id' => 9,\n 'name' => 'Clothing',\n 'slug' => 'clothing',\n ),\n 1 =>\n array(\n 'id' => 14,\n 'name' => 'T-shirts',\n 'slug' => 't-shirts',\n ),\n ),\n 'tags' =>\n array(),\n 'images' =>\n array(\n 0 =>\n array(\n 'id' => 792,\n 'date_created' => '2017-03-23T14:01:13',\n 'date_created_gmt' => '2017-03-23T20:01:13',\n 'date_modified' => '2017-03-23T14:01:13',\n 'date_modified_gmt' => '2017-03-23T20:01:13',\n 'src' => 'https://example.com/wp-content/uploads/2017/03/T_2_front-4.jpg',\n 'name' => '',\n 'alt' => '',\n ),\n 1 =>\n array(\n 'id' => 793,\n 'date_created' => '2017-03-23T14:01:14',\n 'date_created_gmt' => '2017-03-23T20:01:14',\n 'date_modified' => '2017-03-23T14:01:14',\n 'date_modified_gmt' => '2017-03-23T20:01:14',\n 'src' => 'https://example.com/wp-content/uploads/2017/03/T_2_back-2.jpg',\n 'name' => '',\n 'alt' => '',\n ),\n ),\n 'attributes' =>\n array(),\n 'default_attributes' =>\n array(\n 0 =>\n array(\n 'id' => 6,\n 'name' => 'Color',\n 'option' => 'black',\n ),\n 1 =>\n array(\n 'id' => 0,\n 'name' => 'Size',\n 'option' => 'S',\n ),\n ),\n 'variations' =>\n array(),\n 'grouped_products' =>\n array(),\n 'menu_order' => 0,\n 'meta_data' =>\n array(),\n '_links' =>\n array(\n 'self' =>\n array(\n 0 =>\n array(\n 'href' => 'https://example.com/wp-json/wc/v3/products/794',\n ),\n ),\n 'collection' =>\n array(\n 0 =>\n array(\n 'href' => 'https://example.com/wp-json/wc/v3/products',\n ),\n ),\n ),\n ),\n );\n\n $products = $this->transformData($response);\n\n return response()->json($products);\n// }catch (\\Exception $exception){\n// Log::error($exception->getMessage(), ['_trace' => $exception->getTraceAsString()]);\n//\n// throw new \\Exception('Whoops! something went wrong with WooCommerce product listings.', 500);\n// }\n }", "function Show_favproducts($cust_id)\n\t\t{\n\t\t\tglobal $ecom_siteid,$db,$ecom_hostname,$Settings_arr,$ecom_themeid,$default_layout,$Captions_arr,$inlineSiteComponents;\n\t\t\t$customer_id \t\t\t\t\t= get_session_var(\"ecom_login_customer\");\n if($customer_id)\n\t\t\t{\n\t\t\t$sql_last_login = \"SELECT customer_last_login_date FROM customers WHERE sites_site_id=$ecom_siteid AND customer_id=$customer_id\";\n\t\t\t$ret_last_login = $db->query($sql_last_login);\n\t\t\tlist($row_last_login) = $db->fetch_array($ret_last_login);\n\t\t\t}\n\t\t $Captions_arr['LOGIN_HOME'] = getCaptions('LOGIN_HOME'); // to get values for the captions from the general settings site captions\n\t\t\t$prodcur_arr =array();\n\t\t\t\t$prodperpage\t\t\t= ($Settings_arr['product_maxcnt_fav_category']>0)?$Settings_arr['product_maxcnt_fav_category']:10;//Hardcoded at the moment. Need to change to a variable that can be set in the console.\n\t\t\t\t//$limit = $Settings_arr['product_maxcnt_fav_category'];\n\t\t\t\t$favsort_by\t\t\t\t= $Settings_arr['product_orderby_favorite'];\n\t\t\t\t$prodsort_order\t\t\t= $Settings_arr['product_orderfield_favorite'];\n\t\t\t\tswitch ($prodsort_order)\n\t\t\t\t{\n\t\t\t\t\tcase 'product_name': // case of order by product name\n\t\t\t\t\t$prodsort_order\t\t= 'product_name';\n\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'price': // case of order by price\n\t\t\t\t\t$prodsort_order\t\t= 'product_webprice';\n\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'product_id': // case of order by price\n\t\t\t\t\t$prodsort_order\t\t= 'product_id';\n\t\t\t\t\tbreak;\t\n\t\t\t\t};\n\t\t\t\tif ($_REQUEST['req']!='')// LIMIT for Favorites is applied only if not displayed in home page\n\t\t\t\t{\n\t\t\t\t\t$start_varprod \t\t= prepare_paging($_REQUEST[$pg_variableprod],$prodperpage,$tot_cntprod);\n\t\t\t\t\t$Limitprod\t\t\t= \" LIMIT \".$start_varprod['startrec'].\", \".$prodperpage;\n\t\t\t\t}\t\n\t\t\t\telse\n\t\t\t\t\t$Limitprod = '';\n\t\t\t\t$pg_variableprod\t\t= 'prod_pg';\n\t\t \t $sql_fav_products = \"SELECT id,a.product_id,a.product_name,a.product_variablestock_allowed,a.product_show_cartlink,\n\t\t\t\t\t\t\t\ta.product_preorder_allowed,a.product_show_enquirelink,a.product_webstock,a.product_webprice,\n\t\t\t\t\t\t\t\ta.product_discount,a.product_discount_enteredasval,a.product_bulkdiscount_allowed,\n\t\t\t\t\t\t\t\tproduct_total_preorder_allowed,a.product_applytax,a.product_shortdesc,a.product_bonuspoints,\n\t\t\t\t\t\t\t\ta.product_stock_notification_required,a.product_alloworder_notinstock,a.product_variables_exists,a.product_variablesaddonprice_exists,\n\t\t\t\t\t\t\t\ta.product_variablecomboprice_allowed,a.product_variablecombocommon_image_allowed,a.default_comb_id,\n\t\t\t\t\t\t\t\ta.price_normalprefix,a.price_normalsuffix, a.price_fromprefix, a.price_fromsuffix,a.price_specialofferprefix, a.price_specialoffersuffix, \n\t\t\t\t\t\t\t\ta.price_discountprefix, a.price_discountsuffix, a.price_yousaveprefix, a.price_yousavesuffix,a.price_noprice,\n\t\t\t\t\t\t\t\ta.product_averagerating,a.product_saleicon_show,a.product_saleicon_text,a.product_newicon_show,a.product_newicon_text,\n\t\t\t\t\t\t\t\ta.product_freedelivery \n\t\t\t\t\t\t\t\t\tFROM \n\t\t\t\t\t\t\t\t\t\tproducts a,customer_fav_products cfp\n\t\t\t\t\t\t\t\t\tWHERE\n\t\t\t\t\t\t\t\t\t\t a.product_id = cfp.products_product_id AND a.product_hide='N' AND\n\t\t\t\t\t\t\t\tcfp.sites_site_id = $ecom_siteid AND cfp.customer_customer_id = $cust_id\n\t\t\t\t\t\t\t\t\tORDER BY $prodsort_order $favsort_by $Limitprod\t\";\n\t\t\t\t\t$ret_fav_products = $db->query($sql_fav_products);\n\t\t\t\t\t$tot_cnt \t= $db->num_rows($ret_fav_products); \n\t\t\t$prod_compare_enabled = isProductCompareEnabled();\n\t\t\t?>\n\t\t\t<div class=\"treemenu\"><a href=\"<? url_link('');?>\"><?=$Captions_arr['COMMON']['TREE_MENU_HOME_LINK'];?></a> >> \n\t\t\t<?php\n\t\t\t\tif ($db->num_rows($ret_fav_products)==1)\n\t\t\t\t\techo stripslash_normal($Captions_arr['LOGIN_HOME']['LOGIN_HOME_FAV_PRODUCT_HEADER']);\n\t\t\t\telse\n\t\t\t\t\techo stripslash_normal($Captions_arr['LOGIN_HOME']['LOGIN_HOME_FAV_PRODUCTS_HEADER']);\n\t\t\t?>\n\t\t\t</div>\n\t\t\t\n\t\t\t<?php\t\n\t\t\t$displaytype = $Settings_arr['favorite_prodlisting'];\n\t\t\t$pass_type = get_default_imagetype('midshelf');\n\t\t\t$comp_active = isProductCompareEnabled();\n\t\t\tswitch($displaytype)\n\t\t\t{ \n\t\t\t\tcase '1row':\n\t\t\t\t?>\n\t\t\t\t\t<div class=\"shelf_main_con\" >\n\t\t\t\t\t<div class=\"shelf_top\"><?=stripslash_normal($Captions_arr['LOGIN_HOME']['LOGIN_HOME_FAV_PRODUCTS_HEADER'])?></div>\n\t\t\t\t\t<div class=\"shelf_mid\">\n\t\t\t\t\t\t<?php\n\t\t\t\t\t\t$cur = 1;\n\t\t\t\t\t\twhile($row_prod = $db->fetch_array($ret_fav_products))\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tif($cur==$tot_cnt)\n\t\t\t\t\t\t\t\t$main_shelf = 'shlf_main_last';\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\t$main_shelf = 'shlf_main';\n\t\t\t\t\t\t\t$cur++;\n\t\t\t\t\t\t\t\n\t\t\t\t\t?>\n\t\t\t\t\t\t\t<div class=\"<?php echo $main_shelf?>\">\n\t\t\t\t\t\t\t<div class=\"shlf_pdt_img_outr\">\n\t\t\t\t\t\t\t<div class=\"shlf_pdt_img\">\n\t\t\t\t\t\t\t\t<a href=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'],-1)?>\" title=\"<?php echo stripslashes($row_prod['product_name'])?>\">\n\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t// Calling the function to get the image to be shown\n\t\t\t\t\t\t\t\t\t$img_arr = get_imagelist('prod',$row_prod['product_id'],$pass_type,0,0,1);\n\t\t\t\t\t\t\t\t\tif(count($img_arr))\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tshow_image(url_root_image($img_arr[0][$pass_type],1),$row_prod['product_name'],$row_prod['product_name']);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t// calling the function to get the default image\n\t\t\t\t\t\t\t\t\t\t$no_img = get_noimage('prod',$pass_type); \n\t\t\t\t\t\t\t\t\t\tif ($no_img)\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tshow_image($no_img,$row_prod['product_name'],$row_prod['product_name']);\n\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?>\n\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t$module_name = 'mod_product_reviews';\n\t\t\t\t\t\t\t\t\tif(in_array($module_name,$inlineSiteComponents))\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tif($row_prod['product_averagerating']>=0)\n\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\t\t<div class=\"shelfB_rate\">\n\t\t\t\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t\t\t\tdisplay_rating($row_prod['product_averagerating']);\n\t\t\t\t\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<?php\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\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div class=\"shlf_pdt_compare\" >\n\t\t\t\t\t\t\t<?php if($comp_active) {\n\t\t\t\t\t\t\t\t\t\tdislplayCompareButton($row_prod['product_id']);\n\t\t\t\t\t\t\t\t\t}?>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div class=\"shlf_pdt_txt\">\n\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\tif($row_prod['product_freedelivery']==1)\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\t<div class=\"free_delivery\"></div>\n\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif($row_prod['product_bulkdiscount_allowed']=='Y')\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\t\t<div class=\"bulk_discount\"></div>\n\t\t\t\t\t\t\t\t<?php\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<ul class=\"shlf_pdt_ul\">\n\t\t\t\t\t\t\t<li class=\"shlf_pdt_name\" ><h3><a href=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'],-1)?>\" title=\"<?php echo stripslashes($row_prod['product_name'])?>\"><?php echo stripslashes($row_prod['product_name'])?></a></h3></li>\n\t\t\t\t\t\t\t<li class=\"shlf_pdt_des\"><h6>\t<?php echo stripslashes($row_prod['product_shortdesc'])?></h6></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t$price_class_arr['ul_class'] \t\t= 'shelf_price_ul';\n\t\t\t\t\t\t\t\t$price_class_arr['normal_class'] \t= 'shelfAnormalprice';\n\t\t\t\t\t\t\t\t$price_class_arr['strike_class'] \t= 'shelfAstrikeprice';\n\t\t\t\t\t\t\t\t$price_class_arr['yousave_class'] \t= 'shelfAyousaveprice';\n\t\t\t\t\t\t\t\t$price_class_arr['discount_class'] \t= 'shelfAdiscountprice';\n\t\t\t\t\t\t\t\techo show_Price($row_prod,$price_class_arr,'shelfcenter_1');\n\t\t\t\t\t\t\t\tshow_excluding_vat_msg($row_prod,'vat_div');// show excluding VAT msg\n\t\t\t\t\t\t\t\tshow_bonus_points_msg($row_prod,'bonus_point'); // Show bonus points\n\t\t\t\t\t\t\t\t$frm_name = uniqid('favprod_');\n\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t<form method=\"post\" action=\"<?php url_link('manage_products.html')?>\" name='<?php echo $frm_name?>' id=\"<?php echo $frm_name?>\" class=\"frm_cls\" onsubmit=\"return product_enterkey(this,<?php echo $row_prod['product_id']?>)\">\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"fpurpose\" value=\"\" />\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"fproduct_id\" value=\"\" />\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"pass_url\" value=\"<?php echo $_SERVER['REQUEST_URI']?>\" />\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"fproduct_url\" value=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'])?>\" />\n\t\t\t\t\t\t\t<div class=\"infodiv\">\n\t\t\t\t\t\t\t<div class=\"infodivleft\"><?php show_moreinfo($row_prod,'infolink')?></div>\n\t\t\t\t\t\t\t<div class=\"infodivright\">\n\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t$class_arr \t\t\t\t\t\t\t= array();\n\t\t\t\t\t\t\t\t\t$class_arr['ADD_TO_CART']\t= 'quantity_infolink';\n\t\t\t\t\t\t\t\t\t$class_arr['PREORDER']\t\t\t= 'quantity_infolink';\n\t\t\t\t\t\t\t\t\t$class_arr['ENQUIRE']\t\t\t= 'quantity_infolink';\n\t\t\t\t\t\t\t\t\tshow_addtocart($row_prod,$class_arr,$frm_name)\n\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</form>\n\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\tif($row_prod['product_saleicon_show']==1)\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t$desc = stripslash_normal(trim($row_prod['product_saleicon_text']));\n\t\t\t\t\t\t\t\t\tif($desc!='')\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t\t\t\t<div class=\"mid_shlf_pdt_sale\"><?php echo $desc?></div>\n\t\t\t\t\t\t\t<?php\n\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\tif($row_prod['product_newicon_show']==1)\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t$desc = stripslash_normal(trim($row_prod['product_newicon_text']));\n\t\t\t\t\t\t\t\t\tif($desc!='')\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t\t\t\t<div class=\"mid_shlf_pdt_new\"><?php echo $desc?></div>\t\t\n\t\t\t\t\t\t\t<?php\n\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</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t<?php\n\t\t\t\t\t\t}\n\t\t\t\t\t?>\n\t\t\t\t\t</div>\n\t\t\t\t <div class=\"shelf_bottom\"></div>\n\t\t\t </div>\n\t\t\t\t<?\n\t\t\t\tbreak;\n\t\t\t\tcase '3row':\n\t\t\t?>\t\t\t\t\t\n\t\t\t\t<div class=\"shelfA_main_con\" > \n\t\t\t\t<div class=\"shelfA_top\"><?=stripslash_normal($Captions_arr['LOGIN_HOME']['LOGIN_HOME_FAV_PRODUCTS_HEADER'])?></div>\n\t\t\t\t<div class=\"shelfA_mid\">\n\t\t\t\t<?php\n\t\t\t\t\t$max_col = 3;\n\t\t\t\t\t$cur_col = 0;\n\t\t\t\t\t$prodcur_arr = array();\n\t\t\t\t\t$cur_tot_cnt = $db->num_rows($ret_fav_products);\n\t\t\t\t\t$cur = 1;\n\t\t\t\t\twhile($row_prod = $db->fetch_array($ret_fav_products))\n\t\t\t\t\t{\n\t\t\t\t\t\t$prodcur_arr[] = $row_prod;\n\t\t\t\t\t\tif($cur>($cur_tot_cnt-$max_col))\n\t\t\t\t\t\t\t$main_shelf = 'shlfA_main_last';\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\t$main_shelf = 'shlfA_main';\n\t\t\t\t\t\t$cur++;\n\t\t\t\t\t\t//##############################################################\n\t\t\t\t\t\t// Showing the title, description and image part for the product\n\t\t\t\t\t\t//##############################################################\n\t\t\t\t\t\tif($cur_col==0)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$main_inner_shelf = 'shlfA_inner_main_lst';\n\t\t\t\t?>\n\t\t\t\t\t\t\t <div class=\"<?php echo $main_shelf?>\">\n\t\t\t\t<?php\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\t$main_inner_shelf = 'shlfA_inner_main';\n\t\t\t\t?>\n\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"<?php echo $main_inner_shelf?>\">\n\t\t\t\t\t\t\t<div class=\"shlfA_pdt_img\">\n\t\t\t\t\t\t\t<a href=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'],-1)?>\" title=\"<?php echo stripslashes($row_prod['product_name'])?>\">\n\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t// Calling the function to get the type of image to shown for current \n\t\t\t\t\t\t\t\t// Calling the function to get the image to be shown\n\t\t\t\t\t\t\t\t$img_arr = get_imagelist('prod',$row_prod['product_id'],$pass_type,0,0,1);\n\t\t\t\t\t\t\t\tif(count($img_arr))\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tshow_image(url_root_image($img_arr[0][$pass_type],1),$row_prod['product_name'],$row_prod['product_name']);\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// calling the function to get the default image\n\t\t\t\t\t\t\t\t\t$no_img = get_noimage('prod',$pass_type); \n\t\t\t\t\t\t\t\t\tif ($no_img)\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tshow_image($no_img,$row_prod['product_name'],$row_prod['product_name']);\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?>\n\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t </div>\t\n\t\t\t\t\t\t\t \t\n\t\t\t\t\t\t <div class=\"shlfA_pdt_txt\">\n\t\t\t\t\t\t\t\t\t\t\t <ul class=\"shlfA_pdt_ul\">\n\t\t\t\t\t\t\t\t\t<li class=\"shlfA_pdt_name\" ><h3><a href=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'],-1)?>\" title=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'],-1)?>\"><?php echo stripslashes($row_prod['product_name'])?></a></h3></li>\n\t\t\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t\t\t$module_name = 'mod_product_reviews';\n\t\t\t\t\t\t\t\t\t\t\t\tif(in_array($module_name,$inlineSiteComponents))\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\tif($row_prod['product_averagerating']>=0)\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?>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><div class=\"shelf_rate\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisplay_rating($row_prod['product_averagerating']);\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</div></li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<?php\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\t?>\n\t\t\t\t\t\t\t\t\t\t<li class=\"shlfA_pdt_des\" ><h6><?php echo stripslashes($row_prod['product_shortdesc'])?></h6></li>\n\t\t\t\t\t\t\t\t<li class='shlfA_pdt_bonus'><h6><?php show_bonus_points_msg($row_prod,'bonus_point'); // Show bonus points?></h6></li>\n\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\tif($row_prod['product_saleicon_show']==1)\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t$desc = stripslash_normal(trim($row_prod['product_saleicon_text']));\n\t\t\t\t\t\t\t\t\t\t\tif($desc!='')\n\t\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\t\t\t<li><div class=\"mid_shlf_pdt_salea\"><?php echo $desc?></div></li>\n\t\t\t\t\t\t\t\t\t<?php\n\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\tif($row_prod['product_newicon_show']==1)\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t$desc = stripslash_normal(trim($row_prod['product_newicon_text']));\n\t\t\t\t\t\t\t\t\t\t\tif($desc!='')\n\t\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\t\t\t<li><div class=\"mid_shlf_pdt_newa\"><?php echo $desc?></div></li>\n\t\t\t\t\t\t\t\t\t<?php\n\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\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t\t\t\t$price_class_arr['ul_class'] \t\t= 'shelfA_price_ul';\n\t\t\t\t\t\t\t\t\t\t\t\t$price_class_arr['normal_class'] \t= 'shelfBnormalprice';\n\t\t\t\t\t\t\t\t\t\t\t\t$price_class_arr['strike_class'] \t= 'shelfBstrikeprice';\n\t\t\t\t\t\t\t\t\t\t\t\t$price_class_arr['yousave_class'] \t= 'shelfByousaveprice';\n\t\t\t\t\t\t\t\t\t\t\t\t$price_class_arr['discount_class'] \t= 'shelfBdiscountprice';\n\t\t\t\t\t\t\t\t\t\t\t\techo show_Price($row_prod,$price_class_arr,'shelfcenter_3');\n\t\t\t\t\t\t\t\t\t\t\t\tshow_excluding_vat_msg($row_prod,'vat_div');// show excluding VAT msg\n\t\t\t\t\t\t\t\t\t\t\t?>\t\n\t\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t\t<div class=\"bulk_discount_con\">\n\t\t\t\t\t\t\t\t <?php\n\t\t\t\t\t\t\t\t\tif($row_prod['product_freedelivery']==1)\n\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\t\t<div class=\"free_deliverya\"></div>\n\t\t\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif($row_prod['product_bulkdiscount_allowed']=='Y')\n\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\t\t<div class=\"bulk_discounta\"></div>\n\t\t\t\t\t\t\t\t\t\t<?php\n\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</div>\n\t\t\t\t\t\t <?php \n\t\t\t\t\t\t if($comp_active) \n\t\t\t\t\t\t {\n\t\t\t\t\t\t ?>\n\t\t\t\t\t\t\t<div class=\"shlfA_pdt_compare\" >\n\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\tdislplayCompareButton($row_prod['product_id']);\n\t\t\t\t\t\t?>\t\t\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<?php\n\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<?php\n\t\t\t\t\t\t\t\t\t$frm_name = uniqid('best_');\n\t\t\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t\t\t<form method=\"post\" action=\"<?php url_link('manage_products.html')?>\" name='<?php echo $frm_name?>' id=\"<?php echo $frm_name?>\" class=\"frm_cls\" onsubmit=\"return product_enterkey(this,<?php echo $row_prod['product_id']?>)\">\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"fpurpose\" value=\"\" />\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"fproduct_id\" value=\"\" />\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"pass_url\" value=\"<?php echo $_SERVER['REQUEST_URI']?>\" />\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"fproduct_url\" value=\"<?php url_product($row_prod['product_id'],$row_prod['product_name'])?>\" />\n\t\t\t\t\t\t\t\t\t<div class=\"infodivB\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"infodivleftB\"><?php show_moreinfo($row_prod,'infolinkB')?></div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"infodivrightB\">\n\t\t\t\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t\t\t\t\t\t$class_arr \t\t\t\t\t\t\t= array();\n\t\t\t\t\t\t\t\t\t\t\t\t$class_arr['ADD_TO_CART']\t= 'quantity_infolinkB';\n\t\t\t\t\t\t\t\t\t\t\t\t$class_arr['PREORDER']\t\t\t= 'quantity_infolinkB';\n\t\t\t\t\t\t\t\t\t\t\t\t$class_arr['ENQUIRE']\t\t\t= 'quantity_infolinkB';\n\t\t\t\t\t\t\t\t\t\t\t\tshow_addtocart($row_prod,$class_arr,$frm_name)\n\t\t\t\t\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t</form>\n\t\t\t\t\t\t </div>\n\t\t\t\t\t\t </div>\n\t\t\t\t\t<?php\n\t\t\t\t\t\t$cur_col++;\n\t\t\t\t\t\tif ($cur_col>=$max_col)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<?php\n\t\t\t\t\t\t\t $cur_col = 0;\n\t\t\t\t\t\t}\t \n\t\t\t\t\t}\n\t\t\t\t\tif ($cur_col<$max_col and $cur_col>0)\n\t\t\t\t\t{\n\t\t\t\t\t\techo '</div>';\n\t\t\t\t\t}\n\t\t\t\t\t?>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"shelfA_bottom\"></div>\n\t\t\t\t</div>\n\t\t\t\t<? \n\t\t\t\tbreak;\n\t\t\t\t}//end of switchcase\n\t\t}", "public function createCostAvgObject() {\n\t\t/* Check to see if dealer and date combo already exists in DB table. \n\t\t * If so, will need to retrieve data from tables.\n\t\t * If not, will need to bypass table queries and create tables dynamically based on 'services' table\n\t\t */\n\t\tif((isset($_SESSION['profit_dlr_id']) && isset($_SESSION['profit_date'])) || (isset($_SESSION['export_dlr_id']) && isset($_SESSION['export_date']))) {\n\t\t\tif(isset($_SESSION['export_dlr_id']) && isset($_SESSION['export_date'])) {\n\t\t\t\t$dealer = $_SESSION['export_dlr_id'];\n\t\t\t\t$date = $_SESSION['export_date'];\n\t\t\t} else {\n\t\t\t\t$dealer = $_SESSION['profit_dlr_id'];\n\t\t\t\t$date = $_SESSION['profit_date'];\n\t\t\t}\n\t\t\t\n\t\t\tif($this->checkTableData($dealer, $date)) {\n\t\t\t\n\t\t\t\t// Run query of all services to get total for comparison to below query results\n\t\t\t\t$services_info = new ServicesInfo();\n\t\t\t\t$service_list_a = $services_info->getServicesTableData($id_list = NULL); // Will return an array of 8 items (with svc_id and svc_name)\n\t\t\t\t// echo var_dump($service_list_a);\n\t\t\t\t\n\t\t\t\t$sql = \"SELECT a.svc_id, b.svc_name \n\t\t\t\t\t\tFROM cost_avg_data a\n\t\t\t\t\t\tLEFT JOIN services b ON (a.svc_id = b.svc_id)\n\t\t\t\t\t\tWHERE a.dealer_record_id = :dealer_record_id AND a.record_date = :record_date\n\t\t\t\t\t\tGROUP BY a.svc_id \n\t\t\t\t\t\tORDER BY a.svc_id\";\n\t\t\t\ttry {\n\t\t\t\t\t$stmt = $this->db->prepare($sql);\n\t\t\t\t\t$stmt->bindParam(\":dealer_record_id\", $dealer, PDO::PARAM_INT);\n\t\t\t\t\t$stmt->bindParam(\":record_date\", $date, PDO::PARAM_STR);\n\t\t\t\t\t$stmt->execute();\n\t\t\t\t\t$svc_results = $stmt->fetchALL(PDO::FETCH_ASSOC);\n\t\t\t\t\t$stmt->closeCursor();\n\t\t\t\t\t$service_list_b = array();\n\t\t\t\t\t$service_id_list = array();\n\t\t\t\t\tforeach ($svc_results as $output) {\n\t\t\t\t\t\t$service_list_b[$output['svc_name']] = $output['svc_id'];\n\t\t\t\t\t\t$service_id_list[]= $output['svc_id'];\n\t\t\t\t\t}\n\t\t\t\t} catch (Exception $e) {\n\t\t\t\t\tdie($e->getMessage());\n\t\t\t\t}\n\t\t\t\t// echo '$service_list_a: <br>';\n\t\t\t\t// var_dump($service_list_a);\n\t\t\t\t// echo '$service_list_b: <br>';\n\t\t\t\t// var_dump($service_list_b);\n\t\t\t\t// echo '$service_id_list: <br>';\n\t\t\t\t// echo var_dump($service_id_list),'<br><br>';\n\t\t\t\t// die();\n\t\t\t\t\n\t\t\t\t// Query all unit table records for specific dealer and date\n\t\t\t\t$sql = \"SELECT c.svc_id, c.svc_name, a.cost_id, a.cost_desc, a.cost_code, a.cost_ro_count, a.cost_parts_sale, a.cost_parts_cost, a.cost_labor_sale\n\t\t\t\t\t\tFROM cost_avg_data a\n\t\t\t\t\t\tLEFT JOIN dealers b ON (b.dealer_record_id = a.dealer_record_id)\n\t\t\t\t\t\tLEFT JOIN services c ON (c.svc_id = a.svc_id)\n\t\t\t\t\t\tWHERE a.dealer_record_id = :dealer_record_id\n\t\t\t\t\t\tAND a.record_date = :record_date\n\t\t\t\t\t\tORDER BY a.cost_id\";\n\t\t\t\ttry {\n\t\t\t\t\t$stmt = $this->db->prepare($sql);\n\t\t\t\t\t$stmt->bindParam(\":dealer_record_id\", $dealer, PDO::PARAM_INT);\n\t\t\t\t\t$stmt->bindParam(\":record_date\", $date, PDO::PARAM_STR);\n\t\t\t\t\t$stmt->execute();\n\t\t\t\t\t$cost_tables = $stmt->fetchALL(PDO::FETCH_ASSOC);\n\t\t\t\t\t$stmt->closeCursor();\n\t\t\t\t} catch (Exception $e) {\n\t\t\t\t\tdie($e->getMessage());\n\t\t\t\t}\n\t\t\t\t//echo '$cost_tables:<br>', var_dump($cost_tables),'<br>';\n\t\t\t\t//die();\n\t\t\t\t\n\t\t\t\t// Build comma-delimited list from $service_id_list for use in services query below (from getServicesTableData() function)\n\t\t\t\t$query_id_list = '';\n\t\t\t\tfor ($i=0; $i<sizeof($service_id_list); $i++) {\n\t\t\t\t\tif ($i == (sizeof($service_id_list) - 1)) {\n\t\t\t\t\t\t$query_id_list .= $service_id_list[$i];\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$query_id_list .= $service_id_list[$i].', ';\n\t\t\t\t\t} \n\t\t\t\t}\n\t\t\t\t// echo '$query_id_list: <br>',var_dump($query_id_list),'<br><br>';\n\t\t\t\t\n\t\t\t\t// If service lists do not have the same number of items, add remaining service categories and cost table arrays \n\t\t\t\t// to $service_list_b and $cost_tables arrays so that default tables also appear\n\t\t\t\tif (sizeof($service_list_a) != sizeof($service_list_b)) {\n\t\t\t\t\t// echo 'entered sizeof if statement<br>';\n\t\t\t\t\t// Run services query using $query_id_list for 'NOT IN' clause\n\t\t\t\t\t$services_append_array = $services_info->getServicesTableData($query_id_list); // This works.\n\t\t\t\t\t// echo'$services_append_array: ',var_dump($services_append_array),'<br>';\n\t\t\t\t\t// var_dump($services_append_array);\n\t\t\t\t\t// die();\n\t\t\t\t\tforeach ($services_append_array as $value) {\n\t\t\t\t\t\t$service_list_b[$value['svc_name']] = $value['svc_id'];\n\t\t\t\t\t\t$cost_tables[] = array('svc_id' => $value['svc_id'], 'svc_name' => $value['svc_name'], 'cost_desc' => '', 'cost_code' => '', 'cost_ro_count' => '', 'cost_parts_sale' => '', 'cost_parts_cost' => '', 'cost_labor_sale' => '');\n\t\t\t\t\t\t//$cost_array = ($cost_append_array[$value['svc_name']][] = array(\"svc_id\" => $value['svc_id'], \"svc_name\" => '', \"cost_desc\" => '', \"cost_code\" => '', \"cost_ro_count\" => '', \"cost_parts_sale\" => '', \"cost_parts_cost\" => '', \"cost_labor_sale\" => ''));\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\n\t\t\t\t/** \n\t\t\t\t* Create two-dimensional array from above query results.\n\t\t\t\t* 1) After obtaining list of service ID's and names (via GROUP BY) and full array(array()) of table rows (2 queries),\n\t\t\t\t* 2) Iterate through each service name and through each table row\n\t\t\t\t* 3) Check to see if 'svc_name' array element == $svc (obtained from 1st service query)\n\t\t\t\t* 4) If it is equal, then add the array row to $new_array, with $svc as the array key (this will be the service name)\n\t\t\t\t*/\n\t\t\t\t$cost_table_array = array();\n\t\t\t\tforeach ($service_list_b as $svc_name => $value) {\n\t\t\t\t\tforeach ($cost_tables as $cost_table) {\n\t\t\t\t\t\tif ($cost_table['svc_name'] == $svc_name) {\n\t\t\t\t\t\t\t$cost_table_array[$svc_name][] = $cost_table;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// echo '$cost_table_array:<br>',var_dump($cost_table_array),'<br>';\n\t\t\t} else { // If there is no table data available, will need to build tables dynamically based on 'services' table\n\t\t\t\t$cost_table_array = $this->buildDefaultCostTables();\n\t\t\t}\n\t\t} else {\n\t\t\t$cost_table_array = $this->buildDefaultCostTables();\n\t\t}\n\t\treturn $cost_table_array;\n\t}", "public function run()\n {\n \\App\\Variation::create([\n \"sku\" => \"#\" . rand(1, 100000000),\n// \"image\" => \"https://i1.rozetka.ua/goods/4381047/adidas_4059323881564_images_4381047304.jpg\",\n \"product_id\" => 1,\n \"price\" => 2500,\n \"in_stock\" => 15\n ]);\n\n// \\App\\Variation::create([\n// \"sku\" => \"#\" . rand(1, 100000000),\n// \"image\" => \"https://i2.rozetka.ua/goods/1528038/nike_812654_001_11_5_images_1528038611.jpg\",\n// \"product_id\" => 1,\n// \"price\" => 2000,\n// \"in_stock\" => 8\n// ]);\n//\n// \\App\\Variation::create([\n// \"sku\" => \"#\" . rand(1, 100000000),\n// \"image\" => \"https://i2.rozetka.ua/goods/5032905/nike_886737447079_images_5032905456.jpg\",\n// \"product_id\" => 1,\n// \"price\" => 1300,\n// \"in_stock\" => 5\n// ]);\n\n \\App\\Variation::create([\n \"sku\" => \"#\" . rand(1, 100000000),\n// \"image\" => \"https://i1.rozetka.ua/goods/2286747/adidas_aq1625_4.5_images_2286747890.jpg\",\n \"product_id\" => 1,\n \"price\" => 1300,\n \"in_stock\" => 5\n ]);\n }", "public function run()\n {\n $vendors = [\n [\n 'country_id' => 1,\n 'state_id' => 12,\n 'district_id' => 164,\n 'vendor_category_id' => 1,\n 'name' => 'Ganesha Operation',\n 'description' => 'Bimbel Ganesha Operation merupakan lembaga bimbingan belajar terbaik dan terbesar di Indonesia. Berdiri sejak 2 Mei 1984 di Kota Bandung, saat ini Ganesha Operation telah tersebar di 265 kota di Indonesia, mulai dari Aceh hingga Ambon.',\n 'logo' => 'https://ganeshaoperation.com/img/logo5.png',\n 'email' => '[email protected]',\n 'bank_account_number' => null,\n 'website' => 'https://ganeshaoperation.com/',\n 'address' => 'Jln. Purnawarman No. 36B Bandung',\n 'phone' => '+62 81806667660'\n ],\n [\n 'country_id' => 1,\n 'state_id' => 12,\n 'district_id' => 3,\n 'vendor_category_id' => 1,\n 'name' => 'Primagama',\n 'description' => 'Primagama adalah usaha jasa pendidikan luar sekolah yang bergerak dibidang bimbingan belajar, didirikan tahun 1982, tepatnya pada tanggal 10 Maret 1982 di Yogyakarta. Program Bimbingan Belajar Primagama memiliki pasar sangat luas (siswa 3,4,5,6 SD – 7,8,9 SMP, dan 10,11,12 SMA IPA/IPS) dengan target pendidikan adalah meningkatkan prestasi akademik di sekolah, Ujian Akhir Sekolah, Ujian Nasional , dan Sukses Ujian Masuk Perguruan Tinggi Negeri/Favorit serta sekolah kedinasan (bagi SMA/SMK).',\n 'logo' => 'https://www.primagama.co.id/assets/images/logo.svg',\n 'email' => '[email protected]',\n 'bank_account_number' => null,\n 'website' => 'https://www.primagama.co.id/',\n 'address' => 'Jl. HOS Cokroaminoto, Ruko Cokro Square Blok I No.124, Yogyakarta (55244), Indonesia.',\n 'phone' => '0274 - 619 853'\n ],\n [\n 'country_id' => 1,\n 'state_id' => 11,\n 'district_id' => 3,\n 'vendor_category_id' => 2,\n 'name' => 'Pintaria',\n 'description' => 'Pintaria merupakan portal pendidikan yang menawarkan produk kuliah S1/S2 dengan metode blended learning dan program kursus lainnya. Pintaria bekerjasama dengan kampus-kampus unggulan yang terakreditasi BAN-PT di Indonesia.',\n 'logo' => 'https://storage.googleapis.com/cdn-1.pintaria.com/pintaria/homepage-settings/assets/image/logo-pintaria-white.png',\n 'email' => '[email protected]',\n 'bank_account_number' => null,\n 'website' => 'https://pintaria.com/',\n 'address' => 'Komplek Ruko Sentra Arteri Mas. Jl. Sultan Iskandar Muda No. 10L. Kebayoran Lama, Jakarta 12241 – INDONESIA',\n 'phone' => '+6281382765493'\n ],\n ];\n\n foreach ($vendors as $vendor) {\n Vendor::create(array_merge($vendor, [\n 'created_at' => Carbon::now(),\n 'updated_at' => Carbon::now()\n ]));\n };\n }", "public function getVariants(): Collection\n {\n return $this->paginate([\n 'query' => 'query getVariants($cursor: String) {\n results: productVariants(first:250, after:$cursor) {\n edges {\n node {\n title\n sku\n product {\n title\n handle\n status\n publishedOnCurrentPublication\n }\n }\n }\n pageInfo {\n hasNextPage\n endCursor\n }\n }\n }'\n ])\n\n // Remove variants that are missing a sku\n ->filter(function($variant) {\n return !empty($variant['sku']);\n })\n\n // Remove variants that weren't published to the Sales Channel of the\n // Custom App whose credentials are being used to query the API. This\n // can be used to filter out products not intended for the public store,\n // like wholesale only products.\n ->when(!$this->disablePublishedCheck, function($variants) {\n return $variants->filter(function($variant) {\n return $variant['product']['publishedOnCurrentPublication'];\n });\n })\n\n // Dedupe by SKU, prefering active variants. Shopify allows you to\n // re-use SKUs between multiple product variants but this is used in\n // Feed Me as the unique identifier for importing.\n ->reduce(function($variants, $variant) {\n\n // Check if this variant has already been added\n $existingIndex = $variants->search(\n function($existing) use ($variant) {\n return $existing['sku'] == $variant['sku'];\n }\n );\n\n // If this sku is already in the list, replace it if the previous\n // instance was not an active product\n // https://shopify.dev/api/admin-graphql/2022-04/enums/ProductStatus\n if ($existingIndex !== false) {\n $existing = $variants->get($existingIndex);\n if ($existing['product']['status'] != 'ACTIVE') {\n $variants = $variants->replace([\n $existingIndex => $variant\n ]);\n }\n\n // ... else the variant didn't exist, so add it\n } else $variants->push($variant);\n\n // Keep working...\n return $variants;\n }, new Collection)\n\n // Make a title that is more useful for displaying in the CMS.\n ->map(function($variant) {\n $variant['dashboardTitle'] = $variant['product']['title']\n .' - '.$variant['title']\n .(($sku = $variant['sku']) ? ' ('.$sku.')' : null);\n return $variant;\n })\n\n // Remove fields that we're used to pre-filter\n ->map(function($variant) {\n unset(\n $variant['product']['status'],\n $variant['product']['publishedOnCurrentPublication']\n );\n return $variant;\n })\n\n // Use integer keys\n ->values();\n }", "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 Product::create([\n 'name' => 'Big Melons',\n 'flavor' => 'Melon Shake',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'bigmelons.png',\n ]);\n\n Product::create([\n 'name' => 'Black Label',\n 'flavor' => 'Black Label',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'blacklabel.png',\n ]);\n Product::create([\n 'name' => 'Blizzard',\n 'flavor' => 'Blizzard',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'blizzard.png',\n ]);\n\n Product::create([\n 'name' => 'Blue Leaf',\n 'flavor' => 'Blue Leaf',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'blueleaf.png',\n ]);\n Product::create([\n 'name' => 'Breakfast in Bed',\n 'flavor' => 'Breakfast in Bed',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'breakfastinbed.png',\n ]);\n Product::create([\n 'name' => 'Candy Craze',\n 'flavor' => 'Candy Craze',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'candycraze.png',\n ]);\n\n Product::create([\n 'name' => 'Chichi',\n 'flavor' => 'Chichi',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'chichi.png',\n ]);\n Product::create([\n 'name' => 'Concubine',\n 'flavor' => 'Concubine',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'concubine.png',\n ]);\n\n Product::create([\n 'name' => 'Dvine',\n 'flavor' => 'Dvine',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'dvine.png',\n ]);\n Product::create([\n 'name' => 'Green Label',\n 'flavor' => 'Green Label',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'greenlabel.png',\n ]);\n Product::create([\n 'name' => 'Kiwiki',\n 'flavor' => 'Kiwiki',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'kiwiki.png',\n ]);\n\n Product::create([\n 'name' => 'Lychee',\n 'flavor' => 'Lychee',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'lychee.png',\n ]);\n Product::create([\n 'name' => 'Mango Tango',\n 'flavor' => 'Mango Tango',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'mangotango.png',\n ]);\n\n Product::create([\n 'name' => 'Morning Wood',\n 'flavor' => 'Morning Wood',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'morningwood.png',\n ]);\n Product::create([\n 'name' => 'Peaches',\n 'flavor' => 'Peaches',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'peaches.png',\n ]);\n Product::create([\n 'name' => 'Grand Master',\n 'flavor' => 'Grand Master',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'bigmelons.png',\n\n ]);\n\n Product::create([\n 'name' => 'Zooka',\n 'flavor' => 'Zooka',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'blacklabel.png',\n ]);\n Product::create([\n 'name' => 'Havoc',\n 'flavor' => 'Havoc',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'blizzard.png',\n ]);\n\n Product::create([\n 'name' => 'Quatro',\n 'flavor' => 'Quatro',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'blueleaf.png',\n ]);\n Product::create([\n 'name' => 'Yummy Gummy',\n 'flavor' => 'Yummy Gummy',\n 'maker' => 'The Puff Stuff',\n 'description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',\n 'price' => '250',\n 'size' => '60ML',\n 'strength' => '12MG',\n 'quantity' => '100',\n 'display_image' => 'breakfastinbed.png',\n ]);\n\n\n }", "function maleSizes(){\n\n $male_products= Product::where(\"sub_section\", \"male\")->orWhere(\"sub_section\", \"unisex\")->get();\n\n $sizes_qty_array= [];\n\n $male_products->map(function($product) use (&$sizes_qty_array){\n\n $sizes_qty_array= \\array_merge($sizes_qty_array, \\json_decode($product->options, true));\n\n });\n\n // Loop through to get sizes only\n $sizes_array= [];\n\n foreach($sizes_qty_array as $size_qty){\n \\array_push($sizes_array, $size_qty[\"size\"]);\n }\n\n $sizes_collect= collect($sizes_array);\n\n $sizes_collect= $sizes_collect->unique();\n\n return response()->json($sizes_collect);\n\n }", "public function index()\n {\n $response = GroceryList::all()->map(function ($item) {\n return $item->ingredient;\n });\n\n return $response;\n }", "function getPurchases($db) {\n $qres;\n try {\n $qres = $db->purchases_get_all();\n } catch (FPDB_Exception $e) {\n die($e->getMessage());\n }\n return $qres;\n }", "public function getDressBrandForFemaleBaseOnSizeChart(){ \n \n $query = $this->getEntityManager()\n ->createQuery(\"SELECT b FROM LoveThatFitAdminBundle:Brand b\n JOIN b.sizechart sc\n WHERE\n sc.gender='F'\n AND sc.target='dress'\n GROUP BY b.id\");\n try {\n return $query->getResult();\n } catch (\\Doctrine\\ORM\\NoResultException $e) {\n return null;\n }\n }", "public function getAll() {\n\t\t$search = $this->Supplier()->search()\n\t\t\t->setTable($this->_table)\n\t\t\t->setColumns(array(Supplier::SUPPLIER_ID, Supplier::SUPPLIER_NAME, Supplier::SUPPLIER_ADDRESS, Supplier::SUPPLIER_TEL_NO))\n\t\t\t->sortBySupplierCreated('ASC');\n\t\treturn $search->getRows();\n\t}", "public function get_suppliers_list()\n\t {\n\t \t$userId=$this->checklogin();\n\t \t$query=$this->ApiModel->get_suppliers_list($userId);\n\t \techo json_encode($query);\n\t }", "private function _getAlsoSold2(){\n $data['also_sold_products'] = null;\n $also_sold = $this->model_catalog_product->GetAlsoSoldProducts($this->request->get['product_id']);\n foreach ($also_sold as $result) {\n if ($result['image']) {\n $image = $this->model_tool_image->resize($result['image'], $this->config->get($this->config->get('config_theme') . '_image_related_width'), $this->config->get($this->config->get('config_theme') . '_image_related_height'));\n } else {\n $image = $this->model_tool_image->resize('placeholder.png', $this->config->get($this->config->get('config_theme') . '_image_related_width'), $this->config->get($this->config->get('config_theme') . '_image_related_height'));\n }\n\n if ($this->customer->isLogged() || !$this->config->get('config_customer_price')) {\n $price = $this->currency->format($this->tax->calculate($result['price'], $result['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);\n } else {\n $price = false;\n }\n\n if ((float)$result['special']) {\n $special = $this->currency->format($this->tax->calculate($result['special'], $result['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);\n } else {\n $special = false;\n }\n\n if ($this->config->get('config_tax')) {\n $tax = $this->currency->format((float)$result['special'] ? $result['special'] : $result['price'], $this->session->data['currency']);\n } else {\n $tax = false;\n }\n\n if ($this->config->get('config_review_status')) {\n $rating = (int)$result['rating'];\n } else {\n $rating = false;\n }\n\n $data['also_sold_products'][] = array(\n 'product_id' => $result['product_id'],\n 'thumb' => $image,\n 'name' => $result['name'],\n 'description' => utf8_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, $this->config->get($this->config->get('config_theme') . '_product_description_length')) . '..',\n 'price' => $price,\n 'special' => $special,\n 'tax' => $tax,\n 'minimum' => $result['minimum'] > 0 ? $result['minimum'] : 1,\n 'rating' => $rating,\n 'href' => $this->url->link('product/product', 'product_id=' . $result['product_id'].'&selfref=also')\n );\n }\n\n }", "public function getIngredientes()\n {\n try {\n $sql = $this->conexao->prepare(\"select * from \" . TABLENAME . \" where exc = 0\");\n $resultado = $sql->query();\n $ingrediente = $resultado->fetchAll();\n return $ingrediente;\n } catch (PDOException $e) {\n echo \"Erro atualizar: \" . $e->getMessage();\n }\n }", "function listar_productos_por_familia($id_producto){\n\n\t\t$sql = \"SELECT\n\t\t\t\t\t\t\tid, nombre\n\t\t\t\t\t\tFROM\n\t\t\t\t\t\t\tapp_productos\n\t\t\t\t\t\tWHERE\n\t\t\t\t\t\t\tfamilia = \" . $id_producto . \" and status = 1\n\t\t\t\t\t\tORDER BY id\";\n\n\t\t$result = $this->queryArray($sql);\n\n\t\treturn $result;\n\t}", "public function getAllReviews($response, $hasta, $total,$shop) {\n echo \"<div style='color:blue;'>Actualizando \" . $hasta . \" de \" . $total . \" articulos.</div><br><br>\";\n $contador = 1;\n foreach ($response as $review) {\n $porcentaje = ($contador * 100) / count($response);\n echo \"<div style='color: blue'>\" . $contador . \" de \" . count($response) . \" - \" . $porcentaje. \"% Producto: \" . $review[\"post_title\"] . \"</div><br>\";\n // Obtiene los metadatos del producto\n $metadata = $this->getMetaData($review[\"ID\"]);\n\n // Imprime el asin\n $asin = $this->getAsin($metadata);\n echo \"<strong>Asin: </strong>\" . $asin . \"<br>\";\n\n // Nombres de las columnas de las diferentes tiendas\n $links = $this->productsLink();\n //foreach ($links as $link) {\n $link = $shop;\n foreach ($metadata as $mdata) {\n // Valida que exista el precio de esa tienda en la BD\n if (isset($mdata['meta_key']) && $mdata['meta_key'] == $link) {\n // Si tiene una url del producto en las tiendas...\n if (isset($mdata['meta_value']) && !empty($mdata['meta_value'])) {\n // Obtiene el precio, haciendo scrapping\n if ($link == 'amazon_affiliate_link' || $link == 'amazon_pl') {\n $price = $this->linkToScrap($link, $asin);\n } else {\n $price = $this->linkToScrap($link, $mdata['meta_value']);\n }\n // Valida si el precio del producto cambio\n // Imprime el link\n echo $mdata['meta_value'];\n // Imprime el precio\n echo \"<br><strong>Precio: </strong>\";\n echo (isset($price) && is_numeric($price) ? $price : \"<div style='color: red'>El producto ya no se encuentra disponible</div>\");\n\n if ($price != null && $price != \"\" && !empty($price)) {\n $hasChanged = $this->priceHasChanged($metadata, $link, $price);\n if ($hasChanged[\"change\"]) {\n if ($hasChanged[\"action\"] == 'update') {\n $oldPrice = $hasChanged['oldPrice'];\n echo \" El precio cambio, precio original: \" . $oldPrice;\n $this->updatePrice($link, $price, $mdata['post_id']);\n } else {\n echo \" El precio no existe, se creo en la base de datos\";\n $this->createPrice($link, $price, $mdata['post_id']);\n }\n }\n }\n echo \"<br>\";\n break;\n }\n }\n }\n //}\n echo \"<br><br>\";\n\n // ACtualiza el mejor precio y mejor tienda para del producto\n $this->setBestPrice($review[\"ID\"]);\n\n $contador += 1;\n }\n\n return $response;\n }", "protected function _getItemsData()\n {\n $data = array();\n $status = $this->_getCount();\n if (isset($status['yes']) && $status['yes'] > 0) {\n $data[] = array(\n 'label' => Mage::helper('vs7_saleattribute')->__('Sale'),\n 'value' => 1,\n 'count' => isset($status['yes']) ? $status['yes'] : 0,\n );\n }\n\n return $data;\n }", "public function getFeatured(){\n $query=$this->db->query(\"SELECT * FROM featured_restaurants WHERE CURDATE() BETWEEN start_date AND end_date\");\n if($query->num_rows){\n $tmp['featured']=$query->rows;\n \n $count=0;\n foreach($tmp['featured'] as $restaurant){\n if($count==0)\n $ids=$restaurant['restaurant_id'];\n else\n $ids.=','.$restaurant['restaurant_id'];\n $count++;\n }\n\n $featured_query=$this->db->query(\"SELECT * FROM restaurant WHERE restaurant_id IN(\".$ids.\")\");\n if($featured_query->num_rows){\n $tmp2['restaurants']=$featured_query->rows;\n\n foreach($tmp2['restaurants'] as &$restaurant){\n $query=$this->db->query(\"SELECT COUNT(review_id) AS num_review,ROUND(AVG(rating),0) AS rating FROM reviews WHERE restaurant_id=\".$restaurant['restaurant_id']);\n if($query->num_rows){\n $restaurant['num_review']=$query->rows[0]['num_review'];\n if($restaurant['num_review']!=0)\n $restaurant['rating']=$query->rows[0]['rating'];\n else\n $restaurant['rating']=0;\n }\n else{\n $restaurant['num_review']=0;\n $restaurant['rating']=0;\n }\n }\n\n $tmp2['status']=\"success\";\n }\n else{\n return array(\"status\"=>\"fail\",\"error\"=>\"no restaurants found.\");\n }\n\n return $tmp2;\n }\n else{\n return array(\"status\"=>\"fail\",\"error\"=>\"no restaurants found.\");\n }\n }", "public function definition()\n {\n return [\n 'product_code' => Str::random(6),\n 'product_name' => $this->faker->name,\n 'producer' => $this->faker->company,\n 'product_type' => Str::random(6),\n 'size' => '30*30',\n 'material' => 'ceramic',\n 'color' => $this->faker->colorName,\n 'surface' => 'min',\n 'uses_for' => 'lat',\n 'quantity_in_one_box' => $this->faker->randomDigit,\n 'quantity' => $this->faker->numberBetween($min = 1, $max = 1000),\n // 'inventory' => $this->faker->numberBetween($min = 1, $max = 1000),\n 'import_price' => $this->faker->numberBetween($min = 50000, $max = 10000000),\n 'sale_price' => $this->faker->numberBetween($min = 50000, $max = 10000000),\n 'count_view' => $this->faker->numberBetween($min = 50, $max = 100),\n 'count_buy' => $this->faker->numberBetween($min = 10, $max = 250),\n 'number_error' => 1,\n 'status' => 'trading',\n ];\n }", "public function run()\n {\n $products = [\n [\n 'name' => 'PNY CS900 2.5\" Internal SSD - 240 GB',\n 'group' => 'ssd',\n 'size' => '240 GB',\n 'price' => 26.00,\n 'info' => ['SATA III', 'Up to 6 Gbps', 'Read speed: up to 535 MB/s', 'Write speed: up to 500 MB/s'],\n ],\n [\n 'name' => 'PNY CS900 2.5\" Internal SSD - 500 GB',\n 'group' => 'ssd',\n 'size' => '500 GB',\n 'price' => 38.00,\n 'info' => ['SATA III', 'Up to 6 Gbps', 'Read speed: up to 535 MB/s', 'Write speed: up to 500 MB/s'],\n ],\n [\n 'name' => 'SAMSUNG EVO 860 2.5\" Internal SSD - 250 GB',\n 'group' => 'ssd',\n 'size' => '250 GB',\n 'price' => 39.00,\n 'info' => ['SATA III', 'Up to 6 Gbps', 'Hardware encryption', 'Read speed: up to 550 MB/s', 'Write speed: up to 525 MB/s'],\n ],\n [\n 'name' => 'SAMSUNG EVO 860 2.5\" Internal SSD - 500 GB',\n 'group' => 'ssd',\n 'size' => '500 GB',\n 'price' => 46.00,\n 'info' => ['SATA III', 'Up to 6 Gbps', 'Hardware encryption', 'Read speed: up to 550 MB/s', 'Write speed: up to 525 MB/s',],\n ],\n [\n 'name' => 'SAMSUNG 970 Evo Plus M.2 Internal SSD - 250 GB',\n 'group' => 'ssd',\n 'size' => '250 GB',\n 'price' => 43.00,\n 'info' => ['PCIe 3.0', 'Hardware encryption', 'Read speed: up to 3500 MB/s', 'Write speed: up to 2300 MB/s'],\n ],\n [\n 'name' => 'INTEL Core™ i7-10700K Unlocked Processor',\n 'group' => 'cpu',\n 'architecture' => 'intel',\n 'price' => 329.00,\n 'info' => ['Socket: LGA 1200', 'Frequency: 3.8 GHz overclockable', 'Turbo Boost: 5.1 GHz', 'Octa-core', 'Cache: 16 MB',]\n ],\n [\n 'name' => 'AMD Ryzen 7 3700X Processor',\n 'architecture' => 'amd',\n 'group' => 'cpu',\n 'price' => 299.00,\n 'info' => ['Includes RGB CPU cooler', 'Socket: AM4', 'Frequency: 3.6 GHz', 'Turbo Core: 4.4 GHz', 'Octa-core']\n ],\n [\n 'name' => 'M100 Fibre Broadband',\n 'group' => 'internet',\n 'subscription' => true,\n 'month contract' => 18,\n 'price' => 29.00,\n 'info' => ['Average download speeds of 108Mbps', 'Average upload speeds of 10Mbps', 'For busy households with 5-9 devices']\n ],\n [\n 'name' => 'M200 Fibre Broadband',\n 'group' => 'internet',\n 'subscription' => true,\n 'month contract' => 18,\n 'price' => 35.00,\n 'info' => ['Average download speeds of 213Mbps', 'Average upload speeds of 20Mbps', 'For busy households with 10+ devices']\n ]\n ];\n\n foreach($products as $product) {\n DB::table('products')->insert($product);\n }\n }", "function getAllBrandType() {\n global $dbAccess;\n $this->db = $dbAccess;\n $data = $this->db->SimpleQuery(\"SELECT * FROM \" . TBL_BRAND_TYPE . \" WHERE status='1' ORDER BY name\");\n\n return $data;\n }", "function getStocksPurchases($mysqli,$sale_id){\n\t$query = \"SELECT stocks.description,subsales.price_per_ton,subsales.quantity,subsales.subtotal FROM sales INNER join subsales ON sales.id = subsales.sale_id INNER JOIN stocks ON stocks.id = subsales.stock_id WHERE sales.id = '$sale_id'\";\n\n\tif($result = mysqli_query($mysqli,$query)){\n\t\treturn $result ;\n\t}\n\telse{\n\t\tprintf(\"Notice: %s\", mysqli_error($mysqli));\n\t}\n\t\n}", "function get_sold($obj, $id){\n\t$result_array = $obj->Query_reader->get_row_as_array('get_sold',array('id' => $id));\n\treturn $result_array['total'];\n}", "public function fetchCoffeeShops(){\n // $endPrice = $this->_request['endPrice'] != \"undefined\" ? intval ($this->_request['endPrice']) : -1;\n \n\n $sql = \"select distinct * from coffee_shops cf join city c on cf.CityId = c.CityID \";\n // if($startPrice!=\"undefined\")\n // {\n // $sql.=\" where cf.start_price>=$startPrice \";\n // if($endPrice != -1 )\n // $sql.=\" and cf.end_price<=$endPrice\";\n // }\n $rows = $this->executeGenericDQLQuery($sql);\n $coffeeShops = array();\n for($i=0;$i<sizeof($rows);$i++)\n {\n\n\n $coffeeShops[$i]['Name'] =($rows[$i]['Name'] == null || $rows[$i]['Name'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Name'] ;\n $coffeeShops[$i]['Address'] =($rows[$i]['Address'] == null || $rows[$i]['Address'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Address'] ;\n $coffeeShops[$i]['content'] =($rows[$i]['content'] == null || $rows[$i]['content'] ==\"null\") ? \"No Data Available\" : $rows[$i]['content'] ;\n $coffeeShops[$i]['Phone1'] =($rows[$i]['Phone1'] == null || $rows[$i]['Phone1'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Phone1'] ;\n $coffeeShops[$i]['Phone2'] =($rows[$i]['Phone2'] == null || $rows[$i]['Phone2'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Phone2'] ;\n $coffeeShops[$i]['Phone3'] =($rows[$i]['Phone3'] == null || $rows[$i]['Phone3'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Phone3'] ;\n $coffeeShops[$i]['Mobile'] =($rows[$i]['Mobile'] == null || $rows[$i]['Mobile'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Mobile'] ;\n $coffeeShops[$i]['Website'] =($rows[$i]['Website'] == null || $rows[$i]['Website'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Website'] ;\n $coffeeShops[$i]['Category'] =($rows[$i]['Category'] == null) ? 0 : $rows[$i]['Category'] ;\n $coffeeShops[$i]['Facilities'] =$this->getFacilitiesByIds($rows[$i]['Facilities']);\n $coffeeShops[$i]['CityId'] =$rows[$i]['CityId'] ;\n $coffeeShops[$i]['icon_image'] =($rows[$i]['icon_image'] == null || $rows[$i]['icon_image'] ==\"null\") ? \"img/not_found.jpg\" : $rows[$i]['icon_image'] ;\n $coffeeShops[$i]['home_image'] =($rows[$i]['home_image'] == null || $rows[$i]['home_image'] ==\"null\") ? \"img/not_found.jpg\" : $rows[$i]['home_image'] ;\n \n \n \n \n }\n $this->response($this->json($coffeeShops), 200);\n\n }", "public function toFlavor($flav)\n {\n return $this->isFlavor(strtolower($this->to_flavor), strtolower($flav));\n }", "public function getSupplier()\n {\n $getsupplier = Supplier::all();\n return response()->json($getsupplier);\n }", "function get_items_producto_lista_material_packaging($productos_seleccionados,$deposito_destino,$cantidad_maquinas)\r\n{\r\n\t$sql=\"select en_stock.id_prod_esp,cant_disp,\r\n\t precio_stock,descripcion\r\n from stock.en_stock\r\n join general.producto_especifico on producto_especifico.id_prod_esp=en_stock.id_prod_esp\r\n where en_stock.id_prod_esp in ($productos_seleccionados)\r\n \t\tand id_deposito=2\";\r\n $prod_info=sql($sql,\"<br>Error al traer los productos de packaging desde el stock<br>\") or fin_pagina();\r\n\r\n $total=0;\r\n $i=0;\r\n while (!$prod_info->EOF)\r\n {\r\n //si la cantidad disponible no es mayor o igual que la cantidad de maquinas requeridas, damos el aviso y no lo\r\n //agregamos entre las filas del PM\r\n\t if($cantidad_maquinas<=$prod_info->fields[\"cant_disp\"])\r\n\t\t { $items[$i][\"id_prod_esp\"]=$prod_info->fields[\"id_prod_esp\"];\r\n\t\t $items[$i][\"cantidad\"]=$items[$i][\"cantidad_orig\"]=$cantidad_maquinas;\r\n\r\n\t\t $items[$i][\"descripcion\"]=$prod_info->fields[\"descripcion\"];\r\n\t\t $items[$i][\"precio\"]=$prod_info->fields[\"precio_stock\"];\r\n\t\t $total++;\r\n\t\t }//de if($cantidad_maquinas<=$prod_info->fields[\"cant_disp\"])\r\n\t\t else\r\n \t echo \"<font size=2 color='red'><b>-No hay suficiente Stock disponible para el producto: \".$prod_info->fields[\"descripcion\"].\"</b></font><br>\";\r\n $i++;\r\n \t $prod_info->MoveNext();\r\n }//de while(!$prod_info->EOF)\r\n\r\n $items[\"cantidad\"]=$total;\r\n return $items;\r\n}", "public function run()\n {\n $sql = 'TRUNCATE goods';\n $this->adapter->query($sql);\n\n $products = [\n [\n 'imgName' => '01.jpg',\n 'views' => 0,\n 'cost' => 8180000,\n 'prodName' => 'BMW 7 series',\n 'description' => 'В этой серии некоторые детали ходовой части изготовлены из алюминия, это позволило добиться\n большей точности рулевого управления. В передней части появился новый выступ на капоте, а сзади машины\n установлена новая хромированная планка. По сравнению с более ранними моделями в этой серии также изменились\n передние и задние фары и фартуки.'\n ],\n [\n 'imgName' => '02.jpg',\n 'views' => 0,\n 'cost' => 8670300,\n 'prodName' => 'Mercedes-Benz S class',\n 'description' => 'Mercedes-Benz S-класс — флагманская серия представительских автомобилей немецкой компании\n Mercedes-Benz, дочернего подразделения концерна Daimler AG. Представляет собой наиболее значимую линейку\n моделей в иерархии классов торговой марки.'\n ],\n [\n 'imgName' => '03.jpg',\n 'views' => 0,\n 'cost' => 8070100,\n 'prodName' => 'Audi A8',\n 'description' => 'Audi A8 четвертого поколения дебютировал в июле 2017 года, а в феврале 2018-го седан добрался\n до России. Автомобиль построен на новой платформе и получил множество современных опций.'\n ],\n [\n 'imgName' => '04.jpg',\n 'views' => 0,\n 'cost' => 4650800,\n 'prodName' => 'Hyundai Genesis G90',\n 'description' => 'Автомобиль, пришедший на смену лимузину Hyundai Equus, воплотил в себе дизайнерскую концепцию\n «Athletic Elegance» («Атлетичная элегантность»), «прописал» под своим капотом мощные моторы и получил богатый\n функционал, ничем не уступающий именитым конкурентам.'\n ],\n [\n 'imgName' => '05.jpg',\n 'views' => 0,\n 'cost' => 4200700,\n 'prodName' => 'KIA K900',\n 'description' => 'Сбалансированный, энергичный, солидный и при этом совсем не скучный. Новый повод для чьей-то\n зависти? Новое представление о роскоши! Впечатляющий дизайн интерьера, скульптурные линии кузова, умные\n технологии и убедительная динамика. KIA K900 — эталон роскошного седана.'\n ],\n [\n 'imgName' => 'default.jpg',\n 'views' => 0,\n 'cost' => 100500,\n 'prodName' => 'ВАЗ 2108',\n 'description' => 'Отечественное сокровище.',\n ],\n [\n 'imgName' => 'default.jpg',\n 'views' => 0,\n 'cost' => 100500,\n 'prodName' => 'ВАЗ 2108',\n 'description' => 'Отечественное сокровище.',\n ],\n [\n 'imgName' => 'default.jpg',\n 'views' => 0,\n 'cost' => 125000,\n 'prodName' => 'ВАЗ 2110',\n 'description' => 'Отечественное сокровище.',\n ],\n [\n 'imgName' => 'default.jpg',\n 'views' => 0,\n 'cost' => 70000,\n 'prodName' => 'ВАЗ 21099',\n 'description' => 'Отечественное сокровище.',\n ],\n [\n 'imgName' => 'default.jpg',\n 'views' => 0,\n 'cost' => 30000,\n 'prodName' => 'ВАЗ 2101',\n 'description' => 'Отечественное сокровище.',\n ],\n [\n 'imgName' => 'default.jpg',\n 'views' => 0,\n 'cost' => '99990',\n 'prodName' => 'Десятка',\n 'description' => 'Отечественное сокровище.',\n ],\n [\n 'imgName' => 'default.jpg',\n 'views' => 0,\n 'cost' => 125000,\n 'prodName' => 'ВАЗ 2110',\n 'description' => 'Отечественное сокровище.',\n ],\n [\n 'imgName' => 'default.jpg',\n 'views' => 0,\n 'cost' => 50000,\n 'prodName' => 'ВАЗ 2105',\n 'description' => 'Отечественное сокровище.',\n ],\n [\n 'imgName' => 'default.jpg',\n 'views' => 0,\n 'cost' => 125000,\n 'prodName' => 'ВАЗ 2110',\n 'description' => 'Отечественное сокровище.',\n ],\n ];\n $this->table('goods')->insert($products)->save();\n\n $sql = 'TRUNCATE users';\n $this->adapter->query($sql);\n $users = [\n [\n 'login' => 'admin',\n 'pass' => password_hash('123', PASSWORD_DEFAULT),\n 'role' => 1\n ],\n [\n 'login' => 'user1',\n 'pass' => password_hash('123', PASSWORD_DEFAULT),\n 'role' => 0\n ],\n [\n 'login' => 'user2',\n 'pass' => password_hash('123', PASSWORD_DEFAULT),\n 'role' => 0\n ],\n [\n 'login' => 'user3',\n 'pass' => password_hash('123', PASSWORD_DEFAULT),\n 'role' => 0\n ],\n ];\n\n $this->table('users')->insert($users)->save();\n\n $sql = 'TRUNCATE feedback';\n $this->adapter->query($sql);\n $feedback = [\n [\n 'name' => 'Машка',\n 'feedback' => 'Считаю ваш магазин лучшим прелучшим во всем мире :***'\n ],\n [\n 'name' => 'Петя',\n 'feedback' => 'Широчайший ассортимент автомобилей, все в одном месте, супер!'\n ],\n [\n 'name' => 'Иван',\n 'feedback' => 'Компетентные менеджеры, сервис - огонь! 5+'\n ],\n [\n 'name' => 'Джереми Кларксон',\n 'feedback' => 'Oh My God! I never see anything like it! Amazing, best idea!!!'\n ],\n [\n 'name' => 'Alex',\n 'feedback' => 'my feedback'\n ],\n ];\n\n $this->table('feedback')->insert($feedback)->save();\n }", "public function run()\n {\n $foods = [\n \"1\"=> [\n \"id\"=> \"1\",\n \"foodProduct\"=> \"Абрикосы\",\n \"foodProteins\"=> \"0.9\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"10.5\",\n \"foodCalories\"=> \"46.0\"\n ],\n \"2\"=> [\n \"id\"=> \"2\",\n \"foodProduct\"=> \"Абрикосы сушёные - курага\",\n \"foodProteins\"=> \"5.2\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"55.0\",\n \"foodCalories\"=> \"234.0\"\n ],\n \"3\"=> [\n \"id\"=> \"3\",\n \"foodProduct\"=> \"Айва\",\n \"foodProteins\"=> \"0.6\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"8.9\",\n \"foodCalories\"=> \"38.0\"\n ],\n \"4\"=> [\n \"id\"=> \"4\",\n \"foodProduct\"=> \"Алыча\",\n \"foodProteins\"=> \"0.2\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"7.4\",\n \"foodCalories\"=> \"34.0\"\n ],\n \"5\"=> [\n \"id\"=> \"5\",\n \"foodProduct\"=> \"Ананас\",\n \"foodProteins\"=> \"0.4\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"11.8\",\n \"foodCalories\"=> \"48.0\"\n ],\n \"6\"=> [\n \"id\"=> \"6\",\n \"foodProduct\"=> \"Ананасовый сок\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"12.8\",\n \"foodCalories\"=> \"51.0\"\n ],\n \"7\"=> [\n \"id\"=> \"7\",\n \"foodProduct\"=> \"Апельсин\",\n \"foodProteins\"=> \"0.9\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"8.4\",\n \"foodCalories\"=> \"38.0\"\n ],\n \"8\"=> [\n \"id\"=> \"8\",\n \"foodProduct\"=> \"Апельсиновый сок\",\n \"foodProteins\"=> \"0.6\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"10.0\",\n \"foodCalories\"=> \"43.0\"\n ],\n \"9\"=> [\n \"id\"=> \"9\",\n \"foodProduct\"=> \"Арбуз\",\n \"foodProteins\"=> \"0.7\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"9.2\",\n \"foodCalories\"=> \"38.0\"\n ],\n \"10\"=> [\n \"id\"=> \"10\",\n \"foodProduct\"=> \"Арихис жареный солёный\",\n \"foodProteins\"=> \"27.6\",\n \"foodFats\"=> \"42.5\",\n \"foodCarbohydrates\"=> \"15.0\",\n \"foodCalories\"=> \"600.0\"\n ],\n \"11\"=> [\n \"id\"=> \"11\",\n \"foodProduct\"=> \"Баклажаны\",\n \"foodProteins\"=> \"0.6\",\n \"foodFats\"=> \"0.1\",\n \"foodCarbohydrates\"=> \"5.5\",\n \"foodCalories\"=> \"24.0\"\n ],\n \"12\"=> [\n \"id\"=> \"12\",\n \"foodProduct\"=> \"Банан\",\n \"foodProteins\"=> \"1.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"22.4\",\n \"foodCalories\"=> \"91.0\"\n ],\n \"13\"=> [\n \"id\"=> \"13\",\n \"foodProduct\"=> \"Белые свежие\",\n \"foodProteins\"=> \"3.2\",\n \"foodFats\"=> \"0.7\",\n \"foodCarbohydrates\"=> \"1.6\",\n \"foodCalories\"=> \"25.0\"\n ],\n \"14\"=> [\n \"id\"=> \"14\",\n \"foodProduct\"=> \"Белые сушёные\",\n \"foodProteins\"=> \"27.6\",\n \"foodFats\"=> \"6.8\",\n \"foodCarbohydrates\"=> \"10.0\",\n \"foodCalories\"=> \"209.0\"\n ],\n \"15\"=> [\n \"id\"=> \"15\",\n \"foodProduct\"=> \"Бобы\",\n \"foodProteins\"=> \"6.0\",\n \"foodFats\"=> \"0.1\",\n \"foodCarbohydrates\"=> \"8.3\",\n \"foodCalories\"=> \"58.0\"\n ],\n \"16\"=> [\n \"id\"=> \"16\",\n \"foodProduct\"=> \"Бразильский\",\n \"foodProteins\"=> \"14.3\",\n \"foodFats\"=> \"66.9\",\n \"foodCarbohydrates\"=> \"7.8\",\n \"foodCalories\"=> \"703.0\"\n ],\n \"17\"=> [\n \"id\"=> \"17\",\n \"foodProduct\"=> \"Брусника\",\n \"foodProteins\"=> \"0.7\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"8.6\",\n \"foodCalories\"=> \"40.0\"\n ],\n \"18\"=> [\n \"id\"=> \"18\",\n \"foodProduct\"=> \"Брюква\",\n \"foodProteins\"=> \"1.2\",\n \"foodFats\"=> \"0.1\",\n \"foodCarbohydrates\"=> \"8.1\",\n \"foodCalories\"=> \"37.0\"\n ],\n \"19\"=> [\n \"id\"=> \"19\",\n \"foodProduct\"=> \"Вафли бисквитные мягкие квадратные\",\n \"foodProteins\"=> \"6.8\",\n \"foodFats\"=> \"25.8\",\n \"foodCarbohydrates\"=> \"55.8\",\n \"foodCalories\"=> \"482.0\"\n ],\n \"20\"=> [\n \"id\"=> \"20\",\n \"foodProduct\"=> \"Вафли бисквитные мягкие толстые круглые\",\n \"foodProteins\"=> \"4.6\",\n \"foodFats\"=> \"18.8\",\n \"foodCarbohydrates\"=> \"52.6\",\n \"foodCalories\"=> \"399.0\"\n ],\n \"21\"=> [\n \"id\"=> \"21\",\n \"foodProduct\"=> \"Вафли бисквитные мягкие тонкие\",\n \"foodProteins\"=> \"8.8\",\n \"foodFats\"=> \"20.3\",\n \"foodCarbohydrates\"=> \"52.0\",\n \"foodCalories\"=> \"426.0\"\n ],\n \"22\"=> [\n \"id\"=> \"22\",\n \"foodProduct\"=> \"Ветчина\",\n \"foodProteins\"=> \"10.0\",\n \"foodFats\"=> \"35.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"355.0\"\n ],\n \"23\"=> [\n \"id\"=> \"23\",\n \"foodProduct\"=> \"Вино белое \",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"108.0\"\n ],\n \"24\"=> [\n \"id\"=> \"24\",\n \"foodProduct\"=> \"Виноград\",\n \"foodProteins\"=> \"0.4\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"17.5\",\n \"foodCalories\"=> \"69.0\"\n ],\n \"25\"=> [\n \"id\"=> \"25\",\n \"foodProduct\"=> \"Виноградный сок\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"15.0\",\n \"foodCalories\"=> \"60.0\"\n ],\n \"26\"=> [\n \"id\"=> \"26\",\n \"foodProduct\"=> \"Вишнёвый нектар \\\"Я\\\"\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"11.0\",\n \"foodCalories\"=> \"44.0\"\n ],\n \"27\"=> [\n \"id\"=> \"27\",\n \"foodProduct\"=> \"Вишня\",\n \"foodProteins\"=> \"0.8\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"11.3\",\n \"foodCalories\"=> \"49.0\"\n ],\n \"28\"=> [\n \"id\"=> \"28\",\n \"foodProduct\"=> \"Вишня мороженная\",\n \"foodProteins\"=> \"0.9\",\n \"foodFats\"=> \"0.4\",\n \"foodCarbohydrates\"=> \"10.9\",\n \"foodCalories\"=> \"47.0\"\n ],\n \"29\"=> [\n \"id\"=> \"29\",\n \"foodProduct\"=> \"Вобла - икра\",\n \"foodProteins\"=> \"63.75\",\n \"foodFats\"=> \"3.5\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"286.5\"\n ],\n \"30\"=> [\n \"id\"=> \"30\",\n \"foodProduct\"=> \"Говядина - тушёнка консервы\",\n \"foodProteins\"=> \"20.5\",\n \"foodFats\"=> \"10.4\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"206.0\"\n ],\n \"31\"=> [\n \"id\"=> \"31\",\n \"foodProduct\"=> \"Говядина копчёно-варёная\",\n \"foodProteins\"=> \"17.0\",\n \"foodFats\"=> \"5.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"113.0\"\n ],\n \"32\"=> [\n \"id\"=> \"32\",\n \"foodProduct\"=> \"Голубика\",\n \"foodProteins\"=> \"1.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"7.7\",\n \"foodCalories\"=> \"37.0\"\n ],\n \"33\"=> [\n \"id\"=> \"33\",\n \"foodProduct\"=> \"Горбуша натуральная консервы\",\n \"foodProteins\"=> \"21.00\",\n \"foodFats\"=> \"6.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"138.0\"\n ],\n \"34\"=> [\n \"id\"=> \"34\",\n \"foodProduct\"=> \"Горох\",\n \"foodProteins\"=> \"23.0\",\n \"foodFats\"=> \"1.2\",\n \"foodCarbohydrates\"=> \"56.3\",\n \"foodCalories\"=> \"303.0\"\n ],\n \"35\"=> [\n \"id\"=> \"35\",\n \"foodProduct\"=> \"Горошек зелёный\",\n \"foodProteins\"=> \"5.0\",\n \"foodFats\"=> \"0.2\",\n \"foodCarbohydrates\"=> \"13.3\",\n \"foodCalories\"=> \"72.0\"\n ],\n \"36\"=> [\n \"id\"=> \"36\",\n \"foodProduct\"=> \"Горошек зелёный консервированный\",\n \"foodProteins\"=> \"5.5\",\n \"foodFats\"=> \"0.6\",\n \"foodCarbohydrates\"=> \"11.5\",\n \"foodCalories\"=> \"73.0\"\n ],\n \"37\"=> [\n \"id\"=> \"37\",\n \"foodProduct\"=> \"Горчица русская\",\n \"foodProteins\"=> \"9.3\",\n \"foodFats\"=> \"8.0\",\n \"foodCarbohydrates\"=> \"11.0\",\n \"foodCalories\"=> \"175.0\"\n ],\n \"38\"=> [\n \"id\"=> \"38\",\n \"foodProduct\"=> \"Горчичное\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"99.8\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"898.0\"\n ],\n \"39\"=> [\n \"id\"=> \"39\",\n \"foodProduct\"=> \"Гранат\",\n \"foodProteins\"=> \"0.9\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"11.8\",\n \"foodCalories\"=> \"52.0\"\n ],\n \"40\"=> [\n \"id\"=> \"40\",\n \"foodProduct\"=> \"Гранатовый сок\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"12.0\",\n \"foodCalories\"=> \"48.0\"\n ],\n \"41\"=> [\n \"id\"=> \"41\",\n \"foodProduct\"=> \"Грейпфрукт\",\n \"foodProteins\"=> \"0.9\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"7.3\",\n \"foodCalories\"=> \"35.0\"\n ],\n \"42\"=> [\n \"id\"=> \"42\",\n \"foodProduct\"=> \"Грейпфруктовый сок\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"10.0\",\n \"foodCalories\"=> \"40.0\"\n ],\n \"43\"=> [\n \"id\"=> \"43\",\n \"foodProduct\"=> \"Грецкий\",\n \"foodProteins\"=> \"14.8\",\n \"foodFats\"=> \"64.0\",\n \"foodCarbohydrates\"=> \"13.7\",\n \"foodCalories\"=> \"698.0\"\n ],\n \"44\"=> [\n \"id\"=> \"44\",\n \"foodProduct\"=> \"Гречиха\",\n \"foodProteins\"=> \"11.6\",\n \"foodFats\"=> \"2.3\",\n \"foodCarbohydrates\"=> \"59.5\",\n \"foodCalories\"=> \"290.0\"\n ],\n \"45\"=> [\n \"id\"=> \"45\",\n \"foodProduct\"=> \"Гречка - крупа ядрица\",\n \"foodProteins\"=> \"12.5\",\n \"foodFats\"=> \"2.1\",\n \"foodCarbohydrates\"=> \"62.0\",\n \"foodCalories\"=> \"351.0\"\n ],\n \"46\"=> [\n \"id\"=> \"46\",\n \"foodProduct\"=> \"Грузди свежие\",\n \"foodProteins\"=> \"1.8\",\n \"foodFats\"=> \"0.8\",\n \"foodCarbohydrates\"=> \"1.1\",\n \"foodCalories\"=> \"19.0\"\n ],\n \"47\"=> [\n \"id\"=> \"47\",\n \"foodProduct\"=> \"Груша\",\n \"foodProteins\"=> \"0.4\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"10.7\",\n \"foodCalories\"=> \"42.0\"\n ],\n \"48\"=> [\n \"id\"=> \"48\",\n \"foodProduct\"=> \"Дрожжи\",\n \"foodProteins\"=> \"43.0\",\n \"foodFats\"=> \"5.7\",\n \"foodCarbohydrates\"=> \"38.0\",\n \"foodCalories\"=> \"361.0\"\n ],\n \"49\"=> [\n \"id\"=> \"49\",\n \"foodProduct\"=> \"Дыня\",\n \"foodProteins\"=> \"0.6\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"9.6\",\n \"foodCalories\"=> \"39.0\"\n ],\n \"50\"=> [\n \"id\"=> \"50\",\n \"foodProduct\"=> \"Ежевика\",\n \"foodProteins\"=> \"2.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"5.3\",\n \"foodCalories\"=> \"33.0\"\n ],\n \"51\"=> [\n \"id\"=> \"51\",\n \"foodProduct\"=> \"Земляника\",\n \"foodProteins\"=> \"1.8\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"8.1\",\n \"foodCalories\"=> \"41.0\"\n ],\n \"52\"=> [\n \"id\"=> \"52\",\n \"foodProduct\"=> \"Зефир в шоколаде\",\n \"foodProteins\"=> \"2.44\",\n \"foodFats\"=> \"12.71\",\n \"foodCarbohydrates\"=> \"73.44\",\n \"foodCalories\"=> \"326.0\"\n ],\n \"53\"=> [\n \"id\"=> \"53\",\n \"foodProduct\"=> \"Изюм\",\n \"foodProteins\"=> \"2.5\",\n \"foodFats\"=> \"0.2\",\n \"foodCarbohydrates\"=> \"76.5\",\n \"foodCalories\"=> \"321.0\"\n ],\n \"54\"=> [\n \"id\"=> \"54\",\n \"foodProduct\"=> \"Икра лососевая солёная (красная)\",\n \"foodProteins\"=> \"32.0\",\n \"foodFats\"=> \"15.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"245.0\"\n ],\n \"55\"=> [\n \"id\"=> \"55\",\n \"foodProduct\"=> \"Индейка - рулет копчёно-варёный\",\n \"foodProteins\"=> \"5.0\",\n \"foodFats\"=> \"17.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"190.0\"\n ],\n \"56\"=> [\n \"id\"=> \"56\",\n \"foodProduct\"=> \"Инжир\",\n \"foodProteins\"=> \"0.7\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"13.9\",\n \"foodCalories\"=> \"56.0\"\n ],\n \"57\"=> [\n \"id\"=> \"57\",\n \"foodProduct\"=> \"Инжир\",\n \"foodProteins\"=> \"3.0\",\n \"foodFats\"=> \"1.0\",\n \"foodCarbohydrates\"=> \"50.0\",\n \"foodCalories\"=> \"210.0\"\n ],\n \"58\"=> [\n \"id\"=> \"58\",\n \"foodProduct\"=> \"Йогурт Активия без добавок\",\n \"foodProteins\"=> \"4.5\",\n \"foodFats\"=> \"3.5\",\n \"foodCarbohydrates\"=> \"6.3\",\n \"foodCalories\"=> \"75.0\"\n ],\n \"59\"=> [\n \"id\"=> \"59\",\n \"foodProduct\"=> \"Йогурт Активия медовый\",\n \"foodProteins\"=> \"3.7\",\n \"foodFats\"=> \"3.0\",\n \"foodCarbohydrates\"=> \"13.7\",\n \"foodCalories\"=> \"105.0\"\n ],\n \"60\"=> [\n \"id\"=> \"60\",\n \"foodProduct\"=> \"Йогурт Активия с мюсли и персиком\",\n \"foodProteins\"=> \"4.0\",\n \"foodFats\"=> \"3.0\",\n \"foodCarbohydrates\"=> \"16.2\",\n \"foodCalories\"=> \"110.0\"\n ],\n \"61\"=> [\n \"id\"=> \"61\",\n \"foodProduct\"=> \"Йогурт Активия с черносливом\",\n \"foodProteins\"=> \"3.7\",\n \"foodFats\"=> \"3.0\",\n \"foodCarbohydrates\"=> \"15.9\",\n \"foodCalories\"=> \"105.0\"\n ],\n \"62\"=> [\n \"id\"=> \"62\",\n \"foodProduct\"=> \"Йогурт молочный полужирный\",\n \"foodProteins\"=> \"3.4\",\n \"foodFats\"=> \"1.5\",\n \"foodCarbohydrates\"=> \"12.3\",\n \"foodCalories\"=> \"74.0\"\n ],\n \"63\"=> [\n \"id\"=> \"63\",\n \"foodProduct\"=> \"Кабачки\",\n \"foodProteins\"=> \"0.6\",\n \"foodFats\"=> \"0.3\",\n \"foodCarbohydrates\"=> \"5.7\",\n \"foodCalories\"=> \"27.0\"\n ],\n \"64\"=> [\n \"id\"=> \"64\",\n \"foodProduct\"=> \"Какао порошок\",\n \"foodProteins\"=> \"24.7\",\n \"foodFats\"=> \"15.0\",\n \"foodCarbohydrates\"=> \"28.5\",\n \"foodCalories\"=> \"364.0\"\n ],\n \"65\"=> [\n \"id\"=> \"65\",\n \"foodProduct\"=> \"Какао сухой растворимый с сахаром\",\n \"foodProteins\"=> \"5.0\",\n \"foodFats\"=> \"3.0\",\n \"foodCarbohydrates\"=> \"83.5\",\n \"foodCalories\"=> \"380.0\"\n ],\n \"66\"=> [\n \"id\"=> \"66\",\n \"foodProduct\"=> \"Кальмар \",\n \"foodProteins\"=> \"18.0\",\n \"foodFats\"=> \"2.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"98.0\"\n ],\n \"67\"=> [\n \"id\"=> \"67\",\n \"foodProduct\"=> \"Кальмар натуральный консервы\",\n \"foodProteins\"=> \"20.0\",\n \"foodFats\"=> \"2.0\",\n \"foodCarbohydrates\"=> \"1.8\",\n \"foodCalories\"=> \"106.0\"\n ],\n \"68\"=> [\n \"id\"=> \"68\",\n \"foodProduct\"=> \"Кальмар сушёный\",\n \"foodProteins\"=> \"70.0\",\n \"foodFats\"=> \"1.0\",\n \"foodCarbohydrates\"=> \"3.0\",\n \"foodCalories\"=> \"293.0\"\n ],\n \"69\"=> [\n \"id\"=> \"69\",\n \"foodProduct\"=> \"Кальмары в масле консервированные\",\n \"foodProteins\"=> \"19.0\",\n \"foodFats\"=> \"5.8\",\n \"foodCarbohydrates\"=> \"2.2\",\n \"foodCalories\"=> \"137.0\"\n ],\n \"70\"=> [\n \"id\"=> \"70\",\n \"foodProduct\"=> \"Капуста белокочанная \",\n \"foodProteins\"=> \"1.8\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"5.4\",\n \"foodCalories\"=> \"28.0\"\n ],\n \"71\"=> [\n \"id\"=> \"71\",\n \"foodProduct\"=> \"Капуста брокколи\",\n \"foodProteins\"=> \"2.6\",\n \"foodFats\"=> \"0.5\",\n \"foodCarbohydrates\"=> \"4.5\",\n \"foodCalories\"=> \"28.0\"\n ],\n \"72\"=> [\n \"id\"=> \"72\",\n \"foodProduct\"=> \"Капуста брюссельская\",\n \"foodProteins\"=> \"4.8\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"6.7\",\n \"foodCalories\"=> \"46.0\"\n ],\n \"73\"=> [\n \"id\"=> \"73\",\n \"foodProduct\"=> \"Капуста кольраби\",\n \"foodProteins\"=> \"2.8\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"8.3\",\n \"foodCalories\"=> \"43.0\"\n ],\n \"74\"=> [\n \"id\"=> \"74\",\n \"foodProduct\"=> \"Капуста краснокочанная\",\n \"foodProteins\"=> \"1.8\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"6.1\",\n \"foodCalories\"=> \"31.0\"\n ],\n \"75\"=> [\n \"id\"=> \"75\",\n \"foodProduct\"=> \"Капуста морская\",\n \"foodProteins\"=> \"0.9\",\n \"foodFats\"=> \"0.2\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"5.0\"\n ],\n \"76\"=> [\n \"id\"=> \"76\",\n \"foodProduct\"=> \"Капуста цветная\",\n \"foodProteins\"=> \"2.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"4.9\",\n \"foodCalories\"=> \"29.0\"\n ],\n \"77\"=> [\n \"id\"=> \"77\",\n \"foodProduct\"=> \"Карп\",\n \"foodProteins\"=> \"16.0\",\n \"foodFats\"=> \"3.6\",\n \"foodCarbohydrates\"=> \"1.3\",\n \"foodCalories\"=> \"96.0\"\n ],\n \"78\"=> [\n \"id\"=> \"78\",\n \"foodProduct\"=> \"Картофель\",\n \"foodProteins\"=> \"2.0\",\n \"foodFats\"=> \"0.1\",\n \"foodCarbohydrates\"=> \"19.7\",\n \"foodCalories\"=> \"83.0\"\n ],\n \"79\"=> [\n \"id\"=> \"79\",\n \"foodProduct\"=> \"Картофель сладкий (батат)\",\n \"foodProteins\"=> \"2.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"13.8\",\n \"foodCalories\"=> \"60.0\"\n ],\n \"80\"=> [\n \"id\"=> \"80\",\n \"foodProduct\"=> \"Картофель хрустящий \\\"Московский\\\"\",\n \"foodProteins\"=> \"4.6\",\n \"foodFats\"=> \"35.6\",\n \"foodCarbohydrates\"=> \"47.2\",\n \"foodCalories\"=> \"532.0\"\n ],\n \"81\"=> [\n \"id\"=> \"81\",\n \"foodProduct\"=> \"Кекс без дрожжей с ягодами и орехами\",\n \"foodProteins\"=> \"7.00\",\n \"foodFats\"=> \"4.00\",\n \"foodCarbohydrates\"=> \"52.00\",\n \"foodCalories\"=> \"274.0\"\n ],\n \"82\"=> [\n \"id\"=> \"82\",\n \"foodProduct\"=> \"Кета слабосолёная\",\n \"foodProteins\"=> \"24.0\",\n \"foodFats\"=> \"9.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"177.0\"\n ],\n \"83\"=> [\n \"id\"=> \"83\",\n \"foodProduct\"=> \"Кефир 1%\",\n \"foodProteins\"=> \"3.0\",\n \"foodFats\"=> \"1.0\",\n \"foodCarbohydrates\"=> \"3.8\",\n \"foodCalories\"=> \"39.0\"\n ],\n \"84\"=> [\n \"id\"=> \"84\",\n \"foodProduct\"=> \"Кефир 3,2%\",\n \"foodProteins\"=> \"3.2\",\n \"foodFats\"=> \"3.2\",\n \"foodCarbohydrates\"=> \"5.4\",\n \"foodCalories\"=> \"64.0\"\n ],\n \"85\"=> [\n \"id\"=> \"85\",\n \"foodProduct\"=> \"Кефир-Био Biomax 1%\",\n \"foodProteins\"=> \"3.6\",\n \"foodFats\"=> \"1.0\",\n \"foodCarbohydrates\"=> \"5.6\",\n \"foodCalories\"=> \"47.3\"\n ],\n \"86\"=> [\n \"id\"=> \"86\",\n \"foodProduct\"=> \"Кешью\",\n \"foodProteins\"=> \"17.5\",\n \"foodFats\"=> \"42.2\",\n \"foodCarbohydrates\"=> \"30.5\",\n \"foodCalories\"=> \"572.0\"\n ],\n \"87\"=> [\n \"id\"=> \"87\",\n \"foodProduct\"=> \"Кизил\",\n \"foodProteins\"=> \"1.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"9.7\",\n \"foodCalories\"=> \"45.0\"\n ],\n \"88\"=> [\n \"id\"=> \"88\",\n \"foodProduct\"=> \"Клубника мороженная\",\n \"foodProteins\"=> \"0.9\",\n \"foodFats\"=> \"0.4\",\n \"foodCarbohydrates\"=> \"7.7\",\n \"foodCalories\"=> \"41.3\"\n ],\n \"89\"=> [\n \"id\"=> \"89\",\n \"foodProduct\"=> \"Клюква\",\n \"foodProteins\"=> \"0.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"4.8\",\n \"foodCalories\"=> \"28.0\"\n ],\n \"90\"=> [\n \"id\"=> \"90\",\n \"foodProduct\"=> \"Клюква в сахарной пудре\",\n \"foodProteins\"=> \"0.4\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"96.0\",\n \"foodCalories\"=> \"384.0\"\n ],\n \"91\"=> [\n \"id\"=> \"91\",\n \"foodProduct\"=> \"Клюква дроблёная с сахаром\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"45.0\",\n \"foodCalories\"=> \"180.0\"\n ],\n \"92\"=> [\n \"id\"=> \"92\",\n \"foodProduct\"=> \"Клюква мороженная\",\n \"foodProteins\"=> \"0.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"3.8\",\n \"foodCalories\"=> \"17.0\"\n ],\n \"93\"=> [\n \"id\"=> \"93\",\n \"foodProduct\"=> \"Кобаса полукопчёная\",\n \"foodProteins\"=> \"13.0\",\n \"foodFats\"=> \"25.5\",\n \"foodCarbohydrates\"=> \"4.0\",\n \"foodCalories\"=> \"321.0\"\n ],\n \"94\"=> [\n \"id\"=> \"94\",\n \"foodProduct\"=> \"Колбаса варёная\",\n \"foodProteins\"=> \"12.0\",\n \"foodFats\"=> \"19.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"226.0\"\n ],\n \"95\"=> [\n \"id\"=> \"95\",\n \"foodProduct\"=> \"Колбаса варёно-копчёная сервелат\",\n \"foodProteins\"=> \"16.1\",\n \"foodFats\"=> \"40.1\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"425.0\"\n ],\n \"96\"=> [\n \"id\"=> \"96\",\n \"foodProduct\"=> \"Колбаса сырокопчённая сервелат\",\n \"foodProteins\"=> \"23.9\",\n \"foodFats\"=> \"47.8\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"526.0\"\n ],\n \"97\"=> [\n \"id\"=> \"97\",\n \"foodProduct\"=> \"Колбаса сырокопчённая сервелат\",\n \"foodProteins\"=> \"24.0\",\n \"foodFats\"=> \"40.5\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"461.0\"\n ],\n \"98\"=> [\n \"id\"=> \"98\",\n \"foodProduct\"=> \"Колбаски для гриля (говядина и свинина)\",\n \"foodProteins\"=> \"12.2\",\n \"foodFats\"=> \"23.2\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"257.6\"\n ],\n \"99\"=> [\n \"id\"=> \"99\",\n \"foodProduct\"=> \"Конопляное\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"99.85\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"899.0\"\n ],\n \"100\"=> [\n \"id\"=> \"100\",\n \"foodProduct\"=> \"Конфеты \\\"Алёнка\\\"\",\n \"foodProteins\"=> \"6.7\",\n \"foodFats\"=> \"32.2\",\n \"foodCarbohydrates\"=> \"58.9\",\n \"foodCalories\"=> \"527.0\"\n ],\n \"101\"=> [\n \"id\"=> \"101\",\n \"foodProduct\"=> \"Конфеты \\\"Мишка косолапый\\\"\",\n \"foodProteins\"=> \"5.7\",\n \"foodFats\"=> \"32.1\",\n \"foodCarbohydrates\"=> \"60.5\",\n \"foodCalories\"=> \"526.0\"\n ],\n \"102\"=> [\n \"id\"=> \"102\",\n \"foodProduct\"=> \"Конфеты \\\"Суфле в шоколаде\\\"\",\n \"foodProteins\"=> \"2.5\",\n \"foodFats\"=> \"14.4\",\n \"foodCarbohydrates\"=> \"69.3\",\n \"foodCalories\"=> \"392.0\"\n ],\n \"103\"=> [\n \"id\"=> \"103\",\n \"foodProduct\"=> \"Конфеты батончик \\\"рот фронт\\\"\",\n \"foodProteins\"=> \"10.6\",\n \"foodFats\"=> \"30.4\",\n \"foodCarbohydrates\"=> \"52.4\",\n \"foodCalories\"=> \"519.0\"\n ],\n \"104\"=> [\n \"id\"=> \"104\",\n \"foodProduct\"=> \"Конфеты Грильяж в шоколаде\",\n \"foodProteins\"=> \"5.1\",\n \"foodFats\"=> \"26.9\",\n \"foodCarbohydrates\"=> \"64.6\",\n \"foodCalories\"=> \"512.0\"\n ],\n \"105\"=> [\n \"id\"=> \"105\",\n \"foodProduct\"=> \"Конфеты карамель в шоколаде \",\n \"foodProteins\"=> \"2.8\",\n \"foodFats\"=> \"10.9\",\n \"foodCarbohydrates\"=> \"77.0\",\n \"foodCalories\"=> \"406.0\"\n ],\n \"106\"=> [\n \"id\"=> \"106\",\n \"foodProduct\"=> \"Конфеты шоколадные ассорти с начинкой\",\n \"foodProteins\"=> \"2.7\",\n \"foodFats\"=> \"26.6\",\n \"foodCarbohydrates\"=> \"58.90\",\n \"foodCalories\"=> \"486.0\"\n ],\n \"107\"=> [\n \"id\"=> \"107\",\n \"foodProduct\"=> \"Конфеты шоколадные с вафлями и начинкой \\\"Золотистые орешки\\\"\",\n \"foodProteins\"=> \"6.7\",\n \"foodFats\"=> \"28.9\",\n \"foodCarbohydrates\"=> \"51.8\",\n \"foodCalories\"=> \"470.0\"\n ],\n \"108\"=> [\n \"id\"=> \"108\",\n \"foodProduct\"=> \"Конфеты шоколадные с орехово-сливочной начинкой\",\n \"foodProteins\"=> \"7.2\",\n \"foodFats\"=> \"35.0\",\n \"foodCarbohydrates\"=> \"55.20\",\n \"foodCalories\"=> \"564.0\"\n ],\n \"109\"=> [\n \"id\"=> \"109\",\n \"foodProduct\"=> \"Кофе в зёрных\",\n \"foodProteins\"=> \"13.9\",\n \"foodFats\"=> \"14.4\",\n \"foodCarbohydrates\"=> \"4.1\",\n \"foodCalories\"=> \"223.0\"\n ],\n \"110\"=> [\n \"id\"=> \"110\",\n \"foodProduct\"=> \"Кофе растворимый \",\n \"foodProteins\"=> \"14.6\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"10.3\",\n \"foodCalories\"=> \"100.0\"\n ],\n \"111\"=> [\n \"id\"=> \"111\",\n \"foodProduct\"=> \"Краб\",\n \"foodProteins\"=> \"16.0\",\n \"foodFats\"=> \"0.5\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"69.0\"\n ],\n \"112\"=> [\n \"id\"=> \"112\",\n \"foodProduct\"=> \"Крабовые палочки имитация\",\n \"foodProteins\"=> \"7.0\",\n \"foodFats\"=> \"1.0\",\n \"foodCarbohydrates\"=> \"10.0\",\n \"foodCalories\"=> \"377.0\"\n ],\n \"113\"=> [\n \"id\"=> \"113\",\n \"foodProduct\"=> \"Крабы натуральные в собственном соку консервированные\",\n \"foodProteins\"=> \"18.0\",\n \"foodFats\"=> \"1.2\",\n \"foodCarbohydrates\"=> \"2.0\",\n \"foodCalories\"=> \"85.0\"\n ],\n \"114\"=> [\n \"id\"=> \"114\",\n \"foodProduct\"=> \"Креветки\",\n \"foodProteins\"=> \"18.9\",\n \"foodFats\"=> \"0.8\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"83.0\"\n ],\n \"115\"=> [\n \"id\"=> \"115\",\n \"foodProduct\"=> \"Крыжовник\",\n \"foodProteins\"=> \"0.7\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"9.9\",\n \"foodCalories\"=> \"44.0\"\n ],\n \"116\"=> [\n \"id\"=> \"116\",\n \"foodProduct\"=> \"Кукуруза\",\n \"foodProteins\"=> \"10.3\",\n \"foodFats\"=> \"4.9\",\n \"foodCarbohydrates\"=> \"67.5\",\n \"foodCalories\"=> \"338.0\"\n ],\n \"117\"=> [\n \"id\"=> \"117\",\n \"foodProduct\"=> \"Кукуруза сладкая консервированная\",\n \"foodProteins\"=> \"4.7\",\n \"foodFats\"=> \"1.6\",\n \"foodCarbohydrates\"=> \"23.6\",\n \"foodCalories\"=> \"128.0\"\n ],\n \"118\"=> [\n \"id\"=> \"118\",\n \"foodProduct\"=> \"Кукурузное\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"99.9\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"899.0\"\n ],\n \"119\"=> [\n \"id\"=> \"119\",\n \"foodProduct\"=> \"Курага\",\n \"foodProteins\"=> \"5.5\",\n \"foodFats\"=> \"0.5\",\n \"foodCarbohydrates\"=> \"63.5\",\n \"foodCalories\"=> \"291.0\"\n ],\n \"120\"=> [\n \"id\"=> \"120\",\n \"foodProduct\"=> \"Лангуст\",\n \"foodProteins\"=> \"18.4\",\n \"foodFats\"=> \"0.4\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"77.0\"\n ],\n \"121\"=> [\n \"id\"=> \"121\",\n \"foodProduct\"=> \"Лапша яичная\",\n \"foodProteins\"=> \"10.4\",\n \"foodFats\"=> \"1.6\",\n \"foodCarbohydrates\"=> \"70.3\",\n \"foodCalories\"=> \"337.0\"\n ],\n \"122\"=> [\n \"id\"=> \"122\",\n \"foodProduct\"=> \"Ледяная рыба\",\n \"foodProteins\"=> \"15.9\",\n \"foodFats\"=> \"0.9\",\n \"foodCarbohydrates\"=> \"1.3\",\n \"foodCalories\"=> \"104.0\"\n ],\n \"123\"=> [\n \"id\"=> \"123\",\n \"foodProduct\"=> \"Ликёр маленькая рюмка\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"70.0\"\n ],\n \"124\"=> [\n \"id\"=> \"124\",\n \"foodProduct\"=> \"Лимон\",\n \"foodProteins\"=> \"0.9\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"3.6\",\n \"foodCalories\"=> \"31.0\"\n ],\n \"125\"=> [\n \"id\"=> \"125\",\n \"foodProduct\"=> \"Лисички свежие\",\n \"foodProteins\"=> \"1.6\",\n \"foodFats\"=> \"0.9\",\n \"foodCarbohydrates\"=> \"2.1\",\n \"foodCalories\"=> \"22.0\"\n ],\n \"126\"=> [\n \"id\"=> \"126\",\n \"foodProduct\"=> \"Лосось консервированный натуральный \",\n \"foodProteins\"=> \"21.0\",\n \"foodFats\"=> \"6.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"138.0\"\n ],\n \"127\"=> [\n \"id\"=> \"127\",\n \"foodProduct\"=> \"Лук зелёный\",\n \"foodProteins\"=> \"1.3\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"4.3\",\n \"foodCalories\"=> \"22.0\"\n ],\n \"128\"=> [\n \"id\"=> \"128\",\n \"foodProduct\"=> \"Лук репчатый\",\n \"foodProteins\"=> \"1.7\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"9.5\",\n \"foodCalories\"=> \"43.0\"\n ],\n \"129\"=> [\n \"id\"=> \"129\",\n \"foodProduct\"=> \"Лукум болгарский\",\n \"foodProteins\"=> \"1.5\",\n \"foodFats\"=> \"0.85\",\n \"foodCarbohydrates\"=> \"89.65\",\n \"foodCalories\"=> \"382.0\"\n ],\n \"130\"=> [\n \"id\"=> \"130\",\n \"foodProduct\"=> \"Майонез любительский\",\n \"foodProteins\"=> \"3.1\",\n \"foodFats\"=> \"47.0\",\n \"foodCarbohydrates\"=> \"3.0\",\n \"foodCalories\"=> \"449.0\"\n ],\n \"131\"=> [\n \"id\"=> \"131\",\n \"foodProduct\"=> \"Майонез салатный \",\n \"foodProteins\"=> \"2.3\",\n \"foodFats\"=> \"55.0\",\n \"foodCarbohydrates\"=> \"4.2\",\n \"foodCalories\"=> \"537.4\"\n ],\n \"132\"=> [\n \"id\"=> \"132\",\n \"foodProduct\"=> \"Макаронные изделия\",\n \"foodProteins\"=> \"10.7\",\n \"foodFats\"=> \"1.3\",\n \"foodCarbohydrates\"=> \"74.2\",\n \"foodCalories\"=> \"333.0\"\n ],\n \"133\"=> [\n \"id\"=> \"133\",\n \"foodProduct\"=> \"Макаронные изделия для Лазаньи Италия\",\n \"foodProteins\"=> \"12.5\",\n \"foodFats\"=> \"1.5\",\n \"foodCarbohydrates\"=> \"73.0\",\n \"foodCalories\"=> \"355.0\"\n ],\n \"134\"=> [\n \"id\"=> \"134\",\n \"foodProduct\"=> \"Макаронные изделия из свежего теста Pasta\",\n \"foodProteins\"=> \"12.0\",\n \"foodFats\"=> \"3.0\",\n \"foodCarbohydrates\"=> \"53.0\",\n \"foodCalories\"=> \"290.0\"\n ],\n \"135\"=> [\n \"id\"=> \"135\",\n \"foodProduct\"=> \"Макаронные изделия Италия с содержанием яиц \",\n \"foodProteins\"=> \"14.0\",\n \"foodFats\"=> \"4.0\",\n \"foodCarbohydrates\"=> \"65.0\",\n \"foodCalories\"=> \"352.0\"\n ],\n \"136\"=> [\n \"id\"=> \"136\",\n \"foodProduct\"=> \"Макаронные изделия лапша с содержанием яиц на отварные 100 гр\",\n \"foodProteins\"=> \"6.0\",\n \"foodFats\"=> \"2.0\",\n \"foodCarbohydrates\"=> \"26.0\",\n \"foodCalories\"=> \"146.0\"\n ],\n \"137\"=> [\n \"id\"=> \"137\",\n \"foodProduct\"=> \"Макаронные изделия с добавками моркови\",\n \"foodProteins\"=> \"11.3\",\n \"foodFats\"=> \"0.9\",\n \"foodCarbohydrates\"=> \"77.1\",\n \"foodCalories\"=> \"362.0\"\n ],\n \"138\"=> [\n \"id\"=> \"138\",\n \"foodProduct\"=> \"Макароны Италия твёрдых сортов пшеницы Pasta Zara\",\n \"foodProteins\"=> \"12.0\",\n \"foodFats\"=> \"1.1\",\n \"foodCarbohydrates\"=> \"75.0\",\n \"foodCalories\"=> \"358.0\"\n ],\n \"139\"=> [\n \"id\"=> \"139\",\n \"foodProduct\"=> \"Макароны Италия твёрдых сортов пшеницы с добавками томатов и шпината Maltagliati\",\n \"foodProteins\"=> \"12.0\",\n \"foodFats\"=> \"1.6\",\n \"foodCarbohydrates\"=> \"71.0\",\n \"foodCalories\"=> \"346.0\"\n ],\n \"140\"=> [\n \"id\"=> \"140\",\n \"foodProduct\"=> \"Макароны Италия твёрдых сортов пшеницы с добавками шпината Federici\",\n \"foodProteins\"=> \"13.0\",\n \"foodFats\"=> \"1.0\",\n \"foodCarbohydrates\"=> \"74.0\",\n \"foodCalories\"=> \"357.0\"\n ],\n \"141\"=> [\n \"id\"=> \"141\",\n \"foodProduct\"=> \"Малина\",\n \"foodProteins\"=> \"0.8\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"9.0\",\n \"foodCalories\"=> \"41.0\"\n ],\n \"142\"=> [\n \"id\"=> \"142\",\n \"foodProduct\"=> \"Малина мороженная\",\n \"foodProteins\"=> \"1.2\",\n \"foodFats\"=> \"0.3\",\n \"foodCarbohydrates\"=> \"6.1\",\n \"foodCalories\"=> \"38.2\"\n ],\n \"143\"=> [\n \"id\"=> \"143\",\n \"foodProduct\"=> \"Мандарин\",\n \"foodProteins\"=> \"0.8\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"8.6\",\n \"foodCalories\"=> \"38.0\"\n ],\n \"144\"=> [\n \"id\"=> \"144\",\n \"foodProduct\"=> \"Мармелад (в сахаре)\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.00\",\n \"foodCarbohydrates\"=> \"80.60\",\n \"foodCalories\"=> \"311.0\"\n ],\n \"145\"=> [\n \"id\"=> \"145\",\n \"foodProduct\"=> \"Маслины солёные\",\n \"foodProteins\"=> \"1.23\",\n \"foodFats\"=> \"16.43\",\n \"foodCarbohydrates\"=> \"4.78\",\n \"foodCalories\"=> \"172.91\"\n ],\n \"146\"=> [\n \"id\"=> \"146\",\n \"foodProduct\"=> \"Масло сливочное Вологодское\",\n \"foodProteins\"=> \"0.5\",\n \"foodFats\"=> \"82.5\",\n \"foodCarbohydrates\"=> \"0.8\",\n \"foodCalories\"=> \"748.0\"\n ],\n \"147\"=> [\n \"id\"=> \"147\",\n \"foodProduct\"=> \"Масло сливочное крестьянское \",\n \"foodProteins\"=> \"0.8\",\n \"foodFats\"=> \"72.5\",\n \"foodCarbohydrates\"=> \"1.3\",\n \"foodCalories\"=> \"661.0\"\n ],\n \"148\"=> [\n \"id\"=> \"148\",\n \"foodProduct\"=> \"Маслята свежие\",\n \"foodProteins\"=> \"0.9\",\n \"foodFats\"=> \"0.4\",\n \"foodCarbohydrates\"=> \"3.2\",\n \"foodCalories\"=> \"19.0\"\n ],\n \"149\"=> [\n \"id\"=> \"149\",\n \"foodProduct\"=> \"Мёд\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"71.0\",\n \"foodCalories\"=> \"284.0\"\n ],\n \"150\"=> [\n \"id\"=> \"150\",\n \"foodProduct\"=> \"Миндаль жареный\",\n \"foodProteins\"=> \"25.6\",\n \"foodFats\"=> \"32.2\",\n \"foodCarbohydrates\"=> \"14.8\",\n \"foodCalories\"=> \"635.0\"\n ],\n \"151\"=> [\n \"id\"=> \"151\",\n \"foodProduct\"=> \"Мирабель\",\n \"foodProteins\"=> \"1.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"8.6\",\n \"foodCalories\"=> \"40.0\"\n ],\n \"152\"=> [\n \"id\"=> \"152\",\n \"foodProduct\"=> \"Молоко 1,5%\",\n \"foodProteins\"=> \"2.9\",\n \"foodFats\"=> \"1.5\",\n \"foodCarbohydrates\"=> \"4.7\",\n \"foodCalories\"=> \"44.0\"\n ],\n \"153\"=> [\n \"id\"=> \"153\",\n \"foodProduct\"=> \"Молоко 3,2% жирности\",\n \"foodProteins\"=> \"2.8\",\n \"foodFats\"=> \"3.2\",\n \"foodCarbohydrates\"=> \"4.7\",\n \"foodCalories\"=> \"58.0\"\n ],\n \"154\"=> [\n \"id\"=> \"154\",\n \"foodProduct\"=> \"Молоко 3,5% жирности\",\n \"foodProteins\"=> \"2.8\",\n \"foodFats\"=> \"3.5\",\n \"foodCarbohydrates\"=> \"4.7\",\n \"foodCalories\"=> \"62.0\"\n ],\n \"155\"=> [\n \"id\"=> \"155\",\n \"foodProduct\"=> \"Молоко сгущённое \\\"Сгущёнка Молочная страна\\\"\",\n \"foodProteins\"=> \"4.2\",\n \"foodFats\"=> \"8.5\",\n \"foodCarbohydrates\"=> \"55.7\",\n \"foodCalories\"=> \"307.6\"\n ],\n \"156\"=> [\n \"id\"=> \"156\",\n \"foodProduct\"=> \"Молоко сгущённое \\\"Сгущёнка Смоленская\\\"\",\n \"foodProteins\"=> \"7.4\",\n \"foodFats\"=> \"8.5\",\n \"foodCarbohydrates\"=> \"55.8\",\n \"foodCalories\"=> \"325.0\"\n ],\n \"157\"=> [\n \"id\"=> \"157\",\n \"foodProduct\"=> \"Морковь жёлтая\",\n \"foodProteins\"=> \"1.3\",\n \"foodFats\"=> \"0.1\",\n \"foodCarbohydrates\"=> \"6.0\",\n \"foodCalories\"=> \"33.0\"\n ],\n \"158\"=> [\n \"id\"=> \"158\",\n \"foodProduct\"=> \"Морковь красная\",\n \"foodProteins\"=> \"1.3\",\n \"foodFats\"=> \"0.1\",\n \"foodCarbohydrates\"=> \"7.0\",\n \"foodCalories\"=> \"33.0\"\n ],\n \"159\"=> [\n \"id\"=> \"159\",\n \"foodProduct\"=> \"Мороженое сливочное в шоколадной глазури \\\"Лакомка\\\"\",\n \"foodProteins\"=> \"3.2\",\n \"foodFats\"=> \"20.2\",\n \"foodCarbohydrates\"=> \"19.4\",\n \"foodCalories\"=> \"280.0\"\n ],\n \"160\"=> [\n \"id\"=> \"160\",\n \"foodProduct\"=> \"Мороженое сливочное в шоколадной глазури с орехами \\\"Боярское\\\"\",\n \"foodProteins\"=> \"3.9\",\n \"foodFats\"=> \"18.9\",\n \"foodCarbohydrates\"=> \"23.0\",\n \"foodCalories\"=> \"277.0\"\n ],\n \"161\"=> [\n \"id\"=> \"161\",\n \"foodProduct\"=> \"Морошка\",\n \"foodProteins\"=> \"0.8\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"6.8\",\n \"foodCalories\"=> \"31.0\"\n ],\n \"162\"=> [\n \"id\"=> \"162\",\n \"foodProduct\"=> \"Мюсли \\\"фруктовый сад\\\"\",\n \"foodProteins\"=> \"14.0\",\n \"foodFats\"=> \"4.0\",\n \"foodCarbohydrates\"=> \"70.0\",\n \"foodCalories\"=> \"370.0\"\n ],\n \"163\"=> [\n \"id\"=> \"163\",\n \"foodProduct\"=> \"Напиток Горячий шоколад сухой растворимый с сахаром\",\n \"foodProteins\"=> \"10.0\",\n \"foodFats\"=> \"12.8\",\n \"foodCarbohydrates\"=> \"72.8\",\n \"foodCalories\"=> \"452.0\"\n ],\n \"164\"=> [\n \"id\"=> \"164\",\n \"foodProduct\"=> \"Нут\",\n \"foodProteins\"=> \"20.1\",\n \"foodFats\"=> \"5.0\",\n \"foodCarbohydrates\"=> \"54.2\",\n \"foodCalories\"=> \"329.0\"\n ],\n \"165\"=> [\n \"id\"=> \"165\",\n \"foodProduct\"=> \"Облепиха\",\n \"foodProteins\"=> \"0.9\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"5.5\",\n \"foodCalories\"=> \"30.0\"\n ],\n \"166\"=> [\n \"id\"=> \"166\",\n \"foodProduct\"=> \"Овёс\",\n \"foodProteins\"=> \"10.1\",\n \"foodFats\"=> \"4.7\",\n \"foodCarbohydrates\"=> \"57.8\",\n \"foodCalories\"=> \"300.0\"\n ],\n \"167\"=> [\n \"id\"=> \"167\",\n \"foodProduct\"=> \"Овсянные хлопья \",\n \"foodProteins\"=> \"11.0\",\n \"foodFats\"=> \"6.2\",\n \"foodCarbohydrates\"=> \"51.0\",\n \"foodCalories\"=> \"305.0\"\n ],\n \"168\"=> [\n \"id\"=> \"168\",\n \"foodProduct\"=> \"Огурцы\",\n \"foodProteins\"=> \"0.8\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"3.0\",\n \"foodCalories\"=> \"15.0\"\n ],\n \"169\"=> [\n \"id\"=> \"169\",\n \"foodProduct\"=> \"Огурцы маринованные\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"4.0\",\n \"foodCalories\"=> \"18.0\"\n ],\n \"170\"=> [\n \"id\"=> \"170\",\n \"foodProduct\"=> \"Огурцы солёные\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"4.0\",\n \"foodCalories\"=> \"15.0\"\n ],\n \"171\"=> [\n \"id\"=> \"171\",\n \"foodProduct\"=> \"Оливки фаршированные анчоусами\",\n \"foodProteins\"=> \"2.1\",\n \"foodFats\"=> \"15.7\",\n \"foodCarbohydrates\"=> \"5.2\",\n \"foodCalories\"=> \"171.0\"\n ],\n \"172\"=> [\n \"id\"=> \"172\",\n \"foodProduct\"=> \"Оливки фаршированные красным перцем\",\n \"foodProteins\"=> \"1.39\",\n \"foodFats\"=> \"14.1\",\n \"foodCarbohydrates\"=> \"1.96\",\n \"foodCalories\"=> \"154.3\"\n ],\n \"173\"=> [\n \"id\"=> \"173\",\n \"foodProduct\"=> \"Оливки фаршированные лимоном\",\n \"foodProteins\"=> \"1.6\",\n \"foodFats\"=> \"15.1\",\n \"foodCarbohydrates\"=> \"2.7\",\n \"foodCalories\"=> \"148.2\"\n ],\n \"174\"=> [\n \"id\"=> \"174\",\n \"foodProduct\"=> \"Оливковое\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"99.9\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"898.0\"\n ],\n \"175\"=> [\n \"id\"=> \"175\",\n \"foodProduct\"=> \"Опята свежие\",\n \"foodProteins\"=> \"2.2\",\n \"foodFats\"=> \"0.7\",\n \"foodCarbohydrates\"=> \"1.3\",\n \"foodCalories\"=> \"20.0\"\n ],\n \"176\"=> [\n \"id\"=> \"176\",\n \"foodProduct\"=> \"Осетрина горячего копчения\",\n \"foodProteins\"=> \"22.0\",\n \"foodFats\"=> \"15.0\",\n \"foodCarbohydrates\"=> \"13.0\",\n \"foodCalories\"=> \"223.0\"\n ],\n \"177\"=> [\n \"id\"=> \"177\",\n \"foodProduct\"=> \"Пастернак корень\",\n \"foodProteins\"=> \"1.4\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"11.0\",\n \"foodCalories\"=> \"47.0\"\n ],\n \"178\"=> [\n \"id\"=> \"178\",\n \"foodProduct\"=> \"Патиссоны\",\n \"foodProteins\"=> \"0.6\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"4.3\",\n \"foodCalories\"=> \"19.0\"\n ],\n \"179\"=> [\n \"id\"=> \"179\",\n \"foodProduct\"=> \"Пекан (китайский орех)\",\n \"foodProteins\"=> \"9.2\",\n \"foodFats\"=> \"71.2\",\n \"foodCarbohydrates\"=> \"12.3\",\n \"foodCalories\"=> \"736.0\"\n ],\n \"180\"=> [\n \"id\"=> \"180\",\n \"foodProduct\"=> \"Перец\",\n \"foodProteins\"=> \"1.3\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"4.7\",\n \"foodCalories\"=> \"27.0\"\n ],\n \"181\"=> [\n \"id\"=> \"181\",\n \"foodProduct\"=> \"Персики\",\n \"foodProteins\"=> \"0.9\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"10.4\",\n \"foodCalories\"=> \"44.0\"\n ],\n \"182\"=> [\n \"id\"=> \"182\",\n \"foodProduct\"=> \"Петрушка зелень\",\n \"foodProteins\"=> \"3.7\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"8.1\",\n \"foodCalories\"=> \"45.0\"\n ],\n \"183\"=> [\n \"id\"=> \"183\",\n \"foodProduct\"=> \"Петрушка корень\",\n \"foodProteins\"=> \"1.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"11.0\",\n \"foodCalories\"=> \"47.0\"\n ],\n \"184\"=> [\n \"id\"=> \"184\",\n \"foodProduct\"=> \"Печенье \\\"курабье\\\"\",\n \"foodProteins\"=> \"6.60\",\n \"foodFats\"=> \"28.80\",\n \"foodCarbohydrates\"=> \"19.30\",\n \"foodCalories\"=> \"506.0\"\n ],\n \"185\"=> [\n \"id\"=> \"185\",\n \"foodProduct\"=> \"Печенье сухое\",\n \"foodProteins\"=> \"8.63\",\n \"foodFats\"=> \"12.60\",\n \"foodCarbohydrates\"=> \"72.25\",\n \"foodCalories\"=> \"438.0\"\n ],\n \"186\"=> [\n \"id\"=> \"186\",\n \"foodProduct\"=> \"Печенье типа \\\"Юбилейное\\\"\",\n \"foodProteins\"=> \"7.4\",\n \"foodFats\"=> \"19.7\",\n \"foodCarbohydrates\"=> \"63.2\",\n \"foodCalories\"=> \"461.0\"\n ],\n \"187\"=> [\n \"id\"=> \"187\",\n \"foodProduct\"=> \"Повидло вишнёвое с яблоком\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"50.0\",\n \"foodCalories\"=> \"184.0\"\n ],\n \"188\"=> [\n \"id\"=> \"188\",\n \"foodProduct\"=> \"Подберёзовики свежие\",\n \"foodProteins\"=> \"2.3\",\n \"foodFats\"=> \"0.9\",\n \"foodCarbohydrates\"=> \"3.7\",\n \"foodCalories\"=> \"31.0\"\n ],\n \"189\"=> [\n \"id\"=> \"189\",\n \"foodProduct\"=> \"Подберёзовики сушёные\",\n \"foodProteins\"=> \"24.0\",\n \"foodFats\"=> \"9.3\",\n \"foodCarbohydrates\"=> \"37.2\",\n \"foodCalories\"=> \"319.0\"\n ],\n \"190\"=> [\n \"id\"=> \"190\",\n \"foodProduct\"=> \"Подосиновики свежие\",\n \"foodProteins\"=> \"3.3\",\n \"foodFats\"=> \"0.5\",\n \"foodCarbohydrates\"=> \"3.4\",\n \"foodCalories\"=> \"31.0\"\n ],\n \"191\"=> [\n \"id\"=> \"191\",\n \"foodProduct\"=> \"Подосиновики сушёные\",\n \"foodProteins\"=> \"32.5\",\n \"foodFats\"=> \"4.9\",\n \"foodCarbohydrates\"=> \"33.2\",\n \"foodCalories\"=> \"299.0\"\n ],\n \"192\"=> [\n \"id\"=> \"192\",\n \"foodProduct\"=> \"Подсолнечное\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"99.9\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"899.0\"\n ],\n \"193\"=> [\n \"id\"=> \"193\",\n \"foodProduct\"=> \"Полено кондитерское \\\"арахисовое\\\"\",\n \"foodProteins\"=> \"5.5\",\n \"foodFats\"=> \"18.2\",\n \"foodCarbohydrates\"=> \"68.0\",\n \"foodCalories\"=> \"433.0\"\n ],\n \"194\"=> [\n \"id\"=> \"194\",\n \"foodProduct\"=> \"Просо\",\n \"foodProteins\"=> \"11.2\",\n \"foodFats\"=> \"3.8\",\n \"foodCarbohydrates\"=> \"60.7\",\n \"foodCalories\"=> \"307.0\"\n ],\n \"195\"=> [\n \"id\"=> \"195\",\n \"foodProduct\"=> \"Простокваша 3,2%\",\n \"foodProteins\"=> \"3.3\",\n \"foodFats\"=> \"3.2\",\n \"foodCarbohydrates\"=> \"5.5\",\n \"foodCalories\"=> \"64.5\"\n ],\n \"196\"=> [\n \"id\"=> \"196\",\n \"foodProduct\"=> \"Пшеница\",\n \"foodProteins\"=> \"11.6\",\n \"foodFats\"=> \"1.6\",\n \"foodCarbohydrates\"=> \"68.7\",\n \"foodCalories\"=> \"318.0\"\n ],\n \"197\"=> [\n \"id\"=> \"197\",\n \"foodProduct\"=> \"Пшеничная мука\",\n \"foodProteins\"=> \"11.0\",\n \"foodFats\"=> \"2.0\",\n \"foodCarbohydrates\"=> \"72.0\",\n \"foodCalories\"=> \"350.0\"\n ],\n \"198\"=> [\n \"id\"=> \"198\",\n \"foodProduct\"=> \"Пшено - крупа шлифованная\",\n \"foodProteins\"=> \"11.5\",\n \"foodFats\"=> \"3.3\",\n \"foodCarbohydrates\"=> \"64.8\",\n \"foodCalories\"=> \"348.0\"\n ],\n \"199\"=> [\n \"id\"=> \"199\",\n \"foodProduct\"=> \"Раковые шейки в рассоле\",\n \"foodProteins\"=> \"20.6\",\n \"foodFats\"=> \"1.7\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"98.0\"\n ],\n \"200\"=> [\n \"id\"=> \"200\",\n \"foodProduct\"=> \"Рапсовое\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"99.85\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"899.0\"\n ],\n \"201\"=> [\n \"id\"=> \"201\",\n \"foodProduct\"=> \"Ревень черешковый\",\n \"foodProteins\"=> \"0.7\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"2.9\",\n \"foodCalories\"=> \"16.0\"\n ],\n \"202\"=> [\n \"id\"=> \"202\",\n \"foodProduct\"=> \"Редис\",\n \"foodProteins\"=> \"1.2\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"4.1\",\n \"foodCalories\"=> \"20.0\"\n ],\n \"203\"=> [\n \"id\"=> \"203\",\n \"foodProduct\"=> \"Редька\",\n \"foodProteins\"=> \"1.9\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"7.0\",\n \"foodCalories\"=> \"34.0\"\n ],\n \"204\"=> [\n \"id\"=> \"204\",\n \"foodProduct\"=> \"Репа\",\n \"foodProteins\"=> \"1.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"5.9\",\n \"foodCalories\"=> \"28.0\"\n ],\n \"205\"=> [\n \"id\"=> \"205\",\n \"foodProduct\"=> \"Рис \",\n \"foodProteins\"=> \"7.3\",\n \"foodFats\"=> \"2.6\",\n \"foodCarbohydrates\"=> \"63.1\",\n \"foodCalories\"=> \"284.0\"\n ],\n \"206\"=> [\n \"id\"=> \"206\",\n \"foodProduct\"=> \"Рис Fitness - смесь дикого и бурого риса\",\n \"foodProteins\"=> \"8.1\",\n \"foodFats\"=> \"4.1\",\n \"foodCarbohydrates\"=> \"63.4\",\n \"foodCalories\"=> \"322.9\"\n ],\n \"207\"=> [\n \"id\"=> \"207\",\n \"foodProduct\"=> \"Рис длиннозерновой шлифованный\",\n \"foodProteins\"=> \"7.0\",\n \"foodFats\"=> \"0.5\",\n \"foodCarbohydrates\"=> \"78.5\",\n \"foodCalories\"=> \"347.0\"\n ],\n \"208\"=> [\n \"id\"=> \"208\",\n \"foodProduct\"=> \"Рис коричневый слабошлифованный\",\n \"foodProteins\"=> \"7.4\",\n \"foodFats\"=> \"2.2\",\n \"foodCarbohydrates\"=> \"72.0\",\n \"foodCalories\"=> \"337.0\"\n ],\n \"209\"=> [\n \"id\"=> \"209\",\n \"foodProduct\"=> \"Рожь\",\n \"foodProteins\"=> \"9.9\",\n \"foodFats\"=> \"1.6\",\n \"foodCarbohydrates\"=> \"70.9\",\n \"foodCalories\"=> \"320.0\"\n ],\n \"210\"=> [\n \"id\"=> \"210\",\n \"foodProduct\"=> \"Рыжики свежие\",\n \"foodProteins\"=> \"1.9\",\n \"foodFats\"=> \"0.8\",\n \"foodCarbohydrates\"=> \"2.0\",\n \"foodCalories\"=> \"22.0\"\n ],\n \"211\"=> [\n \"id\"=> \"211\",\n \"foodProduct\"=> \"Рябина садовая\",\n \"foodProteins\"=> \"1.4\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"12.5\",\n \"foodCalories\"=> \"58.0\"\n ],\n \"212\"=> [\n \"id\"=> \"212\",\n \"foodProduct\"=> \"Рябина черноплодная\",\n \"foodProteins\"=> \"1.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"12.0\",\n \"foodCalories\"=> \"54.0\"\n ],\n \"213\"=> [\n \"id\"=> \"213\",\n \"foodProduct\"=> \"Ряженка 3,2%\",\n \"foodProteins\"=> \"3.2\",\n \"foodFats\"=> \"3.2\",\n \"foodCarbohydrates\"=> \"5.4\",\n \"foodCalories\"=> \"64.0\"\n ],\n \"214\"=> [\n \"id\"=> \"214\",\n \"foodProduct\"=> \"Салака копчёная в масле консервированная\",\n \"foodProteins\"=> \"17.0\",\n \"foodFats\"=> \"32.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"356.0\"\n ],\n \"215\"=> [\n \"id\"=> \"215\",\n \"foodProduct\"=> \"Салат\",\n \"foodProteins\"=> \"1.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"2.2\",\n \"foodCalories\"=> \"14.0\"\n ],\n \"216\"=> [\n \"id\"=> \"216\",\n \"foodProduct\"=> \"Сардины в масле консервированные\",\n \"foodProteins\"=> \"23.0\",\n \"foodFats\"=> \"14.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"218.0\"\n ],\n \"217\"=> [\n \"id\"=> \"217\",\n \"foodProduct\"=> \"Сахар\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"99.8\",\n \"foodCalories\"=> \"374.0\"\n ],\n \"218\"=> [\n \"id\"=> \"218\",\n \"foodProduct\"=> \"Сахар рафинад быстрорастворимый \",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"99.95\",\n \"foodCalories\"=> \"400.0\"\n ],\n \"219\"=> [\n \"id\"=> \"219\",\n \"foodProduct\"=> \"Свекла\",\n \"foodProteins\"=> \"1.7\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"10.8\",\n \"foodCalories\"=> \"4.8\"\n ],\n \"220\"=> [\n \"id\"=> \"220\",\n \"foodProduct\"=> \"Свинина - балык особый\",\n \"foodProteins\"=> \"10.0\",\n \"foodFats\"=> \"15.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"175.0\"\n ],\n \"221\"=> [\n \"id\"=> \"221\",\n \"foodProduct\"=> \"Свинина - буженина\",\n \"foodProteins\"=> \"15.0\",\n \"foodFats\"=> \"23.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"267.0\"\n ],\n \"222\"=> [\n \"id\"=> \"222\",\n \"foodProduct\"=> \"Свинина - карбонад варёно-копчёный\",\n \"foodProteins\"=> \"15.0\",\n \"foodFats\"=> \"20.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"240.0\"\n ],\n \"223\"=> [\n \"id\"=> \"223\",\n \"foodProduct\"=> \"Свинина - корейка сырокопчёная\",\n \"foodProteins\"=> \"12.3\",\n \"foodFats\"=> \"40.6\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"415.0\"\n ],\n \"224\"=> [\n \"id\"=> \"224\",\n \"foodProduct\"=> \"Свиной язык консервированный\",\n \"foodProteins\"=> \"12.0\",\n \"foodFats\"=> \"15.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"185.0\"\n ],\n \"225\"=> [\n \"id\"=> \"225\",\n \"foodProduct\"=> \"Сельдерей зелень\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"2.0\",\n \"foodCalories\"=> \"8.0\"\n ],\n \"226\"=> [\n \"id\"=> \"226\",\n \"foodProduct\"=> \"Сельдерей корень\",\n \"foodProteins\"=> \"1.3\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"6.7\",\n \"foodCalories\"=> \"31.0\"\n ],\n \"227\"=> [\n \"id\"=> \"227\",\n \"foodProduct\"=> \"Сельдь слабосолёная\",\n \"foodProteins\"=> \"17.0\",\n \"foodFats\"=> \"15.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"204.0\"\n ],\n \"228\"=> [\n \"id\"=> \"228\",\n \"foodProduct\"=> \"Сельдь слабосолёная филе без кожи\",\n \"foodProteins\"=> \"22.0\",\n \"foodFats\"=> \"13.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"205.0\"\n ],\n \"229\"=> [\n \"id\"=> \"229\",\n \"foodProduct\"=> \"Сёмга\",\n \"foodProteins\"=> \"23.0\",\n \"foodFats\"=> \"13.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"202.0\"\n ],\n \"230\"=> [\n \"id\"=> \"230\",\n \"foodProduct\"=> \"Семечки подсолнечника\",\n \"foodProteins\"=> \"24.0\",\n \"foodFats\"=> \"47.3\",\n \"foodCarbohydrates\"=> \"16.1\",\n \"foodCalories\"=> \"601.0\"\n ],\n \"231\"=> [\n \"id\"=> \"231\",\n \"foodProduct\"=> \"Семечки тыквы\",\n \"foodProteins\"=> \"29.0\",\n \"foodFats\"=> \"46.7\",\n \"foodCarbohydrates\"=> \"13.1\",\n \"foodCalories\"=> \"596.0\"\n ],\n \"232\"=> [\n \"id\"=> \"232\",\n \"foodProduct\"=> \"Слива\",\n \"foodProteins\"=> \"0.8\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"9.9\",\n \"foodCalories\"=> \"43.0\"\n ],\n \"233\"=> [\n \"id\"=> \"233\",\n \"foodProduct\"=> \"Сливки 11%\",\n \"foodProteins\"=> \"3.0\",\n \"foodFats\"=> \"11.0\",\n \"foodCarbohydrates\"=> \"4.0\",\n \"foodCalories\"=> \"130.0\"\n ],\n \"234\"=> [\n \"id\"=> \"234\",\n \"foodProduct\"=> \"Сливки 22%\",\n \"foodProteins\"=> \"2.8\",\n \"foodFats\"=> \"22.0\",\n \"foodCarbohydrates\"=> \"3.7\",\n \"foodCalories\"=> \"220.0\"\n ],\n \"235\"=> [\n \"id\"=> \"235\",\n \"foodProduct\"=> \"Сливки взбитые с заменителем сахара\",\n \"foodProteins\"=> \"2.3\",\n \"foodFats\"=> \"26.5\",\n \"foodCarbohydrates\"=> \"4.60\",\n \"foodCalories\"=> \"266.0\"\n ],\n \"236\"=> [\n \"id\"=> \"236\",\n \"foodProduct\"=> \"Сметана 10%\",\n \"foodProteins\"=> \"3.0\",\n \"foodFats\"=> \"10.0\",\n \"foodCarbohydrates\"=> \"2.9\",\n \"foodCalories\"=> \"116.0\"\n ],\n \"237\"=> [\n \"id\"=> \"237\",\n \"foodProduct\"=> \"Сметана 15%\",\n \"foodProteins\"=> \"2.9\",\n \"foodFats\"=> \"15.0\",\n \"foodCarbohydrates\"=> \"3.0\",\n \"foodCalories\"=> \"142.0\"\n ],\n \"238\"=> [\n \"id\"=> \"238\",\n \"foodProduct\"=> \"Сметана 20%\",\n \"foodProteins\"=> \"2.8\",\n \"foodFats\"=> \"20.0\",\n \"foodCarbohydrates\"=> \"3.2\",\n \"foodCalories\"=> \"210.0\"\n ],\n \"239\"=> [\n \"id\"=> \"239\",\n \"foodProduct\"=> \"Сметана 25%\",\n \"foodProteins\"=> \"2.6\",\n \"foodFats\"=> \"25.0\",\n \"foodCarbohydrates\"=> \"2.7\",\n \"foodCalories\"=> \"294.0\"\n ],\n \"240\"=> [\n \"id\"=> \"240\",\n \"foodProduct\"=> \"Сметана 30%\",\n \"foodProteins\"=> \"2.4\",\n \"foodFats\"=> \"30.0\",\n \"foodCarbohydrates\"=> \"3.1\",\n \"foodCalories\"=> \"346.0\"\n ],\n \"241\"=> [\n \"id\"=> \"241\",\n \"foodProduct\"=> \"Смородина белая\",\n \"foodProteins\"=> \"0.3\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"8.7\",\n \"foodCalories\"=> \"39.0\"\n ],\n \"242\"=> [\n \"id\"=> \"242\",\n \"foodProduct\"=> \"Смородина красная\",\n \"foodProteins\"=> \"0.6\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"8.0\",\n \"foodCalories\"=> \"38.0\"\n ],\n \"243\"=> [\n \"id\"=> \"243\",\n \"foodProduct\"=> \"Смородина чёрная\",\n \"foodProteins\"=> \"1.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"8.0\",\n \"foodCalories\"=> \"40.0\"\n ],\n \"244\"=> [\n \"id\"=> \"244\",\n \"foodProduct\"=> \"Смородина чёрная мороженная\",\n \"foodProteins\"=> \"1.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"6.1\",\n \"foodCalories\"=> \"28.0\"\n ],\n \"245\"=> [\n \"id\"=> \"245\",\n \"foodProduct\"=> \"Сморчки свежие\",\n \"foodProteins\"=> \"2.9\",\n \"foodFats\"=> \"0.4\",\n \"foodCarbohydrates\"=> \"2.0\",\n \"foodCalories\"=> \"22.0\"\n ],\n \"246\"=> [\n \"id\"=> \"246\",\n \"foodProduct\"=> \"Соевое\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"99.9\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"899.0\"\n ],\n \"247\"=> [\n \"id\"=> \"247\",\n \"foodProduct\"=> \"Соевый соус\",\n \"foodProteins\"=> \"4.9\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"5.0\",\n \"foodCalories\"=> \"39.4\"\n ],\n \"248\"=> [\n \"id\"=> \"248\",\n \"foodProduct\"=> \"Соломка сладкая\",\n \"foodProteins\"=> \"9.2\",\n \"foodFats\"=> \"6.1\",\n \"foodCarbohydrates\"=> \"69.0\",\n \"foodCalories\"=> \"371.0\"\n ],\n \"249\"=> [\n \"id\"=> \"249\",\n \"foodProduct\"=> \"Сом\",\n \"foodProteins\"=> \"17.0\",\n \"foodFats\"=> \"5.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"113.0\"\n ],\n \"250\"=> [\n \"id\"=> \"250\",\n \"foodProduct\"=> \"Сорго\",\n \"foodProteins\"=> \"11.1\",\n \"foodFats\"=> \"3.3\",\n \"foodCarbohydrates\"=> \"66.4\",\n \"foodCalories\"=> \"323.0\"\n ],\n \"251\"=> [\n \"id\"=> \"251\",\n \"foodProduct\"=> \"Соя\",\n \"foodProteins\"=> \"34.9\",\n \"foodFats\"=> \"17.3\",\n \"foodCarbohydrates\"=> \"26.5\",\n \"foodCalories\"=> \"395.0\"\n ],\n \"252\"=> [\n \"id\"=> \"252\",\n \"foodProduct\"=> \"Спаржа\",\n \"foodProteins\"=> \"1.9\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"3.6\",\n \"foodCalories\"=> \"21.0\"\n ],\n \"253\"=> [\n \"id\"=> \"253\",\n \"foodProduct\"=> \"Судак\",\n \"foodProteins\"=> \"18.4\",\n \"foodFats\"=> \"1.1\",\n \"foodCarbohydrates\"=> \"1.3\",\n \"foodCalories\"=> \"126.0\"\n ],\n \"254\"=> [\n \"id\"=> \"254\",\n \"foodProduct\"=> \"Сыр голландский\",\n \"foodProteins\"=> \"23.5\",\n \"foodFats\"=> \"30.9\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"360.0\"\n ],\n \"255\"=> [\n \"id\"=> \"255\",\n \"foodProduct\"=> \"Сыр мягкий \\\"Адыгейский\\\"\",\n \"foodProteins\"=> \"16.0\",\n \"foodFats\"=> \"18.0\",\n \"foodCarbohydrates\"=> \"2.7\",\n \"foodCalories\"=> \"238.0\"\n ],\n \"256\"=> [\n \"id\"=> \"256\",\n \"foodProduct\"=> \"Сыр мягкий домашний\",\n \"foodProteins\"=> \"17.0\",\n \"foodFats\"=> \"4.0\",\n \"foodCarbohydrates\"=> \"1.8\",\n \"foodCalories\"=> \"114.3\"\n ],\n \"257\"=> [\n \"id\"=> \"257\",\n \"foodProduct\"=> \"Сыр плавленный President\",\n \"foodProteins\"=> \"10.0\",\n \"foodFats\"=> \"22.2\",\n \"foodCarbohydrates\"=> \"6.5\",\n \"foodCalories\"=> \"266.0\"\n ],\n \"258\"=> [\n \"id\"=> \"258\",\n \"foodProduct\"=> \"Сыр плавленный сливочный Hochland\",\n \"foodProteins\"=> \"9.0\",\n \"foodFats\"=> \"25.0\",\n \"foodCarbohydrates\"=> \"6.0\",\n \"foodCalories\"=> \"285.0\"\n ],\n \"259\"=> [\n \"id\"=> \"259\",\n \"foodProduct\"=> \"Сыр полутвёрдый сливочный\",\n \"foodProteins\"=> \"24.0\",\n \"foodFats\"=> \"33.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"390.0\"\n ],\n \"260\"=> [\n \"id\"=> \"260\",\n \"foodProduct\"=> \"Сыр с плесенью Blue\",\n \"foodProteins\"=> \"21.5\",\n \"foodFats\"=> \"50.0\",\n \"foodCarbohydrates\"=> \"20.0\",\n \"foodCalories\"=> \"347.0\"\n ],\n \"261\"=> [\n \"id\"=> \"261\",\n \"foodProduct\"=> \"Сыр твёрдый \\\"Радамер\\\"\",\n \"foodProteins\"=> \"25.0\",\n \"foodFats\"=> \"26.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"339.0\"\n ],\n \"262\"=> [\n \"id\"=> \"262\",\n \"foodProduct\"=> \"Сыроежки свежие\",\n \"foodProteins\"=> \"1.7\",\n \"foodFats\"=> \"0.3\",\n \"foodCarbohydrates\"=> \"2.0\",\n \"foodCalories\"=> \"17.0\"\n ],\n \"263\"=> [\n \"id\"=> \"263\",\n \"foodProduct\"=> \"Сырок сладкий глазированный в шоколаде\",\n \"foodProteins\"=> \"7.5\",\n \"foodFats\"=> \"25.5\",\n \"foodCarbohydrates\"=> \"33.0\",\n \"foodCalories\"=> \"391.0\"\n ],\n \"264\"=> [\n \"id\"=> \"264\",\n \"foodProduct\"=> \"Творог жирный\",\n \"foodProteins\"=> \"14.0\",\n \"foodFats\"=> \"18.0\",\n \"foodCarbohydrates\"=> \"2.85\",\n \"foodCalories\"=> \"232.0\"\n ],\n \"265\"=> [\n \"id\"=> \"265\",\n \"foodProduct\"=> \"Творог нежирный сухой\",\n \"foodProteins\"=> \"18.0\",\n \"foodFats\"=> \"0.6\",\n \"foodCarbohydrates\"=> \"1.85\",\n \"foodCalories\"=> \"88.0\"\n ],\n \"266\"=> [\n \"id\"=> \"266\",\n \"foodProduct\"=> \"Творог обезжиренный жидкий\",\n \"foodProteins\"=> \"17.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"1.80\",\n \"foodCalories\"=> \"79.0\"\n ],\n \"267\"=> [\n \"id\"=> \"267\",\n \"foodProduct\"=> \"Творог полужирный\",\n \"foodProteins\"=> \"16.7\",\n \"foodFats\"=> \"9.0\",\n \"foodCarbohydrates\"=> \"2.0\",\n \"foodCalories\"=> \"159.0\"\n ],\n \"268\"=> [\n \"id\"=> \"268\",\n \"foodProduct\"=> \"Тёрн\",\n \"foodProteins\"=> \"1.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"9.3\",\n \"foodCalories\"=> \"47.0\"\n ],\n \"269\"=> [\n \"id\"=> \"269\",\n \"foodProduct\"=> \"Тесто слоёное не дрожжевое\",\n \"foodProteins\"=> \"6.1\",\n \"foodFats\"=> \"20.8\",\n \"foodCarbohydrates\"=> \"41.0\",\n \"foodCalories\"=> \"380.0\"\n ],\n \"270\"=> [\n \"id\"=> \"270\",\n \"foodProduct\"=> \"Томатная паста\",\n \"foodProteins\"=> \"3.5\",\n \"foodFats\"=> \"0.6\",\n \"foodCarbohydrates\"=> \"13.9\",\n \"foodCalories\"=> \"87.0\"\n ],\n \"271\"=> [\n \"id\"=> \"271\",\n \"foodProduct\"=> \"Томатный сок J-7 с солью\",\n \"foodProteins\"=> \"0.8\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"4.3\",\n \"foodCalories\"=> \"21.0\"\n ],\n \"272\"=> [\n \"id\"=> \"272\",\n \"foodProduct\"=> \"Томаты\",\n \"foodProteins\"=> \"0.6\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"4.2\",\n \"foodCalories\"=> \"19.0\"\n ],\n \"273\"=> [\n \"id\"=> \"273\",\n \"foodProduct\"=> \"Томаты - кетчуп\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"18.0\",\n \"foodCalories\"=> \"75.0\"\n ],\n \"274\"=> [\n \"id\"=> \"274\",\n \"foodProduct\"=> \"Торт безе с кремом \\\"Графские развалины\\\"\",\n \"foodProteins\"=> \"4.2\",\n \"foodFats\"=> \"8.8\",\n \"foodCarbohydrates\"=> \"65.4\",\n \"foodCalories\"=> \"358.0\"\n ],\n \"275\"=> [\n \"id\"=> \"275\",\n \"foodProduct\"=> \"Торт бисквитный с кремом \\\"Вацлавский\\\"\",\n \"foodProteins\"=> \"10.0\",\n \"foodFats\"=> \"28.0\",\n \"foodCarbohydrates\"=> \"47.10\",\n \"foodCalories\"=> \"460.0\"\n ],\n \"276\"=> [\n \"id\"=> \"276\",\n \"foodProduct\"=> \"Торт бисквитный шоколадный с кремом \\\"Марика\\\"\",\n \"foodProteins\"=> \"6.8\",\n \"foodFats\"=> \"25.1\",\n \"foodCarbohydrates\"=> \"42.50\",\n \"foodCalories\"=> \"425.2\"\n ],\n \"277\"=> [\n \"id\"=> \"277\",\n \"foodProduct\"=> \"Треска\",\n \"foodProteins\"=> \"16.0\",\n \"foodFats\"=> \"0.6\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"69.0\"\n ],\n \"278\"=> [\n \"id\"=> \"278\",\n \"foodProduct\"=> \"Тунец в собственном соку консервы\",\n \"foodProteins\"=> \"23.5\",\n \"foodFats\"=> \"0.6\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"99.0\"\n ],\n \"279\"=> [\n \"id\"=> \"279\",\n \"foodProduct\"=> \"Тыква\",\n \"foodProteins\"=> \"1.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"6.5\",\n \"foodCalories\"=> \"29.0\"\n ],\n \"280\"=> [\n \"id\"=> \"280\",\n \"foodProduct\"=> \"Укроп\",\n \"foodProteins\"=> \"2.5\",\n \"foodFats\"=> \"0.5\",\n \"foodCarbohydrates\"=> \"4.5\",\n \"foodCalories\"=> \"32.0\"\n ],\n \"281\"=> [\n \"id\"=> \"281\",\n \"foodProduct\"=> \"Утка для жарки\",\n \"foodProteins\"=> \"25.2\",\n \"foodFats\"=> \"11.9\",\n \"foodCarbohydrates\"=> \"0.68\",\n \"foodCalories\"=> \"284.0\"\n ],\n \"282\"=> [\n \"id\"=> \"282\",\n \"foodProduct\"=> \"Фасоль\",\n \"foodProteins\"=> \"22.3\",\n \"foodFats\"=> \"1.7\",\n \"foodCarbohydrates\"=> \"54.5\",\n \"foodCalories\"=> \"309.0\"\n ],\n \"283\"=> [\n \"id\"=> \"283\",\n \"foodProduct\"=> \"Фасоль в томатном соусе (консервированная)\",\n \"foodProteins\"=> \"4.6\",\n \"foodFats\"=> \"0.2\",\n \"foodCarbohydrates\"=> \"13.1\",\n \"foodCalories\"=> \"73.0\"\n ],\n \"284\"=> [\n \"id\"=> \"284\",\n \"foodProduct\"=> \"Фасоль красная\",\n \"foodProteins\"=> \"22.3\",\n \"foodFats\"=> \"1.7\",\n \"foodCarbohydrates\"=> \"54.7\",\n \"foodCalories\"=> \"309.0\"\n ],\n \"285\"=> [\n \"id\"=> \"285\",\n \"foodProduct\"=> \"Финики\",\n \"foodProteins\"=> \"2.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"72.1\",\n \"foodCalories\"=> \"281.0\"\n ],\n \"286\"=> [\n \"id\"=> \"286\",\n \"foodProduct\"=> \"Финики\",\n \"foodProteins\"=> \"2.2\",\n \"foodFats\"=> \"0.5\",\n \"foodCarbohydrates\"=> \"66.3\",\n \"foodCalories\"=> \"305.0\"\n ],\n \"287\"=> [\n \"id\"=> \"287\",\n \"foodProduct\"=> \"Фисташки жареные солёные\",\n \"foodProteins\"=> \"21.2\",\n \"foodFats\"=> \"38.8\",\n \"foodCarbohydrates\"=> \"14.3\",\n \"foodCalories\"=> \"655.0\"\n ],\n \"288\"=> [\n \"id\"=> \"288\",\n \"foodProduct\"=> \"Форель\",\n \"foodProteins\"=> \"19.5\",\n \"foodFats\"=> \"5.5\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"130.0\"\n ],\n \"289\"=> [\n \"id\"=> \"289\",\n \"foodProduct\"=> \"Форель слабосолёная\",\n \"foodProteins\"=> \"23.5\",\n \"foodFats\"=> \"11.5\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"203.0\"\n ],\n \"290\"=> [\n \"id\"=> \"290\",\n \"foodProduct\"=> \"Фундук жареный\",\n \"foodProteins\"=> \"16.1\",\n \"foodFats\"=> \"66.9\",\n \"foodCarbohydrates\"=> \"9.9\",\n \"foodCalories\"=> \"704.0\"\n ],\n \"291\"=> [\n \"id\"=> \"291\",\n \"foodProduct\"=> \"Халва миндальная\",\n \"foodProteins\"=> \"10.0\",\n \"foodFats\"=> \"28.0\",\n \"foodCarbohydrates\"=> \"53.50\",\n \"foodCalories\"=> \"123.3\"\n ],\n \"292\"=> [\n \"id\"=> \"292\",\n \"foodProduct\"=> \"Хлеб пшеничный\",\n \"foodProteins\"=> \"8.1\",\n \"foodFats\"=> \"1.2\",\n \"foodCarbohydrates\"=> \"42.0\",\n \"foodCalories\"=> \"203.0\"\n ],\n \"293\"=> [\n \"id\"=> \"293\",\n \"foodProduct\"=> \"Хлеб пшеничный \\\"нарезной\\\" батон\",\n \"foodProteins\"=> \"8.2\",\n \"foodFats\"=> \"0.95\",\n \"foodCarbohydrates\"=> \"54.06\",\n \"foodCalories\"=> \"263.0\"\n ],\n \"294\"=> [\n \"id\"=> \"294\",\n \"foodProduct\"=> \"Хлеб пшеничный \\\"особый\\\" батон\",\n \"foodProteins\"=> \"7.4\",\n \"foodFats\"=> \"0.8\",\n \"foodCarbohydrates\"=> \"50.0\",\n \"foodCalories\"=> \"240.0\"\n ],\n \"295\"=> [\n \"id\"=> \"295\",\n \"foodProduct\"=> \"Хлеб пшеничный лепёшка домашняя\",\n \"foodProteins\"=> \"8.98\",\n \"foodFats\"=> \"6.51\",\n \"foodCarbohydrates\"=> \"57.77\",\n \"foodCalories\"=> \"331.3\"\n ],\n \"296\"=> [\n \"id\"=> \"296\",\n \"foodProduct\"=> \"Хлеб ржано-пшеничный\",\n \"foodProteins\"=> \"7.0\",\n \"foodFats\"=> \"1.1\",\n \"foodCarbohydrates\"=> \"40.3\",\n \"foodCalories\"=> \"193.0\"\n ],\n \"297\"=> [\n \"id\"=> \"297\",\n \"foodProduct\"=> \"Хлебные палочки кунжутные\",\n \"foodProteins\"=> \"9.6\",\n \"foodFats\"=> \"11.5\",\n \"foodCarbohydrates\"=> \"59.4\",\n \"foodCalories\"=> \"380.4\"\n ],\n \"298\"=> [\n \"id\"=> \"298\",\n \"foodProduct\"=> \"Хлебцы ржаные из муки грубого помола с полбой\",\n \"foodProteins\"=> \"11.4\",\n \"foodFats\"=> \"1.7\",\n \"foodCarbohydrates\"=> \"64.9\",\n \"foodCalories\"=> \"321.0\"\n ],\n \"299\"=> [\n \"id\"=> \"299\",\n \"foodProduct\"=> \"Хлопковое\",\n \"foodProteins\"=> \"0.0\",\n \"foodFats\"=> \"99.9\",\n \"foodCarbohydrates\"=> \"9.0\",\n \"foodCalories\"=> \"899.0\"\n ],\n \"300\"=> [\n \"id\"=> \"300\",\n \"foodProduct\"=> \"Хлопья кукурузные Gold с мёдом и орешками\",\n \"foodProteins\"=> \"7.0\",\n \"foodFats\"=> \"4.0\",\n \"foodCarbohydrates\"=> \"81.2\",\n \"foodCalories\"=> \"389.0\"\n ],\n \"301\"=> [\n \"id\"=> \"301\",\n \"foodProduct\"=> \"Хрен\",\n \"foodProteins\"=> \"2.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"16.3\",\n \"foodCalories\"=> \"71.0\"\n ],\n \"302\"=> [\n \"id\"=> \"302\",\n \"foodProduct\"=> \"Хрен с майонезом\",\n \"foodProteins\"=> \"2.5\",\n \"foodFats\"=> \"11.7\",\n \"foodCarbohydrates\"=> \"16.3\",\n \"foodCalories\"=> \"178.0\"\n ],\n \"303\"=> [\n \"id\"=> \"303\",\n \"foodProduct\"=> \"Хурьма японская\",\n \"foodProteins\"=> \"0.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"15.9\",\n \"foodCalories\"=> \"62.0\"\n ],\n \"304\"=> [\n \"id\"=> \"304\",\n \"foodProduct\"=> \"Цыплёнок грудки филе\",\n \"foodProteins\"=> \"21.3\",\n \"foodFats\"=> \"2.5\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"107.7\"\n ],\n \"305\"=> [\n \"id\"=> \"305\",\n \"foodProduct\"=> \"Цыплёнок для жарки белое мясо\",\n \"foodProteins\"=> \"25.0\",\n \"foodFats\"=> \"4.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"141.0\"\n ],\n \"306\"=> [\n \"id\"=> \"306\",\n \"foodProduct\"=> \"Цыплёнок для жарки тёмное мясо\",\n \"foodProteins\"=> \"23.0\",\n \"foodFats\"=> \"6.9\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"156.0\"\n ],\n \"307\"=> [\n \"id\"=> \"307\",\n \"foodProduct\"=> \"Чай\",\n \"foodProteins\"=> \"20.0\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"6.9\",\n \"foodCalories\"=> \"109.0\"\n ],\n \"308\"=> [\n \"id\"=> \"308\",\n \"foodProduct\"=> \"Черемша\",\n \"foodProteins\"=> \"2.4\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"6.5\",\n \"foodCalories\"=> \"34.0\"\n ],\n \"309\"=> [\n \"id\"=> \"309\",\n \"foodProduct\"=> \"Черешня\",\n \"foodProteins\"=> \"1.1\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"12.3\",\n \"foodCalories\"=> \"52.0\"\n ],\n \"310\"=> [\n \"id\"=> \"310\",\n \"foodProduct\"=> \"Черника\",\n \"foodProteins\"=> \"1.1\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"8.6\",\n \"foodCalories\"=> \"40.0\"\n ],\n \"311\"=> [\n \"id\"=> \"311\",\n \"foodProduct\"=> \"Чернослив\",\n \"foodProteins\"=> \"1.9\",\n \"foodFats\"=> \"0.5\",\n \"foodCarbohydrates\"=> \"59.5\",\n \"foodCalories\"=> \"256.0\"\n ],\n \"312\"=> [\n \"id\"=> \"312\",\n \"foodProduct\"=> \"Чернослив в шоколаде\",\n \"foodProteins\"=> \"3.9\",\n \"foodFats\"=> \"14.2\",\n \"foodCarbohydrates\"=> \"58.40\",\n \"foodCalories\"=> \"358.0\"\n ],\n \"313\"=> [\n \"id\"=> \"313\",\n \"foodProduct\"=> \"Чеснок\",\n \"foodProteins\"=> \"6.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"21.2\",\n \"foodCalories\"=> \"106.0\"\n ],\n \"314\"=> [\n \"id\"=> \"314\",\n \"foodProduct\"=> \"Чечевица\",\n \"foodProteins\"=> \"24.8\",\n \"foodFats\"=> \"1.1\",\n \"foodCarbohydrates\"=> \"53.7\",\n \"foodCalories\"=> \"310.0\"\n ],\n \"315\"=> [\n \"id\"=> \"315\",\n \"foodProduct\"=> \"Чечевица красная\",\n \"foodProteins\"=> \"21.0\",\n \"foodFats\"=> \"2.0\",\n \"foodCarbohydrates\"=> \"49.0\",\n \"foodCalories\"=> \"298.0\"\n ],\n \"316\"=> [\n \"id\"=> \"316\",\n \"foodProduct\"=> \"Чина\",\n \"foodProteins\"=> \"25.1\",\n \"foodFats\"=> \"0.9\",\n \"foodCarbohydrates\"=> \"52.1\",\n \"foodCalories\"=> \"304.0\"\n ],\n \"317\"=> [\n \"id\"=> \"317\",\n \"foodProduct\"=> \"Шампиньоны консервированные\",\n \"foodProteins\"=> \"2.3\",\n \"foodFats\"=> \"0.5\",\n \"foodCarbohydrates\"=> \"0.5\",\n \"foodCalories\"=> \"16.0\"\n ],\n \"318\"=> [\n \"id\"=> \"318\",\n \"foodProduct\"=> \"Шампиньоны мороженные\",\n \"foodProteins\"=> \"4.2\",\n \"foodFats\"=> \"1.0\",\n \"foodCarbohydrates\"=> \"0.1\",\n \"foodCalories\"=> \"26.0\"\n ],\n \"319\"=> [\n \"id\"=> \"319\",\n \"foodProduct\"=> \"Шелковица\",\n \"foodProteins\"=> \"0.7\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"12.7\",\n \"foodCalories\"=> \"53.0\"\n ],\n \"320\"=> [\n \"id\"=> \"320\",\n \"foodProduct\"=> \"Шиповник свежий\",\n \"foodProteins\"=> \"1.6\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"24.0\",\n \"foodCalories\"=> \"101.0\"\n ],\n \"321\"=> [\n \"id\"=> \"321\",\n \"foodProduct\"=> \"Шиповник сушёный\",\n \"foodProteins\"=> \"0.4\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"60.0\",\n \"foodCalories\"=> \"253.0\"\n ],\n \"322\"=> [\n \"id\"=> \"322\",\n \"foodProduct\"=> \"Шоколад \",\n \"foodProteins\"=> \"5.4\",\n \"foodFats\"=> \"35.4\",\n \"foodCarbohydrates\"=> \"52.60\",\n \"foodCalories\"=> \"544.0\"\n ],\n \"323\"=> [\n \"id\"=> \"323\",\n \"foodProduct\"=> \"Шоколад с изюмом\",\n \"foodProteins\"=> \"4.5\",\n \"foodFats\"=> \"25.9\",\n \"foodCarbohydrates\"=> \"56.90\",\n \"foodCalories\"=> \"471.0\"\n ],\n \"324\"=> [\n \"id\"=> \"324\",\n \"foodProduct\"=> \"Шоколад с фундуком\",\n \"foodProteins\"=> \"8.8\",\n \"foodFats\"=> \"42.3\",\n \"foodCarbohydrates\"=> \"43.7\",\n \"foodCalories\"=> \"585.0\"\n ],\n \"325\"=> [\n \"id\"=> \"325\",\n \"foodProduct\"=> \"Шпинат\",\n \"foodProteins\"=> \"2.9\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"2.3\",\n \"foodCalories\"=> \"21.0\"\n ],\n \"326\"=> [\n \"id\"=> \"326\",\n \"foodProduct\"=> \"Шпроты в масле\",\n \"foodProteins\"=> \"17.0\",\n \"foodFats\"=> \"32.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"356.0\"\n ],\n \"327\"=> [\n \"id\"=> \"327\",\n \"foodProduct\"=> \"Щавель\",\n \"foodProteins\"=> \"1.5\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"5.3\",\n \"foodCalories\"=> \"28.0\"\n ],\n \"328\"=> [\n \"id\"=> \"328\",\n \"foodProduct\"=> \"Щука\",\n \"foodProteins\"=> \"18.0\",\n \"foodFats\"=> \"1.0\",\n \"foodCarbohydrates\"=> \"0.0\",\n \"foodCalories\"=> \"81.0\"\n ],\n \"329\"=> [\n \"id\"=> \"329\",\n \"foodProduct\"=> \"Яблоки\",\n \"foodProteins\"=> \"0.4\",\n \"foodFats\"=> \"0.0\",\n \"foodCarbohydrates\"=> \"11.3\",\n \"foodCalories\"=> \"46.0\"\n ],\n \"330\"=> [\n \"id\"=> \"330\",\n \"foodProduct\"=> \"Яйца куриные\",\n \"foodProteins\"=> \"12.7\",\n \"foodFats\"=> \"11.5\",\n \"foodCarbohydrates\"=> \"0.7\",\n \"foodCalories\"=> \"157.0\"\n ],\n \"331\"=> [\n \"id\"=> \"331\",\n \"foodProduct\"=> \"Ячмень\",\n \"foodProteins\"=> \"11.5\",\n \"foodFats\"=> \"2.0\",\n \"foodCarbohydrates\"=> \"65.8\",\n \"foodCalories\"=> \"311.0\"\n ]\n ];\n foreach ($foods as $food) {\n \\App\\Foods::create($food);\n }\n }", "private function getFruitsAndVegetables() {\n\t\treturn new Collection(array(\n\t\t\tarray('id' => '4', 'name' => 'apple', 'type' => 'fruit'),\n\t\t\tarray('id' => '6', 'name' => 'pear', 'type' => 'fruit'),\n\t\t\tarray('id' => '7', 'name' => 'banana', 'type' => 'fruit'),\n\t\t\tarray('id' => '8', 'name' => 'carrot', 'type' => 'vegetable'),\n\t\t));\n\t}", "function /* array(stdObject) */ getFacturas() {\n $consulta = \\Base\\FacturaQuery::create()\n ->select(array(\"id_factura\", \"id_cliente\", \"fecha\", \"cantidad_productos\"))\n ->find();\n $arregloObj = json_decode(json_encode($consulta->toArray()), FALSE);\n return $arregloObj;\n /*$sql = 'SELECT `id_factura`, `id_cliente`, `fecha`, `cantidad_productos` FROM `factura`';\n return $this->oMySQL->ejecutarConsultaSelect($sql);*/\n }", "public function index(Request $request)\n {\n\n $productQuery = Product::with('trader');\n\n $trader_id = $request['trader_id'];\n\n $main_product_type_id = $request['main_product_type_id'];\n\n $main_product_service_type_id = $request['main_product_service_type_id'];\n\n $sub_product_type_id = $request['sub_product_type_id'];\n\n $sub_product_service_type_id = $request['sub_product_service_type_id'];\n\n $details = $request['details'];\n\n $name = $request['name'];\n\n $city_id = $request['city_id'];\n\n $higher_price = $request['HigherPrice'];\n\n $SortByLowerPrice = $request['SortByLowerPrice'];\n\n $RecentlyAdded = $request['RecentlyAdded'];\n\n $Brand = $request['Brand'];\n\n $BrandNames = $request['BrandNames'];\n\n $PriceAfterDiscount = $request['PriceAfterDiscount'];\n\n $LowerPrice = $request['LowerPrice'];\n\n $Color = $request['Color'];\n\n $Size = $request['Size'];\n\n $ColorNames = $request['ColorNames'];\n\n $SizeNames = $request['SizeNames'];\n\n $TraderNames = $request['TraderNames'];\n\n if (isset($city_id)) {\n $productQuery = $productQuery->where('city_id', $city_id);\n }\n\n if (isset($higher_price)) {\n $higher_price = (float)$higher_price;\n $productQuery = $productQuery->Where('price_after_discount', '<=', $higher_price);\n }\n\n if (isset($RecentlyAdded)) {\n $productQuery = $productQuery->orderBy('updated_at', 'DESC');\n }\n\n\n if (isset($Brand)) {\n if (!is_array($Brand))\n $Brand = array($Brand);\n\n $productQuery = $productQuery->WhereHas('brand', function ($q) use ($Brand) {\n $q->whereIn('id', $Brand);\n });\n }\n\n\n if (isset($BrandNames)) {\n if (!is_array($BrandNames))\n $BrandNames = array($BrandNames);\n $arr = [];\n foreach ($BrandNames as $singleBrand) {\n $brandsID = Brand::where('name', 'like', '%' . $singleBrand . '%')->pluck('id')->toArray();\n foreach ($brandsID as $singleBrandId) {\n $arr[] = $singleBrandId;\n }\n }\n $productQuery = $productQuery->WhereHas('brand', function ($q) use ($arr) {\n $q->whereIn('id', $arr);\n });\n }\n\n if (isset($TraderNames)) {\n if (!is_array($TraderNames))\n $TraderNames = array($TraderNames);\n $arr = [];\n foreach ($TraderNames as $singleTrader) {\n $brandsID = Trader::where('name', 'like', '%' . $singleTrader . '%')->pluck('id')->toArray();\n foreach ($brandsID as $singleTraderId) {\n $arr[] = $singleTraderId;\n }\n }\n $productQuery = $productQuery->WhereHas('trader', function ($q) use ($arr) {\n $q->whereIn('id', $arr);\n });\n }\n\n\n if (isset($PriceAfterDiscount)) {\n $productQuery = $productQuery->whereNotNull('price_after_discount')->Where('price_after_discount', '!=', 0)->WhereColumn('price_after_discount', '!=', 'price');\n }\n\n if (isset($LowerPrice)) {\n $LowerPrice = (float)$LowerPrice;\n $productQuery = $productQuery->Where('price_after_discount', '>=', $LowerPrice);\n }\n\n\n if (isset($Color)) {\n\n if (!is_array($Color))\n $Color = array($Color);\n\n $productQuery = $productQuery->WhereHas('variants', function ($q) use ($Color) {\n $q->whereIn('color_id', $Color);\n });\n }\n\n if (isset($ColorNames)) {\n\n if (!is_array($ColorNames))\n $ColorNames = array($ColorNames);\n $arr = [];\n foreach ($ColorNames as $singleColor) {\n $colorsID = Color::where('name', 'like', '%' . $singleColor . '%')->pluck('id')->toArray();\n foreach ($colorsID as $singleColorId) {\n $arr[] = $singleColorId;\n }\n }\n $productQuery = $productQuery->WhereHas('variants', function ($q) use ($arr) {\n $q->whereIn('color_id', $arr);\n });\n }\n\n\n if (isset($Size)) {\n if (!is_array($Size))\n $Size = array($Size);\n $productQuery = $productQuery->WhereHas('variants', function ($q) use ($Size) {\n $q->whereIn('size_id', $Size);\n });\n }\n\n\n if (isset($SizeNames)) {\n if (!is_array($SizeNames))\n $SizeNames = array($SizeNames);\n $arr = [];\n foreach ($SizeNames as $singleSize) {\n $sizesID = Size::where('name', 'like', '%' . $singleSize . '%')->pluck('id')->toArray();\n foreach ($sizesID as $singleSizeId) {\n $arr[] = $singleSizeId;\n }\n }\n $productQuery = $productQuery->WhereHas('variants', function ($q) use ($arr) {\n $q->whereIn('size_id', $arr);\n });\n }\n\n\n if (isset($SortByLowerPrice)) {\n if ($SortByLowerPrice == 0) {\n $productQuery = $productQuery->orderBy('price_after_discount', 'DESC');\n } elseif ($SortByLowerPrice == 1) {\n $productQuery = $productQuery->orderBy('price_after_discount', 'ASC');\n }\n }\n\n\n if (isset($details)) {\n $productQuery = $productQuery->where('details', 'like', \"%$details%\");\n }\n\n\n if (isset($name)) {\n $productQuery = $productQuery->where('name', 'like', \"%$name%\");\n }\n\n if (isset($sub_product_service_type_id)) {\n $productQuery = $productQuery->where('sub_product_service_type_id', $sub_product_service_type_id);\n }\n if (isset($sub_product_type_id)) {\n $productQuery = $productQuery->where('sub_product_type_id', $sub_product_type_id);\n }\n if (isset($main_product_service_type_id)) {\n $productQuery = $productQuery->where('main_product_service_type_id', $main_product_service_type_id);\n }\n if (isset($main_product_type_id)) {\n $productQuery = $productQuery->where('main_product_type_id', $main_product_type_id);\n }\n if (isset($trader_id)) {\n if (!is_array($trader_id))\n $trader_id = array($trader_id);\n $productQuery = $productQuery->whereIn('trader_id', $trader_id);\n }\n return new ProductResource($productQuery->whereNull('deleted_at')->latest()->get());\n }", "private function getPetFoodDataArray()\n {\n $ingredients = ['Beef', 'Chicken', 'Fish', 'Rice', 'Oats', 'Water', 'Milk', 'Pork', 'Mouse', 'Rat', 'Bugs'];\n $counter = $this->foodCounter;\n if ($counter > (count($ingredients)-1)) {\n $counter = 0;\n $this->foodCounter = 0;\n } else {\n $this->foodCounter++;\n }\n return [\n 'ingredient' => $ingredients[$counter]\n ];\n }", "function getProducts() {\n\t\t$saleData = array();\n\t\tif($stmt = $this->connection->prepare(\"select * from products;\")) {\n\t\t\t$stmt -> execute();\n\n\t\t\t$stmt->store_result();\n\t\t\t$stmt->bind_result($id, $itemName, $itemImage, $itemDesc, $salePrice, $regularPrice, $numberLeft);\n\n\t\t\tif($stmt ->num_rows >0){\n\t\t\t\twhile($stmt->fetch() ){\n\t\t\t\t\t$saleData[] = array(\n\t\t\t\t\t\t'id' => $id,\n\t\t\t\t\t\t'itemName' => $itemName,\n\t\t\t\t\t\t'itemImage' => $itemImage,\n\t\t\t\t\t\t'itemDesc' => $itemDesc,\n\t\t\t\t\t\t'salePrice' => $salePrice,\n\t\t\t\t\t\t'regularPrice' => $regularPrice,\n\t\t\t\t\t\t'numberLeft' => $numberLeft\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $saleData;\n\t}", "public static function getSizes()\n {\n $db = DataBase::connect();\n\n $sortOrder = SIZE_SORT_ORDER ? \"ASC\" : \"DESC\" ;\n $result = $db->query(\"SELECT * FROM `size` ORDER BY `id` {$sortOrder}\");\n\n $sizes = [];\n\n $i = 1;\n\n while($row = $result->fetch()) {\n $sizes[$i]['size'] = $row['size'];\n $sizes[$i]['leonardo_prices'] = $row['leonardo_prices'];\n $sizes[$i]['frodo_prices'] = $row['frodo_prices'];\n $sizes[$i]['back_leg'] = $row['back_leg'];\n $sizes[$i]['image_size'] = $row['image_size'];\n\n $i++;\n }\n return $sizes;\n }", "public function getFoodbyID($sku){\r\n $conn = new ConnectionManager();\r\n $pdo = $conn->getConnection();\r\n \r\n\r\n // YOUR CODE GOES HERE\r\n\r\n return $result;\r\n }", "public function getSwartlandPropertyListImagesForSale(){\n\t\t\ttry{\n\t\t\t\t$query = \"SELECT properties.property_id, property_type, property_desc, price, num_bathrooms, street_no, \n\t\t\t\t street_name, num_beds, num_garages, property_image_id, image_location, suburbs.suburb_id, \n\t\t\t\t\t\t suburb_name, cities.city_id, city_name, municipalities.municipality_id, municipalities.municipality_name,\n\t\t\t\t\t\t agents.agent_id, firstname, lastname, email, phone, agencies.agency_id, agency_name, logo \n\t\t\t\t\t\t FROM property_images \n\t\t\t\t\t\t LEFT JOIN properties\n\t\t\t\t\t\t ON property_images.property_id = properties.property_id\n\t\t\t\t\t\t LEFT JOIN suburbs\n\t\t\t\t\t\t ON properties.suburb_id = suburbs.suburb_id\n\t\t\t\t\t\t LEFT JOIN cities\n\t\t\t\t\t\t ON suburbs.city_id = cities.city_id\n\t\t\t\t\t\t LEFT JOIN municipalities\n\t\t\t\t\t\t ON cities.municipality_id = municipalities.municipality_id\n\t\t\t\t\t\t LEFT JOIN agents\n\t\t\t\t\t\t ON properties.agent_id = agents.agent_id\n\t\t\t\t\t\t LEFT JOIN agencies\n\t\t\t\t\t\t ON agents.agency_id = agencies.agency_id\n\t\t\t\t\t\t WHERE municipalities.municipality_id = '120'\n\t\t\t\t\t\t AND properties.property_status = 'For Sale'\n\t\t\t\t\t\t GROUP BY properties.property_id\n\t\t\t\t\t\t DESC\n\t\t\t\t\t\t LIMIT 3\n\t\t\t\t\t\t \";\n\t\t\t\t$result = $this->conn->query($query);\n\n\t\t\t $properties = array();\n\t\t\t\t\n\t\t\t\tforeach($result as $row){\n\t\t\t\t\t$agency = new Agency();\n\t\t\t\t\t$agency->setAgencyID($row['agency_id']);\n\t\t\t\t\t$agency->setAgencyName($row['agency_name']);\n\t\t\t\t\t$agency->setLogo($row['logo']);\n\t\t\t\t\t\n\t\t\t\t\t$agent = new Agent();\n\t\t\t\t\t$agent->setAgentID($row['agent_id']);\n\t\t\t\t\t$agent->setFirstname($row['firstname']);\n\t\t\t\t\t$agent->setLastname($row['lastname']);\n\t\t\t\t\t$agent->setEmail($row['email']);\n\t\t\t\t\t$agent->setPhone($row['phone']);\n\t\t\t\t\t$agent->setAgency($agency);\n\t\t\t\t\t\n\t\t\t\t\t$munucipality = new Municipality();\n\t\t\t\t\t$munucipality->setMunicipalityID($row['municipality_id']);\n\t\t\t\t\t$munucipality->setMunicipalityName($row['municipality_name']);\n\t\t\t\t\t\n\t\t\t\t\t$city = new City();\n\t\t\t\t\t$city->setCityID($row['city_id']);\n\t\t\t\t\t$city->setCityName($row['city_name']);\n\t\t\t\t\t$city->setMunicipality($munucipality);\n\t\t\t\t\t\n\t\t\t\t\t$suburb = new Suburb();\n\t\t\t\t\t$suburb->setSuburbID($row['suburb_id']);\n\t\t\t\t\t$suburb->setSuburbName($row['suburb_name']);\n\t\t\t\t\t$suburb->setCity($city);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t$property = new Property();\t\t\n\t\t\t\t\t$property->setPropertyID($row['property_id']);\t\t\t\n\t\t\t\t\t$property->setSuburb($suburb);\t\n\t\t\t\t\t$property->setAgent($agent);\n\t\t\t\t\t$property->setNumBathRoom($row['num_bathrooms']);\n\t\t\t\t\t$property->setNumBed($row['num_beds']);\n\t\t\t\t\t$property->setNumGarage($row['num_garages']);\t\n\t\t\t\t\t$property->setStreetNo($row['street_no']);\t\n\t\t\t\t\t$property->setStreetName($row['street_name']);\t\n\t\t\t\t\t$property->setPropertyDescription($row['property_desc']);\t\n\t\t\t\t\t$property->setPropertyType($row['property_type']);\t\t\n\t\t\t\t\t$property->setPrice($row['price']);\t\n\t\t\t\t\t$property->setImageLocation($row['image_location']);\n\t\t\t\t\t$property->setSuburbID($row['suburb_id']);\n\t\t\t\t\t$property->setMunicipalityID($row['municipality_id']);\n\t\t\t\t\t$property->setMunicipalityName($row['municipality_name']);\n\t\t\t\t\t$property->setCityID($row['city_id']);\n\t\t\t\t\t$properties[] = $property;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\treturn $properties;\n\t\t\t\t\n\t\t\t}catch(PDOException $e){\n\t\t\t\techo $e->getMessage();\n\t\t\t}\n\t\t}", "public function getStock();", "public function run()\n {\n $productVariants = [\n \t1 => [\n \t\t'product_id' => 1,\n \t\t'variant_type' => 2,\n \t\t'product_type_id' => 1,\n \t\t'name' => 'Everything Seasoning',\n \t\t'internal_sku' => '811207024269',\n \t\t'sku' => '804879447856',\n \t\t'upc' => '811207024269',\n 'download_link' => '', \t\n \t\t'free_product_tier_id' => 0,\n \t\t'quantity' => 1,\n \t\t'hide_options_from_display_name' => 0,\n \t\t'customer_service_can_add' => 1, \t\t\n \t\t'enabled' => 1 \n ],\n 2 => [\n 'product_id' => 1,\n 'variant_type' => 3,\n 'product_type_id' => 1,\n 'name' => 'Everything Seasoning - 3 Bottles',\n 'internal_sku' => '813327020398-3B',\n 'sku' => '804879447856-3B',\n 'upc' => '813327020398',\n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1, \n 'enabled' => 1 \n ],\n 3 => [\n 'product_id' => 2,\n 'variant_type' => 2,\n 'product_type_id' => 1,\n 'name' => 'Spicy Everything Seasoning',\n 'internal_sku' => '811207024320',\n 'sku' => '804879447863',\n 'upc' => '811207024320',\n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1, \n 'enabled' => 1 \n ],\n 4 => [\n 'product_id' => 2,\n 'variant_type' => 3,\n 'product_type_id' => 1,\n 'name' => 'Spicy Everything Seasoning - 3 Bottles',\n 'internal_sku' => '813327020374-3B',\n 'sku' => '804879447863-3B',\n 'upc' => '813327020374',\n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1, \n 'enabled' => 1 \n ],\n 5 => [\n 'product_id' => 3,\n 'variant_type' => 2,\n 'product_type_id' => 1,\n 'name' => 'Garlic Lover\\'s Seasoning',\n 'internal_sku' => '811207024306',\n 'sku' => '804879389859',\n 'upc' => '811207024306', \n 'download_link' => '', \n 'free_product_tier_id' => 1,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1, \n 'enabled' => 1 \n ],\n 6 => [\n 'product_id' => 3,\n 'variant_type' => 3,\n 'product_type_id' => 1,\n 'name' => 'Garlic Lover\\'s Seasoning - 3 Bottles',\n 'internal_sku' => '811207024306-3B',\n 'sku' => '804879389859-3B',\n 'upc' => '811207024306', \n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1, \n 'enabled' => 1 \n ],\n 7 => [\n 'product_id' => 4,\n 'variant_type' => 2,\n 'product_type_id' => 1,\n 'name' => 'Lemon & Garlic Seasoning',\n 'internal_sku' => '811207024283',\n 'sku' => '804879153375',\n 'upc' => '811207024283',\n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1, \n 'enabled' => 1,\n \n ],\n 8 => [\n 'product_id' => 4,\n 'variant_type' => 3,\n 'product_type_id' => 1,\n 'name' => 'Lemon & Garlic Seasoning - 3 Bottles',\n 'internal_sku' => '811207024283-3B',\n 'sku' => '804879153375-3B',\n 'upc' => '811207024283',\n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1, \n 'enabled' => 1,\n \n ],\n 9 => [\n 'product_id' => 5,\n 'variant_type' => 2,\n 'product_type_id' => 1,\n 'name' => 'Chipotle Seasoning',\n 'internal_sku' => '811207026720',\n 'sku' => '811207026720', \n 'upc' => '811207026720', \n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1,\n 'enabled' => 1 \n ],\n 10 => [\n 'product_id' => 5,\n 'variant_type' => 3,\n 'product_type_id' => 1,\n 'name' => 'Chipotle Seasoning - 3 Bottles',\n 'internal_sku' => '',\n 'sku' => '811207026720-3B', \n 'upc' => '811207026720',\n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 0,\n 'enabled' => 1 \n ],\n 11 => [\n 'product_id' => 6,\n 'variant_type' => 3,\n 'product_type_id' => 1,\n 'name' => 'Pizza Seasoning',\n 'internal_sku' => '813327020299',\n 'sku' => '813327020299', \n 'upc' => '813327020299',\n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1,\n 'enabled' => 1 \n ],\n 12 => [\n 'product_id' => 6,\n 'variant_type' => 3,\n 'product_type_id' => 1,\n 'name' => 'Pizza Seasoning - 3 Bottles',\n 'internal_sku' => '',\n 'sku' => '813327020299-3B', \n 'upc' => '813327020299',\n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1, \n 'enabled' => 1\n \n ],\n 13 => [\n 'product_id' => 6,\n 'variant_type' => 2,\n 'product_type_id' => 1,\n 'name' => 'Pizza Seasoning',\n 'internal_sku' => 'PZA',\n 'sku' => 'PZA', \n 'upc' => '813327020299',\n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 0, \n 'enabled' => 0\n \n ],\n 14 => [\n 'product_id' => 7,\n 'variant_type' => 4,\n 'product_type_id' => 4,\n 'name' => 'Flavor God Paleo Recipe Book',\n 'internal_sku' => '',\n 'sku' => 'FG-RECIPE01',\n 'upc' => '', \n 'download_link' => 'http://download.flavorgod.com/flavorpurchase/flavorgodpaleoandglutenfreerecipebook.pdf', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1, \n 'enabled' => 1\n \n ],\n 15 => [\n 'product_id' => 8,\n 'variant_type' => 3,\n 'product_type_id' => 1,\n 'name' => 'Classic Combo Set',\n 'internal_sku' => '811207024245',\n 'sku' => 'COMBOPACK',\n 'upc' => '811207024245', \n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1, \n 'enabled' => 1\n \n ],\n 16 => [\n 'product_id' => 8,\n 'variant_type' => 3,\n 'product_type_id' => 1,\n 'name' => 'Classic Combo Set w/ Flavor God Paleo Recipe Book',\n 'internal_sku' => '813327020244',\n 'sku' => 'FGCOMBOBOOK-1',\n 'upc' => '813327020244', \n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1, \n 'enabled' => 1\n \n ],\n 17 => [\n 'product_id' => 8,\n 'variant_type' => 3,\n 'product_type_id' => 5,\n 'name' => 'Classic Combo Set w/ Apron (Grey) - 50% OFF',\n 'internal_sku' => 'CLSCMB-GRAP-50',\n 'sku' => 'CLSCMB-GRAP-50',\n 'upc' => 'CLSCMB-GRAP-50', \n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 1, \n 'enabled' => 1\n \n ],\n 18 => [\n 'product_id' => 9,\n 'variant_type' => 3,\n 'product_type_id' => 1,\n 'name' => 'Chipotle Combo Set',\n 'internal_sku' => '811207026713',\n 'sku' => 'COMBO-CHIP',\n 'upc' => '811207026713', \n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 0, \n 'enabled' => 0\n \n ],\n 19 => [\n 'product_id' => 9,\n 'variant_type' => 3,\n 'product_type_id' => 1,\n 'name' => 'Chipotle Combo Set w/ Flavor God Paleo Recipe Book',\n 'internal_sku' => '811207026706',\n 'sku' => 'COMBO-CHIP-EB',\n 'upc' => '811207026706', \n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 0, \n 'enabled' => 0 \n ],\n 20 => [\n 'product_id' => 10,\n 'variant_type' => 3,\n 'product_type_id' => 1,\n 'name' => 'Pizza Combo Set',\n 'internal_sku' => '813327020176',\n 'sku' => 'COMBO-PZA',\n 'upc' => '813327020176', \n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 0,\n 'customer_service_can_add' => 0, \n 'enabled' => 0 \n ],\n 21 => [\n 'product_id' => 10,\n 'variant_type' => 3,\n 'product_type_id' => 1,\n 'name' => 'Pizza Combo Set w/ Flavor God Paleo Recipe Book',\n 'internal_sku' => '813327020145',\n 'sku' => 'COMBO-PZA-EB',\n 'upc' => '813327020145', \n 'download_link' => '', \n 'free_product_tier_id' => 0,\n 'quantity' => 1,\n 'hide_options_from_display_name' => 1,\n 'customer_service_can_add' => 0, \n 'enabled' => 0 \n ]\n];\n \n foreach ($productVariants as $key => $value) {\n \\DB::insert('insert into product_variants(product_id, variant_type, product_type_id, name, internal_sku, sku,\n upc, download_link, free_product_tier_id, quantity, hide_options_from_display_name, customer_service_can_add, enabled)values(\n ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', [\n $value['product_id'], \n $value['variant_type'],\n $value['product_type_id'],\n $value['name'],\n $value['internal_sku'],\n $value['sku'],\n $value['upc'],\n $value['download_link'],\n $value['free_product_tier_id'],\n $value['quantity'],\n $value['hide_options_from_display_name'],\n $value['customer_service_can_add'], \n $value['enabled']\n ]);\n }\n }", "function particularvariant($id)\n\t{\n\t\t$getvariant=\"SELECT * from product_variant where ptdvar_id = $id\";\n\t\t$getvariantdata = $this->get_results( $getvariant );\n\n\t\t$getvariant1=\"SELECT * from product_variant_cost where ptdvar_id = $id\";\n\t\t$getvariantdata1 = $this->get_results( $getvariant1 );\n\n\t\t$c = array('variant' => $getvariantdata,'variantcost' => $getvariantdata1);\n\t\treturn $c;\n\n\t}", "public function getPricing() : array\n {\n $data = $this->fetchJson();\n $result = [];\n\n foreach ($data['fuel']['types'] as $fuelType) {\n if (!in_array($fuelType['name'], $this->types)) {\n continue;\n }\n\n $result[] = [\n 'name' => $fuelType['name'],\n 'price' => $fuelType['price'] * 100\n ] ;\n }\n\n return $result;\n }", "public function getSaleList()\n {\n return $this->with('images','manufacturer', 'category')->sale()->get();\n }", "public function getPurchaseInfo() {\n $info = \"\";\n $productPrice = \"Item: \" . $this->getType() . \" Price: \" . $this->price . \"\\n\"; \n $info .= $productPrice;\n foreach($this->extraItems as $extraItem) {\n $extraPrice = \"- Extra item: \" . $extraItem->getType() . \" Price: \" . $extraItem->getPrice() . \"\\n\";\n $info .= $extraPrice;\n }\n return $info;\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 getProductFamily(array $parameters);", "public function index()\n {\n $foodprices = DB::table('ap_copi')\n ->selectRaw('ap_states.state, AVG(steak) AS Steak, AVG(grnd_beef) AS Ground_Beef, AVG(sausage) AS Sausage, AVG(fry_chick) AS Fried_Chicken, AVG(tuna) AS Tuna')\n ->join('ap_states', 'ap_copi.state_id', '=', 'ap_states.id')\n ->groupBy('state_id')\n ->get();\n\n return $foodprices;\n }", "public function get_all_product_information () {\n $this->json_source_file = file_get_contents(\"products.json\");\n $this->json_source_array = json_decode($this->json_source_file,true);\n\n }", "public function fromFlavor($flav)\n {\n return $this->isFlavor(strtolower($this->from_flavor), strtolower($flav));\n }", "public function getAllManufactures(){\r\n\t\t//viet cau sql\r\n\t\t$sql =\"SELECT * FROM manufactures\";\r\n\t\t//thuc thi cau truy van\r\n\t\t$obj = self::$conn->query($sql);\r\n\t\treturn $this->getData($obj);\r\n\t}", "function getShippingChoicesList() {\n\t\tApp::import('Model', 'CartsProduct');\n\t\t$this->CartsProduct = &new CartsProduct;\n\t\t$cart_stats = $this->CartsProduct->getStats($this->CartsProduct->Cart->get_id());\n\n\t\t// pokud nesplnuju podminky pro dopravy doporucenym psanim, zakazu si tyto zpusoby dopravy vykreslit zakaznikovi\n\t\t$conditions = array();\n\t\tif (!$this->isRecommendedLetterPossible()) {\n\t\t\t$conditions = array('Shipping.id NOT IN (' . implode(',', $this->Shipping->getRecommendedLetterShippingIds()) . ')');\n\t\t}\n\n\t\t$shipping_choices = $this->Shipping->find('all', array(\n\t\t\t'conditions' => $conditions,\n\t\t\t'contain' => array(),\n\t\t\t'fields' => array('id', 'name', 'price', 'free'),\n\t\t\t'order' => array('Shipping.order' => 'asc')\n\t\t));\n\t\t\n\t\t// pokud mam v kosiku produkty, definovane v Cart->free_shipping_products v dostatecnem mnozstvi, je doprava zdarma\n\t\tApp::import('Model', 'Cart');\n\t\t$this->Cart = &new Cart;\n\t\tif ($this->Cart->isFreeShipping()) {\n\t\t\t// udelam to tak, ze nastavim hodnotu kosiku na strasne moc a tim padem budu mit v kosiku vzdycky vic, nez je\n\t\t\t// minimalni hodnota kosiku pro dopravu zdarma\n\t\t\t$cart_stats['total_price'] = 99999;\n\t\t}\n\n\t\t// v selectu chci mit, kolik stoji doprava\n\t\tforeach ($shipping_choices as $shipping_choice) {\n\t\t\t$shipping_item = $shipping_choice['Shipping']['name'] . ' - ' . $shipping_choice['Shipping']['price'] . ' Kč';\n\t\t\tif ($cart_stats['total_price'] > $shipping_choice['Shipping']['free']) {\n\t\t\t\t$shipping_item = $shipping_choice['Shipping']['name'] . ' - zdarma';\n\t\t\t}\n\t\t\t$shipping_choices_list[$shipping_choice['Shipping']['id']] = $shipping_item;\n\t\t}\n\t\t\n\t\treturn $shipping_choices_list;\n\t}", "public function getVariantAndProductInfo($variantId)\n {\n $response = $this->getVariantInfo($variantId);\n $responseBody = json_decode($response->getBody(), true);\n if(array_key_exists('variant', $responseBody)){\n $variant = $responseBody['variant'];\n $productId = $variant['product_id'];\n $proObj = new shopifyProducts($this->credentials);\n $prodResponse = $proObj->getProductInfo($productId);\n $prodBody = json_decode($prodResponse->getBody(), true);\n $product = $prodBody['product'];\n $data['variant'] = $variant;\n $data['product'] = $product;\n //Todo : send guzzle response object for uniformity\n return $data;\n } else {\n return null;\n }\n\n }", "function json_SuppliersList() {\n\t\t$query = \"SELECT SupplierID, FullName FROM supplier\";\n\t\t\n\t\tmysql_connect(DB_SERVER, DB_USER, DB_PASSWORD);\n\t\tmysql_select_db(DB_NAME);\n \t\n\t\t\t$result = mysql_query($query) or die(mysql_error());\t\n\t\t\t$rows = Array(); // returned object\n\t\t\t$rows['identifier'] = \"SupplierID\";\n\t\t\t\n \t\t\twhile($r=mysql_fetch_assoc($result)) {\n \t\t\t $rows['items'][] = $r;\n \t\t\t}\n\n\t\t\treturn json_encode($rows);\n\t}", "public function getInventoryAndSales() {\n\t\t$isql=\"SELECT i.id as value,i.item_name as label,i.sell_price,i.quantity FROM inventory i where rstatus='A' and quantity > 0\";\t\t\n\t\t$iresult=$this->runQuery('getAll',$isql);\n\t\t\n\t\t$sosql=\"SELECT so.id as so_id,so.product_id as inv_id,p.item_name as inv_name,date(so.sell_date) as selling_date,so.customer_name,so.sell_price as selling_price,so.prod_qty as selling_qty,so.comments FROM sales_order so, inventory p where p.id = so.product_id and so.rstatus ='A'\";\t\t\n\t\t$soresult=$this->runQuery('getAll',$sosql);\n\t\t\n\t\techo '[{\"invDropdownList\":'.json_encode($iresult).',\"salesOrderList\":'.json_encode($soresult).'}]';\n\t}" ]
[ "0.61481136", "0.5762628", "0.5510485", "0.54369557", "0.5428568", "0.5316071", "0.5233684", "0.52135277", "0.5164671", "0.5098005", "0.50960904", "0.50871706", "0.50125307", "0.4981203", "0.4852653", "0.4850647", "0.4839956", "0.48161188", "0.48127523", "0.47822845", "0.4746237", "0.47225052", "0.47192726", "0.4714477", "0.46966186", "0.46925694", "0.46820664", "0.46717653", "0.4670461", "0.46686542", "0.4666502", "0.46655223", "0.46573874", "0.46519527", "0.46502554", "0.46459892", "0.46384653", "0.46278897", "0.46266857", "0.46220648", "0.46193507", "0.46103397", "0.4605278", "0.45981738", "0.45981255", "0.45962262", "0.45940465", "0.45939183", "0.45869255", "0.45849606", "0.45745495", "0.45669004", "0.456639", "0.45650378", "0.45608312", "0.45582554", "0.45550862", "0.4541561", "0.45406303", "0.45334065", "0.4531243", "0.45277035", "0.45266595", "0.45248783", "0.45229554", "0.45209402", "0.45208314", "0.45184454", "0.45159137", "0.4514615", "0.4513325", "0.4507465", "0.45071217", "0.45053443", "0.44978988", "0.44967481", "0.44947928", "0.4490865", "0.44899905", "0.44894236", "0.4489388", "0.44880658", "0.4487183", "0.4481227", "0.44767794", "0.4472174", "0.44717777", "0.44691613", "0.44669878", "0.4465373", "0.44639382", "0.4463509", "0.44600114", "0.44565356", "0.44563082", "0.44559696", "0.44551563", "0.44511682", "0.44510788", "0.44509664" ]
0.76264864
0
This function gets the sales info of icing from the database. This information is stored in an array that links the icing's name and the amount purchased.
function getIcingsSalesFromDB() { $con = mysql_connect("localhost", "DBandGUI", "narwhal"); if(!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("CustomCupcakes", $con) or die('Could not select db: ' . mysql_error()); $query = "SELECT icing_Name,purchase_Amount FROM CupcakeIcing;"; $result = mysql_query($query); $finalArr = array(); while($row = mysql_fetch_array($result)) { $finalArr[$row['icing_Name']] = $row['purchase_Amount']; } mysql_close($con); return $finalArr; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getInventoryAndSales() {\n\t\t$isql=\"SELECT i.id as value,i.item_name as label,i.sell_price,i.quantity FROM inventory i where rstatus='A' and quantity > 0\";\t\t\n\t\t$iresult=$this->runQuery('getAll',$isql);\n\t\t\n\t\t$sosql=\"SELECT so.id as so_id,so.product_id as inv_id,p.item_name as inv_name,date(so.sell_date) as selling_date,so.customer_name,so.sell_price as selling_price,so.prod_qty as selling_qty,so.comments FROM sales_order so, inventory p where p.id = so.product_id and so.rstatus ='A'\";\t\t\n\t\t$soresult=$this->runQuery('getAll',$sosql);\n\t\t\n\t\techo '[{\"invDropdownList\":'.json_encode($iresult).',\"salesOrderList\":'.json_encode($soresult).'}]';\n\t}", "function getFillingsSalesFromDB()\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t$query = \"SELECT filling_Name,purchase_Amount FROM CupcakeFilling;\";\n\n\t$result = mysql_query($query);\n\n\t$finalArr = array();\n\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$finalArr[$row['filling_Name']] = $row['purchase_Amount'];\n\t}\n\n\tmysql_close($con);\n\n\treturn $finalArr;\n}", "function getToppingsSalesFromDB()\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t$query = \"SELECT topping_Name,purchase_Amount FROM CupcakeTopping;\";\n\n\t$result = mysql_query($query);\n\n\t$finalArr = array();\n\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$finalArr[$row['topping_Name']] = $row['purchase_Amount'];\n\t}\n\n\tmysql_close($con);\n\n\treturn $finalArr;\n}", "public function Get_Invoice_Value_Details($sales){\n $sql = \"SELECT `sales_details`.*,\n `medicine`.*\n FROM `sales_details`\n LEFT JOIN `medicine` ON `sales_details`.`mid`=`medicine`.`product_id`\n WHERE `sales_details`.`sale_id`='$sales'\"; \n $query = $this->db->query($sql);\n $result = $query->result();\n return $result;\n\t}", "public function getSsalesDetails($id) {\n\t\n $registry = Zend_Registry::getInstance();\n\t\t$DB = $registry['DB'];\n $sql = \"SELECT * FROM `tbl_sales_commission` as sc WHERE sc.`deleted` = 0 AND sc.sales_id_prime = $id \";\n \t\t$result = $DB->fetchAssoc($sql);\n\t\treturn $result;\n\t\t\n }", "public function retrieve_product_sales_report()\n\t{\n\t\t$today = date('Y-m-d');\n\t\t$this->db->select(\"a.*,b.product_name,b.product_model,c.date,c.total_amount,d.customer_name\");\n\t\t$this->db->from('invoice_details a');\n\t\t$this->db->join('product_information b','b.product_id = a.product_id');\n\t\t$this->db->join('invoice c','c.invoice_id = a.invoice_id');\n\t\t$this->db->join('customer_information d','d.customer_id = c.customer_id');\n\t\t$this->db->where('c.date',$today);\n\t\t$this->db->order_by('c.date','desc');\n\t\t$this->db->limit('500');\n\t\t$query = $this->db->get();\t\n\t\treturn $query->result_array();\n\t}", "function getStocksPurchases($mysqli,$sale_id){\n\t$query = \"SELECT stocks.description,subsales.price_per_ton,subsales.quantity,subsales.subtotal FROM sales INNER join subsales ON sales.id = subsales.sale_id INNER JOIN stocks ON stocks.id = subsales.stock_id WHERE sales.id = '$sale_id'\";\n\n\tif($result = mysqli_query($mysqli,$query)){\n\t\treturn $result ;\n\t}\n\telse{\n\t\tprintf(\"Notice: %s\", mysqli_error($mysqli));\n\t}\n\t\n}", "public function dataForInvoice() {\n\t\t\t\n\t\t\t$data = [\n\t\t\t 'booking_reference' => $this->reference,\n\t\t\t 'booking_date' => Utility::dateTimeLocale($this->updated_at, false),\n\t\t\t 'user_booking_fullname' => $this->user_booking_fullname,\n\t\t\t 'user_booking_address' => $this->user_booking_address,\n\t\t\t 'user_booking_locality' => $this->user_booking_full_locality,\n\t\t\t 'user_booking_email' => $this->user_booking_email,\n\t\t\t 'user_booking_tax_code' => $this->user->customer->taxCode,\n\t\t\t 'apartment_owner_fullname' => $this->apartment_owner_fullname,\n\t\t\t 'apartment_owner_tax_code' => $this->apartmentOwner->customer->taxCode,\n\t\t\t 'apartment_owner_address' => $this->apartment_owner_address,\n\t\t\t 'apartment_owner_locality' => $this->apartment_owner_full_locality,\n\t\t\t 'apartment_owner_email' => $this->apartment_owner_email,\n\t\t\t 'apartment_title' => $this->apartment_title,\n\t\t\t 'apartment_price_per_night' => $this->apartment_price_per_night,\n\t\t\t 'check_in' => Utility::dateTimeLocale($this->check_in, false),\n\t\t\t 'check_out' => Utility::dateTimeLocale($this->check_out, false),\n\t\t\t 'nights_count' => Utility::diffInDays($this->check_in, $this->check_out),\n\t\t\t 'total_amount' => $this->bookingAmount(),\n\t\t\t 'has_upgrades' => $this->bookedServices()->exists(),\n\t\t\t];\n\t\t\tif ($data['has_upgrades']) {\n\t\t\t\t$data['upgrades'] = [];\n\t\t\t\tforeach ($this->bookedServices()->get() as $bookedService) {\n\t\t\t\t\t$data['upgrades'][] =\n\t\t\t\t\t [\n\t\t\t\t\t\t'name' => $bookedService->name,\n\t\t\t\t\t\t'price_per_night' => $bookedService->price_per_night,\n\t\t\t\t\t ];\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn $data;\n\t\t}", "function getFlavorsSalesFromDB()\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t$query = \"SELECT flavor_Name,purchase_Amount FROM CupcakeFlavor;\";\n\n\t$result = mysql_query($query);\n\n\t$finalArr = array();\n\n\t// This loop iterates over the results from the query and builds it into an array that will be returned later\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$finalArr[$row['flavor_Name']] = $row['purchase_Amount'];\n\t}\n\n\tmysql_close($con);\n\n\treturn $finalArr;\n}", "public function get_invoice_list()\n {\n return $this->db->select('sr_no, invoice_no, round_off_total, invoice_date, bakery_name,bakery_address, bakery_area, bakery_city')->order_by('sr_no','desc')\n ->from('insider_bill')->join('customers', 'customers.id = insider_bill.customer_id')->get();\n }", "public function getShippingInvoiced();", "public function Get_Invoice_Value($sales){\n $sql = \"SELECT `sales`.*,\n `customer`.*\n FROM `sales`\n LEFT JOIN `customer` ON `sales`.`cus_id`=`customer`.`c_id`\n WHERE `sales`.`sale_id`='$sales'\";\n $query = $this->db->query($sql);\n $result = $query->row();\n return $result;\n\t}", "function get_sales_amount($pccustno){\n\t$oConn = get_coneccion(\"CIA\");\n\t$lcsqlcmd = \" select sum(nsalesamt - ndesamt + ntaxamt) as nsalestot ,\n\t sum(nbalance) as nbalance\n\t\t\t\t from arinvc\n\t\t\t\t where ccustno = '$pccustno' and\n\t\t\t\t\t\tcstatus = 'OP' \";\n\n\t$lcResult = mysqli_query($oConn,$lcsqlcmd); // $oConn->query($lcSqlCmd);\n\t// convirtiendo estos datos en un array asociativo\n\t$ldata = mysqli_fetch_assoc($lcResult);\n\t// convirtiendo este array en archivo jason.\n\t$jsondata =json_encode($ldata,true);\n\t// retornando objeto json\n\techo $jsondata;\n}", "public function getSalesList(){\n\t\n $registry = Zend_Registry::getInstance();\n\t\t$DB = $registry['DB'];\n\t\t\n $sql = \"SELECT sales_id,sales_comm_percentage FROM `tbl_sales_commission` where `deleted` = 0 ORDER BY sales_id DESC \";\n\t\t\n \t\t$result = $DB->fetchAssoc($sql);\n\t\treturn $result; \n\t\t\n }", "public function getDiscountInvoiced();", "function jx_getinvoiceorditems()\r\n\t{\r\n\t\t$this->erpm->auth(PNH_INVOICE_RETURNS|PNH_ADD_INVOICE_RETURN);\r\n\t\t$output = array();\r\n\t\t$invno = $this->input->post('scaninp');\r\n\t\t\r\n\t\t$fr_det = $this->db->query(\"select a.franchise_id,franchise_name from pnh_m_franchise_info a join king_transactions b on a.franchise_id = b.franchise_id join king_invoice c on c.transid = b.transid where c.invoice_no = ? \",$invno)->row();\r\n\t\t\r\n\t\t$output['franchise_name'] = $fr_det->franchise_name;\r\n\t\t$output['franchise_id'] = $fr_det->franchise_id;\r\n\t\t$output['invdet'] = $this->erpm->get_invoicedet_forreturn($invno);\r\n\t\t$output['return_cond'] = $this->config->item('return_cond');\r\n\t\t$output['return_reason'] = $this->config->item('return_reason');\r\n\t\techo json_encode($output);\r\n\t}", "public function getAllCashPaidInvoiceDetails(){\n\n try {\n $invoiceDetials = array();\n $invoiceDetials = DB::table('purchase_invoices')\n ->join('cash_paid_to_suppliers', 'purchase_invoices.invoiceNum', '=', 'cash_paid_to_suppliers.invoiceNum')\n ->join('supplier_details', 'purchase_invoices.supplierId', '=', 'supplier_details.id')\n ->select(\n 'cash_paid_to_suppliers.invoiceNum',\n 'supplier_details.supplierName', \n 'cash_paid_to_suppliers.date', \n 'cash_paid_to_suppliers.cashPaid'\n )\n ->get();\n\n $cashPaid = DB::table('cash_paid_to_suppliers')->sum('cashPaid'); \n\n return response()->json([\n 'success'=>true,\n 'error'=>null,\n 'code'=>200,\n 'total'=>count($invoiceDetials),\n 'cumCashPaid'=>$cashPaid,\n 'data'=>$invoiceDetials\n ], 200);\n \n } catch (Exception $e) {\n return response()->json([\n 'success'=>false,\n 'error'=>($e->getMessage()),\n 'code'=>500\n ], 500);\n }\n }", "public function tabelsales()\n {\n return DB::table('tbl_sales')->get();\n }", "function XSAInvoicing($InvoiceNo, $orderno, $debtorno, $TypeInvoice, $tag, $serie, $folio, &$db)\n{\n\t$charelectronic='01';\n\t$charelectronicEmbarque='';\n\t$charelectronic=$charelectronic.'|'.$serie;\n\t$serieelect=$serie;\n\t//$serieelect=$TypeInvoice.'-'.$_SESSION['Tagref'];\n\t$folioelect=$folio;//$InvoiceNoTAG;\n\t//$folioelect=$InvoiceNo;\n\t$charelectronic=$charelectronic.'|'.$serieelect;\n\t$charelectronic=$charelectronic.'|'.$folioelect;\n\t// consulto datos de la factura\n\t$imprimepublico=0;\n\tif ($TypeInvoice == 11) {\n\t\t$tabla = 'notesorders';\n\t}else{\n\t\t$tabla = 'salesorders';\n\t}\n\t$SQLInvoice = \"SELECT replace(debtortrans.trandate,'-','/') as trandate,debtortrans.ovamount,debtortrans.ovdiscount,\n\t\t\tdebtortrans.ovfreight,debtortrans.ovgst,debtortrans.rate as cambio,\n\t\t\tdebtortrans.order_,debtortrans.invtext,\tdebtortrans.consignment,\n\t\t\tdebtortrans.id AS iddocto, debtortrans.type,\n\t\t\tdebtorsmaster.name,debtorsmaster.address1,debtorsmaster.address2,\n\t\t\tdebtorsmaster.address3,debtorsmaster.address4,debtorsmaster.address5,\n\t\t\tdebtorsmaster.address6,debtorsmaster.invaddrbranch,\n\t\t\tcustbranch.taxid as rfc,paymentterms.terms,salesorders.deliverto,\n\t\t\tsalesorders.deladd1,salesorders.deladd2,salesorders.deladd3,\n\t\t\tsalesorders.deladd4,salesorders.deladd5,salesorders.deladd6,\n\t\t\tsalesorders.customerref,salesorders.orderno,salesorders.orddate,\n\t\t\tlocations.locationname,\tshippers.shippername,custbranch.brname,\n\t\t\tcustbranch.braddress1,custbranch.braddress2,custbranch.braddress3,\n\t\t\tcustbranch.braddress4,custbranch.braddress5,custbranch.braddress6,\n\t\t\tcustbranch.brpostaddr1,custbranch.brpostaddr2,custbranch.brpostaddr3,\n\t\t\tcustbranch.brpostaddr4,custbranch.brpostaddr5,custbranch.brpostaddr6,\n\t\t\tsalesman.salesmanname,debtortrans.debtorno,debtortrans.branchcode,debtortrans.folio,\n\t\t\treplace(origtrandate,'-','/') as origtrandate,debtortrans.currcode,custbranch.branchcode,\n\t\t\tsalesorders.salesman,salesorders.UserRegister,custbranch.phoneno as telofi,\n\t\t\tsalesorders.placa, salesorders.serie,salesorders.kilometraje,salesorders.comments,debtortrans.ref1,\n\t\t\tsalesorders.ordertype,debtortrans.paymentname,debtortrans.nocuenta,\n\t\t\tcustbranch.brnumext, custbranch.brnumint,custbranch.specialinstructions,\n\t\t\ttags.typegroup,debtortrans.id\n\t\tFROM debtortrans \n\t\t\tleft join shippers on debtortrans.shipvia=shippers.shipper_id \n\t\t\tjoin tags on tags.tagref=debtortrans.tagref,\n\t\t\tdebtorsmaster,custbranch,\".$tabla.\" as salesorders ,\n\t\t\tsalesman,locations,paymentterms\n\n\t\tWHERE debtortrans.order_ = salesorders.orderno\n\n\t\tAND debtortrans.type=\".$TypeInvoice.\"\n\t\tAND debtortrans.transno=\" . $InvoiceNo . \"\n\t\tAND debtortrans.tagref=\" . $tag . \"\n\n\t\tAND debtortrans.debtorno=debtorsmaster.debtorno\n\t\tAND salesorders.paytermsindicator=paymentterms.termsindicator\n\t\tAND debtortrans.debtorno=custbranch.debtorno\n\t\tAND debtortrans.branchcode=custbranch.branchcode\n\t\tAND salesorders.salesman=salesman.salesmancode\n\t\tAND salesorders.fromstkloc=locations.loccode \";\n\tif ($_SESSION['UserID']=='admin') {\n\n\t\t//echo '<pre>sql:<br>'.$SQLInvoice.'<br>';\n\t}\n\t$Result=DB_query($SQLInvoice,$db);\n\tif (DB_num_rows($Result)>0) {\n\t\t$myrow = DB_fetch_array($Result);\n\t\t//impuestos federales\n\t\t$totretencionfederal=0;\n\t\t//$charelectronictaxslocal='|'.chr(13).chr(10);\n\t\t$qry = \"Select debtortranstaxesclient.*,sec_taxes.nametax from debtortranstaxesclient, sec_taxes\n\t\t\t\twhere debtortranstaxesclient.idtax = sec_taxes.idtax\n\t\t\t\tAND sec_taxes.typetax=1\n\t\t\t\tand debtortranstaxesclient.iddoc = \".$myrow['id'];\n\t\t\t\n\t\t$rs = DB_query($qry,$db);\n\t\t$totalImpuestosLocales=0;\n\t\tif (DB_num_rows($rs) > 0){\n\t\t\t$charelectronictaxsfederal='';\n\t\t\t$charelectronictaxsfederalini='|'.chr(13).chr(10).'06';\n\t\t\twhile ($regs = DB_fetch_array($rs)){\n\t\t\t\t$charelectronictaxsfederal.=$charelectronictaxsfederalini.\"|\".$regs['nametax'].\"|\".$regs['percent'].\"|\".$regs['amount'];\n\t\t\t\t$totretencionfederal=$totretencionfederal+$regs['amount'];\n\t\t\t}\n\t\t}\n\t\t\n\t\t//impuestos locales\n\t\t$totalretencionlocal=0;\n\t\t//$charelectronictaxslocal='|'.chr(13).chr(10);\n\t\t$qry = \"Select debtortranstaxesclient.*,sec_taxes.nametax from debtortranstaxesclient, sec_taxes\n\t\t\t\twhere debtortranstaxesclient.idtax = sec_taxes.idtax\n\t\t\t\tAND sec_taxes.typetax=2\n\t\t\t\tand debtortranstaxesclient.iddoc = \".$myrow['id'];\n\t\t\t\n\t\t$rs = DB_query($qry,$db);\n\t\t$totalImpuestosLocales=0;\n\t\tif (DB_num_rows($rs) > 0){\n\t\t\t$charelectronictaxslocal.='08';\n\t\t\twhile ($regs = DB_fetch_array($rs)){\n\t\t\t\t$charelectronictaxslocal.=\"|\".$regs['nametax'].\"|\".$regs['percent'].\"|\".$regs['amount'];\n\t\t\t\t$totalretencionlocal=$totalretencionlocal+$regs['amount'];\n\t\t\t}\n\t\t\t$charelectronictaxslocal.=chr(13).chr(10);\n\t\t}\n\t\t$totalretencion=$totretencionfederal+$totalretencionlocal;\n\t\t//Tipo agrupacion\n\t\t$TipoAgrupacionXTag=$myrow['typegroup'];\n\t\t// fecha emision\n\t\t$fechainvoice=$myrow['origtrandate'];\n\t\t$UserRegister=$myrow['UserRegister'];\n\t\t$charelectronic=$charelectronic.'|'.$fechainvoice;\n\n\t\t$metodoPago = $myrow['paymentname'];\n\t\tif ($metodoPago==\"\")\n\t\t\t$metodoPago = \"No Identificado\";\n\n\t\t$nocuenta = $myrow['nocuenta'];\n\t\tif ($nocuenta==\"\")\n\t\t\t$nocuenta = \"No Identificado\";\n\n\t\t// subtotal\n\t\t$rfccliente=str_replace(\"-\",\"\",$myrow['rfc']);\n\t\t$rfccliente=str_replace(\" \",\"\",$rfccliente);\n\t\t$nombre=$myrow['name'];\n\t\t$subtotal= FormatNumberERP($myrow['ovamount']);\n\t\tif (strlen($rfccliente)<12){\n\t\t\t$rfccliente=\"XAXX010101000\";\n\t\t\t$nombre=\"Publico en General\";\n\t\t\t$subtotal= FormatNumberERP($myrow['ovamount']+$myrow['ovgst']);\n\t\t\t$imprimepublico=1;\n\t\t}elseif(strlen($rfccliente)>=14){\n\t\t\t$rfccliente=\"XAXX010101000\";\n\t\t\t$nombre=\"Publico en General\";\n\t\t\t$subtotal= FormatNumberERP($myrow['ovamount']+$myrow['ovgst']);\n\t\t\t$imprimepublico=1;\n\t\t}\n\t\t$charelectronic=$charelectronic.'|'.$subtotal;\n\t\t// total factura\n\t\t$total=FormatNumberERP($myrow['ovamount']+$myrow['ovgst']+$totalretencion);\n\t\t$charelectronic=$charelectronic.'|'.$total;\n\t\t// total de iva\n\t\t$iva=FormatNumberERP($myrow['ovgst']);\n\t\t// transladado\n\t\t$charelectronic=$charelectronic.'|'.$iva;\n\t\t// retenido\n\t\t$ivaret=0;\n\t\t$charelectronic=$charelectronic.'|'.$ivaret;\n\t\t//descuento trae desde el stockmoves\n\t\tif ($rfccliente!=\"XAXX010101000\"){\n\t\t\t$sqldiscount = 'SELECT sum(totaldescuento) as descuento\n\t\t\t\t FROM stockmoves\n\t\t\t\t WHERE stockmoves.type='.$TypeInvoice.'\n\t\t\t\t\tAND stockmoves.transno=' . $InvoiceNo . '\n\t\t\t\t\tAND stockmoves.tagref=' . $tag . '\n\t\t\t\t\tAND stockmoves.show_on_inv_crds=1';\n\t\t\t$Result= DB_query($sqldiscount,$db);\n\t\t\tif (DB_num_rows($Result)==0) {\n\t\t\t\t$descuento=0;\n\t\t\t}else{\n\t\t\t\t$myrowdis = DB_fetch_array($Result);\n\t\t\t\t$descuento=FormatNumberERP($myrowdis['descuento']);\n\t\t\t}\n\t\t}else{\n\t\t\t$sqldiscount = 'SELECT sum(totaldescuento+(IF(stockmovestaxes.taxrate IS NULL, 0, stockmovestaxes.taxrate)*totaldescuento)) as descuento\n\t\t\t \t\t\tFROM stockmoves inner join stockmaster on stockmaster.stockid=stockmoves.stockid\n\t\t\t\t\t\t\t-- LEFT JOIN taxauthrates ON stockmaster.taxcatid = taxauthrates.taxcatid\n\t\t\t\t\t\t\tLEFT JOIN stockmovestaxes ON stockmovestaxes.stkmoveno=stockmoves.stkmoveno\n\t\t\t\t\t\n\t\t\t\t\t \t\tWHERE stockmoves.type='.$TypeInvoice.'\n\t\t\t\t\t\t\t\tAND stockmoves.transno=' . $InvoiceNo . '\n\t\t\t\t\t\t\t\tAND stockmoves.tagref=' . $tag . '\n\t\t\t\t\t\t\t\tAND stockmoves.show_on_inv_crds=1';\n\t\t\t$Result= DB_query($sqldiscount,$db);\n\t\t\tif (DB_num_rows($Result)==0) {\n\t\t\t\t$descuento=0;\n\t\t\t}else{\n\t\t\t\t$myrowdis = DB_fetch_array($Result);\n\t\t\t\t$descuento=FormatNumberERP($myrowdis['descuento']);\n\t\t\t}\t\n\t\t}\n\t\t$descuento=FormatNumberERP($descuento);\n\t\t$charelectronic=$charelectronic.'|'.$descuento;\n\t\t//motivo descuento\n\t\t$charelectronic=$charelectronic.'|';\n\t\t// tipo de moneda\n\t\t$moneda=$myrow['currcode'];\n\t\t// CANTIDAD CON LETRAS\n\t\t$totaletras=($myrow['ovamount']+$myrow['ovgst'])+$totalretencion;\n\t\t$totalx=str_replace(',', '', FormatNumberERP($totaletras));\n\t\t$separa=explode(\".\",$totalx);\n\t\t$montoletra = $separa[0];\n\t\t$separa2=explode(\".\", FormatNumberERP($total));\n\t\t$montoctvs2 = $separa2[1];\n\t\t\n\t\t\n\t\t$montoletra=Numbers_Words::toWords($montoletra,'es');\n\t\t\n\t\t$zeroPad = \"\";\n\t\tif (empty($_SESSION['Decimals'])) {\n\t\t\t$zeroPad = str_pad($zeroPad, 4, 0, STR_PAD_RIGHT);\n\t\t} else {\n\t\t\t$zeroPad = str_pad($zeroPad, $_SESSION['Decimals'], 0, STR_PAD_RIGHT);\n\t\t}\n\t\t\n\t\tif ($moneda=='MXN') {\n\t\t\t$montoletra=ucwords($montoletra) . \" Pesos \". $montoctvs2 .\"/1$zeroPad M.N.\";\n\t\t} else {\n\t\t\t$montoletra=ucwords($montoletra) . \" Dolares \". $montoctvs2 .\"/1$zeroPad USD\";\n\t\t}\n\t\t$charelectronic=$charelectronic.'|'.$montoletra;\n\t\t// tipo moneda\n\t\t$charelectronic=$charelectronic.'|'.$moneda;\n\t\t// tipo de cambio\n\t\t$rate=FormatRateNumberERP(1/$myrow['cambio']);\n\t\t$charelectronic=$charelectronic.'|'.$rate;\n\t\t// numero de orden para referencia\n\t\t$ordenref=$myrow['orderno'];\n\t\t$charelectronic=$charelectronic.'|'.$ordenref;\n\t\t// observaciones 1: vendedores\n\t\t$vendedor=\"\";\n\t\t$SQL=\" SELECT *\n\t\t FROM salesman\n\t\t WHERE salesmancode='\".$myrow['salesman'].\"'\";\n\t\t$Result= DB_query($SQL,$db);\n\t\tif (DB_num_rows($Result)==1) {\n\t\t\t$myrowsales = DB_fetch_array($Result);\n\t\t\t$vendedor=$myrowsales['salesmanname'];\n\t\t}\n\t\t$observaciones1='Vendedor: '.$myrow['salesman'].' '.$vendedor;\n\t\t$charelectronic=$charelectronic.'|'.$observaciones1;\n\t\t// observaciones 2\n\t\t$SQL=\" SELECT l.telephone,l.comments,t.tagdescription\n\t\t FROM legalbusinessunit l, tags t\n\t\t WHERE l.legalid=t.legalid AND tagref='\".$tag.\"'\";\n\t\t$Result= DB_query($SQL,$db);\n\t\tif (DB_num_rows($Result)==1) {\n\t\t\t$myrowtags = DB_fetch_array($Result);\n\t\t\t$telephone=trim($myrowtags['telephone']);\n\t\t\t$comments=trim($myrowtags['comments']);\n\t\t}\n\t\t$observaciones2=\" Atencion a clientes \" .$telephone;\n\t\t$charelectronic=$charelectronic.'|'.$observaciones2;\n\t\t// observaciones 3\n\t\t$comments=$comments.' Cuenta de Referencia: '.$myrow['ref1'];\n\t\t$observaciones3='Id Factura:'.$InvoiceNo. '. La tenencia de esta factura no acredita su pago si no se justifica con el comprobante respectivo. '.$comments .' usr:'.$UserRegister;\n\t\t$charelectronic=$charelectronic.'|'.$observaciones3;\n\t\t// informacionExtra\n\t\t$infoextra=\"\";\n\t\t$numpago=0;\n\t\t$cadenapagares=\"\";\n\t\tif ($TypeInvoice==11){\n\t\t\t$tipodoc=0;\n\t\t}else{\n\t\t\t$tipodoc=70;\n\t\t}\n\t\t\n\t\t$SQL=\" SELECT trandate,case when ovamount<0 then (ovamount+ovgst)*-1 else ovamount+ovgst end as monto\n\t\t FROM debtortrans\n\t\t WHERE debtortrans.type=\".$tipodoc.\"\n\t\t\tAND debtortrans.order_=\" . $InvoiceNo ;\n\t\t$Result= DB_query($SQL,$db);\n\t\tif (DB_num_rows($Result)>0) {\n\t\t\twhile ($myrowpagos=DB_fetch_array($Result)){\n\t\t\t\t$numpago=$numpago+1;\n\t\t\t\t$fechapago=ConvertSQLDate($myrowpagos['trandate']);\n\t\t\t\t$montopago=$myrowpagos['monto'];\n\t\t\t\t$montopago=FormatNumberERP($montopago);\n\t\t\t\t$cadenapagares=$cadenapagares.\" No:\".$numpago.\" Fecha: \".$fechapago.\" Monto: \".$montopago .' '.$moneda;\n\t\t\t}\n\t\t}\n\t\t$placa= $_SESSION['LabelText1'].' : '.$myrow['placa'];\n\t\t$serie=$_SESSION['LabelText3'].' : '.$myrow['serie'];\n\t\t$kilometraje=$_SESSION['LabelText2'].' : '.$myrow['kilometraje'];\n\t\t$comments1=' Extra: '.$myrow['comments'];\n\t\t$infoextra=$placa.' '.$serie.' '.$kilometraje.' '.$comments1.' Pagares: '. $cadenapagares;\n\n\n\t\t$charelectronic=$charelectronic.'|'.$infoextra;\n\n\t\t//cometarios nivel factura\n\t\t$charelectronic=$charelectronic.'|'.$myrow['invtext'];\n\n\t\t// datos de la forma de pago\n\t\t$charelectronic=$charelectronic.'|'.chr(13).chr(10).'02';\n\t\t$terminospago=$myrow['terms'];\n\t\t$SQL=\" SELECT count(*) as pagares\n\t\t FROM debtortrans\n\t\t WHERE debtortrans.type=70\n\t\t\tAND debtortrans.order_=\" . $InvoiceNo ;\n\t\t$Result= DB_query($SQL,$db);\n\t\tif (DB_num_rows($Result)==0) {\n\t\t\t$Tipopago=\"Pago en una sola exhibicion\";\n\t\t}else{\n\t\t\t$myrowpag = DB_fetch_array($Result);\n\t\t\t$numpagares=intval($myrowpag['pagares']);\n\t\t\tif ($numpagares<=1){\n\t\t\t\t$Tipopago=\"Pago en una sola exhibicion\";\n\t\t\t}else{\n\t\t\t\t$Tipopago=\"Parcialidades\";\n\t\t\t}\n\t\t}\n\t\tif ($TypeInvoice==11){\n\t\t\t$Tipopago=\"Pago en una sola exhibicion\";\n\t\t}\n\t\t\n\t\t$Tipopago=$Tipopago;//.' '.$terminospago;\n\t\t//$Tipopago=$terminospago;\n\t\t$charelectronic=$charelectronic.'|'.$Tipopago;\n\t\t// condiciones de pago\n\t\t$charelectronic=$charelectronic.'|'.$terminospago;\n\t\t// metodo de pago\n\t\t$metodopago=$metodoPago;\n\t\t$charelectronic=$charelectronic.'|'.$metodopago;\n\t\t// fecha vencimiento\n\t\t$fechavence=$myrow['trandate'];\n\t\t$charelectronic=$charelectronic.'|'.$fechavence;\n\t\t// observaciones 4 (no de cuenta)\n\t\t$observaciones4=$nocuenta;\n\t\t$charelectronic=$charelectronic.'|'.$observaciones4;\n\t\t// datos del cliente\n\t\t$charelectronic=$charelectronic.'|'.chr(13).chr(10).'03';\n\t\t$branch=$myrow['debtorno'];\n\t\t$charelectronic=$charelectronic.'|'.$branch;\n\t\t$charelectronic=$charelectronic.'|'.$rfccliente;\n\t\t$charelectronic=$charelectronic.'|'.$nombre;\n\t\tif (strlen(str_replace('|','',str_replace('-','',str_replace(' ','',str_replace('\\r','',str_replace('\\n','',$myrow['telofi']))))))>0){\n\t\t\t$pais=str_replace('|','',str_replace('-','',str_replace(' ','',str_replace('\\r','',str_replace('\\n','',$myrow['telofi'])))));//\"Mexico\";//$myrow['name'];\n\t\t}else{\n\t\t\t$pais=\"Mexico\";\n\t\t}\n\t\t$charelectronic=$charelectronic.'|'.$pais;\n\t\t$calle=\"\";\n\t\tif ($imprimepublico==0){\n\t\t\t$calle=$myrow['address1'];\n\t\t}\n\t\t$charelectronic=$charelectronic.'|'.$calle;\n\t\t$noext=$myrow['brnumext'];\n\t\t$charelectronic=$charelectronic.'|'.$noext;\n\t\t$noint=$myrow['brnumint'];\n\t\t$charelectronic=$charelectronic.'|'.$noint;\n\t\t$colonia=\"\";\n\t\tif ($imprimepublico==0){\n\t\t\t$colonia=$myrow['address2'];\n\t\t}\n\t\t$charelectronic=$charelectronic.'|'.$colonia;\n\t\t$localidad=\"\";\n\t\t$charelectronic=$charelectronic.'|'.$localidad;\n\t\t$referenciacalle=\"\";\n\t\tif ($imprimepublico==0){\n\t\t\t$referenciacalle=\"Telefono. \".$myrow['telofi'];\n\t\t}\n\t\t$charelectronic=$charelectronic.'|'.$referenciacalle;\n\t\t$municipio=\"\";\n\t\tif ($imprimepublico==0){\n\t\t\t$municipio=$myrow['address3'];\n\t\t}\n\t\t$charelectronic=$charelectronic.'|'.$municipio;\n\t\t$edo=\"\";\n\t\tif ($imprimepublico==0){\n\t\t\t$edo=$myrow['address4'];\n\t\t}\n\t\t$charelectronic=$charelectronic.'|'.$edo;\n\t\t$cp=\"\";\n\t\tif ($imprimepublico==0){\n\t\t\t$cp=$myrow['address5'];\n\t\t}\n\t\t$charelectronic=$charelectronic.'|'.$cp;\n\t\t// datos del custbranch\n\t\t$charelectronic=$charelectronic.'|'.chr(13).chr(10).'04';\n\t\t$branch=$myrow['branchcode'];\n\t\t$charelectronic=$charelectronic.'|'.$branch;\n\t\t//$rfc=$myrow['rfc'];\n\t\t//$charelectronic=$charelectronic.'|'.$rfccliente;\n\t\t$nombre=$myrow['name'];\n\t\t$charelectronic=$charelectronic.'|'.$nombre;\n\t\tif (strlen(str_replace('|','',str_replace('-','',str_replace(' ','',str_replace('\\r','',str_replace('\\n','',$myrow['telofi']))))))>0){\n\t\t\t$pais=str_replace('|','',str_replace('-','',str_replace(' ','',str_replace('\\r','',str_replace('\\n','',$myrow['telofi'])))));//\"Mexico\";//$myrow['name'];\n\t\t}else{\n\t\t\t$pais=\"Mexico\";\n\t\t}\n\t\t//$pais=str_replace('|','',str_replace('-','',str_replace(' ','',str_replace('\\r','',str_replace('\\n','',$myrow['telofi'])))));//\"Mexico\";//$myrow['name'];\n\t\t$charelectronic=$charelectronic.'|'.$pais;\n\t\t$calle=$myrow['braddress1'];\n\t\t$charelectronic=$charelectronic.'|'.$calle;\n\t\t$noext=$myrow['brnumext'];\n\t\t$charelectronic=$charelectronic.'|'.$noext;\n\t\t$noint=$myrow['brnumint'];\n\t\t$charelectronic=$charelectronic.'|'.$noint;\n\t\t$colonia=$myrow['braddress6'];\n\t\t$charelectronic=$charelectronic.'|'.$colonia;\n\t\t$localidad=\"\";\n\t\t$charelectronic=$charelectronic.'|'.$localidad;\n\t\t$referenciacalle=\"\";\n\t\t$charelectronic=$charelectronic.'|'.$referenciacalle;\n\t\t$municipio=$myrow['braddress2'];;\n\t\t$charelectronic=$charelectronic.'|'.$municipio;\n\t\t$edo=$myrow['braddress3'];\n\t\t$charelectronic=$charelectronic.'|'.$edo;\n\t\t$cp=$myrow['braddress4'];\n\t\t$charelectronic=$charelectronic.'|'.$cp;\n\t\t\n\t\t\n\t\t$charelectronicEmbarque='|'.chr(13).chr(10).'09';\n\t\t$charelectronicEmbarque=$charelectronicEmbarque.'|'.$myrow['specialinstructions'];\n\t\t$charelectronicEmbarque=$charelectronicEmbarque.'|'.$myrow['brpostaddr1'];//calle\n\t\t$charelectronicEmbarque=$charelectronicEmbarque.'|';//noext\n\t\t$charelectronicEmbarque=$charelectronicEmbarque.'|';//no int\n\t\t\n\t\t$charelectronicEmbarque=$charelectronicEmbarque.'|'.$myrow['brpostaddr2'];//colonia\n\t\t$charelectronicEmbarque=$charelectronicEmbarque.'|'.$myrow['brpostaddr3'];//municipio\n\t\t$charelectronicEmbarque=$charelectronicEmbarque.'|'.$myrow['brpostaddr4'];//cp\n\t\t$charelectronicEmbarque=$charelectronicEmbarque.'|'.$myrow['brpostaddr5'];//estado\n\t\t$charelectronicEmbarque=$charelectronicEmbarque.'|'.$myrow['brpostaddr6'];//pais\n\t\t$charelectronicEmbarque=$charelectronicEmbarque.'|'.$myrow['brpostaddr7'];\n\t\t\n\t}\n\t// cadena para datos de los productos\n\t// productos vendidos\n\t$charelectronicdetail='';\n\t$charelectronicinidet='|'.chr(13).chr(10).'05';\n\t// datos de ivas\n\t$charelectronictaxs='';\n\t$charelectronictaxsini='|'.chr(13).chr(10).'07';\n\t$decimalplaces=6;\n\n\t\n\tif ($rfccliente!=\"XAXX010101000\"){//\n\t\tif($TipoAgrupacionXTag==1 and $TypeInvoice <> 111){\n\t\t\t$sqldetails = 'SELECT stockmoves.stkmoveno,\n\t\t\t\t\t\t-- stockmoves.stockid,\n\t\t\t\t\t ProdLine.prodLineId as stockid,\n\t\t\t\t\t\tstockmoves.warranty,\n\t\t\t\t\t\t-- stockmaster.description,\n\t\t\t\t\t\tProdLine.Description as description,\n\t\t\t\t\t\t/*stockmaster.serialised,\n\t\t\t\t\t\tstockmaster.controlled,*/\n\t\t\t\t\t\t0 as serialised,\n\t\t\t\t\t\t0 as controlled,\n\t\t\t\t\t\tsum(case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end) as quantity ,\n\t\t\t\t\t\tstockmoves.narrative,\n\t\t\t\t\t\tstockmaster.units,\n\t\t\t\t\t\tstockmaster.decimalplaces,\n\t\t\t\t\t\tstockmoves.discountpercent,\n\t\t\t\t\t\tstockmoves.discountpercent1,\n\t\t\t\t\t\tstockmoves.discountpercent2,\n\t\t\t\t\t\tsum((case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end)*(stockmoves.price))/sum(case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end) AS fxnet,\n\t\t\t\t\t\tsum((case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end)*(stockmoves.price)-totaldescuento)/sum(case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end) as subtotal,\n\t\t\t\t\t\t-- sum((stockmoves.price*case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end)/case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end) AS fxprice,\n\t\t\t\t\t\tsum((stockmoves.price*case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end))/sum(case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end) AS fxprice,\n\t\t\t\t\t\tstockmoves.narrative,\n\t\t\t\t\t\tstockmaster.units,\n\t\t\t\t\t\tstockmaster.categoryid,\n\t\t\t\t\t\tstockmoves.loccode as almacen,\n\t\t\t\t\t\tstockmoves.showdescription,\n\t\t\t\t\t\tstockcategory.MensajePV\n\t\t\t\tFROM stockmoves,stockmaster,stockcategory \n\t\t\t\t\t \tINNER JOIN ProdLine ON ProdLine.prodLineId=stockcategory.prodLineId \n\t\t\t\tWHERE stockmoves.stockid = stockmaster.stockid\n\t\t\t\t\tAND stockmoves.type='.$TypeInvoice.'\n\t\t\t\t\tAND stockmoves.transno=' . $InvoiceNo . '\n\t\t\t\t\tAND stockmoves.tagref=' . $tag . '\n\t\t\t\t\tAND stockmoves.show_on_inv_crds=1\n\t\t\t\t\tAND stockcategory.categoryid = stockmaster.categoryid\n\t\t\t\tGROUP BY ProdLine.Description,ProdLine.prodLineId';\n\t\t\t\n\t\t\t\n\t\t}else{\n\t\t\t$sqldetails = 'SELECT stockmoves.stkmoveno,\n\t\t\t\t\t\tstockmoves.stockid,\n\t\t\t\t\t\tstockmoves.warranty,\n\t\t\t\t\t\tstockmaster.description,\n\t\t\t\t\t\tstockmaster.longdescription,\n\t\t\t\t\t\tstockmaster.mbflag,\n\t\t\t\t\t\tstockmaster.serialised,\n\t\t\t\t\t\tstockmaster.controlled,\n\t\t\t\t\t\t(case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end) as quantity ,\n\t\t\t\t\t\tstockmoves.narrative,\n\t\t\t\t\t\tstockmaster.units,\n\t\t\t\t\t\tstockmaster.decimalplaces,\n\t\t\t\t\t\tstockmoves.discountpercent,\n\t\t\t\t\t\tstockmoves.discountpercent1,\n\t\t\t\t\t\tstockmoves.discountpercent2,\n\t\t\t\t\t\t((case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end)*(stockmoves.price)) AS fxnet,\n\t\t\t\t\t\t((case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end)*(stockmoves.price))-totaldescuento as subtotal,\n\t\t\t\t\t\t(stockmoves.price) AS fxprice,\n\t\t\t\t\t\tstockmoves.narrative,\n\t\t\t\t\t\tstockmaster.units,\n\t\t\t\t\t\tstockmaster.categoryid,\n\t\t\t\t\t\tstockmoves.loccode as almacen,\n\t\t\t\t\t\tstockmoves.showdescription,\n\t\t\t\t\t\tstockcategory.MensajePV\n\t\t\t\tFROM stockmoves,stockmaster,stockcategory\n\t\t\t\tWHERE stockmoves.stockid = stockmaster.stockid\n\t\t\t\t\tAND stockmoves.type='.$TypeInvoice.'\n\t\t\t\t\tAND stockmoves.transno=' . $InvoiceNo . '\n\t\t\t\t\tAND stockmoves.tagref=' . $tag . '\n\t\t\t\t\tAND stockmoves.show_on_inv_crds=1\n\t\t\t\t\tAND stockcategory.categoryid = stockmaster.categoryid';\n\t\t}\n\t\t$resultdetails=DB_query($sqldetails,$db);\n\t\t$nolinea=0;\n\t\t$descrprop=\"\";\n\t\n\t\twhile ($myrow2=DB_fetch_array($resultdetails)){\n\t\t\t$stockid=$myrow2['stockid'];\n\t\t\t$charelectronicdetail=$charelectronicdetail.$charelectronicinidet.'|'.$stockid;\n\t\t\t$stockid=$myrow2['stockid'];\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockid;\n\t\t\t$stockcantidad=FormatNumberERP($myrow2['quantity']);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockcantidad;\n\t\t\tif($_SESSION['DescrLargaFact'] == $myrow2['mbflag']){\n\t\t\t\t\t$stockdescrip=$myrow2['description'].' '.$myrow['ordertype'].' '.$myrow2['longdescription'];\n\t\t\t\t}else{\n\t\t\t\t\t$stockdescrip=$myrow2['description'].' '.$myrow['ordertype'];\n\t\t\t\t}\n\t\t\t// valores de los vendedorfees por linea\n\t\t\t$descrprop=\" (\";\n\t\t\t$sqlpropertyes=\"SELECT distinct p.InvoiceValue as val,sp.label\n\t\t\t FROM salesstockproperties p, stockcatproperties sp, stockmaster sm\n\t\t\t WHERE p.stkcatpropid=sp.stkcatpropid\n\t\t\t AND sp.categoryid=sm.categoryid\n\t\t\t\t\t AND sp.reqatprint=1\n\t\t\t\t AND p.orderno=\" . $orderno . \"\n\t\t\t\t AND p.typedocument=\" . $TypeInvoice . \"\n\t\t\t\t AND sm.stockid='\" . $stockid . \"'\";\n\t\t\t$resultpropertyes=DB_query($sqlpropertyes,$db);\n\t\t\t$xt=0;\n\t\t\twhile ($myrowprop=DB_fetch_array($resultpropertyes)){\n// \t\t\t\t$traba=explode(\" \",$myrowprop['val']);\n// \t\t\t\t$trab=$traba[0];\n\t\t\t\t$trab=$myrowprop['val'];\n\t\t\t\tif ($xt==0){\n\n\t\t\t\t\t$descrprop=$descrprop.' '.$myrowprop['label'].':'.$trab;\n\t\t\t\t}else{\n\t\t\t\t\t$descrprop=$descrprop.\" , \".$myrowprop['label'].':'.$trab;\n\t\t\t\t}\n\n\t\t\t\t$xt=$xt+1;\n\t\t\t}\n\t\t\t$descrprop=$descrprop.\" )\";\n\t\t\tif ($xt==0){\n\t\t\t\t$descrprop=\"\";\n\t\t\t}\n\t\t\tif($myrow2['MensajePV'] <> \"\"){\n\t\t\t\t$descrprop = $descrprop.$myrow2['MensajePV'];\n\t\t\t}\n\t\t\t$descrnarrative=\"\";\n\t\t\t\n\t\t\t$descrnarrative=str_replace('\\r','',str_replace('\\n','',$myrow2['narrative']));\n\t\t\t$descrnarrative=str_replace('|', '', $descrnarrative);\n\t\t\t\n\t\t\t/*\n\t\t\tif ($TypeInvoice==11){\n\t\t\t\t$tablades=0;\n\t\t\t}else{\n\t\t\t\t$tipodoc=70;\n\t\t\t}\n\t\t\t\n\t\t\t$sqlnarrative=\"SELECT narrative\n\t\t\t\tFROM salesorderdetails p\n\t\t\t\tWHERE p.orderno=\" . $orderno . \"\n\t\t\t\t AND p.stkcode='\" . $stockid . \"'\";\n\t\t\t$resultnarrative=DB_query($sqlnarrative,$db);\n\t\t\twhile ($myrownarrative=DB_fetch_array($resultnarrative)){\n\t\t\t\t$descrnarrative=str_replace('\\r','',str_replace('\\n','',$myrownarrative['narrative']));\n\t\t\t\t$descrnarrative=str_replace('|', '', $descrnarrative);\n\t\t\t}\n\t\t\tif (strlen($descrnarrative)==0){\n\t\t\t\t$descrnarrative=\"\";\n\t\t\t}*/\n\t\t\t//$descrnarrative=\"\";\n\t\t\t// consulta de aduana\n\t\t\t$stkmoveno=$myrow2['stkmoveno'];\n\t\t\t$almacen=$myrow2['almacen'];\n\t\t\t$numberserie=\"\";\n\t\t\t$xserie=0;\n\t\t\t$sqlserials=\"SELECT stockserialitems.serialno as serie\n\t\t\t\t FROM stockserialmoves , stockmoves , stockserialitems\n\t\t\t\t WHERE stockmoves.stkmoveno=stockserialmoves.stockmoveno\n\t\t\t\t\tAND stockserialmoves.stockid=stockserialitems.stockid\n\t\t\t\t\tAND stockserialmoves.serialno=stockserialitems.serialno\n\t\t\t\t\tAND stockserialitems.loccode='\".$almacen.\"'\n\t\t\t\t\tAND stockmoves.stkmoveno=\".$stkmoveno.\"\n\t\t\t\t\tAND stockmoves.stockid='\".$stockid.\"'\";\n\t\t\t//echo '<pre><br>'.$sqlserials;\n\t\t\t$Result= DB_query($sqlserials,$db);\n\t\t\tif (DB_num_rows($Result)==0) {\n\t\t\t\t$numberserie=\"\";\n\t\t\t}else{\n\t\t\t\twhile ($myrownseries=DB_fetch_array($Result)){\n\t\t\t\t\tif ($xserie==0){\n\t\t\t\t\t\t$numberserie=' Series: '.$myrownseries['serie'];\n\t\t\t\t\t}else{\n\t\t\t\t\t\t$numberserie=$numberserie.', '.$myrownseries['serie'];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (strlen($numberserie)==0){\n\t\t\t\t$numberserie=\"\";\n\t\t\t}\n\t\t\tif($myrow2['showdescription']==1){\n\t\t\t\t$stockdescripuno=$stockdescrip.$descrprop.$descrnarrative.$numberserie;\n\t\t\t}else{\n\t\t\t\tif (strlen($descrnarrative)==0){\n\t\t\t\t\t$stockdescripuno=$stockdescrip.$descrprop.$descrnarrative.$numberserie;\n\t\t\t\t}else{\n\t\t\t\t\t$stockdescripuno=$descrnarrative;\n\n\t\t\t\t}\n\t\t\t}\n\t\t\t/**/\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockdescripuno;\n\t\t\t$stockprecio=FormatNumberERP($myrow2['fxprice']);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockprecio;\n\t\t\t$stockneto=FormatNumberERP($myrow2['fxnet']);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockneto;\n\t\t\t$stockunits=$myrow2['units'];\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockunits;\n\t\t\t$stockcat=$myrow2['categoryid'];\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockcat;\n\t\t\t$ordencompra=\"\";\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$ordencompra;\n\t\t\t// descuentos\n\t\t\t$discount1=FormatNumberERP($myrow2['discountpercent']*100);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$discount1;\n\t\t\t$discount2=FormatNumberERP($myrow2['discountpercent1']*100);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$discount2;\n\t\t\t$discount3=FormatNumberERP($myrow2['discountpercent2']*100);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$discount3;\n\t\t\t//subtotal\n\t\t\t$subtotal=FormatNumberERP($myrow2['subtotal']);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$subtotal;\n\n\n\n\t\t\t$sqladuana=\"SELECT stockserialitems.customs as aduana,customs_number as noaduana,\n\t\t\t\t\t\tpedimento, DATE_FORMAT(customs_date,'%Y-%m-%d') as fechaaduana\n\n\t\t\t\t FROM stockserialmoves , stockmoves , stockserialitems\n\t\t\t\t WHERE stockmoves.stkmoveno=stockserialmoves.stockmoveno\n\t\t\t\t\tAND stockserialmoves.stockid=stockserialitems.stockid\n\t\t\t\t\tAND stockserialmoves.serialno=stockserialitems.serialno\n\t\t\t\t\tAND stockserialitems.loccode='\".$almacen.\"'\n\t\t\t\t\tAND stockmoves.stkmoveno=\".$stkmoveno.\"\n\t\t\t\t\tAND stockmoves.stockid='\".$stockid.\"'\";\n\t\t\t\n\t\t\t$Result= DB_query($sqladuana,$db);\n\t\t\tif (DB_num_rows($Result)==0) {\n\t\t\t\t$nameaduana=\"\";\n\t\t\t\t$numberaduana=\"\";\n\t\t\t\t$fechaaduana=\"\";\n\t\t\t}else{\n\t\t\t\t$myrowaduana = DB_fetch_array($Result);\n\t\t\t\t$nameaduana=$myrowaduana['aduana'];\n\t\t\t\t$numberaduana=$myrowaduana['noaduana'];\n\t\t\t\t$fechaaduana=$myrowaduana['fechaaduana'];\n\t\t\t\t//$separaaduana=explode(\"|\",$aduana);\n\t\t\t\t//$nameaduana = $separaaduana[0];\n\t\t\t\t//$numberaduana= $separaaduana[1];\n\t\t\t\t//$fechaaduana= $separaaduana[2];\n\t\t\t\tif (strlen($nameaduana)==0 or strlen($numberaduana)==0 /*or !Is_Date($fechaaduana)*/){\n\t\t\t\t\t$nameaduana=\"\";\n\t\t\t\t\t$numberaduana=\"\";\n\t\t\t\t\t$fechaaduana=\"\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif($myrow['type'] == 66) { // Si es factura remision\n\n\t\t\t\t$ordernotmp = $myrow['orderno'];\n\n\t\t\t\t$SQL = \"\n\t\t\t\t\tSELECT GROUP_CONCAT(debtortrans.order_) AS order_\n\t\t\t\t\tFROM invoicetoremision\n\t\t\t\t\tINNER JOIN debtortrans\n\t\t\t\t\tON debtortrans.id = invoicetoremision.idremision\n\t\t\t\t\tWHERE invoicetoremision.idinvoice = '{$myrow['iddocto']}'\n\t\t\t\t\";\n\n\t\t\t\t$rstmp = DB_query($SQL, $db);\n\t\t\t\t$rowtmp = DB_fetch_array($rstmp);\n\t\t\t\t$ordernotmp = $rowtmp['order_'];\n\n\t\t\t\tif(empty($ordernotmp) == FALSE) {\n\n\t\t\t\t\t$SQL = \"\n\t\t\t\t\t\tSELECT\n\t\t\t\t\t\tDATE_FORMAT(purchorderdetails.datecustoms,'%Y-%m-%d') AS fechaaduana,\n\t\t\t\t\t\tpedimento,\n\t\t\t\t\t\tcustoms AS aduana\n\t\t\t\t\t\tFROM purchorders\n\t\t\t\t\t\tINNER JOIN purchorderdetails\n\t\t\t\t\t\tON purchorderdetails.orderno = purchorders.orderno\n\t\t\t\t\t\tWHERE purchorders.requisitionno IN ($ordernotmp)\n\t\t\t\t\t\tAND purchorderdetails.itemcode = '$stockid'\n\t\t\t\t\t\";\n\n\t\t\t\t\t$rstmp = DB_query($SQL, $db);\n\n\t\t\t\t\tif($rowtmp = DB_fetch_array($rstmp)) {\n\t\t\t\t\t\t$fechaaduana = $rowtmp['fechaaduana'];\n\t\t\t\t\t\t$numberaduana = $rowtmp['pedimento'];\n\t\t\t\t\t\t$nameaduana = $rowtmp['aduana'];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$nameaduana;\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$numberaduana;\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$fechaaduana;\n\t\t\t$nolinea=$nolinea+1;\n\t\t\t\n\t\t\t\n\t\t\t$sqlstockmovestaxes=\"SELECT stkmoveno,taxauthid,taxrate,\n\t\t\t\t\t\ttaxcalculationorder,\n\t\t\t\t\t\ttaxontax,\n\t\t\t\t\t\ttaxauthorities.description\n\t\t\t\t\t FROM stockmovestaxes,taxauthorities\n\t\t\t\t\t WHERE taxauthorities.taxid=stockmovestaxes.taxauthid\n\t\t\t\t\t\t AND stkmoveno=\".$stkmoveno;\n\t\t\t\n\t\t\t$resultstockmovestaxes=DB_query($sqlstockmovestaxes,$db);\n\t\t\twhile ($myrow3=DB_fetch_array($resultstockmovestaxes)){\n\t\t\t\t$impuesto=$myrow3['description'];\n\t\t\t\t$charelectronictaxs=$charelectronictaxs.$charelectronictaxsini.'|'.$impuesto;\n\t\t\t\t$taxrate=FormatNumberERP($myrow3['taxrate']*100);\n\t\t\t\t$charelectronictaxs=$charelectronictaxs.'|'.$taxrate;\n\t\t\t\tif($TipoAgrupacionXTag==1){\n\t\t\t\t\t$taxratetotal=FormatNumberERP((($myrow3['taxrate']*($myrow2['subtotal']))*$myrow2['quantity']));\n\t\t\t\t}else{\n\t\t\t\t\t$taxratetotal=FormatNumberERP($myrow3['taxrate']*($myrow2['subtotal']));\n\t\t\t\t}\n\t\t\t\t$charelectronictaxs=$charelectronictaxs.'|'.$taxratetotal;\n\t\t\t}\n\n\t\t}\n\t}else{\n\t\tif($TipoAgrupacionXTag==1){\n\t\t\t$sqldetails = 'SELECT stockmoves.stkmoveno,\n\t\t\t\t\t\t-- stockmoves.stockid,\n\t\t\t\t\t ProdLine.prodLineId as stockid,\n\t\t\t\t\t\tstockmoves.warranty,\n\t\t\t\t\t\t-- stockmaster.description,\n\t\t\t\t\t\tProdLine.Description as description,\n\t\t\t\t\t\t/*stockmaster.serialised,\n\t\t\t\t\t\tstockmaster.controlled,*/\n\t\t\t\t\t\t0 as serialised,\n\t\t\t\t\t\t0 as controlled,\n\t\t\t\t\t\tsum(case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end) as quantity ,\n\t\t\t\t\t\tstockmoves.narrative,\n\t\t\t\t\t\tstockmaster.units,\n\t\t\t\t\t\tstockmaster.decimalplaces,\n\t\t\t\t\t\tstockmoves.discountpercent,\n\t\t\t\t\t\tstockmoves.discountpercent1,\n\t\t\t\t\t\tstockmoves.discountpercent2,\n\t\t\t\t\t\tsum((case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end)*(stockmoves.price*IF(stockmovestaxes.taxrate IS NULL, 0, stockmovestaxes.taxrate)))/sum(case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end) AS fxnet,\n\t\t\t\t\t\tsum((case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end)*(stockmoves.price*IF(stockmovestaxes.taxrate IS NULL, 0, stockmovestaxes.taxrate))-totaldescuento)/sum(case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end) as subtotal,\n\t\t\t\t\t\t-- sum((stockmoves.price*case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end)/case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end) AS fxprice,\n\t\t\t\t\t\tsum((stockmoves.price*IF(stockmovestaxes.taxrate IS NULL, 0, stockmovestaxes.taxrate)*case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end))/sum(case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end) AS fxprice,\n\t\t\t\t\t\tstockmoves.narrative,\n\t\t\t\t\t\tstockmaster.units,\n\t\t\t\t\t\tstockmaster.categoryid,\n\t\t\t\t\t\tstockmoves.loccode as almacen,\n\t\t\t\t\t\tstockmoves.showdescription,\n\t\t\t\t\t\tstockcategory.MensajePV\n\t\t\t\tFROM stockmoves,stockmaster\n\t\t\t\t\t left JOIN stockmovestaxes ON stockmovestaxes.stkmoveno=stockmoves.stkmoveno ,\n\t\t\t\t\tstockcategory\n\t\t\t\t\t \tINNER JOIN ProdLine ON ProdLine.prodLineId=stockcategory.prodLineId\n\t\t\t\t\t\t\n\t\t\t\tWHERE stockmoves.stockid = stockmaster.stockid\n\t\t\t\t\tAND stockmoves.type='.$TypeInvoice.'\n\t\t\t\t\tAND stockmoves.transno=' . $InvoiceNo . '\n\t\t\t\t\tAND stockmoves.tagref=' . $tag . '\n\t\t\t\t\tAND stockmoves.show_on_inv_crds=1\n\t\t\t\t\tAND stockcategory.categoryid = stockmaster.categoryid\n\t\t\t\tGROUP BY ProdLine.Description,ProdLine.prodLineId';\n\t\t\t\t\n\t\t\t\t\n\t\t}else{\n\t\t\t$sqldetails = 'SELECT stockmoves.stkmoveno,\n\t\t\t\t\t\tstockmoves.stockid,\n\t\t\t\t\t\tstockmoves.warranty,\n\t\t\t\t\t\tstockmaster.description,\n\t\t\t\t\t\tstockmaster.serialised,\n\t\t\t\t\t\tstockmaster.controlled,\n\t\t\t\t\t\t(case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end) as quantity ,\n\t\t\t\t\t\tstockmoves.narrative,\n\t\t\t\t\t\tstockmaster.units,\n\t\t\t\t\t\tstockmaster.decimalplaces,\n\t\t\t\t\t\tstockmoves.discountpercent,\n\t\t\t\t\t\tstockmoves.discountpercent1,\n\t\t\t\t\t\tstockmoves.discountpercent2,\n\t\t\t\t\t\t((case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end)*(stockmoves.price + (stockmoves.price * IF(stockmovestaxes.taxrate IS NULL, 0, stockmovestaxes.taxrate)))) AS fxnet,\n\t\t\t\t\t\t((case when stockmoves.type not in (11,65) then stockmoves.qty*-1 else qty end)*(stockmoves.price + (stockmoves.price * IF(stockmovestaxes.taxrate IS NULL, 0, stockmovestaxes.taxrate))))-totaldescuento as subtotal,\n\t\t\t\t\t\t(stockmoves.price + (stockmoves.price * IF(stockmovestaxes.taxrate IS NULL, 0, stockmovestaxes.taxrate))) AS fxprice,\n\t\t\t\t\t\tstockmoves.narrative,\n\t\t\t\t\t\tstockmaster.units,\n\t\t\t\t\t\tstockmaster.categoryid,\n\t\t\t\t\t\tstockmoves.loccode as almacen,\n\t\t\t\t\t\tstockmoves.showdescription,\n\t\t\t\t\t stockcategory.MensajePV\n\t\t\t\t\tFROM stockmoves inner join stockmaster ON stockmoves.stockid = stockmaster.stockid\n\t\t\t\t\t\t\t\tinner join stockcategory on stockcategory.categoryid = stockmaster.categoryid\n\t\t\t\t\t\t\t\tleft JOIN stockmovestaxes ON stockmovestaxes.stkmoveno=stockmoves.stkmoveno \n\t\t\t\tWHERE stockmoves.stockid = stockmaster.stockid\n\t\t\t\t\tAND stockmoves.type='.$TypeInvoice.'\n\t\t\t\t\tAND stockmoves.transno=' . $InvoiceNo . '\n\t\t\t\t\tAND stockmoves.tagref=' . $tag . '\n\t\t\t\t\tAND stockmoves.show_on_inv_crds=1\n\t\t\t\t\tAND stockcategory.categoryid = stockmaster.categoryid';\n\t\t}\n\t\t\n\t\t$resultdetails=DB_query($sqldetails,$db);\n\t\twhile ($myrow2=DB_fetch_array($resultdetails)){\n\t\t\t$stockid=$myrow2['stockid'];\n\t\t\t$charelectronicdetail=$charelectronicdetail.$charelectronicinidet.'|'.$stockid;\n\t\t\t$stockid=$myrow2['stockid'];\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockid;\n\t\t\t$stockcantidad=FormatNumberERP($myrow2['quantity']);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockcantidad;\n\t\t\t$stockdescrip=$myrow2['description'].' '.$myrow['ordertype'];\n\t\t\t// valores de los vendedorfees por linea\n\t\t\t$descrprop=\" (\";\n\t\t\t$sqlpropertyes=\"SELECT distinct p.InvoiceValue as val,sp.label\n\t\t\t FROM salesstockproperties p, stockcatproperties sp, stockmaster sm\n\t\t\t WHERE p.stkcatpropid=sp.stkcatpropid\n\t\t\t AND sp.categoryid=sm.categoryid\n\t\t\t\t AND p.orderno=\" . $orderno . \"\n\t\t\t\t AND p.typedocument=\" . $TypeInvoice . \"\n\t\t\t\t \t\tAND sp.reqatprint=1\n\t\t\t\t AND sm.stockid='\" . $stockid . \"'\";\n\t\t\t$resultpropertyes=DB_query($sqlpropertyes,$db);\n\t\t\t$xt=0;\n\t\t\twhile ($myrowprop=DB_fetch_array($resultpropertyes)){\n\t\t\t\t$traba=explode(\" \",$myrowprop['val']);\n\t\t\t\t$trab=$traba[0];\n\t\t\t\tif ($xt==0){\n\n\t\t\t\t\t$descrprop=$descrprop.' '.$myrowprop['label'].':'.$trab;\n\t\t\t\t}else{\n\t\t\t\t\t$descrprop=$descrprop.\" , \".$myrowprop['label'].':'.$trab;\n\t\t\t\t}\n\n\t\t\t\t$xt=$xt+1;\n\t\t\t}\n\t\t\t$descrprop=$descrprop.\" )\";\n\t\t\tif ($xt==0){//\n\t\t\t\t$descrprop=\"\";\n\t\t\t}\n\t\t\tif($myrow2['MensajePV'] <> \"\"){\n\t\t\t\t$descrprop = $descrprop.$myrow2['MensajePV'];\n\t\t\t}\n\t\t\t$descrnarrative=\"\";\n\t\t\t/*$sqlnarrative=\"SELECT narrative\n\t\t\t\tFROM salesorderdetails p\n\t\t\t\tWHERE p.orderno=\" . $orderno . \"\n\t\t\t\t AND p.stkcode='\" . $stockid . \"'\";\n\t\t\t$resultnarrative=DB_query($sqlnarrative,$db);\n\t\t\twhile ($myrownarrative=DB_fetch_array($resultnarrative)){\n\t\t\t\t$descrnarrative=$myrownarrative['narrative'];\n\t\t\t\t$descrnarrative=str_replace('|', '', $descrnarrative);\n\t\t\t}*/\n\t\t\t\n\t\t\t$descrnarrative=str_replace('\\r','',str_replace('\\n','',$myrow2['narrative']));\n\t\t\t$descrnarrative=str_replace('|', '', $descrnarrative);\n\t\t\t\n\t\t\tif (strlen($descrnarrative)==0){\n\t\t\t\t$descrnarrative=\"\";\n\t\t\t}\n\t\t\tif($myrow2['showdescription']==1){\n\t\t\t\t$stockdescripuno=$stockdescrip.$descrprop.$descrnarrative.$numberserie;\n\t\t\t}else{\n\t\t\t\tif (strlen($descrnarrative)==0){\n\t\t\t\t\t$stockdescripuno=$stockdescrip.$descrprop.$descrnarrative.$numberserie;\n\t\t\t\t}else{\n\t\t\t\t\t$stockdescripuno=$descrnarrative;\n\n\t\t\t\t}\n\t\t\t}\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockdescripuno;\n\t\t\t$stockprecio=FormatNumberERP($myrow2['fxprice']);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockprecio;\n\t\t\t$stockneto=FormatNumberERP($myrow2['fxnet']);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockneto;\n\t\t\t$stockunits=$myrow2['units'];\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockunits;\n\t\t\t$stockcat=$myrow2['categoryid'];\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockcat;\n\t\t\t$ordencompra=\"\";\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$ordencompra;\n\t\t\t// descuentos\n\t\t\t$discount1=FormatNumberERP($myrow2['discountpercent']*100);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$discount1;\n\t\t\t$discount2=FormatNumberERP($myrow2['discountpercent1']*100);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$discount2;\n\t\t\t$discount3=FormatNumberERP($myrow2['discountpercent2']*100);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$discount3;\n\t\t\t//subtotal\n\t\t\t//$subtotal=number_format($myrow2['subtotal'],2,'.','');\n\t\t\t//$charelectronicdetail=$charelectronicdetail.'|'.$subtotal;\n\t\t\t// consulta de aduana\n\t\t\t$stkmoveno=$myrow2['stkmoveno'];\n\t\t\t$almacen=$myrow2['almacen'];\n\n\t\t\t$sqlstockmovestaxes=\"SELECT stkmoveno,taxauthid,taxrate,taxcalculationorder,taxontax,taxauthorities.description\n\t\t\t\t\t FROM stockmovestaxes,taxauthorities\n\t\t\t\t\t WHERE taxauthorities.taxid=stockmovestaxes.taxauthid\n\t\t\t\t\t\t AND stkmoveno=\".$stkmoveno;\n\t\t\t$resultstockmovestaxes=DB_query($sqlstockmovestaxes,$db);\n\t\t\twhile ($myrow3=DB_fetch_array($resultstockmovestaxes)){\n\t\t\t\t$impuesto=$myrow3['description'];\n\t\t\t\t$charelectronictaxs=$charelectronictaxs.$charelectronictaxsini.'|'.$impuesto;\n\t\t\t\t$taxrate=FormatNumberERP($myrow3['taxrate']*100);\n\t\t\t\t$charelectronictaxs=$charelectronictaxs.'|'.$taxrate;\n\t\t\t\t$taxratetotal=FormatNumberERP($myrow3['taxrate']*($myrow2['subtotal']));\n\t\t\t\t//$taxtotalratex=$myrow3['taxrate']*($myrow2['fxnet']*$myrow2['fxprice']);\n\t\t\t\t$taxtotalratex=$myrow3['taxrate']*($myrow2['subtotal']);\n\t\t\t\t$charelectronictaxs=$charelectronictaxs.'|'.$taxratetotal;\n\t\t\t}\n\n\t\t\t$subtotal=FormatNumberERP($myrow2['subtotal']+$taxtotalratex);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$subtotal;\n\t\t\t$subtotal=FormatNumberERP($myrow2['subtotal']+$taxtotalratex);\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$subtotal;\n\n\n\t\t\t$sqladuana=\"SELECT stockserialitems.customs as aduana,customs_number as noaduana,\n\t\t\t\t\tpedimento, DATE_FORMAT(customs_date,'%Y-%m-%d') as fechaaduana\n\t\t\t\t FROM stockserialmoves , stockmoves , stockserialitems\n\t\t\t\t WHERE stockmoves.stkmoveno=stockserialmoves.stockmoveno\n\t\t\t\t\tAND stockserialmoves.stockid=stockserialitems.stockid\n\t\t\t\t\tAND stockserialmoves.serialno=stockserialitems.serialno\n\t\t\t\t\tAND stockserialitems.loccode='\".$almacen.\"'\n\t\t\t\t\tAND stockmoves.stkmoveno=\".$stkmoveno.\"\n\t\t\t\t\tAND stockmoves.stockid='\".$stockid.\"'\";\n\t\t\t$Result= DB_query($sqladuana,$db);\n\t\t\tif (DB_num_rows($Result)==0) {\n\t\t\t\t$nameaduana=\"\";\n\t\t\t\t$numberaduana=\"\";\n\t\t\t\t$fechaaduana=\"\";\n\t\t\t}else{\n\t\t\t\t$myrowaduana = DB_fetch_array($Result);\n\t\t\t\t$aduana=$myrowaduana['aduana'];\n\t\t\t\t$separaaduana=explode(\"|\",$aduana);\n\t\t\t\t$nameaduana = $separaaduana[0];\n\t\t\t\t$numberaduana= $separaaduana[1];\n\t\t\t\t$fechaaduana= $separaaduana[2];\n\t\t\t\tif (strlen($nameaduana)==0 or strlen($numberaduana)==0 /*or !Is_Date($fechaaduana)*/){\n\t\t\t\t\t$nameaduana=\"\";\n\t\t\t\t\t$numberaduana=\"\";\n\t\t\t\t\t$fechaaduana=\"\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif($myrow['type'] == 66) { // Si es factura remision\n\n\t\t\t\t$ordernotmp = $myrow['orderno'];\n\n\t\t\t\t$SQL = \"\n\t\t\t\t\tSELECT GROUP_CONCAT(debtortrans.order_) AS order_\n\t\t\t\t\tFROM invoicetoremision\n\t\t\t\t\tINNER JOIN debtortrans\n\t\t\t\t\tON debtortrans.id = invoicetoremision.idremision\n\t\t\t\t\tWHERE invoicetoremision.idinvoice = '{$myrow['iddocto']}'\n\t\t\t\t\";\n\n\t\t\t\t$rstmp = DB_query($SQL, $db);\n\t\t\t\t$rowtmp = DB_fetch_array($rstmp);\n\t\t\t\t$ordernotmp = $rowtmp['order_'];\n\n\t\t\t\tif(empty($ordernotmp) == FALSE) {\n\n\t\t\t\t\t$SQL = \"\n\t\t\t\t\t\tSELECT\n\t\t\t\t\t\tDATE_FORMAT(purchorderdetails.datecustoms,'%Y-%m-%d') AS fechaaduana,\n\t\t\t\t\t\tpedimento,\n\t\t\t\t\t\tcustoms AS aduana\n\t\t\t\t\t\tFROM purchorders\n\t\t\t\t\t\tINNER JOIN purchorderdetails\n\t\t\t\t\t\tON purchorderdetails.orderno = purchorders.orderno\n\t\t\t\t\t\tWHERE purchorders.requisitionno IN ($ordernotmp)\n\t\t\t\t\t\tAND purchorderdetails.itemcode = '$stockid'\n\t\t\t\t\t\";\n\n\t\t\t\t\t$rstmp = DB_query($SQL, $db);\n\n\t\t\t\t\tif($rowtmp = DB_fetch_array($rstmp)) {\n\t\t\t\t\t\t$fechaaduana = $rowtmp['fechaaduana'];\n\t\t\t\t\t\t$numberaduana = $rowtmp['pedimento'];\n\t\t\t\t\t\t$nameaduana = $rowtmp['aduana'];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$nameaduana;\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$numberaduana;\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$fechaaduana;\n\n\t\t\t/*$stockprecio=number_format($myrow2['fxnet']+$taxtotalratex,2,'.','');\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockprecio;\n\t\t\t$stockneto=number_format($myrow2['fxnet']+$taxtotalratex,2,'.','');\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockneto;\n\t\t\t$stockunits=$myrow2['units'];\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockunits;\n\t\t\t$stockcat=$myrow2['categoryid'];\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$stockcat;\n\t\t\t$ordencompra=\"\";\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$ordencompra;\n\t\t\t// descuentos\n\t\t\t$discount1=number_format($myrow2['discountpercent']*100,2,'.','');\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$discount1;\n\t\t\t$discount2=number_format($myrow2['discountpercent1']*100,2,'.','');\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$discount2;\n\t\t\t$discount3=number_format($myrow2['discountpercent2']*100,2,'.','');\n\t\t\t$charelectronicdetail=$charelectronicdetail.'|'.$discount3;\n\t\t\t//subtotal*/\n\n\t\t}\n\t}\n\t\n\t// ivas retenidos\n//\t$charelectronictaxsret='|'.chr(13).chr(10);//.'07|ISR|0.00';\n\tif ($rfccliente==\"XAXX010101000\"){\n\t\t$cadenaenvio=$charelectronic.$charelectronicdetail.$charelectronictaxsret.$charelectronictaxsfederal.$charelectronictaxslocal.$charelectronicEmbarque;\n\t\t$cadenaenviada=$cadenaenvio;//retornarString($cadenaenvio);\n\t}else{\n\t\t$cadenaenvio=$charelectronic.$charelectronicdetail.$charelectronictaxsfederal.$charelectronictaxs.$charelectronictaxslocal.$charelectronicEmbarque;\n\t\t$cadenaenviada=$cadenaenvio;//retornarString($cadenaenvio);\n\n\t}\n\t//echo $cadenaenviada;\n\treturn $cadenaenviada;\n}", "public function getSaleList()\n {\n return $this->with('images','manufacturer', 'category')->sale()->get();\n }", "protected function _getItemsData()\n {\n $data = array();\n $status = $this->_getCount();\n if (isset($status['yes']) && $status['yes'] > 0) {\n $data[] = array(\n 'label' => Mage::helper('vs7_saleattribute')->__('Sale'),\n 'value' => 1,\n 'count' => isset($status['yes']) ? $status['yes'] : 0,\n );\n }\n\n return $data;\n }", "function salesInvoice($BillNo){\n $CoID = $this->session->userdata('CoID') ;\n $WorkYear = $this->session->userdata('WorkYear');\n $sql = \" \n SELECT * \n FROM SaleMast, SaleDetails, ItemMaster, PartyMaster, ACMaster Broker\n where SaleMast.CoID = SaleDetails.CoID\n and SaleMast.WorkYear = SaleDetails.WorkYear\n and SaleMast.BillNo = SaleDetails.BillNo\n \n and ItemMaster.CoID = SaleDetails.CoID\n and ItemMaster.WorkYear = SaleDetails.WorkYear\n and ItemMaster.ItemCode = SaleDetails.ItemCode\n \n and PartyMaster.CoID = SaleMast.CoID\n and PartyMaster.WorkYear = SaleMast.WorkYear\n and PartyMaster.PartyCode = SaleMast.PartyCode\n \n and SaleMast.CoID = Broker.CoID\n and SaleMast.WorkYear = Broker.WorkYear\n and SaleMast.BrokerId = Broker.ACCode\n \n and SaleMast.BillNo = '$BillNo'\n and SaleMast.CoID = '$CoID'\n and SaleMast.WorkYear = '$WorkYear'; \n \";\n $query = $this->db->query($sql);\n $result= $query->result_array();\n return $result;\n }", "public function getAllSales()\n {\n return $this->join('customers','sales.customer_id','=','customers.id')\n ->select('sales.*','customers.name as customer')\n ->get();\n }", "function get_all_sale()\n {\n $this->db->order_by('SaleId', 'asc');\n return $this->db->get('sale')->result_array();\n }", "public function convertSaleItemsData();", "function getSubSales($connection,$sale_id){\n\t$query = \"SELECT subsales.stock_id AS stock_id, subsales.quantity AS quantity FROM `subsales` \n\tINNER JOIN sales ON sales.id = subsales.sale_id WHERE sales.id = '$sale_id'\";\n $object['sales']['sales'] = [];\n\tif ($result = mysqli_query($connection,$query)){\n\t while($subsale = mysqli_fetch_assoc($result)){\n\t \t $subsale = (object)$subsale;\n array_push($object['sales']['sales'],$subsale);\n\t }\n\t return (object)$object['sales'];\n\t}else{\n\t\tprintf(\"Notice: %s\", mysqli_error($mysqli));\n\t\treturn false;\n\t}\n}", "public function getInvoiceData()\n {\n return Mage::getSingleton('core/session')->getData(\"invoice\");\n }", "public function getSalesFromCOD()\n {\n $salesFromCOD = Order::whereNotIn('status', ['cancelled', 'refunded'])->where('payment_type', 'cod')\n // ->when(auth()->user()->hasRole('vendor'), function ($query) {\n // $query->where('vendor_id', auth()->user()->vendor->id);\n // })\n ->sum('total_price');\n return $salesFromCOD;\n }", "public function fetchPurchaseData()\n\t{\n\t\t$result = array('data' => array());\n\n\t\t$data = $this->model_purchase->getPurchaseData();\n\n\t\tforeach ($data as $key => $value) {\n\n\t\t\t$count_total_item = $this->model_purchase->countPurchaseItem($value['purchase_no']);\n\t\t\t// echo $count_total_item;\n\t\t\t// $date = date('Y-m-d', $value['invoice_date']);\n\t\t\t// $time = date('h:i a', $value['date_time']);\n\t\t\t$party_data = $this->model_party->getPartyData($value['party_id']);\n\n\t\t\t// $date_time = $date;\n\n\t\t\tif ($party_data['address'] == NULL) {\n\t\t\t\t$party_data['address'] = \"\";\n\t\t\t}\n\t\t\tif ($party_data['party_name'] == NULL) {\n\t\t\t\t$party_data['party_name'] = \"\";\n\t\t\t}\n\t\t\t// button\n\t\t\t$buttons = '';\n\n\n\t\t\tif (in_array('viewOrder', $this->permission)) {\n\t\t\t\t$buttons .= '<a style=\"font-size: 25px;\" target=\"__blank\" href=\"' . base_url('purchase/printDiv/' . $value['s_no'] . '/' . $value['purchase_no'] . '') . '\" class=\"btn btn-default\"><i class=\"fa fa-print\"></i></a>';\n\t\t\t}\n\n\t\t\tif (in_array('updateOrder', $this->permission)) {\n\t\t\t\t$buttons .= ' <a style=\"font-size: 25px;\" href=\"' . base_url('purchase/update/' . $value['s_no'] . '/' . $value['purchase_no'] . '') . '\" class=\"btn btn-default\"><i class=\"fa fa-pencil\"></i></a>';\n\t\t\t}\n\n\t\t\tif (in_array('deleteOrder', $this->permission)) {\n\t\t\t\t$buttons .= ' <button style=\"font-size: 25px;\" type=\"button\" class=\"btn btn-default\" onclick=\"removeFunc(' . $value['s_no'] . ', ' . $value['purchase_no'] . ')\" data-toggle=\"modal\" data-target=\"#removeModal\"><i class=\"fa fa-trash\"></i></button>';\n\t\t\t}\n\n\t\t\t// if($value['is_payment_received'] == 1) {\n\t\t\t// \t$paid_status = '<span class=\"label label-success\">Paid</span>';\t\n\t\t\t// }\n\t\t\t// else {\n\t\t\t// \t$paid_status = '<span class=\"label label-warning\">Not Paid</span>';\n\t\t\t// }\n\n\n\n\t\t\t$result['data'][$key] = array(\n\t\t\t\t$value['purchase_no'],\n\t\t\t\t$party_data['party_name'],\n\t\t\t\t$value['purchase_date'],\n\t\t\t\t$count_total_item,\n\t\t\t\t// $value['total_amount'],\n\t\t\t\t// $value['mode_of_payment'],\n\t\t\t\t$buttons\n\t\t\t);\n\t\t} // /foreach\n\n\t\techo json_encode($result);\n\t}", "public function getDiscounts(): array;", "function displayInvoices($custId) {\n $sql = \"SELECT * FROM invoices \n WHERE customer_id = $custId\n \";\n \n $result = mysqli_query($GLOBALS[\"con\"], $sql);\n if ($result) {\n $rows = array();\n while ($row = mysqli_fetch_assoc($result)) {\n $rows[] = $row;\n }\n echo json_encode($rows);\n } \n \n }", "public function retrieve_product_data_inv()\n\t{\t\n\t\t$CI =& get_instance();\n\t\t$product_id = $this->input->post('product_id');\n\t\t$product_info = $CI->Invoices->get_total_product_invoic($product_id);\n\t\techo json_encode($product_info);\n\t}", "public function getTaxInvoiced();", "public function readInventario()\n {\n $sql = 'SELECT id_inventario, imagen_producto, nombre_producto, precio_producto, cantidad_inventario FROM inventario INNER JOIN productos USING(id_producto) ORDER BY nombre_producto';\n $params = array(null);\n return Database::getRows($sql, $params);\n }", "function getProducts() {\n\t\t$saleData = array();\n\t\tif($stmt = $this->connection->prepare(\"select * from products;\")) {\n\t\t\t$stmt -> execute();\n\n\t\t\t$stmt->store_result();\n\t\t\t$stmt->bind_result($id, $itemName, $itemImage, $itemDesc, $salePrice, $regularPrice, $numberLeft);\n\n\t\t\tif($stmt ->num_rows >0){\n\t\t\t\twhile($stmt->fetch() ){\n\t\t\t\t\t$saleData[] = array(\n\t\t\t\t\t\t'id' => $id,\n\t\t\t\t\t\t'itemName' => $itemName,\n\t\t\t\t\t\t'itemImage' => $itemImage,\n\t\t\t\t\t\t'itemDesc' => $itemDesc,\n\t\t\t\t\t\t'salePrice' => $salePrice,\n\t\t\t\t\t\t'regularPrice' => $regularPrice,\n\t\t\t\t\t\t'numberLeft' => $numberLeft\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $saleData;\n\t}", "public function getSellDetails()\n {\n if (request()->ajax()) {\n $start = request()->start;\n $end = request()->end;\n $business_id = request()->session()->get('user.business_id');\n\n $sell_details = $this->transactionUtil->getSellTotals($business_id, $start, $end);\n \n return $sell_details;\n }\n }", "function get_invoicedet_forreturn($invno)\r\n\t{\r\n\t\t$invdet = array();\r\n\t\t\r\n\t\t$sql = \"select a.invoice_no,b.id as order_id,b.itemid,c.name,b.quantity,d.packed,d.shipped,d.shipped_on,\r\n\t\t\t\t\t\ta.invoice_status \r\n\t\t\t\t\tfrom king_invoice a\r\n\t\t\t\t\tjoin king_orders b on a.order_id = b.id \r\n\t\t\t\t\tjoin king_dealitems c on c.id = b.itemid \r\n\t\t\t\t\tjoin shipment_batch_process_invoice_link d on d.invoice_no = a.invoice_no\r\n\t\t\t\t\tjoin king_transactions t on t.transid = b.transid\r\n\t\t\t\t\tleft join pnh_invoice_returns_product_link e on e.order_id = b.id \r\n\t\t\t\t\twhere a.invoice_no = ? and b.status in (1,2) \r\n\t\t\t\t\tgroup by a.order_id \r\n\t\t\t\t\";\r\n\t\t$res = $this->db->query($sql,$invno);\r\n\t\t//echo $this->db->last_query();\r\n\t\tif($res->num_rows())\r\n\t\t{\r\n\t\t\t$invord_list = $res->result_array();\r\n\t\t\tif(!$invord_list[0]['shipped'])\r\n\t\t\t{\r\n\t\t\t\t$invdet['error'] = 'Invoice is not shipped';\r\n\t\t\t}else \r\n\t\t\t{\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t$invdet['itemlist'] = array();\r\n\t\t\r\n\t\t\t\tforeach ($invord_list as $ord)\r\n\t\t\t\t{\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t$sql = \"(select e.is_shipped,e.shipped_on,e.is_refunded,is_stocked,is_serial_required,a.id as order_id,b.product_id,product_name,b.qty from king_orders a join m_product_deal_link b on a.itemid = b.itemid join m_product_info c on c.product_id = b.product_id left join pnh_invoice_returns_product_link e on e.product_id = b.product_id and e.order_id = a.id where a.id = ? group by e.id )\r\n\t\t\t\t\t\t\t\tunion\r\n\t\t\t\t\t\t\t(select e.is_shipped,e.shipped_on,e.is_refunded,is_stocked,is_serial_required,a.order_id,b.product_id,product_name,d.qty from products_group_orders a join m_product_info b on b.product_id = a.product_id join king_orders c on c.id = a.order_id join m_product_group_deal_link d on d.itemid = c.itemid left join pnh_invoice_returns_product_link e on e.product_id = a.product_id and e.order_id = a.order_id where a.order_id = ? group by e.id )\r\n\t\t\t\t\t\t\t\";\r\n\t\t\t\t\t$prod_list_res = $this->db->query($sql,array($ord['order_id'],$ord['order_id']));\r\n\t\t\t\t\t\r\n\t\t\t\t\tif(!isset($invdet['itemlist'][$ord['order_id']]))\r\n\t\t\t\t\t\t$invdet['itemlist'][$ord['order_id']] = array();\r\n\t\t\t\t\t\r\n\t\t\t\t\t$invdet['itemlist'][$ord['order_id']] = $ord;\r\n\t\t\t\t\t\r\n\t\t\t\t\tif(!isset($invdet['itemlist'][$ord['order_id']]['product_list']))\r\n\t\t\t\t\t\t$invdet['itemlist'][$ord['order_id']]['product_list'] = array();\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t$prod_list = array();\t\r\n\t\t\t\t\tforeach($prod_list_res->result_array() as $prod_det)\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t$ttl_pending_inreturn_qty = $this->db->query(\"select ifnull(sum(qty),0) as t from pnh_invoice_returns_product_link where order_id = ? and product_id = ? and status != 3 \",array($ord['order_id'],$prod_det['product_id']))->row()->t;\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t$prod_det['pen_return_qty'] = $ttl_pending_inreturn_qty; \r\n\t\t\t\t\t\t$prod_det['has_barcode'] = $this->db->query(\"select count(*) as t from t_stock_info where product_id = ? and product_barcode != '' \", $prod_det['product_id'] )->row()->t;\r\n\t\t\t\t\t\t$prod_list[] = $prod_det;\r\n\t\t\t\t\t}\t\r\n\t\t\t\t\t$invdet['itemlist'][$ord['order_id']]['product_list'][] = $prod_list;\r\n\t\t\t\t\t\r\n\t\t\t\t\t$ord_imei_list_res = $this->db->query(\"select * from t_imei_no where order_id = ? and status = 1 and is_returned = 0 and return_prod_id = 0 \",$ord['order_id']);\r\n\t\t\t\t\tif($ord_imei_list_res->num_rows())\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tforeach($ord_imei_list_res->result_array() as $p_imei_det)\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tif(!isset($invdet['itemlist'][$ord['order_id']]['imei_list'][$p_imei_det['product_id']]))\r\n\t\t\t\t\t\t\t\t$invdet['itemlist'][$ord['order_id']]['imei_list'][$p_imei_det['product_id']] = array();\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t$invdet['itemlist'][$ord['order_id']]['imei_list'][$p_imei_det['product_id']][] = $p_imei_det['imei_no']; \r\n\t\t\t\t\t\t}\t\t\t\t\t\t\r\n\t\t\t\t\t}\r\n\t\t\t\t\t\r\n\t\t\t\t\t// check if the order qty already processedIn \r\n\t\t\t\t\t\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}else\r\n\t\t{\r\n\t\t\t$invdet['error'] = 'Invoice not found';\r\n\t\t}\r\n\t\treturn $invdet;\r\n\t}", "public function getInvoiceInfo()\n {\n return $this->get(self::INVOICEINFO);\n }", "public function getItemsInfo()\n {\n $data = [];\n foreach ($this->getOrder()->getAllItems() as $item) {\n if ($this->getDisplayWrappingBothPrices()) {\n $temp['price_excl_tax'] = $this->_preparePrices($item->getGwBasePrice(), $item->getGwPrice());\n $temp['price_incl_tax'] = $this->_preparePrices(\n $item->getGwBasePrice() + $item->getGwBaseTaxAmount(),\n $item->getGwPrice() + $item->getGwTaxAmount()\n );\n } elseif ($this->getDisplayWrappingPriceInclTax()) {\n $temp['price'] = $this->_preparePrices(\n $item->getGwBasePrice() + $item->getGwBaseTaxAmount(),\n $item->getGwPrice() + $item->getGwTaxAmount()\n );\n } else {\n $temp['price'] = $this->_preparePrices($item->getGwBasePrice(), $item->getGwPrice());\n }\n $temp['design'] = $item->getGwId();\n $data[$item->getId()] = $temp;\n }\n return new \\Magento\\Framework\\DataObject($data);\n }", "public function select_installment_invoices()\r\n {\r\n /*\r\n $this->db->select(\"invoice.*,cost.*\");\r\n $this->db->from(\"invoice\");\r\n $this->db->join('cost','invoice.installment_id=cost.id');\r\n $this->db->where(\"invoice.invoice_of\",\"1\"); //2 means installment\r\n $this->db->order_by(\"invoice.id\",\"desc\");\r\n $result = $this->db->get();\r\n */\r\n\r\n $this->db->select(\"*\");\r\n $this->db->select(\"user.name as user_name\");\r\n $this->db->select(\"invoice.id as invoice_id\");\r\n $this->db->select(\"user.family_name as user_surname\");\r\n $this->db->from(\"invoice\");\r\n $this->db->join('user', \"invoice.user_id = user.id\",\"left\");\r\n $this->db->order_by(\"invoice.id\",\"desc\");\r\n $result = $this->db->get();\r\n\r\n\r\n\r\n if ($result->num_rows()) {\r\n \r\n return $result->result_array();\r\n } else {\r\n return array();\r\n }\r\n }", "function InfGetInvoice($inf_contact_id, $inf_invoice_id) {\n\t$object_type = \"Invoice\";\n\t$class_name = \"Infusionsoft_\" . $object_type;\n\t$object = new $class_name();\n\t$objects = Infusionsoft_DataService::query(new $class_name(), array('ContactId' => $inf_contact_id, 'Id' => $inf_invoice_id));\n\n $invoice_details = false;\n foreach ($objects as $i => $object) {\n\t\t$array = $object->toArray();\n $invoice_details = $array;\n }\n\treturn $invoice_details;\n}", "public function getTodayCashPaidInvoiceDetails(){\n\n $myDate = Carbon::now();\n $todayDate = $myDate->toDateString(); \n\n try {\n $invoiceDetials = array();\n $invoiceDetials = DB::table('purchase_invoices')\n ->join('cash_paid_to_suppliers', 'purchase_invoices.invoiceNum', '=', 'cash_paid_to_suppliers.invoiceNum')\n ->join('supplier_details', 'purchase_invoices.supplierId', '=', 'supplier_details.id')\n ->select(\n 'cash_paid_to_suppliers.invoiceNum',\n 'supplier_details.supplierName', \n 'cash_paid_to_suppliers.date', \n 'cash_paid_to_suppliers.cashPaid'\n )\n ->where('cash_paid_to_suppliers.date','=',$todayDate)\n ->get();\n\n $cashPaid = DB::table('cash_paid_to_suppliers')->where('cash_paid_to_suppliers.date','=',$todayDate)->sum('cashPaid'); \n\n return response()->json([\n 'success'=>true,\n 'error'=>null,\n 'code'=>200,\n 'total'=>count($invoiceDetials),\n 'cumCashPaid'=>$cashPaid,\n 'data'=>$invoiceDetials\n ], 200);\n \n } catch (Exception $e) {\n return response()->json([\n 'success'=>false,\n 'error'=>($e->getMessage()),\n 'code'=>500\n ], 500);\n }\n }", "private function _getTicketsReferentSales()\n {\n $this->loadModel('Users');\n $users = $this->Users->find('all')->toArray();\n $data = [];\n\n foreach ($users as $user) {\n $count = $this->Tickets->find('all')->where(['paid' => 1, 'user_code' => $user->code])->count();\n\n if($count > 0) {\n $data[] = [\n 'label' => $user->firstname . ' ' . $user->lastname,\n 'value' => $this->Tickets->find('all')->where(['paid' => 1, 'user_code' => $user->code])->count()\n ];\n }\n }\n\n return $data;\n }", "public function index()\n {\n $saledProducts = DB::table('sales')->orderBy('id', 'desc')\n ->select('id','sku', 'product_name', 'sale_date', 'product_qty')\n ->get();\n\n return $saledProducts->toArray();\n }", "public function product_wise_report()\n\t{\n\t\t$today = date('m-d-Y');\n\t\t$this->db->select(\"a.*,b.customer_id,b.customer_name\");\n\t\t$this->db->from('invoice a');\n\t\t$this->db->join('customer_information b','b.customer_id = a.customer_id');\n\t\t$this->db->where('a.date',$today);\n\t\t$this->db->order_by('a.invoice_id','desc');\n\t\t$this->db->limit('500');\n\t\t$query = $this->db->get();\t\n\t\treturn $query->result_array();\n\t}", "public function getSalesFromDB(){\r\n $con = $this->db->con;\r\n\r\n //Query\r\n $sql = 'SELECT P.userID, U.user_uid, P.orderID, P.price, P.status, P.date FROM payment as P JOIN users as U on P.userID = U.user_id ORDER BY P.date DESC';\r\n\r\n if($result = mysqli_query($con, $sql))\r\n { \r\n //Get result\r\n return $result;\r\n }\r\n else {\r\n //Throw exception if execution goes wrong\r\n throw new Exception('Getting ticket data failed!');\r\n }\r\n }", "public function product_wise_report()\n\t{\n\t\t$today = date('Y-m-d');\n\t\t$this->db->select(\"a.*,b.customer_id,b.customer_name\");\n\t\t$this->db->from('invoice a');\n\t\t$this->db->join('customer_information b','b.customer_id = a.customer_id');\n\t\t$this->db->where('a.date',$today);\n\t\t$this->db->order_by('a.invoice_id','desc');\n\t\t$this->db->limit('500');\n\t\t$query = $this->db->get();\t\n\t\treturn $query->result_array();\n\t}", "public function indexsales()\n {\n //usuario logueado\n $user = Auth::user();\n $id = $user->id;\n\n //$customers = User::find($id)->load('customer');\n $sales = DB::select('SELECT sales.id As sale_id, sale_target, sale_date, sale_description, sale_price, sale_credit, customers.name_customer, customers.lastname_customer FROM sales INNER JOIN customers on customer_id=customers.id WHERE customers.user_id=? ORDER BY sales.id DESC', [$id]);\n\n return view('allsales', ['sales' => $sales]);\n }", "public function getAmounts(): array{\r\n $amounts = array();\r\n $con = $this->db->getConnection();\r\n foreach(mysqli_query($con, 'SELECT * FROM amounts')as $key){ $amounts[$key['idamounts']] = $key['amount']; }\r\n return $amounts;\r\n $this->con->closeConnection();\r\n }", "function get_sale($SaleId)\n {\n return $this->db->get_where('sale',array('SaleId'=>$SaleId))->row_array();\n }", "public function sales()\n {\n // invoices\n return $this->belongsToMany('Biffy\\Entities\\Sale\\Sale')\n ->withPivot([])\n ->withTimestamps();\n }", "private function getItensInformation()\n {\n $Itens = $this->order->getAllVisibleItems();\n $PagSeguroItens = array();\n\n //CarShop Items\n foreach ($Itens as $item) {\n $PagSeguroItem = new PagSeguroItem();\n $PagSeguroItem->setId($item->getId());\n $PagSeguroItem->setDescription(self::fixStringLength($item->getName(), 255));\n $PagSeguroItem->setQuantity(self::toFloat($item->getQtyOrdered()));\n $PagSeguroItem->setWeight(round($item->getWeight()));\n $PagSeguroItem->setAmount(self::toFloat($item->getPrice()));\n\n array_push($PagSeguroItens, $PagSeguroItem);\n }\n\n return $PagSeguroItens;\n }", "function getDetailAllDeviceSales($edit_device_sale,$account_id,$DbConnection)\n{\n $query = \"SELECT device_sales_info.device_imei_no,account.superuser, account.user FROM \".\n \"device_sales_info USE INDEX(dslsinfo_imeino_cid_status),account WHERE \".\n \"account.account_id = device_sales_info.user_account_id AND \".\n \"device_sales_info.device_imei_no='$edit_device_sale' AND \".\n \"device_sales_info.create_id='$account_id' AND device_sales_info.status='1'\";\n $result = mysql_query($query,$DbConnection);\n while($row=mysql_fetch_object($result))\n {\t\n $imei_no_2 = $row->device_imei_no;\n $superuser_2 = $row->superuser; \n $user_2 = $row->user; \n $data[]=array('imei_no_2'=>$row->device_imei_no,'superuser_2'=>$row->superuser,'user_2'=>$row->user);\t\n }\n return $data;\n}", "function InfGetInvoices($inf_contact_id, $pay_status = 0) {\n\t$object_type = \"Invoice\";\n\t$class_name = \"Infusionsoft_\" . $object_type;\n\t$object = new $class_name();\n\t$objects = Infusionsoft_DataService::query(new $class_name(), array('ContactId' => $inf_contact_id, 'PayStatus' => $pay_status));\n\n $invoices_array = array();\n foreach ($objects as $i => $object) {\n\t\t// Give it a userful index, ie, inf_invoice_id\n\t\t$array = $object->toArray();\n $invoices_array[$array['Id']] = $array;\n }\n\treturn $invoices_array; \n}", "public function getSubtotalInvoiced();", "public function getSoInfo($so_id) {\n $sql = \"SELECT t2.sku_id,t2.quantity_confirmed as qty,t2.quantity_delivered,t2.unit_sale_price,t1.so_status FROM `tblt_sales_order` as t1\n inner join `tblt_sales_order_line` as t2 on t1.id=t2.so_id \n left join `tbld_sku` as t3 on t3.id = t2.sku_id\n where t1.id=$so_id and t3.sku_type_id !=99 \";\n $query = $this->db->query($sql)->result_array();\n return $query;\n }", "public function get_info($id)\n\t{\n\n\t\t$sel=$this->db->prepare(\"SELECT * from shop where id='$id'\");\n\n $sel->execute();\n\n return ($sel->fetchAll(PDO::FETCH_ASSOC));\n\t\t\n\n\n\n }", "public function getAllSalesMan(){\n\t\t$sql = \"SELECT * FROM vendedor\";\n\t\treturn $this->Model->getData($sql);\n\t}", "function fetch_customer_data($connect)\n{\t\n\t$totalprice=0;\n $query = \"SELECT * FROM PAYMENT5\";\n \n //oci_parse ( resource $connect , string $sql_text ) \n //oci_fetch ( resource $statement ) : bool\n\t$statement = $connect->prepare($query);\n\t$statement->execute();\n\t$result = $statement->fetchAll();\n\t$output = '\n \n <div class=\"invoice-box\">\n <table cellpadding=\"0\" cellspacing=\"0\">\n <tr class=\"top\">\n <td colspan=\"2\">\n <table>\n <tr>\n <td class=\"title\">\n <img src=\"logo.png\" style=\"width:70%; max-width:70px;\">\n </td>\n \n <td>\n Invoice #: 123<br>\n Created: January 1, 2015<br>\n Due: February 1, 2015\n </td>\n </tr>\n </table>\n </td>\n </tr>\n \n <tr class=\"information\">\n <td colspan=\"2\">\n <table>\n <tr>\n <td>\n Sparksuite, Inc.<br>\n 12345 Sunny Road<br>\n Sunnyville, CA 12345\n </td>\n \n <td>\n Acme Corp.<br>\n John Doe<br>\n [email protected]\n </td>\n </tr>\n </table>\n </td>\n </tr>\n \n <tr class=\"heading\">\n <td>\n Payment Method\n </td>\n \n <td>\n Check #\n </td>\n </tr>\n \n <tr class=\"details\">\n <td>\n Check\n </td>\n \n <td>\n 1000\n </td>\n </tr>\n \n <tr class=\"heading\">\n <td>\n Item\n </td>\n \n <td>\n Price\n </td>\n </tr>\n \n \n \n\n\t';\n\tforeach($result as $row)\n\t{\n\t\t$output .= '\n\n\n\t\t<tr class=\"item\">\n <td>\n '.$row[\"PNAME\"].'\n\n </td>\n <td>\n '.$row[\"PQTY\"].'\n\n </td>\n \n <td>\n '.$row[\"TOTAL\"].'\n </td>\n </tr>\n\t\t\t\n\t\t';\n\n\n\t\t$totalprice=$totalprice+$row[\"TOTAL\"];\n\t}\n\n\t$output .= '\n <tr class=\"total\">\n <td></td>\n \n <td>\n Total: '.$totalprice.'\n </td>\n </tr>\n\t\n\t';\n\n\t$output .= '\n\n\t\t</table>\n\t</div>\n\t';\n\treturn $output;\n\n\n}", "function item_list_data($invoice_id = 0) {\n\n $list_data = $this->Sales_InvoicesItems_model->get_details(array(\"fid_invoices\" => $invoice_id))->result();\n $result = array();\n foreach ($list_data as $data) {\n $result[] = $this->_make_item_row($data);\n }\n echo json_encode(array(\"data\" => $result));\n // $this->output->enable_profiler(TRUE);\n // print_r($list_data);\n\n }", "public function getSupplierData(){\n\n\t\t$supperDataSQL = \"select * FROM\n\t\t\t\t\t\t(\n\t\t\t\t\t\t\tSELECT *,\n\t\t\t\t\t\t\t(SELECT COUNT(inward_id) FROM inward AS inw WHERE inw.legal_entity_id=l.legal_entity_id) AS 'TotalGRN'\n\t\t\t\t\t\t\tFROM legal_entities AS l\n\t\t\t\t\t\t\tWHERE legal_entity_type_id='1002' AND is_posted=0\n\t\t\t\t\t\t) AS innertbl WHERE TotalGRN>0\";\n\n\t\t$supperData = DB::select(DB::raw($supperDataSQL));\n\n\t\t/*$supperData = DB::table('legal_entities_live')\n\t\t\t\t\t->where(\"legal_entity_type_id\",\"=\",\"1002\")\n\t\t\t\t\t->where('is_posted', '=', '0')\n\t\t\t\t\t->get();*/\n\n\t\treturn $supperData;\n\n\t}", "function getReportofTotal(){\r\n $inx = 0;\r\n $arrpack = array();\r\n $conn = getConnection();\r\n\r\n $stmt = $conn->prepare(\"SELECT B.idreservations, B.datebkd, G.gs_name, P.price, B.totalAmount, B.discount from packages P, booking B, guests G where B.idreservations = G.reservations_idreservations and B.packages_idpackages = P.idpackages\");\r\n \r\n $stmt->execute();\r\n\r\n $result = $stmt->get_result();\r\n\r\n if($result->num_rows > 0){\r\n while($row = $result->fetch_assoc()){\r\n\r\n $dte = $row['datebkd'];\r\n $pieces = explode(\"-\", $dte);\r\n $id = $row['idreservations'];\r\n $totString = $pieces[0] . $pieces[1] . $pieces[2] . \"-o-\" . $id;\r\n $arrpack[$inx][0] = $totString;\r\n $arrpack[$inx][1] = $row['gs_name'];\r\n $down = $row['price'];\r\n $second = $row['totalAmount'];\r\n $dic = $row['discount'];\r\n\r\n $totality = ($down*0.5) + ($second*((100 - $dic)/100));\r\n\r\n $arrpack[$inx][2] = $totality;\r\n $inx++;\r\n }\r\n }\r\n $conn->close(); \r\n\r\n return $arrpack;\r\n }", "function sum_info($order_id){\r\n\t$mysqli = @new mysqli('localhost', 'cs35901_bd', 'cs35901_bd', 'cs35901_bd');\r\n\tif (mysqli_connect_errno()) {\r\n\t\techo \"Подключение невозможно: \".mysqli_connect_error();\r\n\t}\r\n\t$mas = array();\r\n\t$result_set = $mysqli->query(\" SELECT `order_id`, SUM(`amount`) AS `total_amount` ,SUM(`price`) AS `total_price`, MAX(`delivery_date`) AS `date` FROM `cart_list` WHERE `order_id` = '$order_id' GROUP BY `order_id`\");\r\n\twhile ($row = $result_set->fetch_assoc()) {\r\n\t\tarray_push($mas,$row[\"total_amount\"],$row[\"total_price\"],$row[\"date\"]);\r\n\t}\r\n\treturn $mas;\r\n }", "public function getTotalInvoiced();", "function getcatalogueinfo($iCatalogueId)\n\t{\n\t\t$this->db->select('*');\n\t\t$this->db->from('r_app_catalogue_details as rc');\n\t//\t$this->db->join('r_app_size_catalogue rs','rc.iCatelogueId=rs.iCatelogueId','left');\n\t\t$this->db->where('rc.iCatelogueId',$iCatalogueId);\n\t\t$query = $this->db->get();\n\t\treturn $query->row_array();\n\t}", "private function OrdersList()\n\t{\tob_start();\n\t\t$nl = \"\\n\";\n\t\t$blank = ',,,,,,';\n\t\theader('Pragma: ');\n\t\theader('Cache-Control: ');\n\t\theader('Content-Type: application/csv;charset=UTF-8');\n\t\theader('Content-Disposition: attachment; filename=\"iidr_orders_details.csv\"');\n\t\tif ($orders = $this->GetOrders())\n\t\t{\t$students = array();\n\t\t\t$orderid = 0;\n\t\t\techo 'orderid,order time,customer,customer id,order value,paid,delivered,item type,item,item price', $nl;\n\t\t\tforeach ($orders as $order_row)\n\t\t\t{\t$order = new AdminStoreOrder($order_row);\n\t\t\t\t//$items = $order->GetItems();\n\t\t\t\tif (!$students[$order->details['sid']])\n\t\t\t\t{\t$students[$order->details['sid']] = new Student($order->details['sid']);\n\t\t\t\t}\n\t\t\t\t$total_discounts = 0;\n\t\t\t\tforeach ($order->GetItems() as $item)\n\t\t\t\t{\tif ($order->id == $orderid)\n\t\t\t\t\t{\techo $blank;\n\t\t\t\t\t} else\n\t\t\t\t\t{\techo $order->id, ',\"', date('d-M-y @H:i', strtotime($order->details['orderdate'])), '\",\"', $this->CSVSafeString($students[$order->details['sid']]->GetName()), '\",', $students[$order->details['sid']]->id, ',', number_format($order->GetRealTotal(), 2), ',\"', (int)$order->details['paiddate'] ? date('d/m/y @H:i', strtotime($order->details['paiddate'])) : '', '\",\"', $order->details['delivered'] ? 'Yes' : '', '\"';\n\t\t\t\t\t\t$orderid = $order->id;\n\t\t\t\t\t}\n\t\t\t\t\techo ',\"', $this->CSVSafeString($item['ptype']), '\",\"', (int)$item['qty'], ' x ', $this->CSVSafeString($item['title']), '\",', number_format($item['totalpricetax'], 2), $nl;\n\t\t\t\t\tforeach ($item['discounts'] as $item_discount)\n\t\t\t\t\t{\tif (!$discounts[$item_discount['discid']])\n\t\t\t\t\t\t{\t$discounts[$item_discount['discid']] = new DiscountCode($item_discount['discid']);\n\t\t\t\t\t\t}\n\t\t\t\t\t\techo $blank, ',\"discount\",\"', $this->CSVSafeString($discounts[$item_discount['discid']]->details['discdesc']), '\",-', number_format($item_discount['discamount'], 2), $nl;\n\t\t\t\t\t\t$total_discounts += $item_discount['discamount'];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tforeach ($order->GetAllReferrerRewards() as $reward)\n\t\t\t\t{\techo $blank, ',\"reward\",\"refer-a-friend\",-', number_format($reward['amount'], 2), $nl;\n\t\t\t\t}\n\t\t\t\tforeach ($order->GetAllAffRewards() as $reward)\n\t\t\t\t{\techo $blank, ',\"reward\",\"affiliate scheme\",-', number_format($reward['amount'], 2), $nl;\n\t\t\t\t}\n\t\t\t\tforeach ($order->GetBundles() as $bundle)\n\t\t\t\t{\techo $blank, ',\"bundle\",\"', (int)$bundle['qty'], ' x ', $this->CSVSafeString($bundle['bname']), '\",-', number_format($bundle['totaldiscount'], 2), $nl;\n\t\t\t\t}\n\t\t\t\tif ($total_discounts)\n\t\t\t\t{\techo $blank, ',,\"Total discounts\",-', number_format($total_discounts, 2), $nl;\n\t\t\t\t}\n\t\t\t\tif ($order->details['delivery_price'] > 0)\n\t\t\t\t{\techo $blank, ',\"delivery\",\"', ($order->details['delivery_id'] && ($deloption = new DeliveryOption($order->details['delivery_id'])) && $deloption->id) ? $this->CSVSafeString($deloption->details['title']) : '','\",', number_format($order->details['delivery_price'], 2), $nl;\n\t\t\t\t}\n\t\t\t\tif ($order->details['txfee'] > 0)\n\t\t\t\t{\techo $blank, ',,\"Transaction fee\",', number_format($order->details['txfee'], 2), $nl;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn ob_get_clean();\n\t}", "public function get_entries() {\n\t\t$this->db->select('oznaka, lokacija, brm');\n\t\t$query = $this->db->get('sale');\n\t\tif ($query->num_rows() > 0) {\n foreach ($query->result() as $temp) {\n $array[] = $temp;\n }\n\t\t\treturn $array;\n\t\t}\n\t}", "function getDataByID($strDataID)\n{\n global $db;\n $tbl = new cGaConsumablePurchase();\n $dataEdit = $tbl->findAll(\"id = $strDataID\", \"\", \"\", null, 1, \"id\");\n $arrTemp = getEmployeeInfoByID($db, $dataEdit[$strDataID]['id_employee'], \"employee_id\");\n $arrResult['dataIdItem'] = $dataEdit[$strDataID]['id_item'];\n $arrResult['dataRequestDate'] = $dataEdit[$strDataID]['request_date'];\n $arrResult['dataItemAmount'] = $dataEdit[$strDataID]['item_amount'];\n $arrResult['dataRemark'] = $dataEdit[$strDataID]['remark'];\n $arrResult['dataConsPurchaseNo'] = $dataEdit[$strDataID]['consumable_purchase_no'];\n $arrResult['dataConsReqNo'] = $dataEdit[$strDataID]['id_consumable_request'];\n //foreach($arrTripCost[$dataDonation ['trip_type']\n return $arrResult;\n}", "function get_sold($obj, $id){\n\t$result_array = $obj->Query_reader->get_row_as_array('get_sold',array('id' => $id));\n\treturn $result_array['total'];\n}", "public function display_sales_data(Request $request){\n\n $data = DB::select(\"SELECT COUNT(*) as counts FROM orders WHERE is_completed = '1' AND is_replacement = '0' \");\n \n return response()->json([\n \"data\" => $data[0]\n ]);\n }", "function fetch_customer_data($conn)\n{\n$date=date('d/m/Y');\n $s=\"select * from sales_invoice where inv_no='\".$_REQUEST['inv_no'].\"'\"; \n$Es=mysqli_query($conn,$s); \n$Fs=mysqli_fetch_array($Es);\n$n=mysqli_num_rows($Es);\n$ino=$n;\n\n $spm=\"select * from m_franchisee where id='\".$_SESSION['FranchiseeId'].\"'\";;\n $Scm=mysqli_query($conn,$spm);\n $Frp1=mysqli_fetch_array($Scm);\n\n\n\n$output='<div class=\"table-responsive\">\n<table class=\"table table-striped\" >\n\n<tr>\n<td align=\"center\" colspan=\"12\" ><span style=\"font-size:28px\"><B>'.$Frp1['franchisee_name'].'</B></span><BR/>'.$Frp1['address'].',<BR/>'.$Frp1['cen_manager'].',<BR/>'.$Frp1['con_number'].'<BR/></td>\n</tr>';\n\n $cus=\"select * from a_customer where id='\".$Fs['cname'].\"'\";\n$spm=mysqli_query($conn,$cus);\n$epm=mysqli_fetch_array($spm);\n\n$supname=$epm[\"cust_name\"];\n$supemail=$epm[\"email\"];\n$_SESSION['cust_name']=$supname;\n$_SESSION['email']=$supemail;\n\t\n\t\n$output.='<tr>\n<td align=\"LEFT\" colspan=\"5\"style=\"font-size:18px\"> <B>INVOICE TO</b><BR/>\nCustomer Name : <B>'.$epm['cust_name'].'</B><BR/>\n Mobile No: <B>'.$epm['mobile1'].'</B><BR/>\n Address : <B>'.$epm['addr'].'</B><BR/>\n Email :<B>'.$_SESSION['email'].'</B><BR/>\n <td align=\"LEFT\" colspan=\"3\"style=\"font-size:18px\"> <B>SHIP TO</b><BR/>\n Customer Name : <B>'.$epm['s_cust_name'].'</B><BR/>\n Mobile No: <B>'.$epm['s_mobile1'].'</B><BR/>\n Address : <B>'.$epm['s_addr'].'</B><BR/>\n Email :<B>'.$epm['s_email'].'</B><BR/>\n \n<td boalign=\"LEFT\" colspan=\"5\" ><span style=\"font-size:18px\">Date : <b>'.date(\"d-m-Y\", strtotime($Fs['sdate'])).'</b></span><br/>\n Invoice No: <b>'.$Fs['inv_no'].'</b><br/>\n </tr>'; \n\n$pq=\"select * from sales_invoice_details where inv_no='\".$_REQUEST['inv_no'].\"'\";\n$rs=mysqli_query($conn,$pq);\n$n=mysqli_num_rows($rs);\nif($n>0)\n{\n \n$output.='\n \n<tr align=\"right\">\n<td colspan=\"1\"></td>\n<td align=\"left\" colspan=\"12\" style=\" height:20px\" ><span style=\"font-size:20px\">SPARE DETAILS</span></td>\n</tr>\n<tr align=\"left\" colspan=\"12\">\n\n<td colspan=\"1\"><b>S:No</b></td>\n<td colspan=\"3\"><b>Spare Name</b></td>\n<td colspan=\"2\"><b>QTY</b></td>\n<td colspan=\"1\"><b>CGST</b></td>\n<td colspan=\"1\"><b>SGST</b></td>\n<td colspan=\"1\"><b>TAX Amount</b></td>\n<td colspan=\"1\"><b>RATE</b></td>\n</tr>';\n$i=0;\n $gt1=\"select * from sales_invoice_details where inv_no='\".$_REQUEST['inv_no'].\"'\"; \n$Egt1=mysqli_query($conn,$gt1);\nwhile($Fs1=mysqli_fetch_array($Egt1))\n{\n\n\n\t\t $sdm=\"select *from m_spare where sid='\".$Fs1['spare_name'].\"'\"; \n\t\t\t$scm=mysqli_query($conn,$sdm);\n\t\t\twhile($dcm=mysqli_fetch_array($scm))\n\t\t\t{\n\t\t\t\n\t\t\t\n\n$i++;\n\n$output.='<tr>\n\n<td >'.$i.'</td>\n<td colspan=\"3\">'.$dcm['sname'].'</td>\n<td colspan=\"2\">'.$Fs1['qty'].'</td>\n<td colspan=\"1\">'.$Fs1['cgst'].'</td>\n<td colspan=\"1\">'.$Fs1['sgst'].'</td>\n<td colspan=\"1\">'.$Fs1['tax_amt'].'</td>\n<td colspan=\"1\">'.$Fs1['BeforeTaxOfMrp'].'</td>\n</tr>';\n \n}\n}\n}\n$gt1=\"select * from sales_invoice where inv_no='\".$_REQUEST['inv_no'].\"'\"; \n$Egt1=mysqli_query($conn,$gt1);\n$Fs1=mysqli_fetch_array($Egt1);\n\n\n$output.=\n'<tr>\n\n<td align=\"right\" colspan=\"9\" height=\"30px\"><b>TAXABLE AMOUNT :</b> &nbsp;&nbsp;</td>\n<td align=\"left\" colspan=\"2\">&nbsp;&nbsp;<b>'.$Fs1['total_amt'].'</b></td>\n</tr>';\n$output.=\n'<tr>\n\n<td align=\"right\" colspan=\"9\" height=\"30px\"><b>TAX:</b> &nbsp;&nbsp;</td>\n<td align=\"left\" colspan=\"2\">&nbsp;&nbsp;<b>'.$Fs1['TotalTaxAmount'].'</b></td>\n</tr>';\n\n$output.=\n'<tr>\n\n<td align=\"right\" colspan=\"9\" height=\"30px\"><b>TOTAL AMOUNT :</b> &nbsp;&nbsp;</td>\n<td align=\"left\" colspan=\"2\">&nbsp;&nbsp;<b>'.$Fs1['ActualSellingPrice'].'</b></td>\n</tr>';\n$gt12=\"select * from a_bank_acc where default_acc='Yes' and franchisee_id='\".$_SESSION['FranchiseeId'].\"'\"; \n$Egt12=mysqli_query($conn,$gt12);\n$Fs12=mysqli_fetch_array($Egt12);\n$output.=\n'<tr>\n\n<td align=\"left\" height=\"30px\"><b>BANK NAME :</b></td>\n<td colspan=\"12\">'.$Fs12['BankName'].'</td>\n</tr>';\n$output.=\n'<tr>\n\n<td align=\"left\" height=\"30px\"><b>ACCOUNT NAME:</b> </td>\n<td colspan=\"12\">'.$Fs12['AccountName'].'</td>\n</tr>';\n$output.=\n'<tr>\n\n<td align=\"left\" height=\"30px\"><b>ACCOUNT NUMBER :</b> </td>\n<td colspan=\"12\">'.$Fs12['AccountNumber'].'</td>\n</tr>';\n$output.=\n'<tr>\n\n<td align=\"left\" height=\"30px\"><b>IFSC CODE:</b> </td>\n<td colspan=\"12\">'.$Fs12['IFSCCode'].'</td>\n</tr>';\n\n\n$output.=\n'<tr height=\"30px\">\n <td align=\"center\" colspan=\"12\"><strong>Thank You For Your Business</strong></td>\n </tr>\n</table></div>';\n\treturn $output;\n}", "function sys_sales($oConnect, $link, $startDate, $endDate,&$sys_log) {\n $sSQL = \"sp_report SalesByItemDetail show Text, Blank, TxnType, Date, Memo, Name, Quantity, UnitPrice, Amount parameters DateFrom = {d'$startDate'}, DateTo= {d'$endDate'}\";\n // Perform the query\n $oResult = odbc_exec($oConnect, $sSQL);\n $keys = array(\"Type\", \"FullName\", \"Description\", \"TxnType\", \"Date\", \"Memo\", \"Name\", \"Quantity\", \"UnitPrice\", \"Amount\");\n $lFieldCount = odbc_num_fields($oResult);\n $rows = array();\n //print_r($keys.\"<br>\");\n while ($myRow = odbc_fetch_array($oResult)) {\n $rows[] = $myRow;\n }\n $values = array();\n $Type = \"\";\n $FullName = \"\";\n $NewFullName = \"\";\n $Description = \"\";\n if (count($rows) > 0) {\n // do delete then add\n $resUpdate = mysqli_query($link, \"delete from r_salesbyitemdetail WHERE date>= '$startDate' \");\n //print (\"delete from r_salesbyitemdetail WHERE date>= '$startDate'\");\n if ($resUpdate) {\n $items = 0;\n for ($i = 0;$i < count($rows);++$i) {\n $values = array();\n $l1_parentCount = 0;\n $l2_parentCount = 0;\n $l3_parentCount = 0;\n // print $rows[$i]['Text'];\n //if ($rows[$i]['Text'] == \"\" && $rows[$i]['Blank'] == \"\" && $rows[$i]['Amount'] != \"\")\n if ($rows[$i]['UnitPrice'] != \"\") {\n if ($i >= 3) {\n if ($rows[$i - 1]['Text'] != \"\" && $rows[$i - 1]['Amount'] == \"\") {\n $Description = $rows[$i - 1]['Text'];\n if ($rows[$i - 2]['Text'] != \"\" && $rows[$i - 2]['Amount'] == \"\") {\n $FullName = $rows[$i - 2]['Text'];\n if ($rows[$i - 3]['Text'] != \"\" && $rows[$i - 3]['Amount'] == \"\") {\n $Type = $rows[$i - 3]['Text'];\n }\n }\n }\n }\n if (strpos($Description, '(') !== false) {\n $newDescription = preg_replace(\"/\\([^)]+\\)/\", \"\", $Description);\n $NewFullName = $FullName . ':' . $newDescription;\n $splitArr = explode(\"(\", $Description);\n $newDescription2 = str_replace(\")\", \"\", $splitArr[1]);\n } else {\n $NewFullName = $FullName . ':' . $Description;\n $newDescription2 = $Description;\n }\n array_push($values, $Type);\n array_push($values, $NewFullName);\n //array_push($values, addslashes($Description));\n array_push($values, addslashes($newDescription2));\n array_push($values, $rows[$i]['TxnType']);\n array_push($values, $rows[$i]['Date']);\n array_push($values, addslashes($rows[$i]['Memo']));\n array_push($values, $rows[$i]['Name']);\n array_push($values, $rows[$i]['Quantity']);\n array_push($values, $rows[$i]['UnitPrice']);\n array_push($values, $rows[$i]['Amount']);\n //print $Type . \"**:***\" . $FullName . \"***:***\" . $Description . \"*************\".$rows[$i]['TxnType'] . \" - \" . $rows[$i]['Date'] . \" - \" . $rows[$i]['Memo'] . \" - \" . $rows[$i]['Name'] . \" - \" . $rows[$i]['Quantity'] . \" - \" . $rows[$i]['UnitPrice'] . \" - \" . $rows[$i]['Amount'] . \"<br />\";\n //print_r($values.\"<br>\");\n $resInsert = mysqli_query($link, \"INSERT INTO r_salesbyitemdetail (\" . implode(\", \", $keys) . \") VALUES ('\" . implode(\"', '\", $values) . \"');\"); // insert one row into new table\n if ($resInsert) {\n //print (\"r_salesbyitemdetail--Insert2 :Success<br>\");\n \n } else {\n print (\"r_salesbyitemdetail--INSERT INTO r_salesbyitemdetail (\" . implode(\", \", $keys) . \") VALUES ('\" . implode(\"', '\", $values) . \"')<br>\");\n }\n $items++;\n }\n }\n } else {\n print (\"delete failed!<br>\");\n }\n }\n odbc_free_result($oResult);\n\t$sys_log .=\"total No. of SalesByItemDetail: $items \\r\\n\";\n\t\n\t\n echo \"<br>total No. of SalesByItemDetail: $items\";\n\t//$arr['SalesByItemDetail'] = \"total No. of SalesByItemDetail: $items\";\n\t\n}", "public function getAll()\n\t{\n\t\t$stmt = self::$_connection->prepare(\"SELECT * FROM purchase_details\");\n\t\t$stmt->execute();\n\t\t$stmt->setFetchMode(PDO::FETCH_CLASS, 'PurchaseDetails');\n\t\treturn $stmt->fetchAll();\n\t}", "public function purchasedBooks()\n { \n return $this->orders();\n }", "public function getinvoice($id) \n\n {\n $customer = array();\n $data = PurchaseOrder::find($id);\n $SupplierDetail = DB::table('zenrolle_purcahse')->join('zenrolle_suppliers','zenrolle_purcahse.supplier','=','zenrolle_suppliers.id')\n ->select('zenrolle_suppliers.id','zenrolle_suppliers.name','zenrolle_suppliers.address','zenrolle_suppliers.city','zenrolle_suppliers.country','zenrolle_suppliers.phone','zenrolle_suppliers.email','zenrolle_purcahse.invoice_no','zenrolle_purcahse.reference_no','zenrolle_purcahse.order_date','zenrolle_purcahse.due_date','zenrolle_purcahse.payment_made','zenrolle_purcahse.invoice_note')\n ->where('zenrolle_purcahse.id',$id)->get();\n $invoice = PurchaseItem::where('pid',$id)->get();\n \n $customer['invoice'] = $invoice;\n $payment_method = DB::table('zenrolle_paymentmethod')->select('id','payment_type')\n ->get();\n $data->due_balance = $data->total - $data->payment_made;\n return view('purchasing.purchase_order.create',compact('invoice','data',\n 'SupplierDetail','payment_method')); \n }", "public function salesAction()\n {\n $vars['products'] = $this->model->getDiscounts();\n $this->view->render('sales', $vars);\n }", "function GetDetailsData(){\n\n $CoID = $this->session->userdata('CoID') ;\n $WorkYear = $this->session->userdata('WorkYear') ;\n\n $this->db->select('BillNo');\n $this->db->select('BillDate');\n $this->db->select('GodownID');\n \n $this->db->select('BrokerID');\n $this->db->select('BrokerTitle');\n $this->db->select('BillAmt');\n $this->db->select('LRNo');\n $this->db->select('DeliDate');\n $this->db->select('DebtorID');\n $this->db->select('MudiBazar');\n $this->db->select('EWayBillNo');\n $this->db->select('CPName');\n $this->db->select('PartyTitle');\n $this->db->select('Area');\n $this->db->select('SaleType');\n $this->db->select('HelMajuri');\n $this->db->select('OtherChrgs');\n \n $this->db->from('SaleMast');\n $this->db->where(array('CoID' => $CoID, 'WorkYear' => $WorkYear));\n $query = $this->db->get();\n\n \n $result = $query->result();\n return $result;\n }", "function get_discounts()\n\t\t{\n\t\t\tglobal $db;\n\t\t\t$query = \" SELECT a.*\n\t\t\t\t\t\t FROM \n\t\t\t\t\t\t \t\".$this -> table_discount.\" AS a\n\t\t\t\t\t\t \tORDER BY ordering \";\n\t\t\t$sql = $db->query($query);\n\t\t\t$list = $db->getObjectList();\n\t\t\treturn $list;\n\t\t}", "public function getData()\n {\n $oUtils = $this->getDataUtils();\n $oConvert = $this->getConverter();\n $aShopData = $this->_getData();\n\n $dError = (double) $this->_calculatePayPalTaxError($aShopData);\n $dHandlingExtra = $dDiscountExtra = 0.0;\n\n if ($dError >= 0.0) {\n $dHandlingExtra = $dError;\n } else {\n $dDiscountExtra = $dError;\n }\n\n return array(\n 'Amount' => array(\n 'Total' => $oConvert->price($oUtils->getArrayValue('Total', $aShopData)),\n 'Currency' => $oConvert->string($oUtils->getArrayValue('Currency', $aShopData), 3),\n ),\n 'Details' => array(\n 'Subtotal' => $oConvert->price($oUtils->getArrayValue('Subtotal', $aShopData)),\n 'Tax' => $oConvert->price($oUtils->getArrayValue('Tax', $aShopData)),\n 'HandlingFee' => $oConvert->price($oUtils->getArrayValue('HandlingFee', $aShopData) + $dHandlingExtra),\n 'Insurance' => $oConvert->price($oUtils->getArrayValue('Insurance', $aShopData)),\n 'Shipping' => $oConvert->price($oUtils->getArrayValue('Shipping', $aShopData)),\n 'ShippingDiscount' => $oConvert->price($oUtils->getArrayValue('ShippingDiscount', $aShopData) + $dDiscountExtra),\n ),\n 'ItemList' => (array) $oUtils->getArrayValue('ItemList', $aShopData),\n );\n }", "public function getAllInvoices($stardate,$enddate,$firm_id){\n\t \t $this->db->select(\"OSC.*, OC.invoice_no, OC.order_id, CO.order_number, C.comp_name, U.first_name, U.last_name\");\n\t\t\t$this->db->from(\"order_challan_shipping AS OSC\");\n\t\t\t$this->db->join('order_challan AS OC', 'OC.challan_no = OSC.challan_no');\t\n\t\t\t$this->db->join('client_orders AS CO', 'CO.order_id = OC.order_id');\n\t\t\t$this->db->join('clients AS C', 'CO.comp_id = C.comp_id');\n\t\t\t$this->db->join('users AS U', 'CO.uid = U.uid');\n\t\t\t\n\t\t\tif($firm_id > 0){\n\t\t\t\t$this->db->where(\"CO.invoice_firm \",$firm_id);\n\t\t\t}\n\t\t\tif($enddate != '' && $stardate !=''){\n\t\t\t\t$this->db->where(\"OC.chalan_date >=\",$stardate); \n\t\t\t\t$this->db->where(\"OC.chalan_date <=\",$enddate);\n\t\t\t}\n\t\t\t\n\t\t\t//$this->db->where(\"OC.invoice_no <>\",\"0\");\n\t\t\t$this->db->group_by('OC.challan_no');\t\t\t\n\t\t\t$this->db->order_by('OSC.account_confirmed ASC');\n\t\t\t$query_all_invoices = $this->db->get();\n\t\t\t/// echo $this->db->last_query();die;\n\t\t\tif($query_all_invoices->num_rows()>0)\n\t\t\t{\n\t\t\t\treturn $query_all_invoices->result_array();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\treturn array();\n\t\t\t}\n\t }", "public function getSales($date){\n $totaSales = DB::select(\"select sum(amount) as amount from subscriptions where created_at like '\".$date->toDateString().\"%'\");\n return $totaSales[0]->amount;\n }", "public function designers_sales($offset = 0, $limit = 0){\r\n\t\tif ($limit <= 0) {\r\n\t\t\t$MAX_RECORDS = 8; /* each request return 8 records at most */\r\n\t\t} else {\r\n\t\t\t$MAX_RECORDS = $limit;\r\n\t\t}\r\n\t\t$data ['rows'] = $this->users_model->get_by_popularity($offset, $MAX_RECORDS);\r\n\t\t$data ['offset'] = $offset + 1;\r\n\t\tprint json_encode($data);\r\n\t\t//print_r($data);\r\n\t}", "public function salesStation($data)\n {\n $ret = array();\n $stmt = \"SELECT SUM(s.menge * p.preis) AS umsatz FROM sales s, product p WHERE\n p.produktID = s.produktID\n AND s.stationID = '\".$data.\"'\n ;\";\n $ausg = \"\";\n\n $result = $this->db->query($stmt);\n if(!empty($result)){\n\n while ($row = $result->fetch_assoc())\n {\n $ret[] = $row;\n }\n\n $ausg .= implode($ret[0]);\n }\n\n\n //Gesamtumsatz:\n $stmt2 = \"SELECT SUM(s.menge * p.preis) AS umsatz FROM sales s, product p WHERE\n p.produktID = s.produktID\n ;\";\n\n $result2 = $this->db->query($stmt2);\n if(!empty($result2)){\n\n while ($row2 = $result2->fetch_assoc()) {\n $ret2[] = $row2;\n }\n\n $ausg .= \", \".implode($ret2[0]);\n\n }\n\n return $ausg;\n }", "public function get_data()\n {\n $session_data = $this->session->userdata('logged_in');\n $branch_id = $session_data['branch_id'];\n\n $query = $this->db->query(\" SELECT CASE WHEN sp.unit=0 THEN 'none' WHEN sp.unit=1 THEN 'kg' WHEN sp.unit=2 THEN 'gm' WHEN sp.unit=3 THEN 'l' WHEN sp.unit=4 THEN 'ml' END AS unit,sp.store_product_id,sp.name,sp.product_code,sp.price,sp.created,sp.updated,NULL AS store_inward_id,NULL AS purchase_qty ,sins.instock \n FROM `store_product` sp \n LEFT JOIN `store_instock` sins ON (sins.store_product_id = sp.store_product_id)\n WHERE sp.`branch_id`='\".$branch_id.\"' \"); //AND DATE(si.created) = '\".date(\"Y-m-d\").\"' \n \n $result = $query->result_array();\n\n $response = array();\n\n if(!empty($result))\n {\n $i=0;\n\n foreach ($result as $store_product) {\n\n $store_product_details = $store_product;\n\n // find inward info by store product id and date\n $store_product_id = $store_product['store_product_id'];\n\n $date = date(\"Y-m-d\");\n\n $inward_data = $this->find_inward_info_by_product_and_date($store_product_id,$date);\n\n if(!empty($inward_data))\n {\n $store_product_details['store_product_inward_id'] = $inward_data['store_product_inward_id'];\n $store_product_details['purchase_qty'] = $inward_data['purchase_qty'];\n }\n\n $response[$i] = $store_product_details;\n\n $i++;\n }\n }\n return $response;\n\n }", "public function affiliate_sales() {\n return $this->hasMany(AffiliateSale::class, 'request_id');\n }", "public function index()\n\t{\n\t\treturn $this->response(Sales::all());\n\t}", "function get_datatables_invoice()\n {\n $this->company_db = $this->load->database('company_db', TRUE);\n $offset = ($_REQUEST['datatable']['pagination']['page'] - 1)*$_REQUEST['datatable']['pagination']['perpage'];\n $this->_get_datatables_query_invoice();\n if($_REQUEST['datatable']['pagination']['perpage'] != -1)\n $this->company_db->limit($_REQUEST['datatable']['pagination']['perpage'], $offset);\n $query = $this->company_db->get();\n /*$this->_get_datatables_query();\n $query2 = $this->company_db->get();*/\n /* echo \"<pre>\";\n var_dump($query);exit;\n echo \"</pre>\";*/\n\n $this->session->set_userdata('last_pickup_report_query',$this->company_db->last_query());\n\n\n if($query->num_rows() > 0)\n {\n foreach ($query->result() as $row)\n {\n //var_dump($row);exit;\n //$balance = $row->balance;\n\n //var_dump($balance);exit;\n\n\n\n // $now = strtotime(str_replace('/', '-', $_REQUEST['datatable']['pickup_date'])); // or your date as well\n\n $row->invoice_number = \"<span class='invoice'>$row->invoice_number</span>\n <span></span>\";\n $row->name = \"<div style='display:none' class='customer'>$row->customer_id</div><span>$row->name</span>\";\n\n $row->nameShipto = \"<div style='display:none' class='nameShipto'>$row->ShiptoId</div><span>$row->nameShipto</span>\";\n\n $row->total_packages = \"<span class='total_packages'>$row->total_packages</span><span></span>\";\n\n $row->balance = \"<span class='balance'>$row->balance</span><span></span>\";\n\n $row->invoice_date = \"<span class='invoice_date'>$row->invoice_date</span><span></span>\n \";\n // var_dump($row);exit;\n\n /*$your_date = strtotime($row->pickup_date);\n $datediff = $now - $your_date;\n\n $days = round($datediff / (60 * 60 * 24));\n if($days > 2)\n $row->pickup_date = \"<label class='text-danger'>\".date(\"m/d/Y\", strtotime($row->pickup_date)).\"</label>\";\n else if($days > 1)\n $row->pickup_date = \"<label class='text-warning'>\".date(\"m/d/Y\", strtotime($row->pickup_date)).\"</label>\";\n else\n $row->pickup_date = date(\"m/d/Y\", strtotime($row->pickup_date));*/\n\n $row->chk_status = \"<label class='m-checkbox m-checkbox--solid m-checkbox--brand'><input type='checkbox' id='chk_status_$row->id' value = '$row->id' class = 'chk_status' name='chk_status[]' data-id ='$row->id'>\n <span></span></label>\n \";\n /*if($row->status != \"Done\"){\n } else {\n $row->chk_status = \"<label class='m-checkbox m-checkbox--solid m-checkbox--brand'><input type='checkbox' id='chk_status_$row->id' value = '$row->id' class = 'chk_status' name='chk_status[]' data-id ='$row->id' checked>\n <span></span></label>\";\n }*/\n\n $row->chk_print = \"<label class='m-checkbox m-checkbox--solid m-checkbox--brand'>\n <input type='checkbox' class = 'chk_print' name='chk_print[]' data-id ='$row->id' checked>\n <span></span>\n </label>\";\n\n /* if($row->driver_id != '0'){\n\n $row->chk_driver = \"<label class='m-checkbox m-checkbox--solid m-checkbox--brand'><input type='checkbox' class = 'chk_driver' name='chk_driver[]' data-id ='$row->id' checked>\n <span></span></label>\";\n\n }else{\n\n $row->chk_driver = \"<label class='m-checkbox m-checkbox--solid m-checkbox--brand'><input type='checkbox' class = 'chk_driver' name='chk_driver[]' data-id ='$row->id'>\n <span></span></label>\n \";\n }*/\n\n\n }\n\n return $query->result();\n }\n else\n {\n return false;\n }\n }", "public function get_sales_data(Request $request){\n\n $sales_graph=$this->all_orders->groupBy(function($item){\n return ($item->created_at->format('Y:m'));\n })->map(function($item,$key){\n return ($item->sum('grand_total'));\n });\n $orders_graph=$this->all_orders->groupBy(function($item){\n return ($item->created_at->format('Y:m'));\n })->map(function($item,$key){\n return ($item->count());\n });\n \n $sales_str=\"[\";\n foreach($sales_graph as $key=>$value){\n\n if($sales_graph->last()==$value)\n $sales_str.='{\"Month\" : \"' . $key . '\", \"Sales\":\"'.$value .'\"}';\n else\n $sales_str.='{\"Month\": \"' . $key . '\", \"Sales\":\"'.$value .'\"},';\n }\n $sales_str.=\"]\";\n \n $orders_str=\"[\";\n \n foreach($orders_graph as $key=>$value){\n\n if($orders_graph->last()==$value)\n $orders_str.='{\"Month\" : \"' . $key . '\", \"Orders\":\"'.$value .'\"}';\n else\n $orders_str.='{\"Month\": \"' . $key . '\", \"Orders\":\"'.$value .'\"},';\n }\n $orders_str.=\"]\";\n\n\n echo json_encode([$sales_str,$orders_str]);\n }", "public function getDistribusiRevenueData()\n {\n $rekening_tabungan = $this->getRekening(\"TABUNGAN\");\n $rekening_deposito = $this->getRekening(\"DEPOSITO\");\n\n $data_rekening = array();\n $total_rata_rata = array();\n\n foreach($rekening_tabungan as $tab)\n {\n $rata_rata_product_tabungan = 0.0;\n $tabungan = $this->tabunganReporsitory->getTabungan($tab->nama_rekening);\n foreach($tabungan as $user_tabungan) {\n $temporarySaldo = $this->getSaldoAverageTabunganAnggota($user_tabungan->id_user, $user_tabungan->id);\n $rata_rata_product_tabungan = $rata_rata_product_tabungan + $temporarySaldo;\n }\n Session::put($user_tabungan->jenis_tabungan, $rata_rata_product_tabungan);\n array_push($total_rata_rata, $rata_rata_product_tabungan);\n }\n\n foreach($rekening_deposito as $dep)\n {\n $rata_rata_product_deposito = 0.0;\n $deposito = $this->depositoReporsitory->getDepositoDistribusi($dep->nama_rekening);\n foreach($deposito as $user_deposito) {\n if ($user_deposito->type == 'jatuhtempo'){\n $tanggal = $user_deposito->tempo;\n }\n else if($user_deposito->type == 'pencairanawal')\n {\n $tanggal = $user_deposito->tanggal_pencairan;\n }\n else if($user_deposito->type == 'active')\n {\n $tanggal = Carbon::parse('first day of January 1970');\n }\n $temporarySaldo = $this->getSaldoAverageDepositoAnggota($user_deposito->id_user, $user_deposito->id, $tanggal);\n $rata_rata_product_deposito = $rata_rata_product_deposito + $temporarySaldo ;\n }\n Session::put($dep->nama_rekening, $rata_rata_product_deposito);\n array_push($total_rata_rata, $rata_rata_product_deposito);\n }\n\n $total_rata_rata = $this->getTotalProductAverage($total_rata_rata);\n Session::put(\"total_rata_rata\", $total_rata_rata);\n $total_pendapatan = $this->getRekeningPendapatan(\"saldo\") - $this->getRekeningBeban(\"saldo\");\n $total_pendapatan_product = 0;\n\n foreach($rekening_tabungan as $tab)\n {\n $tabungan = $this->tabunganReporsitory->getTabungan($tab->nama_rekening);\n $rata_rata = Session::get($tab->nama_rekening);\n $nisbah_anggota = json_decode($tab->detail)->nisbah_anggota;\n $nisbah_bmt = 100 - json_decode($tab->detail)->nisbah_anggota;\n $pendapatan_product = $this->getPendapatanProduk($rata_rata, $total_rata_rata, $total_pendapatan);\n\n $total_pendapatan_product += $pendapatan_product;\n\n array_push($data_rekening, [\n \"jenis_rekening\" => $tab->nama_rekening,\n \"jumlah\" => count($tabungan),\n \"rata_rata\" => $rata_rata,\n \"nisbah_anggota\" => $nisbah_anggota,\n \"nisbah_bmt\" => $nisbah_bmt,\n \"total_rata_rata\" => $total_rata_rata,\n \"total_pendapatan\" => $total_pendapatan,\n \"pendapatan_product\" => $pendapatan_product,\n \"porsi_anggota\" => $this->getPorsiPendapatanProduct($nisbah_anggota, $pendapatan_product),\n \"porsi_bmt\" => $this->getPorsiPendapatanProduct($nisbah_bmt, $pendapatan_product),\n \"percentage_anggota\" => $total_pendapatan > 0 ?$this->getPorsiPendapatanProduct($nisbah_anggota, $pendapatan_product) / $total_pendapatan : 0\n ]);\n }\n\n foreach($rekening_deposito as $dep)\n {\n $deposito = $this->depositoReporsitory->getDepositoDistribusi($dep->nama_rekening);\n $rata_rata = Session::get($dep->nama_rekening);\n $nisbah_anggota = json_decode($dep->detail)->nisbah_anggota;\n $nisbah_bmt = 100 - json_decode($dep->detail)->nisbah_anggota;\n $pendapatan_product = $this->getPendapatanProduk($rata_rata, $total_rata_rata, $total_pendapatan);\n\n $total_pendapatan_product += $pendapatan_product;\n\n array_push($data_rekening, [\n \"jenis_rekening\" => $dep->nama_rekening,\n \"jumlah\" => count($deposito),\n \"rata_rata\" => $rata_rata,\n \"nisbah_anggota\" => $nisbah_anggota,\n \"nisbah_bmt\" => $nisbah_bmt,\n \"total_rata_rata\" => $total_rata_rata,\n \"total_pendapatan\" => $total_pendapatan,\n \"pendapatan_product\" => $pendapatan_product,\n \"porsi_anggota\" => $this->getPorsiPendapatanProduct($nisbah_anggota, $pendapatan_product),\n \"porsi_bmt\" => $this->getPorsiPendapatanProduct($nisbah_bmt, $pendapatan_product)\n ]);\n }\n\n\n return $data_rekening;\n }", "public function getSource()\n {\n $collection = $this->orderCollection\n ->addFieldToFilter(\n 'main_table.order_id',\n $this->getOrder()->getId()\n )->addFieldToFilter(\n 'main_table.seller_id',\n $this->helper->getCustomerId()\n )->getSellerInvoiceTotals($this->getInvoice()->getId());\n return $collection;\n }", "public function getDebitData()\n {\n $where = \"(SELECT DATEDIFF(sales_order.`due_date`, '$this->curDate') AS days) < 14 AND sales_order.`status_paid` = 0 AND sales_order.`active` = 1\";\n $this->db->where($where);\n $this->db->from('sales_order');\n $query = $this->db->get();\n\n $data['sum'] = 0;\n $data['count'] = 0;\n\n if ($query->num_rows() > 0) {\n foreach ($query->result() as $row) {\n $data['count']++;\n $data['sum'] += ($row->grand_total - $row->paid);\n }\n }\n return $data;\n }", "static public function ctrShowSumSales(){\n\n\t\t\t$tabla = \"productos\";\n\n\t\t\t$respuesta = ModelProducts::mdlShowSumSales($tabla);\n\n\t\t\treturn $respuesta;\n\n\n\t\t}", "public function index(SaleInvoiceDataTable $dataTable)\n {\n $data = [];\n $data['menu'] = 'sales';\n $data['sub_menu'] = 'sales/direct-invoice';\n $data['page_title'] = __('Invoices');\n $data['location'] = isset($_GET['location']) ? $_GET['location'] : NULL;\n $data['customer'] = isset($_GET['customer']) ? $_GET['customer'] : NULL;\n $data['currency'] = isset($_GET['currency']) ? $_GET['currency'] : NULL;\n $data['project'] = isset($_GET['project']) ? $_GET['project'] : NULL;\n $data['status'] = isset($_GET['status']) ? $_GET['status'] : NULL;\n $data['from'] = isset($_GET['from']) ? $_GET['from'] : NULL;\n $data['to'] = isset($_GET['to']) ? $_GET['to'] : NULL;\n $data['transactionType'] = isset($_GET['transactionType']) ? $_GET['transactionType'] : NULL;\n $data['customerList'] = Customer::where('is_active', 1)->get(['id', 'name']);\n $data['locationList'] = Location::getAll();\n $data['currencyList'] = Currency::getAll();\n $data['projectList'] = Project::getAll(['id', 'name']);\n $data['amounts'] = $amounts = $invoiceSummery = $this->saleOrder->getMoneyStatus(['customer_id' => $data['customer'], 'location' => $data['location'], 'currency' => $data['currency'], 'from' => $data['from'], 'to' => $data['to'], 'transaction_type' => $data['transactionType'], 'status' => $data['status']]);\n $allCurrency = [];\n $overdueCurrency = [];\n foreach ($amounts['amounts'] as $amount) {\n if (isset($amount->currency->symbol) && !empty($amount->currency->symbol)) {\n $allCurrency[] = $amount->currency->symbol;\n }\n }\n foreach ($amounts['overDue'] as $amount) {\n if (isset($amount->currency->symbol) && !empty($amount->currency->symbol)) {\n $overdueCurrency[] = $amount->currency->symbol;\n }\n }\n $data['allCurrency'] = array_diff($allCurrency, $overdueCurrency);\n\n $row_per_page = Preference::getAll()->where('field', 'row_per_page')->first()->value;\n return $dataTable->with('row_per_page', $row_per_page)->render('admin.invoice.list', $data);\n }", "public function sales_table($sales_no)\n {\n $settings = $this->MSettings->get_by_company_id($this->session->user_company);\n $tax_percent = $settings['tax_rate'];\n\n $details = $this->MSales_details->get_by_sales_no($sales_no);\n\n $msg = '\n <table id=\"sales_details_table\" class=\"table table-striped table-bordered\">\n <thead>\n <tr>\n <th class=\"left\">Item Code</th>\n <th class=\"left\">Item Name</th>\n <th class=\"center\">Quantity</th>\n <th class=\"center\">Sales Price</th>\n <th class=\"center\">Total Price</th>\n <th class=\"span3 center\">Action</th>\n </tr>\n </thead>\n <tbody>';\n $qty = 0;\n $price = 0;\n $tax_amount = 0;\n if (count($details) > 0)\n {\n foreach ($details as $list)\n {\n $msg .= '\n <tr>\n <td>' . $list['item_code'] . '</td>\n <td>' . $list['item_name'] . '</td>\n <td class=\"center\">' . $list['quantity'] . '</td>\n <td class=\"right\">' . number_format($list['sale_price'], 2) . '</td>\n <td class=\"right\">' . number_format($list['quantity'] * $list['sale_price'], 2) . '</td>\n <td class=\"center\">\n <input type=\"hidden\" value=\"' . $list['id'] . '\" /><span class=\"btn del btn-danger sales_item_delete\"><i class=\"icon-trash icon-white\"></i>Delete</span>\n </td>\n </tr>';\n $qty += $list['quantity'];\n $price += $list['quantity'] * $list['sale_price'];\n }\n }\n if ($price > 0)\n {\n $tax_amount = ($tax_percent * $price) / 100;\n $total_amount = $price + $tax_amount;\n }\n\n $msg .= '</tbody>\n <tfoot>\n <tr>\n <th class=\"left\" colspan=\"6\">Order Totals</th>\n </tr>\n <tr>\n <td colspan=\"2\">&nbsp;</td>\n <td class=\"center\">' . $qty . '</td>\n <td></td>\n <td class=\"right\">' . number_format($price, 2) . '</td>\n <td></td>\n </tr>\n <tr>\n <td colspan=\"4\" class=\"right\">Sales TAX</td>\n <td class=\"right\">' . number_format($tax_amount, 2) . '</td>\n <td></td>\n </tr>\n <!--<tr>\n <td colspan=\"4\" class=\"right\">Discount</td>\n <td class=\"right\"><input type=\"text\" name=\"discount\" id=\"discount\" value=\"\"></td>\n <td></td>\n </tr> -->\n <tr>\n <td colspan=\"4\" class=\"right\">Total Paid Amount</td>\n <td class=\"right\"><input type=\"text\" data-org-amount=\"' . $total_amount . '\" name=\"paid_amount\" id=\"paid_amount\" value=\"' . $total_amount . '\"></td>\n <td></td>\n </tr>\n </tfoot>\n </table>';\n\n return $msg;\n }", "public function getStock();", "function get_all_expensesinfo()\r\n {\r\n $query = $this->db->query(\"CALL displayExpenses()\"); \r\n return $query->result_array();\r\n }", "function getBookInsight($isbn, $con)\r\n\t{\r\n\t\t$output = array();\r\n\t\t$query = \"SELECT st_name, due_date FROM rent, studentdb\r\n\t\t\tWHERE rent.isbn13 = $isbn\r\n\t\t\tAND rent.st_id = studentdb.st_id;\r\n\t\t\";\r\n\t\t$result = mysqli_query($con, $query);\r\n\t\twhile($row=mysqli_fetch_array($result))\r\n\t\t{\r\n\t\t\tarray_push($output, array(\r\n\t\t\t\t\"st_name\" => $row['st_name'],\r\n\t\t\t\t\"due_date\" => $row['due_date']\t\r\n\t\t\t));\t\r\n\t\t}\r\n\t\treturn $output;\r\n\t}", "static public function ctrShowAddingOfTheSales(){\n\n\t\t$table = \"parts\";\n\n\t\t$answer = PartsModel::mdlShowAddingOfTheSales($table);\n\n\t\treturn $answer;\n\n\t}", "public function buscarArticulosSEA() {\n $rawData = array();\n $obj_con = new cls_Base();\n $conApp = $obj_con->conexionServidor();\n $sql = \"SELECT COD_ART,DES_COM,COD_LIN,COD_TIP,COD_MAR,EXI_TOT,PAUX_03,P_PROME,P_COSTO \"\n . \" FROM \" . $obj_con->BdServidor . \".IG0020 WHERE EST_LOG=1 AND EXI_TOT>0 \";\n $sentencia = $conApp->query($sql);\n //return $sentencia->fetch_assoc();\n if ($sentencia->num_rows > 0) {\n while ($fila = $sentencia->fetch_assoc()) {//Array Asociativo\n $rawData[] = $fila;\n }\n }\n return $rawData;\n }", "function getDetailAllInvoice($account_id_local,$DbConnection)\n{\n $query = \"SELECT * FROM invoice USE INDEX(inve_aid_status) WHERE account_id='$account_id_local' AND status=1\";\t\n $result = mysql_query($query,$DbConnection);\n while($row = mysql_fetch_object($result))\n {\n /*$sno = $row->sno;\n $vehicle_no = $row->vehicle_no;\n $customer_code = $row->customer_code;\n $customer_name = $row->customer_name;\n $invoice_no = $row->invoice_no;\n $invoice_amount = $row->invoice_amount;\n $email_id = $row->email_id;\n $remarks = $row->remarks;\n $driver_name = $row->driver_name;\n $driver_phone_no = $row->driver_phone_no;\n $target_time = $row->target_time;\t\t\n $tracking_no = $row->tracking_no;\t\t\n $status = $row->status;*/\t\t\n $data[]=array('sno'=>$row->sno,'vehicle_no'=>$row->vehicle_no,'customer_code'=>$row->customer_code,'customer_name'=>$row->customer_name,'invoice_no'=>$row->invoice_no,'invoice_amount'=>$row->invoice_amount,'email_id'=>$row->email_id,'remarks'=>$row->remarks,'driver_name'=>$row->driver_name,'driver_phone_no'=>$row->driver_phone_no,'target_time'=>$row->target_time,'tracking_no'=>$row->tracking_no,'status'=>$row->status);\n }\t\t\t\t\n}" ]
[ "0.6427945", "0.6399786", "0.6224914", "0.6143071", "0.6053818", "0.6030299", "0.5982133", "0.5966389", "0.5936062", "0.58992946", "0.5891936", "0.58908105", "0.5872475", "0.58677435", "0.5841094", "0.58192396", "0.57911843", "0.57908154", "0.5780632", "0.57553726", "0.5747955", "0.5745049", "0.57249033", "0.5721435", "0.57029104", "0.56848943", "0.56499517", "0.5630985", "0.562426", "0.5609033", "0.5585338", "0.557846", "0.5528335", "0.55133176", "0.54966754", "0.5496529", "0.5493234", "0.5460197", "0.54591775", "0.5444647", "0.5442105", "0.5434755", "0.54319006", "0.54272807", "0.54249537", "0.54244137", "0.54235625", "0.5422338", "0.5410592", "0.540564", "0.5403225", "0.5401846", "0.54010546", "0.5399136", "0.53985184", "0.53932625", "0.5392649", "0.5390378", "0.5379589", "0.5372126", "0.53585374", "0.5352161", "0.53498584", "0.53478223", "0.53467405", "0.53449184", "0.5341493", "0.53341323", "0.5332484", "0.53266156", "0.5321941", "0.53177446", "0.5316172", "0.53105646", "0.53038985", "0.5301426", "0.53012335", "0.5299742", "0.529916", "0.5289123", "0.5284342", "0.5281613", "0.5280959", "0.52793235", "0.52768534", "0.5261983", "0.5254123", "0.5253349", "0.52469003", "0.5233421", "0.52316296", "0.52294916", "0.52240425", "0.52233434", "0.5220195", "0.52193207", "0.5217493", "0.52153945", "0.5214319", "0.5211195" ]
0.7831773
0
This function gets the sales info of toppings from the database. This information is stored in an array that links the toppings's name and the amount purchased.
function getToppingsSalesFromDB() { $con = mysql_connect("localhost", "DBandGUI", "narwhal"); if(!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("CustomCupcakes", $con) or die('Could not select db: ' . mysql_error()); $query = "SELECT topping_Name,purchase_Amount FROM CupcakeTopping;"; $result = mysql_query($query); $finalArr = array(); while($row = mysql_fetch_array($result)) { $finalArr[$row['topping_Name']] = $row['purchase_Amount']; } mysql_close($con); return $finalArr; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function _getTicketsReferentSales()\n {\n $this->loadModel('Users');\n $users = $this->Users->find('all')->toArray();\n $data = [];\n\n foreach ($users as $user) {\n $count = $this->Tickets->find('all')->where(['paid' => 1, 'user_code' => $user->code])->count();\n\n if($count > 0) {\n $data[] = [\n 'label' => $user->firstname . ' ' . $user->lastname,\n 'value' => $this->Tickets->find('all')->where(['paid' => 1, 'user_code' => $user->code])->count()\n ];\n }\n }\n\n return $data;\n }", "public function tabelsales()\n {\n return DB::table('tbl_sales')->get();\n }", "function getIcingsSalesFromDB()\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t$query = \"SELECT icing_Name,purchase_Amount FROM CupcakeIcing;\";\n\n\t$result = mysql_query($query);\n\n\t$finalArr = array();\n\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$finalArr[$row['icing_Name']] = $row['purchase_Amount'];\n\t}\n\n\tmysql_close($con);\n\n\treturn $finalArr;\n}", "function getFillingsSalesFromDB()\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t$query = \"SELECT filling_Name,purchase_Amount FROM CupcakeFilling;\";\n\n\t$result = mysql_query($query);\n\n\t$finalArr = array();\n\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$finalArr[$row['filling_Name']] = $row['purchase_Amount'];\n\t}\n\n\tmysql_close($con);\n\n\treturn $finalArr;\n}", "public function holdingData($totals){\n $holdings = array();\n foreach($totals as $list2){\n $this2 = array(\n 'stocksum' => $list2->Stock,\n 'qtysum' => $totals[$list2->Stock]->Quantity\n );\n $holdings[] = $this2;\n }\n return $holdings;\n }", "function getBookingsToday(){\r\n $inx = 0;\r\n $arrpack = array();\r\n $conn = getConnection();\r\n\r\n $stmt = $conn->prepare(\"SELECT B.idreservations, B.datebkd, G.gs_name, G.gs_contact, B.type, P.pax, P.pooltype, P.time, P.ratetype, B.rs_checkin, P.num_rm, P.pax_pr_rm, B.datebkd FROM guests G, booking B, packages P where G.reservations_idreservations = B.idreservations AND B.packages_idpackages = P.idpackages AND B.status IS NULL order by B.datebkd desc, B.rs_checkin desc\");\r\n $stmt->execute();\r\n\r\n $result = $stmt->get_result();\r\n\r\n if($result->num_rows > 0){\r\n while($row = $result->fetch_assoc()) {\r\n $dte = $row['datebkd'];\r\n $pieces = explode(\"-\", $dte);\r\n $id = $row['idreservations'];\r\n $totString = $pieces[0] . $pieces[1] . $pieces[2] . \"-o-\" . $id;\r\n $arrpack[$inx][0] = $totString;\r\n $arrpack[$inx][1] = $row[\"idreservations\"];\r\n $arrpack[$inx][2] = $row[\"gs_name\"];\r\n $arrpack[$inx][3] = $row[\"gs_contact\"];\r\n $arrpack[$inx][4] = $row[\"type\"];\r\n $arrpack[$inx][5] = $row[\"pax\"];\r\n $arrpack[$inx][6] = $row[\"pooltype\"];\r\n $arrpack[$inx][7] = $row[\"time\"];\r\n $arrpack[$inx][8] = $row[\"ratetype\"];\r\n $arrpack[$inx][9] = $row[\"rs_checkin\"];\r\n $inx++;\r\n }\r\n }\r\n $conn->close(); \r\n return $arrpack;\r\n\t}", "public function purchasedBooks()\n { \n return $this->orders();\n }", "public function index()\n {\n return $this->toppings->getAll();\n }", "public function getSalesFromDB(){\r\n $con = $this->db->con;\r\n\r\n //Query\r\n $sql = 'SELECT P.userID, U.user_uid, P.orderID, P.price, P.status, P.date FROM payment as P JOIN users as U on P.userID = U.user_id ORDER BY P.date DESC';\r\n\r\n if($result = mysqli_query($con, $sql))\r\n { \r\n //Get result\r\n return $result;\r\n }\r\n else {\r\n //Throw exception if execution goes wrong\r\n throw new Exception('Getting ticket data failed!');\r\n }\r\n }", "public function getTicketPrinted()\n {\n return $this->join('customers','sales.customer_id','=','customers.id')\n ->select('sales.*','customers.name as customer')\n ->where('status','=', 3)\n // ->orderBy('updated_at','desc')\n ->get();\n }", "public function basket_statistics()\n\t{\n\t\t$sql = $this->pdo->prepare(\"SELECT * FROM `user_statistics` ORDER by sum_price desc limit 3\");\n\t\t$sql->execute();\n\t\t$row = $sql->fetchAll(PDO::FETCH_OBJ);\n\t\treturn $row;\n\t}", "public function total_sales()\n {\n $product = DB::table('users')\n ->join('order_lists', 'users.id', '=', 'order_lists.user_id')\n ->join('order_details', 'order_lists.id', '=', 'order_details.order_list_id')\n ->join('payment_details', 'order_details.payment_details_id', '=', 'payment_details.id')\n ->join('products', 'order_lists.item_id', '=', 'products.id')\n ->select( 'order_lists.type', 'order_lists.quentity', 'products.title', 'order_lists.total_price', 'payment_details.created_at') \n ->where('order_lists.type', '=', 'product')\n ->latest();\n \n $pet = DB::table('users')\n ->join('order_lists', 'users.id', '=', 'order_lists.user_id')\n ->join('order_details', 'order_lists.id', '=', 'order_details.order_list_id')\n ->join('payment_details', 'order_details.payment_details_id', '=', 'payment_details.id')\n ->join('pets', 'order_lists.item_id', '=', 'pets.id')\n ->select( 'order_lists.type', 'order_lists.quentity', 'pets.title','order_lists.total_price', 'payment_details.created_at') \n ->where('order_lists.type', '=', 'pet')\n ->union($product)\n ->latest()\n ->get();\n\n return $pet;\n }", "public function getTickets_sold()\n {\n return $this->tickets_sold;\n }", "function get_my_appointments() {\n global $conn;\n global $user;\n\n $statement = $conn->prepare(\"SELECT a.id, a.costumer, a.date, a.time, a.status, a.price AS totalPrice,\n b.appointment, b.service, \n c.price\n FROM appointments a, appointment_services b, services c\n WHERE a.costumer = ? AND b.appointment = a.id AND c.name = b.service\n ORDER BY a.id DESC\");\n $statement->execute([$user->id]);\n\n $rows = $statement->fetchAll();\n\n $appointments = [];\n\n foreach($rows as $row) {\n $actual = intval($row[\"id\"]);\n\n $appointments[$actual] = [\n \"id\" => $row[\"id\"],\n \"costumer\" => $row[\"costumer\"],\n \"date\" => $row[\"date\"],\n \"time\" => $row[\"time\"],\n \"status\" => $row[\"status\"],\n \"service\" => $row[\"service\"] . \", \" . (isset($appointments[$actual][\"service\"]) ? $appointments[$actual][\"service\"] : \"\"),\n \"price\" => intval($row[\"price\"]) + (isset($appointments[$actual][\"price\"]) ? intval($appointments[$actual][\"price\"]) : 0),\n \"totalPrice\" => intval($row[\"totalPrice\"])\n ];\n }\n \n foreach($appointments as $appointment) {\n echo '\n <tr>\n <th scope=\"row\">#'.$appointment[\"id\"].'</th>\n <td>'.substr($appointment[\"service\"],0,-2).'</td>\n <td>&euro; '. ($appointment[\"status\"] == \"Booked\" ? $appointment[\"price\"] : $appointment[\"totalPrice\"]).'</td>\n <td>'.$appointment[\"date\"].' - '.$appointment[\"time\"].'</td>\n <td>'.$appointment[\"status\"].'</td>\n </tr>\n ';\n }\n}", "function getFlavorsSalesFromDB()\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t$query = \"SELECT flavor_Name,purchase_Amount FROM CupcakeFlavor;\";\n\n\t$result = mysql_query($query);\n\n\t$finalArr = array();\n\n\t// This loop iterates over the results from the query and builds it into an array that will be returned later\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$finalArr[$row['flavor_Name']] = $row['purchase_Amount'];\n\t}\n\n\tmysql_close($con);\n\n\treturn $finalArr;\n}", "function getReportofTotal(){\r\n $inx = 0;\r\n $arrpack = array();\r\n $conn = getConnection();\r\n\r\n $stmt = $conn->prepare(\"SELECT B.idreservations, B.datebkd, G.gs_name, P.price, B.totalAmount, B.discount from packages P, booking B, guests G where B.idreservations = G.reservations_idreservations and B.packages_idpackages = P.idpackages\");\r\n \r\n $stmt->execute();\r\n\r\n $result = $stmt->get_result();\r\n\r\n if($result->num_rows > 0){\r\n while($row = $result->fetch_assoc()){\r\n\r\n $dte = $row['datebkd'];\r\n $pieces = explode(\"-\", $dte);\r\n $id = $row['idreservations'];\r\n $totString = $pieces[0] . $pieces[1] . $pieces[2] . \"-o-\" . $id;\r\n $arrpack[$inx][0] = $totString;\r\n $arrpack[$inx][1] = $row['gs_name'];\r\n $down = $row['price'];\r\n $second = $row['totalAmount'];\r\n $dic = $row['discount'];\r\n\r\n $totality = ($down*0.5) + ($second*((100 - $dic)/100));\r\n\r\n $arrpack[$inx][2] = $totality;\r\n $inx++;\r\n }\r\n }\r\n $conn->close(); \r\n\r\n return $arrpack;\r\n }", "public function getRecords($range,$data)\n {\n if(($range%6)!=0){\n if($range==1)\n $sales = ToiletUsageInfo::where('status','1')->where('owner_id',Auth::user()->id)->get();\n else\n $sales = ToiletUsageInfo::where('status','1')->where('owner_id',Auth::user()->id)->where('created_at','>=',Carbon::now()->subdays($range))->get();\n }\n else{\n $sales = ToiletUsageInfo::where('status','1')->where('owner_id',Auth::user()->id)->where(\"created_at\",\">=\", Carbon::now()->subMonths($range))->get();\n }\n $total=0;\n foreach($sales as $sale) {\n $total+=$sale->toilet['price'];\n }\n \n $data.='\n <thead>\n <tr class=\"thead-light\">\n <th>Transact Id</th>\n <th>Toilet name</th>\n <th>User email</th>\n <th title=\"Total revenue is KD'.$total.'\" width=10%>\n Paid | <b style=\"color:#28a745;\">KD'.$total.'</b>\n </th>\n <th>Used on</th>\n </tr>\n </thead>\n <tbody>';\n if( count($sales) == 0 )\n $data.='<tr><td colspan=\"5\"><center><h2>No Reports found</h2></center></td></tr>';\n else{\n foreach($sales as $sale) {\n if($sale->toilet['price']==0)\n $sale->toilet['price']='<b style=\"color:#28a745;\">Free</b>';\n else $sale->toilet['price']='KD'.$sale->toilet['price'];\n $data.='<tr>\n <td>'.$sale->transaction_id.'</td>\n <td title=\"id='.$sale->toilet_id.'\">\n '.$sale->toilet['toilet_name'].'\n </td>\n <td title=\"id-'.$sale->user['id'].'\">\n '.$sale->user['email'].'\n </td>\n <td><b>'.$sale->toilet['price'].'</b></td>\n <td>'.$sale->created_at->format('d/m/Y').' at '.$sale->created_at->format('g:i A').'</td>\n </tr>';\n }\n }\n $data.='</tbody>\n </table>';\n\n return $data;\n }", "public function getAllShoppingItems()\n {\n $query = $this->db->prepare('SELECT `id`, `name`, `bought`, `deleted` FROM `shopping_items`;');\n $query->execute();\n $results = $query->fetchAll();\n return $results;\n }", "function calculate_footers($data){\n\t\t$sumQty = 0.0;\n\t\t$sumSales = 0.0;\n\t\tforeach($data as $row){\n\t\t\t$sumQty += $row[3];\n\t\t\t$sumSales += $row[4];\n\t\t}\n\t\treturn array('Total',null,null,$sumQty,$sumSales);\n\t}", "public function getFundingInformation($toget){\n\t\t$connection=Database::getConnection();\n\t\tswitch($toget){\n\t\t\tcase 'fundingamount':\n\t\t\t\t$query=\"SELECT fundingamount FROM fundingsource\";\n\t\t\t\tbreak;\n\t\t\tcase 'spent':\n\t\t\t\t$query=\"SELECT spent FROM fundingsource\";\n\t\t\t\tbreak;\n\t\t\tcase 'obligation':\n\t\t\t\t$query=\"SELECT obligation FROM fundingsource\";\n\t\t\t\tbreak;\n\t\t\tcase 'impactfee':\n\t\t\t\t$query=\"SELECT impactfee FROM fundingsource\";\n\t\t\t\tbreak;\n\t\t\tcase 'remaining':\n\t\t\t\t$query=\"SELECT (fundingamount - spent - obligation - IFNULL(impactfee,0)) as remaining FROM fundingsource\";\n\t\t\t\tbreak;\n\t\t}\n\t\t$result_obj=\"\";\n\t\t$result_obj=$connection->query($query);\n\t\ttry{\n\t\t\twhile($result = $result_obj->fetch_array(MYSQLI_ASSOC)){\n\t\t\t\t$items[]=$result[$toget];\n\t\t\t}\n\t\t\treturn($items);\n\t\t}\n\t\tcatch(Exception $e){\n\t\t\treturn false;\n\t\t}\n\t\t\n\t}", "public function getSellDetails()\n {\n if (request()->ajax()) {\n $start = request()->start;\n $end = request()->end;\n $business_id = request()->session()->get('user.business_id');\n\n $sell_details = $this->transactionUtil->getSellTotals($business_id, $start, $end);\n \n return $sell_details;\n }\n }", "public function get_details_to_send_for_review() {\n $this->db->select('transaction_details.*,booking_info.*,business_services.*,business_services_details.duration,services_slots.*');\n $this->db->from('transaction_details');\n $this->db->join('booking_info', 'transaction_details.booking_id = booking_info.id');\n $this->db->join('business_services', 'booking_info.service_id = business_services.id');\n $this->db->join('business_services_details', 'business_services.id = business_services_details.service_id');\n $this->db->join('services_slots', 'booking_info.slot_id = services_slots.id');\n $this->db->where('services_slots.date =', date('Y-m-d'));\n\n $query = $this->db->get();\n $query_result = $query->result();\n $transaction_details = array();\n\n foreach ($query_result as $key => $value) {\n $transaction_details[$key]['transactions'] = $value;\n\n $this->db->select('business_details.*,locations.suburb as area_name, locations.latitude as area_latitude, locations.longitude as area_longitude');\n $this->db->from('business_details');\n $this->db->join('locations', 'business_details.suburb = locations.id');\n $this->db->where('business_details.id', $value->provider_id);\n $vendor_query = $this->db->get();\n $vendor_result = $vendor_query->result();\n $transaction_details[$key]['vendor_details'] = $vendor_result[0];\n\n $current_date = date('Y-m-d');\n if ($value->date < $current_date) {\n $transaction_details[$key]['transactions']->expiry = 'yes';\n } else {\n $transaction_details[$key]['transactions']->expiry = 'no';\n }\n\n $this->db->select('users.id,users.name,users.username');\n $this->db->from('users');\n $this->db->where('users.id', $value->paid_by);\n $user_query = $this->db->get();\n $user_result = $user_query->result();\n $transaction_details[$key]['user_details'] = $user_result[0];\n }\n\n foreach ($transaction_details as $key => $value) {\n $booking_date_time = $value['transactions']->date . ' ' . $value['transactions']->end_time;\n\n $current_time = date('Y-m-d H:i:s');\n $timediff = strtotime($current_time) - strtotime($booking_date_time);\n\n if ($timediff > 7200) {\n\n $review_data = array(\n 'rating_code' => md5($value['transactions']->booking_id),\n 'booking_id' => $value['transactions']->booking_id,\n 'vendor_id' => $value['transactions']->provider_id,\n 'user_id' => $value['transactions']->user_id,\n 'service_id' => $value['transactions']->service_id,\n 'rating' => '',\n 'title' => '',\n 'review' => '',\n 'status' => 'Pending'\n );\n $this->db->insert('vendor_ratings', $review_data);\n $value['code'] = $review_data['rating_code'];\n $review_email_content = $this->load->view('emails/review', $value, true);\n $to = $value['user_details']->username;\n// $to = '[email protected]';\n $from = \"Zinguplife<[email protected]>\";\n\n $review_mail_subject = \"Zinguplife- tell us more about your recent booking\";\n $review_message = $review_email_content;\n $this->Mailing->send_mail($to, $from, $review_mail_subject, $review_message);\n }\n }\n\n\n return true;\n }", "public function getAllSales()\n {\n return $this->join('customers','sales.customer_id','=','customers.id')\n ->select('sales.*','customers.name as customer')\n ->get();\n }", "function getStocksPurchases($mysqli,$sale_id){\n\t$query = \"SELECT stocks.description,subsales.price_per_ton,subsales.quantity,subsales.subtotal FROM sales INNER join subsales ON sales.id = subsales.sale_id INNER JOIN stocks ON stocks.id = subsales.stock_id WHERE sales.id = '$sale_id'\";\n\n\tif($result = mysqli_query($mysqli,$query)){\n\t\treturn $result ;\n\t}\n\telse{\n\t\tprintf(\"Notice: %s\", mysqli_error($mysqli));\n\t}\n\t\n}", "public function getSalesTransactions($stock){\n\n $this->db->select('*');\n $this->db->from('transactions t');\n $this->db->where('t.Stock', $stock);\n $query = $this->db->get();\n\n $item = [\n \"DateTime\" => \"N/A\",\n \"Player\" => \"N/A\",\n \"Stock\" => \"N/A\",\n \"Trans\" => \"N/A\",\n \"Quantity\" => \"N/A\"\n ];\n\n $resultset = array();\n\n array_push($resultset, $item);\n\n if($query->num_rows() != 0)\n {\n $resultset = $query->result_array();\n }\n\n return $resultset;\n }", "function getProducts() {\n\t\t$saleData = array();\n\t\tif($stmt = $this->connection->prepare(\"select * from products;\")) {\n\t\t\t$stmt -> execute();\n\n\t\t\t$stmt->store_result();\n\t\t\t$stmt->bind_result($id, $itemName, $itemImage, $itemDesc, $salePrice, $regularPrice, $numberLeft);\n\n\t\t\tif($stmt ->num_rows >0){\n\t\t\t\twhile($stmt->fetch() ){\n\t\t\t\t\t$saleData[] = array(\n\t\t\t\t\t\t'id' => $id,\n\t\t\t\t\t\t'itemName' => $itemName,\n\t\t\t\t\t\t'itemImage' => $itemImage,\n\t\t\t\t\t\t'itemDesc' => $itemDesc,\n\t\t\t\t\t\t'salePrice' => $salePrice,\n\t\t\t\t\t\t'regularPrice' => $regularPrice,\n\t\t\t\t\t\t'numberLeft' => $numberLeft\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $saleData;\n\t}", "public function getTransactions(){\r\n $stmt = $this->DB->prepare(\"SELECT * FROM transactions t JOIN products p ON p.Product_ID = t.Product_ID;\");\r\n $stmt->execute();\r\n $purchases = $stmt->fetchAll (PDO::FETCH_ASSOC);\r\n\r\n $stmt = $this->DB->prepare(\"SELECT * FROM transactions WHERE Transaction_Type='DONATION';\");\r\n $stmt->execute();\r\n $donations = $stmt->fetchAll(PDO::FETCH_ASSOC);\r\n\r\n return array_merge($purchases,$donations);\r\n }", "public function get_entries() {\n\t\t$this->db->select('oznaka, lokacija, brm');\n\t\t$query = $this->db->get('sale');\n\t\tif ($query->num_rows() > 0) {\n foreach ($query->result() as $temp) {\n $array[] = $temp;\n }\n\t\t\treturn $array;\n\t\t}\n\t}", "public function index()\n {\n $saledProducts = DB::table('sales')->orderBy('id', 'desc')\n ->select('id','sku', 'product_name', 'sale_date', 'product_qty')\n ->get();\n\n return $saledProducts->toArray();\n }", "public function sales()\n {\n $orders = Order::seller(auth()->id())->paginate(20);\n $transactioncount = Order::transactioncount(auth()->id());\n\n return view('frontend.order.sales', compact('orders', 'transactioncount'));\n }", "function getBookingsCheckdin(){\r\n $inx = 0;\r\n $arrpack = array();\r\n $conn = getConnection();\r\n\r\n $stmt = $conn->prepare(\"SELECT B.idreservations, B.datebkd, G.gs_name, G.gs_contact, B.type, P.pax, P.pooltype, P.time, P.ratetype, B.rs_checkin, P.num_rm, P.pax_pr_rm, B.datebkd FROM guests G, booking B, packages P where G.reservations_idreservations = B.idreservations AND B.packages_idpackages = P.idpackages AND B.status LIKE 'checked'\");\r\n $stmt->execute();\r\n\r\n $result = $stmt->get_result();\r\n\r\n if($result->num_rows > 0){\r\n while($row = $result->fetch_assoc()) {\r\n $dte = $row['datebkd'];\r\n $pieces = explode(\"-\", $dte);\r\n $id = $row['idreservations'];\r\n $totString = $pieces[0] . $pieces[1] . $pieces[2] . \"-o-\" . $id;\r\n $arrpack[$inx][0] = $totString;\r\n $arrpack[$inx][1] = $row[\"idreservations\"];\r\n $arrpack[$inx][2] = $row[\"gs_name\"];\r\n $arrpack[$inx][3] = $row[\"gs_contact\"];\r\n $arrpack[$inx][4] = $row[\"type\"];\r\n $arrpack[$inx][5] = $row[\"pax\"];\r\n $arrpack[$inx][6] = $row[\"pooltype\"];\r\n $arrpack[$inx][7] = $row[\"time\"];\r\n $arrpack[$inx][8] = $row[\"ratetype\"];\r\n $arrpack[$inx][9] = $row[\"rs_checkin\"];\r\n $inx++;\r\n }\r\n }\r\n $conn->close(); \r\n return $arrpack;\r\n }", "public function fetchPurchaseData()\n\t{\n\t\t$result = array('data' => array());\n\n\t\t$data = $this->model_purchase->getPurchaseData();\n\n\t\tforeach ($data as $key => $value) {\n\n\t\t\t$count_total_item = $this->model_purchase->countPurchaseItem($value['purchase_no']);\n\t\t\t// echo $count_total_item;\n\t\t\t// $date = date('Y-m-d', $value['invoice_date']);\n\t\t\t// $time = date('h:i a', $value['date_time']);\n\t\t\t$party_data = $this->model_party->getPartyData($value['party_id']);\n\n\t\t\t// $date_time = $date;\n\n\t\t\tif ($party_data['address'] == NULL) {\n\t\t\t\t$party_data['address'] = \"\";\n\t\t\t}\n\t\t\tif ($party_data['party_name'] == NULL) {\n\t\t\t\t$party_data['party_name'] = \"\";\n\t\t\t}\n\t\t\t// button\n\t\t\t$buttons = '';\n\n\n\t\t\tif (in_array('viewOrder', $this->permission)) {\n\t\t\t\t$buttons .= '<a style=\"font-size: 25px;\" target=\"__blank\" href=\"' . base_url('purchase/printDiv/' . $value['s_no'] . '/' . $value['purchase_no'] . '') . '\" class=\"btn btn-default\"><i class=\"fa fa-print\"></i></a>';\n\t\t\t}\n\n\t\t\tif (in_array('updateOrder', $this->permission)) {\n\t\t\t\t$buttons .= ' <a style=\"font-size: 25px;\" href=\"' . base_url('purchase/update/' . $value['s_no'] . '/' . $value['purchase_no'] . '') . '\" class=\"btn btn-default\"><i class=\"fa fa-pencil\"></i></a>';\n\t\t\t}\n\n\t\t\tif (in_array('deleteOrder', $this->permission)) {\n\t\t\t\t$buttons .= ' <button style=\"font-size: 25px;\" type=\"button\" class=\"btn btn-default\" onclick=\"removeFunc(' . $value['s_no'] . ', ' . $value['purchase_no'] . ')\" data-toggle=\"modal\" data-target=\"#removeModal\"><i class=\"fa fa-trash\"></i></button>';\n\t\t\t}\n\n\t\t\t// if($value['is_payment_received'] == 1) {\n\t\t\t// \t$paid_status = '<span class=\"label label-success\">Paid</span>';\t\n\t\t\t// }\n\t\t\t// else {\n\t\t\t// \t$paid_status = '<span class=\"label label-warning\">Not Paid</span>';\n\t\t\t// }\n\n\n\n\t\t\t$result['data'][$key] = array(\n\t\t\t\t$value['purchase_no'],\n\t\t\t\t$party_data['party_name'],\n\t\t\t\t$value['purchase_date'],\n\t\t\t\t$count_total_item,\n\t\t\t\t// $value['total_amount'],\n\t\t\t\t// $value['mode_of_payment'],\n\t\t\t\t$buttons\n\t\t\t);\n\t\t} // /foreach\n\n\t\techo json_encode($result);\n\t}", "public function getMvmntDetails($from,$to,$choice,$sparray)\r\n\t\t{\r\n\t\t\t\t$link = $this->connect();\r\n\t\t\t\t$a = array();\r\n\t\t\t\t$arr = array();\r\n\t\t\t\tforeach ($sparray as $a) {\r\n\t\t\t\t\t$query = \"SELECT m.date_moved,\r\n\t\t\t\t\t\t\t\tm.time_moved,\r\n\t\t\t\t\t\t\t\tp.pen_no,\r\n\t\t\t\t\t\t\t\tm.pig_id,\r\n\t\t\t\t\t\t\t\th.house_name,\r\n\t\t\t\t\t\t\t\tl.loc_name\r\n\t\t\t\t\t\tfrom movement m \r\n\t\t\t\t\t\tinner join pen p on\r\n\t\t\t\t\t\t\tp.pen_id = m.pen_id\r\n\t\t\t\t\t\tinner join house h on \r\n\t\t\t\t\t\t\th.house_id = p.house_id\r\n\t\t\t\t\t\tinner join location l on\r\n\t\t\t\t\t\t\tl.loc_id = h.loc_id\r\n\t\t\t\t\t\twhere m.pig_id = '\".$a.\"'\r\n\t\t\t\t\t\tand m.date_moved BETWEEN '\".$from.\"' and '\".$to.\"'\r\n\t\t\t\t\t\tORDER BY m.date_moved ASC\";\r\n\t\t\t\t\t$result = mysqli_query($link, $query);\r\n\t\t\t\t\t$data = array();\r\n\t\t\t\t\t\r\n\t\t\t\t\t$i = 1;\r\n\t\t\t\t\t$j = 0;\r\n\t\t\t\t\t$mvmnt = $this->getPigMvmnt($a);\r\n\t\t\t\t\twhile ($row = mysqli_fetch_row($result)) {\r\n\t\t\t\t\t\t$data['pig_id'] = $row[3];\t\r\n\t\t\t\t\t\t$data['date_moved'] = $row[0];\r\n\t\t\t\t\t\t$data['time_moved'] = $row[1];\r\n\t\t\t\t\t\t$data['location_name'] = $row[5];\r\n\t\t\t\t\t\t$data['house_name'] = $row[4];\r\n\t\t\t\t\t\t$data['pen_no'] = $row[2];\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t$arr[] = $data;\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\t\r\n\t\t\t\tif($choice == 'batch'){\r\n\t\t\t\t\t$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\movement_reports\\\\movment_report_perbatch.json', 'w');\r\n\t\t\t\t}else if($choice == 'house'){\r\n\t\t\t\t\t$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\movement_reports\\\\movment_report_perhouse.json', 'w');\r\n\t\t\t\t}else if($choice == 'pen'){\r\n\t\t\t\t\t$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\movement_reports\\\\movment_report_perpen.json', 'w');\r\n\t\t\t\t}else if($choice == 'pig'){\r\n\t\t\t\t\t$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\movement_reports\\\\movment_report_perpig.json', 'w');\r\n\t\t\t\t}\r\n\t\t\t\t\r\n\t\t\t\tfwrite($fp, json_encode($arr,JSON_PRETTY_PRINT));\r\n\t\t\t\tfclose($fp);\r\n\t\t\t\treturn $arr;\r\n\t\t}", "public function sales_table($sales_no)\n {\n $settings = $this->MSettings->get_by_company_id($this->session->user_company);\n $tax_percent = $settings['tax_rate'];\n\n $details = $this->MSales_details->get_by_sales_no($sales_no);\n\n $msg = '\n <table id=\"sales_details_table\" class=\"table table-striped table-bordered\">\n <thead>\n <tr>\n <th class=\"left\">Item Code</th>\n <th class=\"left\">Item Name</th>\n <th class=\"center\">Quantity</th>\n <th class=\"center\">Sales Price</th>\n <th class=\"center\">Total Price</th>\n <th class=\"span3 center\">Action</th>\n </tr>\n </thead>\n <tbody>';\n $qty = 0;\n $price = 0;\n $tax_amount = 0;\n if (count($details) > 0)\n {\n foreach ($details as $list)\n {\n $msg .= '\n <tr>\n <td>' . $list['item_code'] . '</td>\n <td>' . $list['item_name'] . '</td>\n <td class=\"center\">' . $list['quantity'] . '</td>\n <td class=\"right\">' . number_format($list['sale_price'], 2) . '</td>\n <td class=\"right\">' . number_format($list['quantity'] * $list['sale_price'], 2) . '</td>\n <td class=\"center\">\n <input type=\"hidden\" value=\"' . $list['id'] . '\" /><span class=\"btn del btn-danger sales_item_delete\"><i class=\"icon-trash icon-white\"></i>Delete</span>\n </td>\n </tr>';\n $qty += $list['quantity'];\n $price += $list['quantity'] * $list['sale_price'];\n }\n }\n if ($price > 0)\n {\n $tax_amount = ($tax_percent * $price) / 100;\n $total_amount = $price + $tax_amount;\n }\n\n $msg .= '</tbody>\n <tfoot>\n <tr>\n <th class=\"left\" colspan=\"6\">Order Totals</th>\n </tr>\n <tr>\n <td colspan=\"2\">&nbsp;</td>\n <td class=\"center\">' . $qty . '</td>\n <td></td>\n <td class=\"right\">' . number_format($price, 2) . '</td>\n <td></td>\n </tr>\n <tr>\n <td colspan=\"4\" class=\"right\">Sales TAX</td>\n <td class=\"right\">' . number_format($tax_amount, 2) . '</td>\n <td></td>\n </tr>\n <!--<tr>\n <td colspan=\"4\" class=\"right\">Discount</td>\n <td class=\"right\"><input type=\"text\" name=\"discount\" id=\"discount\" value=\"\"></td>\n <td></td>\n </tr> -->\n <tr>\n <td colspan=\"4\" class=\"right\">Total Paid Amount</td>\n <td class=\"right\"><input type=\"text\" data-org-amount=\"' . $total_amount . '\" name=\"paid_amount\" id=\"paid_amount\" value=\"' . $total_amount . '\"></td>\n <td></td>\n </tr>\n </tfoot>\n </table>';\n\n return $msg;\n }", "public function retrieve_product_sales_report()\n\t{\n\t\t$today = date('Y-m-d');\n\t\t$this->db->select(\"a.*,b.product_name,b.product_model,c.date,c.total_amount,d.customer_name\");\n\t\t$this->db->from('invoice_details a');\n\t\t$this->db->join('product_information b','b.product_id = a.product_id');\n\t\t$this->db->join('invoice c','c.invoice_id = a.invoice_id');\n\t\t$this->db->join('customer_information d','d.customer_id = c.customer_id');\n\t\t$this->db->where('c.date',$today);\n\t\t$this->db->order_by('c.date','desc');\n\t\t$this->db->limit('500');\n\t\t$query = $this->db->get();\t\n\t\treturn $query->result_array();\n\t}", "function get_sold($obj, $id){\n\t$result_array = $obj->Query_reader->get_row_as_array('get_sold',array('id' => $id));\n\treturn $result_array['total'];\n}", "function getBookings(){\r\n\t\t$inx = 0;\r\n\t\t$arrbook = array();\r\n\t\t$conn = getConnection();\r\n //These are the specific fields\r\n $stmt = $conn->prepare(\"SELECT B.idreservations, B.rs_checkin, B.rs_checkout, G.gs_name FROM booking B, guests G where G.reservations_idreservations = B.idreservations\");\r\n \r\n $stmt->execute();\r\n\r\n $result = $stmt->get_result();\r\n\r\n if($result->num_rows > 0){\r\n \twhile($row = $result->fetch_assoc()){\r\n \t\t$arrbook[$inx][0] = $row['rs_checkin'];\r\n \t\t$arrbook[$inx][1] = $row['gs_name'];\r\n \t\t$arrbook[$inx][2] = $row['rs_checkout'];\r\n $arrbook[$inx][3] = $row['idreservations'];\r\n $inx++;\r\n \t}\r\n }\r\n $conn->close(); \r\n\r\n return $arrbook;\r\n\t}", "public function todaysSalesTotal()\n {\n \n //get todays Date\n $fromDate = Mage::helper('magemobapp')->getTodaysDate();\n \n $storeId = Mage::getModel('magemobapp/storeinfo')->getStoreId();\n \n $collection = Mage::getResourceModel('sales/order_collection')->addAttributeToFilter('created_at', array(\n 'from' => $fromDate\n ));\n \n if ($storeId != 0) {\n $collection->addAttributeToFilter('store_id', $storeId); //fill store\n }\n //$collection;\n \n $collection->addAttributeToSelect('base_grand_total')->addAttributeToSelect('base_total_refunded')->addAttributeToSelect('base_total_paid');\n\n \n $data = $collection->getData();\n $total = 0;\n foreach ($data as $eachData) {\n if (isset($eachData['status']) && $eachData['status'] == 'complete') {\n if ($eachData['base_total_refunded'] == '') {\n $total += (float) $eachData['base_total_paid'];\n } else {\n $total += (float) $eachData['base_total_paid'] - (float) $eachData['base_total_refunded'];\n }\n } else {\n $total += (float) $eachData['base_grand_total'];\n }\n }\n return Mage::helper('core')->currency($total, true, false);\n }", "public function getSales($period)\n{\n\tif($period == \"week\")\n\t{\n\t\t$query = $this->db->query(\"SELECT * FROM Purchases WHERE PurchasedTime > DATE_SUB(NOW(), INTERVAL 1 WEEK)\");\n\t}\n\telse if($period == \"month\")\n\t{\n\t\t$query = $this->db->query(\"SELECT * FROM Purchases WHERE PurchasedTime > DATE_SUB(NOW(), INTERVAL 1 MONTH)\");\n\t}\n\telse if($period == \"year\")\n\t{\n\t\t$query = $this->db->query(\"SELECT * FROM Purchases WHERE PurchasedTime > DATE_SUB(NOW(), INTERVAL 1 YEAR)\");\n\t}\n\telse\n\t{\t\n\t\t$query = $this->db->query(\"SELECT * FROM Purchases\");\n\t}\n\t\n\treturn $query->num_rows();\n}", "public function getAll()\n\t{\n\t\t$stmt = self::$_connection->prepare(\"SELECT * FROM purchase_details\");\n\t\t$stmt->execute();\n\t\t$stmt->setFetchMode(PDO::FETCH_CLASS, 'PurchaseDetails');\n\t\treturn $stmt->fetchAll();\n\t}", "public function dataForInvoice() {\n\t\t\t\n\t\t\t$data = [\n\t\t\t 'booking_reference' => $this->reference,\n\t\t\t 'booking_date' => Utility::dateTimeLocale($this->updated_at, false),\n\t\t\t 'user_booking_fullname' => $this->user_booking_fullname,\n\t\t\t 'user_booking_address' => $this->user_booking_address,\n\t\t\t 'user_booking_locality' => $this->user_booking_full_locality,\n\t\t\t 'user_booking_email' => $this->user_booking_email,\n\t\t\t 'user_booking_tax_code' => $this->user->customer->taxCode,\n\t\t\t 'apartment_owner_fullname' => $this->apartment_owner_fullname,\n\t\t\t 'apartment_owner_tax_code' => $this->apartmentOwner->customer->taxCode,\n\t\t\t 'apartment_owner_address' => $this->apartment_owner_address,\n\t\t\t 'apartment_owner_locality' => $this->apartment_owner_full_locality,\n\t\t\t 'apartment_owner_email' => $this->apartment_owner_email,\n\t\t\t 'apartment_title' => $this->apartment_title,\n\t\t\t 'apartment_price_per_night' => $this->apartment_price_per_night,\n\t\t\t 'check_in' => Utility::dateTimeLocale($this->check_in, false),\n\t\t\t 'check_out' => Utility::dateTimeLocale($this->check_out, false),\n\t\t\t 'nights_count' => Utility::diffInDays($this->check_in, $this->check_out),\n\t\t\t 'total_amount' => $this->bookingAmount(),\n\t\t\t 'has_upgrades' => $this->bookedServices()->exists(),\n\t\t\t];\n\t\t\tif ($data['has_upgrades']) {\n\t\t\t\t$data['upgrades'] = [];\n\t\t\t\tforeach ($this->bookedServices()->get() as $bookedService) {\n\t\t\t\t\t$data['upgrades'][] =\n\t\t\t\t\t [\n\t\t\t\t\t\t'name' => $bookedService->name,\n\t\t\t\t\t\t'price_per_night' => $bookedService->price_per_night,\n\t\t\t\t\t ];\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn $data;\n\t\t}", "public function get_sales_data(Request $request){\n\n $sales_graph=$this->all_orders->groupBy(function($item){\n return ($item->created_at->format('Y:m'));\n })->map(function($item,$key){\n return ($item->sum('grand_total'));\n });\n $orders_graph=$this->all_orders->groupBy(function($item){\n return ($item->created_at->format('Y:m'));\n })->map(function($item,$key){\n return ($item->count());\n });\n \n $sales_str=\"[\";\n foreach($sales_graph as $key=>$value){\n\n if($sales_graph->last()==$value)\n $sales_str.='{\"Month\" : \"' . $key . '\", \"Sales\":\"'.$value .'\"}';\n else\n $sales_str.='{\"Month\": \"' . $key . '\", \"Sales\":\"'.$value .'\"},';\n }\n $sales_str.=\"]\";\n \n $orders_str=\"[\";\n \n foreach($orders_graph as $key=>$value){\n\n if($orders_graph->last()==$value)\n $orders_str.='{\"Month\" : \"' . $key . '\", \"Orders\":\"'.$value .'\"}';\n else\n $orders_str.='{\"Month\": \"' . $key . '\", \"Orders\":\"'.$value .'\"},';\n }\n $orders_str.=\"]\";\n\n\n echo json_encode([$sales_str,$orders_str]);\n }", "public function getInventoryAndSales() {\n\t\t$isql=\"SELECT i.id as value,i.item_name as label,i.sell_price,i.quantity FROM inventory i where rstatus='A' and quantity > 0\";\t\t\n\t\t$iresult=$this->runQuery('getAll',$isql);\n\t\t\n\t\t$sosql=\"SELECT so.id as so_id,so.product_id as inv_id,p.item_name as inv_name,date(so.sell_date) as selling_date,so.customer_name,so.sell_price as selling_price,so.prod_qty as selling_qty,so.comments FROM sales_order so, inventory p where p.id = so.product_id and so.rstatus ='A'\";\t\t\n\t\t$soresult=$this->runQuery('getAll',$sosql);\n\t\t\n\t\techo '[{\"invDropdownList\":'.json_encode($iresult).',\"salesOrderList\":'.json_encode($soresult).'}]';\n\t}", "public static function getExport($purchases) {\n $lines = array();\n\n // create each line\n foreach ($purchases as $p) {\n\n // Purchase status must be 'OK'\n if ($p->status != 'OK') {\n continue;\n }\n\n $l = array();\n\n // Record type\n $l[] = $p->bookedby ? 'P' : 'O';\n\n // Tour ref\n $l[] = Admin::clean($p->code);\n\n // Bkg ref\n $l[] = Admin::clean($p->bookingref);\n\n // Surname\n $l[] = Admin::clean($p->surname, 20);\n\n // Title\n $l[] = Admin::clean($p->title, 12);\n\n // First names\n $l[] = Admin::clean($p->firstname, 20);\n\n // Address line 1\n $l[] = Admin::clean($p->address1, 25);\n\n // Address line 2\n $l[] = Admin::clean($p->address2, 25);\n\n // Address line 3\n $l[] = Admin::clean($p->city, 25);\n\n // Address line 4\n $l[] = Admin::clean($p->county, 25);\n\n // Post code\n $l[] = Admin::clean($p->postcode, 8);\n\n // Phone No\n $l[] = Admin::clean($p->phone, 15);\n\n // Email\n $l[] = Admin::clean($p->email, 50);\n\n // Start\n $l[] = Admin::clean($p->joining);\n\n // Destination\n $l[] = Admin::clean($p->destination);\n\n // Class\n $l[] = Admin::clean($p->class, 1);\n\n // Adults\n $l[] = Admin::clean($p->adults);\n\n // Children\n $l[] = Admin::clean($p->children);\n\n // OAP (not used)\n $l[] = '0';\n\n // Family (not used)\n $l[] = '0';\n\n // Meal A\n $l[] = Admin::clean($p->meala);\n\n // Meal B\n $l[] = Admin::clean($p->mealb);\n\n // Meal C\n $l[] = Admin::clean($p->mealc);\n\n // Meal D\n $l[] = Admin::clean($p->meald);\n\n // Comment - add booker on the front\n // Remove 1/2 spurious characters from comment\n $comment = strlen($p->comment) < 3 ? '' : $p->comment;\n if ($p->bookedby) {\n $bookedby = Admin::getInitials($p->bookedby) . ' ';\n } else {\n $bookedby = '';\n }\n $l[] = Admin::clean($bookedby . $comment, 39);\n\n // Payment\n $l[] = Admin::clean(intval($p->payment * 100));\n\n // Booking Date\n $fdate = substr($p->date, 0, 4) . substr($p->date, 5, 2) . substr($p->date, 8, 2);\n $l[] = Admin::clean($fdate);\n\n // Seat supplement\n $l[] = $p->seatsupplement ? 'Y' : 'N';\n\n // Card Payment\n $l[] = 'Y';\n\n // Action required\n $l[] = 'N';\n\n // make tab separated line\n $line = implode(\"\\t\", $l);\n $lines[] = $line;\n }\n\n // combine lines\n return implode(\"\\n\", $lines);\n }", "public function price_table() {\n\t\tif ( $this->coming_soon ) {\n\t\t\treturn;\n\t\t}\n\n\t\t$out[] = '<script>jQuery( document ).ready(function() {jQuery( \".edd-add-to-cart-label\" ).html( \"Choose\" );});</script>';\n\t\t$out[] = sprintf( '<!--Pricing Table Section--><section id=\"pricing\"><div class=\"container\">\n<div class=\"container\">%1s</div>', $this->purchase_cta());\n\t\t$i = 1;\n\t\tforeach( $this->pricing() as $price ) {\n\t\t\t$out[] = sprintf(\n\t\t\t\t'<div class=\"col-lg-4 col-md-4 col-sm-12 col-xs-12 pricing-box\">\n\t\t\t\t\t<div id=\"price-%0s\" class=\"bggray price\">\n\t\t\t\t\t\t<div class=\"package\">%1s</div>\n\t\t\t\t\t\t<div class=\"divider\"></div>\n\t\t\t\t\t\t<div class=\"amount\">$%2s</div>\n\t\t\t\t\t\t<div class=\"duration\">%3s</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"featcontent\">\n\t\t\t\t\t\t%4s\n\t\t\t\t\t</div>\n\t\t\t\t</div>',\n\t\t\t\t$i,\n\t\t\t\t$price[ 'level' ],\n\t\t\t\t$price[ 'amount' ],\n\t\t\t\t$price[ 'sites' ],\n\t\t\t\t$price[ 'link' ]\n\t\t\t);\n\t\t\t$i++;\n\n\t\t}\n\n\t\t$out[] = '</div></section>';\n\n\t\treturn implode( '', $out );\n\n\t}", "public static function getTwistyOrdersDetail(){\n\t\t$sql = 'SELECT id_twisty,product_name,ord.id_order,ord.total_paid_tax_incl,od.product_reference,product_ean13,product_quantity,tor.id_order_detail,qte_picked,id_box,is_finished,date_twisty,payment,total_shipping '.\n\t\t'FROM '._DB_PREFIX_.'twisty_orders tor '.\n\t\t'LEFT JOIN '._DB_PREFIX_.'order_detail od ON od.id_order_detail=tor.id_order_detail '.\n\t\t'LEFT JOIN '._DB_PREFIX_.'orders ord ON ord.id_order=od.id_order '.\n\t\t'WHERE ord.id_order in ('.\n\t\t'\tSELECT id_order '.\n\t\t'\tFROM '._DB_PREFIX_.'twisty_orders tor '.\n\t\t'\tLEFT JOIN '._DB_PREFIX_.'order_detail od ON od.id_order_detail=tor.id_order_detail '.\n\t\t'\tGROUP BY id_order '.\n\t\t'\tHAVING count(tor.id_order_detail)=sum(is_valid) and count(tor.id_order_detail)=sum(tor.is_show) '.\n\t\t') '.\n\t\t'ORDER BY id_box,product_ean13';\n\t\tif ($results = Db::getInstance()->ExecuteS($sql))\n\t\t\treturn $results;\n\t}", "private function _getTicketsSales(Time $start, Time $end): array\n {\n $startIterator = $start->copy();\n $endIterator = $start->copy();\n $endIterator->addDay();\n\n $data = [];\n\n while ($startIterator < $end) {\n $data[] = [\n 'date' => $startIterator->format('Y-m-d'),\n 'book' => $this->Tickets->find('all')\n ->where([\n 'paid' => true,\n 'created >' => $start,\n 'created <' => $endIterator\n ])->count(),\n 'paypal' => $this->Tickets->find('all')\n ->where([\n 'created >' => $start,\n 'created <' => $endIterator,\n 'paid' => true,\n 'type' => 'paypal'\n ])->count(),\n 'perm' => $this->Tickets->find('all')\n ->where([\n 'created >' => $start,\n 'created <' => $endIterator,\n 'paid' => true,\n 'type' => 'perm'\n ])->count()\n ];\n\n $startIterator->addDay();\n $endIterator->addDay();\n }\n\n return $data;\n }", "protected function _getItemsData()\n {\n $data = array();\n $status = $this->_getCount();\n if (isset($status['yes']) && $status['yes'] > 0) {\n $data[] = array(\n 'label' => Mage::helper('vs7_saleattribute')->__('Sale'),\n 'value' => 1,\n 'count' => isset($status['yes']) ? $status['yes'] : 0,\n );\n }\n\n return $data;\n }", "public function buyer_orders()\n {\n $query = $this->db->where('buyer_id', $this->current_user->user_id)\n ->order_by('time desc')\n //->order_by('progress asc, time desc')\n ->get('orders');\n #echo $this->db->last_query();\n return ($query->num_rows() > 0) ? $this->build_array($query->result_array()) : array();\n\n }", "protected function getViewData()\n {\n if (isset($_SESSION['session'])) {\n $session = $_SESSION['session'];\n $stmt = $this->_database->prepare('SELECT\n angebot.name, angebot.id, angebot_bestellung.id,\n angebot_bestellung.status, angebot_bestellung.bestellung_id, bestellung.status\n FROM angebot_bestellung\n INNER JOIN angebot ON angebot.id = angebot_bestellung.angebot_id\n INNER JOIN bestellung\n ON bestellung.id = angebot_bestellung.bestellung_id\n WHERE bestellung.session_id = ? AND (bestellung.status <=1 || bestellung.status IS NULL)');\n $stmt->bind_param('i', $session);\n \n if ($stmt->execute()) {\n $stmt->bind_result($name, $supplyId, $id, $pizzastatus, $orderId ,$orderstatus);\n $this->_orders = array();\n \n while ($stmt->fetch()) {\n if (!isset($this->_orders[$orderId])) {\n $this->_orders[$orderId] = array();\n }\n $pizzastatus = $orderstatus == 1 ? 3 : $pizzastatus;\n $this->_orders[$orderId][$id] = array(\n 'id' => $supplyId,\n 'name' => $name,\n 'status' => $pizzastatus\n );\n }\n }\n }\n else{\n echo'<script>console.log(\"session NOT set!\");</script>'; \n }\n }", "protected function _getData()\n {\n $oUtils = $this->getDataUtils();\n\n /** @var oxBasket $oBasket */\n $oBasket = $this->_getSourceObject('oxBasket');\n\n $aShopData = array(\n 'Total' => (double) $oUtils->invokeGet($oBasket, 'getPrice', 'getPrice'),\n 'Currency' => (string) $oUtils->invokeGet($oBasket, 'getBasketCurrency', 'name:$'),\n 'Subtotal' => 0.0,\n 'Tax' => 0.0,\n 'HandlingFee' => ((double) $oUtils->invokeGet($oBasket, 'getCosts:oxpayment', 'getBruttoPrice') +\n (double) $oUtils->invokeGet($oBasket, 'getCosts:oxgiftcard', 'getBruttoPrice') +\n (double) $oUtils->invokeGet($oBasket, 'getCosts:oxwrapping', 'getBruttoPrice')),\n 'Insurance' => (double) $oUtils->invokeGet($oBasket, 'getCosts:oxtsprotection', 'getBruttoPrice'),\n 'Shipping' => (double) $oUtils->invokeGet($oBasket, 'getCosts:oxdelivery', 'getBruttoPrice'),\n 'ShippingDiscount' => -1.0 * (double) $oUtils->invokeGet($oBasket, 'getTotalDiscountSum'),\n 'ItemList' => array(),\n );\n\n $oBasketItems = (array) $oUtils->invokeGet($oBasket, 'getContents');\n\n foreach ($oBasketItems as $oBasketItem) {\n /** @var oxBasketItem $oBasketItem */\n\n /** @var paypPayPalPlusBasketItemData $oBasketItemData */\n $oBasketItemData = $this->getNew('paypPayPalPlusBasketItemData');\n $oBasketItemData->setBasketItem($oBasketItem);\n $iItemsQuantity = (int) $oBasketItemData->getQuantity();\n\n $aShopData['ItemList'][] = $oBasketItemData;\n $aShopData['Subtotal'] += $this->_round((double) $oBasketItemData->getPrice() * $iItemsQuantity);\n $aShopData['Tax'] += $this->_round((double) $oBasketItemData->getTax() * $iItemsQuantity);\n }\n\n return $aShopData;\n }", "public function getShippingInvoiced();", "function showTransactionResult()\r\n{\r\n global $config;\r\n $items_subtotal = 0; //init\r\n $extras_subtotal = 0; //init\r\n \r\n /*\r\n echo '<pre>';\r\n var_dump($_POST);\r\n echo'</pre>';\r\n */\r\n \r\n //start ITEMS ordered table\r\n //date format May 13, 2018, 1:16 am\r\n $html = '\r\n\r\n <h2>\r\n <span>Order Details</span>\r\n </h2>\r\n\r\n <p style=\"margin-left:1rem; margin-top:0;\">Order Date: ' . date(\"F j, Y, g:i a\") . '</p>\r\n <div class=\"menuitem\">\r\n <h3 style=\"margin-top:0;\">Items Ordered:</h3>\r\n <table style=\"width:100%\">\r\n <tr>\r\n <th>Item Name</th>\r\n <th>Qty</th>\r\n <th>Price</th>\r\n <th>Item Total</th>\r\n </tr>\r\n ';\r\n \r\n //this foreach block generates the table rows of ITEMS ordered\r\n foreach ($_POST as $key => $value) \r\n {\r\n //check $key is an item or a topping\r\n if (substr($key,0,5) == 'item_') {\r\n \r\n //get qty, cast as int\r\n $quantity = (int)$value;\r\n \r\n //check if there is an order for this item\r\n if ($quantity > 0) {\r\n \r\n //seperate string with _ as the delimiter\r\n $key_array = explode('_',$key);\r\n \r\n //cast item number as an integer\r\n $key_id = (int)$key_array[1];\r\n \r\n //get price, cast as float\r\n $price = (float)$config->items[$key_id - 1]->Price;\r\n \r\n //get name\r\n $name = $config->items[$key_id - 1]->Name;\r\n \r\n //calculate total for this item\r\n $item_total = $quantity * $price;\r\n \r\n //add to over items subtotal\r\n $items_subtotal += $item_total;\r\n \r\n //money format\r\n $price_output = money_format('%.2n', $price);\r\n $item_total_output = money_format('%.2n', $item_total);\r\n \r\n $html .= '\r\n <tr>\r\n <td>' . $name . '</td>\r\n <td>' . $quantity . '</td>\r\n <td>' . $price_output . '</td>\r\n <td>' . $item_total_output . '</td>\r\n </tr>\r\n ';\r\n }\r\n }\r\n }\r\n \r\n //money format\r\n $items_subtotal_output = money_format('%.2n', $items_subtotal);\r\n \r\n //finish ITEMS table\r\n $html .= '\r\n <tr class=\"tabletotal\">\r\n <td colspan=3 class=\"tabletotaltitle\">Items Subtotal: </td>\r\n <td>' . $items_subtotal_output . '</td>\r\n </tr>\r\n </table>\r\n '; \r\n \r\n //start EXTRAS ordered table\r\n $extras_html = '\r\n <h3>Extras Ordered:</h3>\r\n <table style=\"width:100%\">\r\n <tr>\r\n <th>Extra</th>\r\n\r\n <th>Qty</th>\r\n\r\n <th>Price</th>\r\n </tr>\r\n ';\r\n \r\n //this foreach block generates the table rows of EXTRAS ordered\r\n foreach ($_POST as $key => $value) \r\n {\r\n if (substr($key,0,7) == 'extras_') {\r\n \r\n foreach ($value as $extra_key => $extra) {\r\n \r\n //seperate string with _ as the delimiter\r\n $key_array = explode('_',$key);\r\n \r\n //cast item number as an integer\r\n $key_id = (int)$key_array[1];\r\n \r\n $associated_item_key = 'item_' . $key_id;\r\n \r\n $quantity_of_extra = $_POST[$associated_item_key];\r\n \r\n $extra_subtotal = $quantity_of_extra * 0.25; //calculates subtotal of each particular extra\r\n \r\n $extras_subtotal += $extra_subtotal; //adds to overall subtotal of all extras\r\n \r\n $extra_subtotal_output = money_format('%.2n', $extra_subtotal);\r\n\r\n //add row to EXTRAS table\r\n $extras_html .= '\r\n <tr>\r\n <td>' . $extra . '</td>\r\n\r\n <td>' . $quantity_of_extra . '</td>\r\n <td>' . $extra_subtotal_output . '</td>\r\n\r\n </tr>\r\n ';\r\n }\r\n }\r\n }\r\n \r\n //money format\r\n $extras_subtotal_output = money_format('%.2n', $extras_subtotal);\r\n \r\n //finish EXTRAS table\r\n $extras_html .='\r\n <tr class=\"tabletotal\">\r\n\r\n <td colspan=\"2\" class=\"tabletotaltitle\">Extras Subtotal: </td>\r\n\r\n <td>' . $extras_subtotal_output . '</td>\r\n </tr>\r\n </table>\r\n </div>\r\n ';\r\n \r\n if ($extras_subtotal == 0) {\r\n $extras_html = '\r\n <h3>Extras Ordered:</h3>\r\n <p>No extras were ordered.</p>\r\n </div>\r\n ';\r\n }\r\n \r\n $html .= $extras_html;\r\n \r\n //calculate tax & totals\r\n $order_subtotal = $items_subtotal + $extras_subtotal;\r\n $tax = $order_subtotal * .101; //10.1%\r\n $grand_total = $order_subtotal + $tax;\r\n \r\n //money format\r\n $order_subtotal = money_format('%.2n', $order_subtotal);\r\n $tax = money_format('%.2n', $tax);\r\n $grand_total = money_format('%.2n', $grand_total);\r\n\r\n //display order summary\r\n $html .= '\r\n <div class=\"menuitem\">\r\n <h3 style=\"margin-top:0;\">Order Summary:</h3>\r\n <table style=\"width:100%\">\r\n <tr>\r\n <td>Item(s) Subtotal: </td>\r\n <td>' . $items_subtotal_output . '</td>\r\n </tr>\r\n <tr>\r\n <td>Extra(s) Subtotal: </td>\r\n <td>' . $extras_subtotal_output . '</td>\r\n </tr>\r\n <tr>\r\n <td>Order Subtotal: </td>\r\n <td>' . $order_subtotal . '</td>\r\n </tr>\r\n <tr>\r\n <td>Tax: </td>\r\n <td>' . $tax . '</td>\r\n </tr>\r\n <tr class=\"tabletotal\">\r\n <td>Grand Total: </td>\r\n <td>' . $grand_total . '</td>\r\n </tr>\r\n </table>\r\n </div>\r\n ';\r\n\r\n\r\n return $html;\r\n}", "public function packing_station_tanker_report_print()\n\t{\t\t\n $loose_oil=$this->Common_model->get_data('loose_oil',array('status'=>1));\n $loose_oil_id=array_column($loose_oil,'loose_oil_id');\n $packing_material=$this->Common_model->get_data('packing_material',array('status'=>1));\n $packing_material_id=array_column($packing_material,'pm_id');\n $free_gift=$this->Common_model->get_data('free_gift',array('status'=>1));\n $free_gift_id=array_column($free_gift,'free_gift_id');\n $plant_id=$this->session->userdata('ses_plant_id');\n $submit=$this->input->post('search_sales', TRUE);\n $from_date=date('Y-m-d', strtotime($this->input->post('start_date',TRUE)));\n $to_date=date('Y-m-d', strtotime($this->input->post('end_date',TRUE)));\n if($submit!='')\n {\t$oil_results = array();\n \t$pm_results = array();\n \t$fg_results = array();\n \tforeach($loose_oil_id as $key=>$value)\n\t {\n\t \t$oil_results[$value]['loose_oil_name'] = $this->Common_model->get_value('loose_oil',array('loose_oil_id'=>$value),'name');\n\t \t$oil_results[$value]['sub_products']=$this->Packing_station_m->oil_reports($value,$from_date,$to_date);\n\t }\n //echo \"<pre>\";\n //print_r($oil_results); exit();\n\t foreach($packing_material_id as $key=>$value)\n\t {\n\t \t$pm_results[$value]['pm_name'] = $this->Common_model->get_value('packing_material',array('pm_id'=>$value),'name');\n\t \t$pm_results[$value]['sub_products']=$this->Packing_station_m->pm_reports($value,$from_date,$to_date);\n\t }\n\t foreach($free_gift_id as $key=>$value)\n\t {\n\t \t$fg_results[$value]['fg_name'] = $this->Common_model->get_value('free_gift',array('free_gift_id'=>$value),'name');\n\t \t$fg_results[$value]['sub_products']=$this->Packing_station_m->fg_reports($value,$from_date,$to_date);\n\t }\n $empty_truck_results=$this->Packing_station_m->get_empty_truck_reports($from_date,$to_date);\n $invoice_details = array();\n foreach($empty_truck_results as $key => $value)\n {\n $tanker_id[$key]['tanker_id']=$value['tanker_id'];\n $weight_result[$key]=array();\n foreach($tanker_id as $key1=>$value1)\n {\n \n $invoice_details[$key1]=$this->Packing_station_m->get_empty_truck_invoice_details($value1);\n $invoice_id_arr = $invoice_details[$key1][0]['invoice_ids'];\n if($invoice_id_arr!='')\n {\n $single_invoice_id = $invoice_details[$key1][0]['single'];\n $result = $this->Packing_station_m->get_party_name($single_invoice_id);\n $invoice =explode(',', $invoice_id_arr);\n $total_weight = 0;\n foreach ($invoice as $key2 => $value2) \n {\n $inv_products = $this->Packing_station_m->get_invoice_products($value2);\n $sum_of_qty = 0;\n $t_pm_weight = 0;\n $t_gross = 0;\n foreach($inv_products as $keys3 =>$values3)\n { \n $sum_of_qty = $sum_of_qty + $values3['qty_in_kg'];\n $t_pm_weight = $t_pm_weight + $values3['pm_weight'];\n $t_gross = $sum_of_qty + $t_pm_weight ; \n }\n $total_weight+=$t_gross; \n\n }\n }\n else\n {\n $total_weight = '';\n }\n \n \n $invoice_details[$key1][0]['weight'] = $total_weight;\n $invoice_details[$key1][0]['agency_name']=$result;\n }\n \n \n }\n /*echo \"<pre>\";\n print_r($invoice_details); exit();*/\n $data['invoice_details']=$invoice_details;\n\t $data['oil_results']=$oil_results;\n\t $data['pm_results']=$pm_results;\n\t $data['fg_results']=$fg_results;\n\t $data['from_date']=$from_date;\n\t $data['to_date']=$to_date;\n }\n \n $data['packing_station_name']=$this->Common_model->get_value('plant',array('plant_id'=>$plant_id),'name');\n //$oil_tanker=$this->Packing_station_m->oil_reports($loose_oil_id);\n //echo \"<pre>\"; print_r($product_results); exit;\n $this->load->view('packing_station/packing_station_tanker_report_print',$data);\n\t}", "public function getAllSalesMan(){\n\t\t$sql = \"SELECT * FROM vendedor\";\n\t\treturn $this->Model->getData($sql);\n\t}", "function get_all_sale()\n {\n $this->db->order_by('SaleId', 'asc');\n return $this->db->get('sale')->result_array();\n }", "function getOrderings() ;", "public function getTransactionByAjax()\n {\n $data = [];\n try {\n $orders = Invoice::whereHas('invoiceDetail.testPackage', function ($query) {\n if (Auth::guard('tutor')->check()) {\n $tutor_id = Auth::guard('tutor')->user()->TutorID;\n $query->where('TutorID', $tutor_id);\n }\n })\n ->whereHas('paymentTransaction', function ($query) {\n if (Auth::guard('tutor')->check()) {\n $query->where('ExternalTransactionStatusID', 3);\n }\n })\n ->select(DB::raw(\"convert(date, CreateDate, 105) as sale_date, SUM(Amount) as total_count\"))\n ->groupBy(DB::raw(\"convert(date, CreateDate, 105)\"))\n ->orderBy(DB::raw(\"convert(date, CreateDate, 105)\", 'ASC'))\n ->get()->toArray();\n\n $total = array_column($orders, 'total_count');\n $date = array_column($orders, 'sale_date');\n $data['total'] = $total;\n $data['date'] = $date; \n return $data;\n } catch (\\Exception $e) {\n echo $e->getMessage();\n Log::channel('loginfo')->error('Get date wise total price by ajax.',['PurchasePackagesRepository/getTransactionByAjax', $e->getMessage()]);\n return false;\n }\n return $data;\n }", "function ViewStockAdjustmentTransaction()\n {\n $sql=\"select * from INVT_T_STOCK_ADJ_HEAD \";\n return $this->db->query($sql, $return_object = TRUE)->result_array();\n }", "public function orders_datatable()\n\t\t{\n\t\t\t\n\t\t\t$list = $this->Orders->get_datatables();\n\t\t\t$data = array();\n\t\t\t$no = $_POST['start'];\n\t\t\t\n\t\t\tforeach ($list as $order) {\n\t\t\t\t$no++;\n\t\t\t\t$row = array();\n\t\t\t\t\n\t\t\t\t//$row[] = '<input type=\"checkbox\" name=\"cb[]\" id=\"cb\" onclick=\"enableButton(this)\" value=\"'.$order->id.'\">';\n\t\t\t\t\n\t\t\t\t$url = 'admin/order_details';\n\t\t\t\t\n\t\t\t\t$row[] = '<div class=\"checkbox checkbox-primary pull-left\"><input type=\"checkbox\" name=\"cb[]\" class=\"cb\" onclick=\"enableButton(this)\" value=\"'.$order->id.'\"><label for=\"cb\"></label></div><div class=\"\" style=\"margin-left:40%; margin-right:40%;\"><a data-toggle=\"modal\" href=\"#\" data-target=\"#viewOrderModal\" class=\"link\" onclick=\"viewOrder('.$order->id.',\\''.$url.'\\');\" title=\"View\">'.$order->reference.'</a></div>';\n\t\t\t\t\n\t\t\t\t$row[] = '$'.number_format($order->total_price, 0);\n\t\t\t\t$row[] = $order->num_of_items;\n\t\t\t\t\n\t\t\t\t$user_array = $this->Users->get_user($order->customer_email);\n\t\t\t\t\t\n\t\t\t\t$fullname = '';\n\t\t\t\tif($user_array){\n\t\t\t\t\tforeach($user_array as $user){\n\t\t\t\t\t\t$fullname = $user->first_name.' '.$user->last_name;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t$row[] = $fullname .' ('.$order->customer_email.')';\n\t\t\t\t\n\t\t\t\t//GET PAYMENT STATUS FROM TRANSACTION DB\n\t\t\t\t$transaction_array = $this->Transactions->get_transaction($order->reference);\n\t\t\t\t$payment_status = '';\n\t\t\t\tif($transaction_array){\n\t\t\t\t\tforeach($transaction_array as $transaction){\n\t\t\t\t\t\t$payment_status = $transaction->status;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif($payment_status == '1'){\n\t\t\t\t\t$payment_status = '<span class=\"badge bg-green\">Paid</span>';\n\t\t\t\t}else{\n\t\t\t\t\t$payment_status = '<span class=\"badge bg-yellow\">Pending</span>';\n\t\t\t\t}\n\t\t\t\t$row[] = $payment_status;\n\t\t\t\t\n\t\t\t\t//GET SHIPPING STATUS FROM DB\n\t\t\t\t$shipping_array = $this->Shipping->get_shipping($order->reference);\n\t\t\t\t$shipping_status = '';\n\t\t\t\tif($shipping_array){\n\t\t\t\t\tforeach($shipping_array as $shipping){\n\t\t\t\t\t\t$shipping_status = $shipping->status;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif($shipping_status == '1'){\n\t\t\t\t\t$shipping_status = '<span class=\"badge bg-green\">Shipped</span>';\n\t\t\t\t}else{\n\t\t\t\t\t$shipping_status = '<span class=\"badge bg-yellow\">Pending</span>';\n\t\t\t\t}\n\t\t\t\t$row[] = $shipping_status;\n\t\t\t\t\n\t\t\t\t$row[] = date(\"F j, Y\", strtotime($order->order_date));\n\t\t\t\t\n\t\t\t\t$row[] = date(\"F j, Y, g:i a\", strtotime($order->last_updated));\n\t\t\t\t\n\t\t\t\t$row[] = '<a data-toggle=\"modal\" data-target=\"#editModal\" class=\"btn btn-info btn-xs\" onclick=\"editOrder('.$order->id.',\\''.$url.'\\');\" title=\"Edit\"><i class=\"fa fa-pencil-square-o\" aria-hidden=\"true\"></i></a>';\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t//$row[] = $type->details;\n\t\t\t\t\n\t\t\t\t$data[] = $row;\n\t\t\t}\n\t \n\t\t\t$output = array(\n\t\t\t\t\n\t\t\t\t\"draw\" => $_POST['draw'],\n\t\t\t\t\"recordsTotal\" => $this->Orders->count_all(),\n\t\t\t\t\"recordsFiltered\" => $this->Orders->count_filtered(),\n\t\t\t\t\"data\" => $data,\n\t\t\t);\n\t\t\t//output to json format\n\t\t\techo json_encode($output);\n\t\t}", "public function salesList(Request $request)\n {\n $totalAmount = 0;\n $totalLoad = 0;\n $totalSingleLoad = 0;\n $totalMultipleLoad = 0;\n $totalQuantity = 0;\n $accountId = !empty($request->get('account_id')) ? $request->get('account_id') : 0;\n $fromDate = !empty($request->get('from_date')) ? $request->get('from_date') : '';\n $toDate = !empty($request->get('to_date')) ? $request->get('to_date') : '';\n $vehicleId = !empty($request->get('vehicle_id')) ? $request->get('vehicle_id') : 0;\n $productId = !empty($request->get('product_id')) ? $request->get('product_id') : 0;\n $vehicleTypeId = !empty($request->get('vehicle_type_id')) ? $request->get('vehicle_type_id') : 0;\n\n $accounts = Account::where('type', 'personal')->orWhere('id', 1)->where('status', '1')->get();\n $vehicles = Vehicle::where('status', '1')->get();\n $vehicleTypes = VehicleType::where('status', '1')->get();\n $products = Product::where('status', '1')->get();\n\n $query = Sale::where('status', 1);\n\n if(!empty($accountId) && $accountId != 0) {\n $query = $query->whereHas('transaction', function ($qry) use($accountId) {\n $qry->where('debit_account_id', $accountId);\n });\n }\n\n if(!empty($vehicleId) && $vehicleId != 0) {\n $query = $query->where('vehicle_id', $vehicleId);\n }\n\n if(!empty($productId) && $productId != 0) {\n $query = $query->where('product_id', $productId);\n }\n\n if(!empty($vehicleTypeId) && $vehicleTypeId != 0) {\n $query = $query->whereHas('vehicle', function ($qry) use($vehicleTypeId) {\n $qry->where('vehicle_type_id', $vehicleTypeId);\n });\n }\n\n if(!empty($fromDate)) {\n $searchFromDate = new DateTime($fromDate);\n $searchFromDate = $searchFromDate->format('Y-m-d');\n $query = $query->where('date_time', '>=', $searchFromDate);\n }\n\n if(!empty($toDate)) {\n $searchToDate = new DateTime($toDate.\" 23:59\");\n $searchToDate = $searchToDate->format('Y-m-d H:i');\n $query = $query->where('date_time', '<=', $searchToDate);\n }\n\n $totalQuery = clone $query;\n $totalAmount = $totalQuery->sum('total_amount');\n\n $totalMultipleLoadQuery = clone $query;\n $totalMultipleLoad = $totalMultipleLoadQuery->where('measure_type', 3)->sum('quantity');\n\n $totalSingleLoadQuery = clone $query;\n $totalSingleLoad = $totalSingleLoadQuery->whereIn('measure_type', [1,2])->count();\n\n $totalQuantityQuery = clone $query;\n $totalQuantitySale = $totalQuantityQuery->with('vehicle')->get();\n\n foreach ($totalQuantitySale as $key => $sale) {\n if($sale->measure_type == 3) {\n $totalQuantity = $totalQuantity + ($sale->quantity * $sale->vehicle->volume);\n } else {\n $totalQuantity = $totalQuantity + $sale->vehicle->volume;\n }\n }\n\n $totalLoad = $totalMultipleLoad +$totalSingleLoad;\n\n $sales = $query->with(['transaction.debitAccount', 'vehicle.vehicleType', 'product'])->orderBy('id','desc')->paginate(15);\n \n return view('sales.list',[\n 'accounts' => $accounts,\n 'vehicles' => $vehicles,\n 'products' => $products,\n 'vehicleTypes' => $vehicleTypes,\n 'sales' => $sales,\n 'accountId' => $accountId,\n 'vehicleId' => $vehicleId,\n 'productId' => $productId,\n 'vehicleTypeId' => $vehicleTypeId,\n 'fromDate' => $fromDate,\n 'toDate' => $toDate,\n 'totalAmount' => $totalAmount,\n 'totalLoad' => $totalLoad,\n 'totalQuantity' => $totalQuantity\n ]);\n }", "function info()\n\t{\n\t\t$class=str_replace('hook_pointstore_','',strtolower(get_class($this)));\n\n\t\t$items=array();\n\t\t$rows=$GLOBALS['SITE_DB']->query_select('pstore_customs',array('*'),array('c_enabled'=>1));\n\t\tforeach ($rows as $row)\n\t\t{\n\t\t\tif ($row['c_one_per_member']==1)\n\t\t\t{\n\t\t\t\t// Test to see if it's been bought\n\t\t\t\t$test=$GLOBALS['SITE_DB']->query_value_null_ok('sales','id',array('purchasetype'=>'PURCHASE_CUSTOM_PRODUCT','details2'=>strval($rows[0]['id']),'memberid'=>get_member()));\n\t\t\t\tif (!is_null($test)) continue;\n\t\t\t}\n\n\t\t\t$next_url=build_url(array('page'=>'_SELF','type'=>'action','id'=>$class,'sub_id'=>$row['id']),'_SELF');\n\t\t\t$items[]=do_template('POINTSTORE_'.strtoupper($class),array('NEXT_URL'=>$next_url,'TITLE'=>get_translated_text($row['c_title']),'DESCRIPTION'=>get_translated_tempcode($row['c_description'])));\n\t\t}\n\t\treturn $items;\n\t}", "function getAllShippings() {\n try {\n // get DB connection\n $db = new DbOperation();\n $shippings = $db->getAllShippings ( );\n if ( $shippings != null ) {\n echo '{\"shippings\":' . json_encode ( $shippings ) . '}';\n } else {\n echo '{\"error\":{\"text\":' . \"Unable to get all shippings data\" . '}}';\n }\n } catch ( Exception $e ) {\n echo '{\"error\":{\"text\":' . $e->getMessage () . '}}';\n }\n}", "public function getSalePrices()\n {\n return $this->postRequest('GetSalePrices');\n }", "public function getFeedReport($from,$to,$choice,$sparray)\r\n\t\t{\r\n\t\t\t\t$link = $this->connect();\r\n\t\t\t\t$f_arr = array();\r\n\t\t\t\tforeach ($sparray as $var) {\r\n\t\t\t\t\t$query = \" SELECT DISTINCT\r\n\t\t\t\t\t\t\t\tft.quantity,\r\n\t\t\t\t\t\t\t\tft.unit,\r\n\t\t\t\t\t\t\t\tft.date_given,\r\n\t\t\t\t\t\t\t\tft.time_given,\r\n\t\t\t\t\t\t\t\tft.pig_id,\r\n\t\t\t\t\t\t\t\tft.prod_date,\r\n\t\t\t\t\t\t\t\tf.feed_name,\r\n\t\t\t\t\t\t\t\tf.feed_type\r\n\t\t\t\t\t\t\t\tFROM feed_transaction ft \r\n\t\t\t\t\t\t\t\tINNER JOIN feeds f on\r\n\t\t\t\t\t\t\t\t\tft.feed_id = f.feed_id\r\n\t\t\t\t\t\t\t\tWHERE ft.pig_id = '\" . $var . \"' and \r\n\t\t\t\t\t\t\t\tft.date_given BETWEEN '\".$from.\"' and '\".$to.\"'\";\r\n\t\t\t\t\t$result = mysqli_query($link, $query);\r\n\t\t\t\t\t$f = array();\r\n\t\t\t\t\t\r\n\t\t\t\t\twhile($row = mysqli_fetch_row($result)){\r\n\t\t\t\t\t\t$f['Pig_id'] = $row[4];\r\n\t\t\t\t\t\t$date = date_create($row[2]);\r\n\t\t\t\t\t\t$f['Date_given'] = $date->format('F j,Y');\r\n\t\t\t\t\t\t$f['Time_given'] = $row[3];\r\n\t\t\t\t\t\t$f['Quantity'] = $row[0];\r\n\t\t\t\t\t\t$f['Unit'] = $row[1];\r\n\t\t\t\t\t\t$date2 = date_create($row[5]);\r\n\t\t\t\t\t\t$f['Production_Date'] = $date2->format('F j,Y');\r\n\t\t\t\t\t\t$f['Feed_name'] = $row[6];\r\n\t\t\t\t\t\t$f['Feed_type'] = $row[7];\r\n\t\t\t\t\t\t$f_arr[] = $f;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\t/*$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\feed_reports\\\\feed_reports.json', 'w');\r\n\t\t\t\tfwrite($fp, json_encode($f_arr,JSON_PRETTY_PRINT));\r\n\t\t\t\tfclose($fp);\r\n\t\t\t\treturn $f_arr;*/\r\n\t\t\t\tif($choice == 'batch'){\r\n\t\t\t\t\t$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\feed_reports\\\\ftrans_details_perbatch.json', 'w');\r\n\t\t\t\t}else if($choice == 'house'){\r\n\t\t\t\t\t$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\feed_reports\\\\ftrans_details_perhouse.json', 'w');\r\n\t\t\t\t}else if($choice == 'pen'){\r\n\t\t\t\t\t$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\feed_reports\\\\ftrans_details_perpen.json', 'w');\r\n\t\t\t\t}else if($choice == 'pig'){\r\n\t\t\t\t\t$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\feed_reports\\\\ftrans_details_perpig.json', 'w');\r\n\t\t\t\t}\r\n\t\t\t\tfwrite($fp, json_encode($f_arr,JSON_PRETTY_PRINT));\r\n\t\t\t\tfclose($fp);\r\n\t\t\t\treturn $f_arr;\r\n\t\t\t\t\r\n\t\t}", "public function getDashboardPanelRecords() {\n\t\t$isql=\"select i.item_name as prod_name, i.quantity as prod_qty from inventory i limit 5\";\t\t\n\t\t$iresult=$this->runQuery('getAll',$isql);\n\t\t\n\t\t$sosql=\"SELECT p.item_name as inv_name,so.customer_name,date(so.sell_date) as sell_date FROM sales_order so, inventory p where p.id = so.product_id limit 5\";\t\t\n\t\t$soresult=$this->runQuery('getAll',$sosql);\n\t\t\n\t\t$drsql=\"select count(prod_qty) as qty, date(sell_date) as date from sales_order group by sell_date\";\t\t\n\t\t$drresult=$this->runQuery('getAll',$drsql);\n\t\t\n\t\techo '[{\"topFiveInvList\":'.json_encode($iresult).',\"topFiveSalesList\":'.json_encode($soresult).',\"dailySalesGraph\":'.json_encode($drresult).'}]';\n\t}", "public function getSoldItems() {\n //$filter = 'LastHour';\n $filter = 'Last45Days';\n //$filter = 'SaleCompleted';\n $response = $this->trademe->get('MyTradeMe/SoldItems/'.$filter);\n\n if ($response->is_ok()) {\n return $response->List->SoldItem;\n }\n // error\n $this->tragentoLog(array(),$response->error_message(),'get_sold_items_error');\n return false;\n }", "public function alldeals(){\n\t\t$q= $this->db->query('select * from traveldeal');\n\t\treturn $q->result();\n\t}", "function getOrdersData($varAction=null,$data=null) {\n //echo \"<pre>\";\n $objClassCommon = new ClassCommon();\n $arrRes=array();\n $argWhere='';\n $varTable = TABLE_ORDER_ITEMS;\n $total=0;\n if($varAction=='today' || $varAction=='yesterday'){\n if($varAction=='today'){\n $dateToday=date('Y-m-d'); \n }else{\n $dateToday=date('Y-m-d',strtotime(\"-1 days\"));\n }\n \n \n for ($i=4;$i<25;$i=$i+4){\n \n $num_paddedTotime = sprintf(\"%02d\", $i);\n $num_paddedFromtime = sprintf(\"%02d\", $i-4);\n $toTime=$dateToday.' '.$num_paddedTotime.':00:00';\n $fromTime=$dateToday.' '.$num_paddedFromtime.':00:00';\n \n $arrClms = array('TIME(ItemDateAdded) as date');\n $argWhere = 'ItemDateAdded >= \"'.$fromTime.'\" AND ItemDateAdded < \"'.$toTime.'\"';\n $argWhere .= 'AND Status <> \"Canceled\"';\n \n $arrData = $this->select($varTable, $arrClms, $argWhere);\n $count=count($arrData);\n $arrRes['data'][$i]['time'][]=$arrData;\n $arrRes['data'][$i]['count']=$count;\n $total +=$count;\n }\n $arrRes['total']=$total;\n //print_r($arrRes);\n //die;\n //print_r($arrData);\n //print_r($arrTime);\n //print_r($arrRangeTimes);\n }elseif($varAction=='last_week'){\n $arrWeeksDates=$objClassCommon->getlastWeekDates();\n \n \n foreach($arrWeeksDates as $key=>$date){\n $toTime=$date.' 23:00:00';\n $fromTime=$date.' 00:00:00';\n \n $arrClms = array('DATE(ItemDateAdded) as date');\n $argWhere = 'ItemDateAdded >= \"'.$fromTime.'\" AND ItemDateAdded <= \"'.$toTime.'\"';\n $argWhere .= 'AND Status <> \"Canceled\"';\n \n $arrData = $this->select($varTable, $arrClms, $argWhere);\n $count=count($arrData);\n $arrRes['data'][$key]['dates']=$arrData;\n $arrRes['data'][$key]['count']=$count;\n $total +=$count;\n }\n $arrRes['total']=$total;\n //print_r($arrWeeksDates);\n //print_r($arrRes);\n //die;\n //print_r($arrData);\n //print_r($arrTime);\n //print_r($arrRangeTimes);\n }elseif($varAction=='last_month'){\n $lastMonth=date('n', strtotime(date('Y-m').\" -1 month\"));\n $lastMonthYear=date('Y', strtotime(date('Y-m').\" -1 month\"));\n \n $arrWeeksDates=$objClassCommon->getWeeks($lastMonth,$lastMonthYear);\n //echo $lastMonth.'=='.$lastMonthYear;\n //echo \"<pre>\";\n //print_r($arrWeeksDates);\n //die;\n \n foreach($arrWeeksDates as $key=>$date){\n $toTime=$date['endDate'].' 23:00:00';\n $fromTime=$date['startDate'].' 00:00:00';\n \n $arrClms = array('DATE(ItemDateAdded) as date');\n $argWhere = 'ItemDateAdded >= \"'.$fromTime.'\" AND ItemDateAdded <= \"'.$toTime.'\"';\n $argWhere .= 'AND Status <> \"Canceled\"';\n \n $arrData = $this->select($varTable, $arrClms, $argWhere);\n $count=count($arrData);\n $arrRes['data'][$key]['dates']=$arrData;\n $arrRes['data'][$key]['count']=$count;\n $total +=$count; \n }\n $arrRes['total']=$total;\n //print_r($arrWeeksDates);\n //print_r($arrRes);\n //die;\n //print_r($arrData);\n //print_r($arrTime);\n //print_r($arrRangeTimes);\n }elseif($varAction=='searchReports'){\n $argWhere='';\n if($data['fromDate'] !=''){\n $argWhere .='ItemDateAdded >= \"'.date('Y-m-d',strtotime($data['fromDate'])).' 00:00:00\"';\n }\n if($data['toDate'] !=''){\n if($argWhere != ''){\n $argWhere .=' AND ItemDateAdded <= \"'.date('Y-m-d',strtotime($data['toDate'])).' 23:00:00\"';\n }else{\n $argWhere .='ItemDateAdded <= \"'.date('Y-m-d',strtotime($data['toDate'])).' 23:00:00\"';\n }\n \n }\n \n $arrClms = array('count(ItemDateAdded) as counts');\n $argWhere .= 'AND Status <> \"Canceled\"';\n \n $arrData = $this->select($varTable, $arrClms, $argWhere);\n $count=$arrData[0]['counts'];\n $arrRes['result']=$count;\n }elseif($varAction=='top_order'){\n \n $varQuery = \"SELECT count(fkItemID) as count,fkItemID,ItemName FROM \" . $varTable . \" WHERE Status <> 'Canceled' AND ItemType ='product' GROUP BY fkItemID ORDER BY count DESC LIMIT 10\";\n $arrData = $this->getArrayResult($varQuery);\n //pre($arrData);\n $arrRes['result']=$arrData;\n $arrRes['count']=count($arrData);\n }\n \n //die;\n echo json_encode($arrRes);\n die;\n }", "function tampil_data()\r\n\t{\r\n\t$data = mysql_query(\"select * from item order by Nama_Item\");\r\n\twhile($d = mysql_fetch_array($data))\r\n\t\t{\r\n\t\t\t$hasil[] = $d;\r\n\t\t}\r\n\treturn $hasil;\r\n\t}", "public function getSupplierData(){\n\n\t\t$supperDataSQL = \"select * FROM\n\t\t\t\t\t\t(\n\t\t\t\t\t\t\tSELECT *,\n\t\t\t\t\t\t\t(SELECT COUNT(inward_id) FROM inward AS inw WHERE inw.legal_entity_id=l.legal_entity_id) AS 'TotalGRN'\n\t\t\t\t\t\t\tFROM legal_entities AS l\n\t\t\t\t\t\t\tWHERE legal_entity_type_id='1002' AND is_posted=0\n\t\t\t\t\t\t) AS innertbl WHERE TotalGRN>0\";\n\n\t\t$supperData = DB::select(DB::raw($supperDataSQL));\n\n\t\t/*$supperData = DB::table('legal_entities_live')\n\t\t\t\t\t->where(\"legal_entity_type_id\",\"=\",\"1002\")\n\t\t\t\t\t->where('is_posted', '=', '0')\n\t\t\t\t\t->get();*/\n\n\t\treturn $supperData;\n\n\t}", "public function listPurchase() {\n $companyId = $this->Session->read('CompanyLoggedIn.Company.id');\n $limit = 10;\n $valor_total = 0;\n $update = true;\n\n // array com dados obrigatorios para busca\n $arrayBusca = array(\n 'Checkout.company_id' => $companyId,\n 'Checkout.total_value > ' => 0,\n 'NOT' => array(\n 'Checkout.payment_state_id' => array(\n '14'\n )\n )\n );\n\n // verifica se esta sendo feita uma busca\n if (!empty($this->request->data ['busca'])) {\n if ($this->request->data ['calendario-inicio'] != 'Data Inicial' && $this->request->data ['calendario-fim'] != 'Data Final') {\n $dataInicio = $this->Utility->formataData($this->request->data ['calendario-inicio']);\n $dataFinal = $this->Utility->formataData($this->request->data ['calendario-fim']);\n $arrayData = array(\n 'Checkout.date >= ' => $dataInicio,\n 'Checkout.date <= ' => $dataFinal\n );\n $arrayBusca = array_merge($arrayData, $arrayBusca);\n }\n if ($this->request->data ['produto'] != 'Produto') {\n $arrayProduto = array(\n 'Offer.title LIKE' => \"%{$this->request->data['produto']}%\"\n );\n $arrayBusca = array_merge($arrayProduto, $arrayBusca);\n }\n if ($this->request->data ['comprador'] != 'Comprador') {\n $arrayComprador = array(\n 'User.name LIKE' => \"%{$this->request->data['comprador']}%\"\n );\n $arrayBusca = array_merge($arrayComprador, $arrayBusca);\n }\n }\n\n $paramsCount = array(\n 'Checkout' => array(\n 'fields' => array(\n 'SUM(Checkout.total_value) as valor_total'\n ),\n 'conditions' => $arrayBusca\n ),\n 'Offer' => array(),\n 'User' => array(),\n 'PaymentState' => array()\n );\n\n $contador = $this->Utility->urlRequestToGetData('payments', 'count', $paramsCount);\n $valor_total = $this->Utility->urlRequestToGetData('payments', 'first', $paramsCount);\n if (is_array($valor_total))\n $valor_total = $valor_total [0] ['valor_total'];\n\n // verifica se esta fazendo uma requisicao ajax para mais pedidos\n if (!empty($this->request->data ['limit'])) {\n $render = true;\n $this->layout = '';\n $limit = $_POST ['limit'] + 5;\n if ($limit > $contador) {\n $limit = $contador;\n\n // nao chama mais atualizacao\n $update = false;\n }\n }\n\n // verifica se esta fazendo uma requisicao ajax para atualizar publicacao de comentarios\n if (!empty($this->request->data ['id_comentario'])) {\n\n $arrayParams = array(\n 'OffersComment' => array(\n 'id' => $this->request->data ['id_comentario'],\n 'status' => $this->request->data ['status']\n )\n );\n $updateStatus = $this->Utility->urlRequestToSaveData('offers', $arrayParams);\n exit();\n }\n\n $params = array(\n 'Checkout' => array(\n 'conditions' => $arrayBusca,\n 'limit' => $limit,\n 'order' => array(\n 'Checkout.id' => 'DESC'\n )\n ),\n 'Offer' => array(),\n 'User' => array(),\n 'PaymentState' => array()\n );\n\n $checkouts = $this->Utility->urlRequestToGetData('payments', 'all', $params);\n if (is_array($checkouts)) {\n foreach ($checkouts as $checkout) {\n\n // verificando se pedido ja foi comentado por comprador\n $idOffer = $checkout ['Checkout'] ['offer_id'];\n $idUser = $checkout ['Checkout'] ['user_id'];\n $params = array(\n 'OffersComment' => array(\n 'conditions' => array(\n 'OffersComment.offer_id' => $idOffer,\n 'OffersComment.user_id' => $idUser\n )\n )\n );\n $comentario = $this->Utility->urlRequestToGetData('offers', 'first', $params);\n if (!$comentario == true) {\n $checkout ['Checkout'] ['comment'] = false;\n } else {\n $checkout ['Checkout'] ['comment'] = $comentario ['OffersComment'];\n }\n\n $checks [] = $checkout;\n }\n } else {\n $checks = \"NENHUM REGISTRO ENCONTRADO\";\n }\n\n $this->set(compact('checks', 'limit', 'valor_total', 'contador', 'update'));\n if (!empty($render))\n $this->render('Elements/ajax_compras');\n }", "public function index()\n\t{\n\t\t$currencyController = new CurrencyController();\n\t\t$data = array(\n\t\t\t'pageTitle' => 'Spending',\n\t\t\t'secondaryCurrencyMoney' => $currencyController->convert(\\Auth::user()->currentMoney, \\Auth::user()->mainCurrency, \\Auth::user()->secondaryCurrency)\n\t\t);\n\t\t$spendings = \\DB::table('pengeluaran')->where('idUser', \\Auth::user()->id)->get();\n\t\t$nextPayment = array();\n\t\t// $nextPayment = array();\n\t\tforeach ($spendings as $spending) {\n\t\t\t$date = Carbon::parse($spending->nextPayment);\n\t\t\t\t\t\n\t\t\tif ($spending->frequency == \"monthly\") {\n\t\t\t\twhile($date->isPast()){\n\t\t\t\t\t$date->addMonth();\n\t\t\t\t}\n\t\t\t}\n\t\t\telseif($spending->frequency = \"daily\"){\n\t\t\t\twhile($date->isPast()){\n\t\t\t\t\t$date->addDay();\n\t\t\t\t}\n\t\t\t}\n\t\t\t$nextPayment[$spending->id] = $date->toFormattedDateString();\n\t\t}\n\t\treturn \\View::make('spending.spending')->with('data',$data)->with('spendings', $spendings)->with('nextPayment',$nextPayment);\n\t}", "public function getData()\n {\n $oUtils = $this->getDataUtils();\n $oConvert = $this->getConverter();\n $aShopData = $this->_getData();\n\n $dError = (double) $this->_calculatePayPalTaxError($aShopData);\n $dHandlingExtra = $dDiscountExtra = 0.0;\n\n if ($dError >= 0.0) {\n $dHandlingExtra = $dError;\n } else {\n $dDiscountExtra = $dError;\n }\n\n return array(\n 'Amount' => array(\n 'Total' => $oConvert->price($oUtils->getArrayValue('Total', $aShopData)),\n 'Currency' => $oConvert->string($oUtils->getArrayValue('Currency', $aShopData), 3),\n ),\n 'Details' => array(\n 'Subtotal' => $oConvert->price($oUtils->getArrayValue('Subtotal', $aShopData)),\n 'Tax' => $oConvert->price($oUtils->getArrayValue('Tax', $aShopData)),\n 'HandlingFee' => $oConvert->price($oUtils->getArrayValue('HandlingFee', $aShopData) + $dHandlingExtra),\n 'Insurance' => $oConvert->price($oUtils->getArrayValue('Insurance', $aShopData)),\n 'Shipping' => $oConvert->price($oUtils->getArrayValue('Shipping', $aShopData)),\n 'ShippingDiscount' => $oConvert->price($oUtils->getArrayValue('ShippingDiscount', $aShopData) + $dDiscountExtra),\n ),\n 'ItemList' => (array) $oUtils->getArrayValue('ItemList', $aShopData),\n );\n }", "function listar_procesos($objeto){\n\n\t\t$sql = \"SELECT\n\t\t\t\t\t\t\tid, nombre, tiempo_hrs\n\t\t\t\t\t\tFROM\n\t\t\t\t\t\t\tprd_procesos\n\t\t\t\t\t\tORDER BY id\";\n\n\t\t// return $sql;\n\t\t$result = $this->queryArray($sql);\n\n\t\treturn $result;\n\t}", "public function get_entries_u() {\n\t\t$this->db->select('oznaka, lokacija, brm, irm');\n\t\t$query = $this->db->get('sale');\n\t\tif ($query->num_rows() > 0) {\n foreach ($query->result() as $temp) {\n $array[] = $temp;\n }\n\t\t\treturn $array;\n\t\t}\n\t}", "public function buy()\n {\n\n return $shopArr = [\n [\"type\" => \"Weapon\", \"name\" => \"Iron Hoe\", \"Damage\" => \"2\", \"price\" => 3, \"image\" => \"ironHoe.png\"],\n [\"type\" => \"Armor\", \"name\" => \"Wooden Shield\", \"Defense\" => 10, \"price\" => 5, \"image\" => \"woodenShield.png\"],\n [\"type\" => \"Charm\", \"name\" => \"Thors Snake Charm\", \"Luck\" => 2, \"price\" => 2, \"image\" => \"thorsSnakeCharm.png\"],\n [\"type\" => \"Weapon\", \"name\" => \"Sword\", \"Damage\" => \"4\", \"price\" => 9, \"image\" => \"kidsSword.png\"],\n ];\n\n }", "public function info()\n {\n $class = str_replace('hook_pointstore_', '', strtolower(get_class($this)));\n\n $items = array();\n\n $rows = $GLOBALS['SITE_DB']->query_select('pstore_customs', array('*'), array('c_enabled' => 1));\n\n foreach ($rows as $i => $row) {\n $rows[$i]['_title'] = get_translated_text($row['c_title']);\n }\n sort_maps_by($rows, '_title');\n\n foreach ($rows as $row) {\n if ($row['c_one_per_member'] == 1) {\n // Test to see if it's been bought\n $test = $GLOBALS['SITE_DB']->query_select_value_if_there('sales', 'id', array('purchasetype' => 'PURCHASE_CUSTOM_PRODUCT', 'details2' => strval($rows[0]['id']), 'memberid' => get_member()));\n if (!is_null($test)) {\n continue;\n }\n }\n\n $next_url = build_url(array('page' => '_SELF', 'type' => 'action', 'id' => $class, 'sub_id' => $row['id']), '_SELF');\n $just_row = db_map_restrict($row, array('id', 'c_description'));\n $items[] = do_template('POINTSTORE_' . strtoupper($class), array('NEXT_URL' => $next_url, 'TITLE' =>$row['_title'], 'DESCRIPTION' => get_translated_tempcode('pstore_customs', $just_row, 'c_description')));\n }\n return $items;\n }", "public function allprices() {\n $this->viewBuilder()->layout('default');\n \n \n $this->loadModel('Medicines');\n $this->loadModel('MedicineQuestions');\n $this->loadModel('QuestionCheckboxes');\n $this->loadModel('Orders');\n $this->loadModel('Orderdetails');\n $this->loadModel('Treatments');\n $this->loadModel('Pilprices');\n $this->loadModel('Pils');\n $this->loadModel('Reviews'); \n \n \n $treatment = $this->Treatments->find()\n ->select(['id','name','slug'])\n ->contain(['Pils' => function($q) { return $q->select(['Pils.id','Pils.tid','Pils.title','Pils.quantity','Pils.cost']); }])\n ->where(['Treatments.is_active' => 1])\n ->all()->toArray(); \n\n //pr($treatment); exit;\n\n $this->set(compact('treatment'));\n $this->set('_serialize', ['treatment']); \n \n \n }", "function toppings()\n {\n $toppings = [];\n\n foreach( $this->xml->toppings->topping as $topping )\n {\n $toppings[] = (string) $topping;\n }\n\n return $toppings;\n }", "public function run()\n {\n $orders = [\n [\n 'name' => 'Mattia',\n 'lastname' => 'Rossato',\n 'email' => '[email protected]',\n 'address' => 'via Levanto 50',\n 'phone_number' => '334 335666777',\n 'total' => 27,\n 'created_at' => date(\"2021-02-20\")\n ],\n [\n 'name' => 'Andrea',\n 'lastname' => 'Bianchi',\n 'email' => '[email protected]',\n 'address' => 'via Montemario 17',\n 'phone_number' => '+39 36675898563',\n 'total' => 35,\n 'created_at' => date(\"2021-01-20\")\n ],\n [\n 'name' => 'Antonio',\n 'lastname' => 'Mancini',\n 'email' => '[email protected]',\n 'address' => 'via Cassia 17',\n 'phone_number' => '+39 368686858563',\n 'total' => 20,\n 'created_at' => date(\"2021-01-02\")\n ],\n [\n 'name' => 'Mattia',\n 'lastname' => 'Mattei',\n 'email' => '[email protected]',\n 'address' => 'via Cassia 120',\n 'phone_number' => '+39 366888863',\n 'total' => 22,\n 'created_at' => date(\"2021-01-12\")\n ],\n [\n 'name' => 'Riccardo',\n 'lastname' => 'De Santis',\n 'email' => '[email protected]',\n 'address' => 'via Cassia 1020',\n 'phone_number' => '+39 368686888863',\n 'total' => 28,\n 'created_at' => date(\"2021-02-15\")\n ],\n [\n 'name' => 'Marco',\n 'lastname' => 'Marcelli',\n 'email' => '[email protected]',\n 'address' => 'via Camilluccia 100',\n 'phone_number' => '+39 363333863',\n 'total' => 15,\n 'created_at' => date(\"2021-05-13\")\n ],\n [\n 'name' => 'Mattia',\n 'lastname' => 'Rossato',\n 'email' => '[email protected]',\n 'address' => 'via Levanto 50',\n 'phone_number' => '334 335666777',\n 'total' => 27,\n 'created_at' => date(\"2021-04-20\")\n ],\n [\n 'name' => 'Andrea',\n 'lastname' => 'Bianchi',\n 'email' => '[email protected]',\n 'address' => 'via Montemario 17',\n 'phone_number' => '+39 36675898563',\n 'total' => 35,\n 'created_at' => date(\"2021-01-20\")\n ],\n [\n 'name' => 'Antonio',\n 'lastname' => 'Mancini',\n 'email' => '[email protected]',\n 'address' => 'via Cassia 17',\n 'phone_number' => '+39 368686858563',\n 'total' => 20,\n 'created_at' => date(\"2021-04-02\")\n ],\n [\n 'name' => 'Mattia',\n 'lastname' => 'Mattei',\n 'email' => '[email protected]',\n 'address' => 'via Cassia 120',\n 'phone_number' => '+39 366888863',\n 'total' => 22,\n 'created_at' => date(\"2021-01-12\")\n ],\n [\n 'name' => 'Antonio',\n 'lastname' => 'Franchi',\n 'email' => '[email protected]',\n 'address' => 'via Cassia 10',\n 'phone_number' => '+39 36333863',\n 'total' => 40,\n 'created_at' => date(\"2021-03-18\")\n ],\n [\n 'name' => 'Marco',\n 'lastname' => 'Marcelli',\n 'email' => '[email protected]',\n 'address' => 'via Cortina 100',\n 'phone_number' => '+39 388833863',\n 'total' => 25,\n 'created_at' => date(\"2021-02-13\")\n ],\n\n\n [\n 'name' => 'Andrea',\n 'lastname' => 'Frattali',\n 'email' => '[email protected]',\n 'address' => 'via Montemario 50',\n 'phone_number' => '334 37686906777',\n 'total' => 24,\n 'created_at' => date(\"2021-04-20\")\n ],\n [\n 'name' => 'Andrea',\n 'lastname' => 'Bianchi',\n 'email' => '[email protected]',\n 'address' => 'via Montemario 17',\n 'phone_number' => '+39 36675898563',\n 'total' => 35,\n 'created_at' => date(\"2021-04-20\")\n ],\n [\n 'name' => 'Antonio',\n 'lastname' => 'Mancini',\n 'email' => '[email protected]',\n 'address' => 'via Cassia 17',\n 'phone_number' => '+39 368686858563',\n 'total' => 20,\n 'created_at' => date(\"2021-01-02\")\n ],\n [\n 'name' => 'Mattia',\n 'lastname' => 'Mattei',\n 'email' => '[email protected]',\n 'address' => 'via Cassia 120',\n 'phone_number' => '+39 366888863',\n 'total' => 22,\n 'created_at' => date(\"2021-01-12\")\n ],\n [\n 'name' => 'Riccardo',\n 'lastname' => 'De Santis',\n 'email' => '[email protected]',\n 'address' => 'via Cassia 1020',\n 'phone_number' => '+39 368686888863',\n 'total' => 28,\n 'created_at' => date(\"2021-02-15\")\n ],\n [\n 'name' => 'Marco',\n 'lastname' => 'Marcelli',\n 'email' => '[email protected]',\n 'address' => 'via Camilluccia 100',\n 'phone_number' => '+39 363333863',\n 'total' => 15,\n 'created_at' => date(\"2021-05-13\")\n ],\n [\n 'name' => 'Mattia',\n 'lastname' => 'Rossato',\n 'email' => '[email protected]',\n 'address' => 'via Levanto 50',\n 'phone_number' => '334 335666777',\n 'total' => 27,\n 'created_at' => date(\"2021-03-20\")\n ],\n [\n 'name' => 'Andrea',\n 'lastname' => 'Bianchi',\n 'email' => '[email protected]',\n 'address' => 'via Montemario 17',\n 'phone_number' => '+39 36675898563',\n 'total' => 35,\n 'created_at' => date(\"2021-0-20\")\n ],\n [\n 'name' => 'Antonio',\n 'lastname' => 'Mancini',\n 'email' => '[email protected]',\n 'address' => 'via Cassia 17',\n 'phone_number' => '+39 368686858563',\n 'total' => 20,\n 'created_at' => date(\"2021-02-22\")\n ],\n [\n 'name' => 'Mattia',\n 'lastname' => 'Mattei',\n 'email' => '[email protected]',\n 'address' => 'via Cassia 120',\n 'phone_number' => '+39 366888863',\n 'total' => 22,\n 'created_at' => date(\"2021-06-12\")\n ],\n [\n 'name' => 'Antonio',\n 'lastname' => 'Franchi',\n 'email' => '[email protected]',\n 'address' => 'via Cassia 10',\n 'phone_number' => '+39 36333863',\n 'total' => 40,\n 'created_at' => date(\"2021-03-18\")\n ],\n [\n 'name' => 'Marco',\n 'lastname' => 'Marcelli',\n 'email' => '[email protected]',\n 'address' => 'via Cortina 100',\n 'phone_number' => '+39 388833863',\n 'total' => 25,\n 'created_at' => date(\"2021-05-13\")\n ],\n\n \n\n ];\n\n \n foreach ($orders as $order) {\n $plates = Plate::all();\n \n $newOrder = new Order();\n $newOrder->name = $order['name'];\n $newOrder->lastname = $order['lastname'];\n $newOrder->email = $order['email'];\n $newOrder->phone_number = $order['phone_number'];\n $newOrder->total = $order['total'];\n $newOrder->created_at = $order['created_at'];\n $newOrder->address = $order['address'];\n\n $newOrder->save();\n\n $newOrder->plates()->attach($plates[rand(5, 19)]);\n\n\n }\n\n }", "public function getSalesList(){\n\t\n $registry = Zend_Registry::getInstance();\n\t\t$DB = $registry['DB'];\n\t\t\n $sql = \"SELECT sales_id,sales_comm_percentage FROM `tbl_sales_commission` where `deleted` = 0 ORDER BY sales_id DESC \";\n\t\t\n \t\t$result = $DB->fetchAssoc($sql);\n\t\treturn $result; \n\t\t\n }", "function totalSale()\r\n {\r\n //$strSQLQuery = \"SELECT SUM(TotalPrice) as OrderTotal FROM e_orders WHERE PaymentStatus=1 AND OrderStatus='Completed'\";\r\n $strSQLQuery = \"SELECT SUM((CASE when Currency='USD' then TotalPrice \r\n \t\telse TotalPrice/CurrencyValue\r\n\tEND )) as OrderTotal FROM e_orders WHERE (PaymentStatus='1' OR OrderType in('Amazon','Ebay')) AND OrderStatus in ('Completed', 'Shipped','Unshipped') \";\r\n $arrayRow = $this->query($strSQLQuery, 1);\r\n return $arrayRow[0]['OrderTotal'];\r\n }", "public function getOrders()\n {\n $response = $this->orderDesk->get( \"orders\" );\n $orders = $response[ \"orders\" ];\n $values = [];\n\n if (!empty($orders)) {\n foreach ( $orders as $order ) {\n\n $value = [\n $order[\"shipping\"][\"first_name\"],\n $order[\"shipping\"][\"last_name\"],\n $order[\"email\"],\n $order[\"shipping_method\"],\n $order[\"payment_type\"],\n $order[\"order_total\"]\n ];\n \n array_push( $values, $value );\n }\n \n $this->updateGoogleSheets( $values );\n } else {\n return $response['message'];\n }\n }", "public function fetchCoffeeShops(){\n // $endPrice = $this->_request['endPrice'] != \"undefined\" ? intval ($this->_request['endPrice']) : -1;\n \n\n $sql = \"select distinct * from coffee_shops cf join city c on cf.CityId = c.CityID \";\n // if($startPrice!=\"undefined\")\n // {\n // $sql.=\" where cf.start_price>=$startPrice \";\n // if($endPrice != -1 )\n // $sql.=\" and cf.end_price<=$endPrice\";\n // }\n $rows = $this->executeGenericDQLQuery($sql);\n $coffeeShops = array();\n for($i=0;$i<sizeof($rows);$i++)\n {\n\n\n $coffeeShops[$i]['Name'] =($rows[$i]['Name'] == null || $rows[$i]['Name'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Name'] ;\n $coffeeShops[$i]['Address'] =($rows[$i]['Address'] == null || $rows[$i]['Address'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Address'] ;\n $coffeeShops[$i]['content'] =($rows[$i]['content'] == null || $rows[$i]['content'] ==\"null\") ? \"No Data Available\" : $rows[$i]['content'] ;\n $coffeeShops[$i]['Phone1'] =($rows[$i]['Phone1'] == null || $rows[$i]['Phone1'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Phone1'] ;\n $coffeeShops[$i]['Phone2'] =($rows[$i]['Phone2'] == null || $rows[$i]['Phone2'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Phone2'] ;\n $coffeeShops[$i]['Phone3'] =($rows[$i]['Phone3'] == null || $rows[$i]['Phone3'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Phone3'] ;\n $coffeeShops[$i]['Mobile'] =($rows[$i]['Mobile'] == null || $rows[$i]['Mobile'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Mobile'] ;\n $coffeeShops[$i]['Website'] =($rows[$i]['Website'] == null || $rows[$i]['Website'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Website'] ;\n $coffeeShops[$i]['Category'] =($rows[$i]['Category'] == null) ? 0 : $rows[$i]['Category'] ;\n $coffeeShops[$i]['Facilities'] =$this->getFacilitiesByIds($rows[$i]['Facilities']);\n $coffeeShops[$i]['CityId'] =$rows[$i]['CityId'] ;\n $coffeeShops[$i]['icon_image'] =($rows[$i]['icon_image'] == null || $rows[$i]['icon_image'] ==\"null\") ? \"img/not_found.jpg\" : $rows[$i]['icon_image'] ;\n $coffeeShops[$i]['home_image'] =($rows[$i]['home_image'] == null || $rows[$i]['home_image'] ==\"null\") ? \"img/not_found.jpg\" : $rows[$i]['home_image'] ;\n \n \n \n \n }\n $this->response($this->json($coffeeShops), 200);\n\n }", "public function getSales($date){\n $totaSales = DB::select(\"select sum(amount) as amount from subscriptions where created_at like '\".$date->toDateString().\"%'\");\n return $totaSales[0]->amount;\n }", "public function getTotalItemsSold($start = '2020-01-01', $end = '2021-12-31', $source = 'internal'){\n if ($source == 'internal') {\n $this->db->query('SELECT SUM(order_quantity) as total_quantity\n FROM new_customer_orders\n WHERE ordered_at >= :start and ordered_at <= :end and order_status = \"PENDING\"\n ;');\n } else if ($source == 'external') {\n $this->db->query('SELECT SUM(order_quantity) as total_quantity\n FROM new_external_orders\n WHERE ordered_at >= :start and ordered_at <= :end and order_status = \"PENDING\"\n ;');\n }\n $this->db->bind(':start', $start);\n $this->db->bind(':end', $end);\n $row = $this->db->single();\n return $row;\n }", "public function getPurchases() {\n\t\treturn $this->response['results'] ?: [];\n\t}", "public function getTTCoffees() {\n $result = $this->_db->select('SELECT * FROM '.PREFIX.'coffee AS c\n INNER JOIN '.PREFIX.'roaster AS r ON c.roaster_id = r.roaster_id\n INNER JOIN '.PREFIX.'grower AS g ON c.grower_id = g.grower_id\n INNER JOIN '.PREFIX.'contact AS ct ON r.contact_id = ct.contact_id');\n $ttcoffees = array();\n foreach ($result as $ttcoffee) {\n $current = new \\TTCoffee($ttcoffee->coffee_id, $ttcoffee->roaster_name, $ttcoffee->roaster_logo, $ttcoffee->farm_name, $ttcoffee->farm_country, $ttcoffee->farm_region, $ttcoffee->coffee_name,\n $ttcoffee->description, $ttcoffee->retail_price, $ttcoffee->currency, $ttcoffee->bag_size, $ttcoffee->gppp, $ttcoffee->egs, $ttcoffee->url);\n $ttcoffees[] = $current;\n }\n return $ttcoffees;\n }", "public function _listTotalBoletaDate() {\n $db = new SuperDataBase();\n $query = \"CALL sp_get_report_sale_pordia('$this->dateGO')\";\n $resul = $db->executeQuery($query);\n//pkComprobante, pkMesa, estado_pago, tipoComprobante, total_tarjeta, total_efectivo, descuento, total_venta, tipo_tarjeta, pkCliente, pkMozo, fechaPago, hora_entrada, hora_salida, fecha_modificacion, idUsuario, npersonas\n $array = array();\n $total = 0;\n while ($row = $db->fecth_array($resul)) {\n $array[] = array(\"pkComprobante\" => $row['pkPediido'],\n \"pkMesa\" => $row['pkMesa'],\n \"total_venta\" => $row['total'],\n \"horaEntrada\" => $row['horaEntrada'],\n \"nmesa\" => $row['nmesa'],\n \"npersonas\" => $row['npersonas'],\n// \"tcomprobante\" => $row['tipo_comprobante'],\n \"descuento\" => $row['descuento'],\n// \"totalTarjeta\" => $row['total_tarjeta'],\n );\n// $total=$total+$row['total_venta'];\n }\n// $array[]= array('Total')\n// echo $query;\n echo json_encode($array);\n }", "function getAllOrders()\n {\n $database = new Database();\n\n $conn = $database->getConnection();\n\n $stmt = $conn->prepare(\"SELECT * FROM mfqgkhncw3r34ada.orders INNER JOIN mfqgkhncw3r34ada.order_details ON mfqgkhncw3r34ada.orders.ID=mfqgkhncw3r34ada.order_details.orders_ID ORDER BY mfqgkhncw3r34ada.orders.TOTAL_PRICE DESC\");\n\n $stmt->execute();\n\n $result = $stmt->get_result();\n\n if (!$result) {\n echo \"assume there is an error in SQL statement\";\n exit;\n }\n\n if ($result->num_rows == 0) {\n return null;\n } else {\n\n $order_array = array();\n\n while ($user = $result->fetch_assoc()) {\n array_push($order_array, $user);\n }\n return $order_array;\n }\n }", "function get_inventory($db, $seller_id)\n{\n\t$sql = 'SELECT * FROM textbooks where seller_id= :seller_id ORDER BY date_time DESC';\n\t$st = $db->prepare($sql);\n\t$st->execute(array(':seller_id'=> $seller_id));\n\t$us = $st->fetchAll();\n\treturn $us;\n}", "function find_all_sale(){\n global $db;\n $sql = \"SELECT s.id,s.qty,s.price,s.date,p.name\";\n $sql .= \" FROM sales s\";\n $sql .= \" LEFT JOIN products p ON s.product_id = p.id\";\n $sql .= \" ORDER BY s.date DESC\";\n return find_by_sql($sql);\n }", "public function getOrders()\n {\n $request = new Request;\n $request->setUrl(\"order\");\n $this->populateMetadata($request);\n $response = $this->send($request);\n if ($response->code !== 200) {\n $msg = \"Error occured when obtaining order data from the API.\";\n $this->logger->error($msg, [\"request\" => $request, \"response\" => $response]);\n throw new ShoeppingResponseException($msg);\n }\n return $response->data;\n }", "public function getCurrentHoldings($player){\n $resultset = null;\n $results = array();\n $stocks = $this->stocks->all();\n $this->db->select('Quantity, Trans, Stock, Value');\n $this->db->from('transactions t');\n $this->db->join('stocks s', 's.Code=t.Stock', 'left');\n $this->db->join('players p', 'p.Player=t.Player', 'left');\n $this->db->where('t.Player', $player);\n $query = $this->db->get();\n\n if($query->num_rows() != 0)\n {\n $resultset = $query->result_array();\n }\n\n foreach( $stocks as $item )\n {\n $results[$item->Code] = 0;\n }\n\n if ( count( $resultset ) > 0 )\n foreach( $resultset as $result )\n {\n $amount = $result[\"Quantity\"];\n $action = $result[\"Trans\"];\n $stock = $result[\"Stock\"];\n $price = $result[\"Value\"];\n\n $sign = ( $action == \"buy\" ) ? 1 : -1;\n $results[$stock] += $sign * $amount * $price;\n }\n return array($results);\n }", "public function index()\n {\n $result = Sales::join('sale_details', 'sales.id', '=', 'sale_details.sale_id')\n ->join('users', 'users.id', '=', 'sales.user_id')\n ->join('products', 'sale_details.product_id', 'products.id')\n ->select('sales.id as saleID', 'sale_details.id', 'total', 'total_discount', 'sales.date', 'amount', 'sale_details.price', 'sub_total', 'sub_discount', 'products.name')\n ->where('sales.date', date(\"Y-m-d\"))\n // ->sum('price')\n ->get();\n\n return $result;\n }", "public static function getDataByBookingId($booking_id){\n $query = self::select('booking_detail.*','services_units.name');\n $query->leftJoin('services_units','services_units.id','=','booking_detail.service_unit_id');\n\n $query->where('booking_detail.booking_id',$booking_id);\n\n return $query->first()->toArray();\n\n }", "public function _get_past_prices_details(){\n \t$past_prices = $this\n\t\t\t->past_price\n\t\t\t->select('id, price, created')\n\t\t\t->order_by('created', 'desc')\n\t\t\t->get();\n\n\t\t$values = array();\n\t\tforeach($past_prices as $past_price){\n\t\t\t$values[] = format_currency($past_price->price) . ' - ' . format_date($past_price->created, 'default_date_format');\n\t\t}\n\t\treturn ul($values);\n }", "public function index()\n\t{\n\n return $this->currentUser()\n ->returnPurchase()\n\t\t\t->with('purchase', 'product', 'supplier')\n ->orderBy('created_at', 'DESC')\n ->get()\n ->toArray();\n\t\n\t}", "public function index()\n\t{\n\t\t$items = Item::where('type', 1)->where('status',1)->count();\n\t\t// $item_kits = Item::where('type', 2)->count();\n\t\t$customers = Customer::count();\n\t\t$suppliers = Supplier::count();\n\t\t// $receivings = Receiving::count();\n\t\t// $sales = Sale::count();\n\t\t$today = Carbon::now();\n\t\t$todaym = Carbon::now();\n\t\t$last = $today->copy()->subMonth();\n\t\t// $table->whereBetween('date', [$today->startOfYear(), $today->endOfYear])\n\t\t// Ventas\n\t\t$inicio_anio= $today->startOfDay();\n\t\t$fin_anio= $today->copy()->endOfDay();\n\n\t\t$inicio_mes= $todaym->startOfMonth();\n\t\t$fin_mes= $todaym->copy()->endOfMonth();\n\n\t\t$inicio_mesa= $last->startOfMonth();\n\t\t$fin_mesa= $last->copy()->endOfMonth();\n\n\n\t\t$sales = Sale::where('cancel_bill','=','0')\n\t\t\t->almacen()\n \t->whereBetween('sale_date', [$inicio_anio, $fin_anio] )\n \t->sum('total_cost');\n\n $receivings = DB::table('receivings')->where('cancel_bill','=','0')\n ->whereBetween('date', [$inicio_anio, $fin_anio] )\n ->sum('total_cost');\n\n // $sales= $sales[0] === null ? 0 : $sales[0];\n\n\t $sales_current = Sale::where('cancel_bill','=','0')\n\t\t\t->almacen()\n \t->whereBetween('sale_date', [$inicio_mes, $fin_mes] )\n \t->sum(DB::raw('coalesce(total_cost,0)'));\n\n $receivings_current = DB::table('receivings')->where('cancel_bill','=','0')\n ->whereBetween('date', [$inicio_mes, $fin_mes] )\n ->sum(DB::raw('coalesce(total_cost,0)'));\n\n // $sales_current= $sales_current[0] === null ? 0 : $sales_current[0];\n\n\n\t\t$sales_last = Sale::where('cancel_bill','=','0')\n\t\t\t->almacen()\n\t\t\t->whereBetween('sale_date', [$inicio_mesa, $fin_mesa] )\n\t\t\t->sum('total_cost');\n\n $receivings_last = DB::table('receivings')->where('cancel_bill','=','0')\n ->whereBetween('date', [$inicio_mesa, $fin_mesa] )\n ->sum('total_cost');\n\n $credits=DB::table('credits')\n\t\t\t// ->leftJoin('detail_credits','detail_credits.id_factura','=','credits.id')\n\t\t\t->whereIn('credits.status_id',[6,7])\n \t->sum('credit_total');\n\n\t\t// $credits_paid=DB::table('credits')\n\t\t// \t->whereIn('credits.status_id',[6])\n\t\t// \t->sum('credit_total');\n\n $credits_unpaid=DB::table('credits')\n \t// ->leftJoin('detail_credits','detail_credits.id_factura','=','credits.id')\n\t\t\t->whereIn('credits.status_id',[7])\n\t\t\t->sum(DB::raw('credit_total-paid_amount'));\n\t\t// $sales_last = $sales_last[0] === null ? 0 : $sales_last[0];\n\n\t\t$credits_paid = $credits - $credits_unpaid;\n\n\n // var_dump($sales);\n // echo \"<br>\";\n // print_r($sales_current);\n // var_dump($sales_current);\n // echo \"<br>\".$sales_current.\"<br>\";\n // echo \"<br>\";\n // var_dump($sales_last);\n // exit();\n\n $parameters = App\\Parameter::first();\n\t\t$employees = User::count();\n\t\treturn view('home')\n\t\t\t->with('items', $items)\n\t\t\t// ->with('item_kits', $item_kits)\n\t\t\t->with('customers', $customers)\n\t\t\t->with('suppliers', $suppliers)\n\t\t\t->with('receivings', $receivings)\n\t\t\t\t->with('receivings_current', $receivings_current)\n\t\t\t\t->with('receivings_last', $receivings_last)\n\t\t\t->with('sales', $sales)\n ->with('sales_current', $sales_current)\n ->with('sales_last', $sales_last)\n ->with('credits', $credits)\n ->with('credits_paid', $credits_paid)\n ->with('credits_unpaid', $credits_unpaid)\n\t\t\t->with('employees', $employees);\n\t}" ]
[ "0.6344129", "0.60984975", "0.60557747", "0.60453016", "0.5764402", "0.5628634", "0.56096804", "0.5603209", "0.55735004", "0.55586267", "0.55520475", "0.55459386", "0.5516119", "0.5506285", "0.5486676", "0.5458531", "0.5452397", "0.5412941", "0.54117864", "0.54073715", "0.54036736", "0.5388641", "0.53602815", "0.53576696", "0.5352717", "0.534192", "0.53290296", "0.5319781", "0.53007066", "0.52823603", "0.52727073", "0.52669954", "0.52625996", "0.52445024", "0.5238343", "0.5233015", "0.5221907", "0.5216667", "0.5214976", "0.52121556", "0.51830316", "0.51825726", "0.5174788", "0.5172828", "0.5158352", "0.5148961", "0.51433736", "0.5140378", "0.51306546", "0.51304543", "0.51260716", "0.5123823", "0.5121276", "0.5113312", "0.5103776", "0.5102976", "0.5099055", "0.5097579", "0.50919795", "0.50903755", "0.5085237", "0.5085116", "0.5076194", "0.5074642", "0.50701183", "0.5069677", "0.5064586", "0.50574636", "0.5043393", "0.503517", "0.50310874", "0.5029448", "0.50246173", "0.5018931", "0.50156087", "0.5015133", "0.5009247", "0.5001418", "0.49992612", "0.4994545", "0.49914238", "0.49870518", "0.49853715", "0.49845275", "0.49771768", "0.4976566", "0.49741715", "0.49712706", "0.4970886", "0.49684152", "0.49615914", "0.4960553", "0.4959796", "0.49574906", "0.4951912", "0.49515375", "0.4940718", "0.49365103", "0.49360847", "0.49312216" ]
0.73986506
0
This function gets the sales info of fillings from the database. This information is stored in an array that links the filling's name and the amount purchased.
function getFillingsSalesFromDB() { $con = mysql_connect("localhost", "DBandGUI", "narwhal"); if(!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("CustomCupcakes", $con) or die('Could not select db: ' . mysql_error()); $query = "SELECT filling_Name,purchase_Amount FROM CupcakeFilling;"; $result = mysql_query($query); $finalArr = array(); while($row = mysql_fetch_array($result)) { $finalArr[$row['filling_Name']] = $row['purchase_Amount']; } mysql_close($con); return $finalArr; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function getIcingsSalesFromDB()\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t$query = \"SELECT icing_Name,purchase_Amount FROM CupcakeIcing;\";\n\n\t$result = mysql_query($query);\n\n\t$finalArr = array();\n\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$finalArr[$row['icing_Name']] = $row['purchase_Amount'];\n\t}\n\n\tmysql_close($con);\n\n\treturn $finalArr;\n}", "function getFlavorsSalesFromDB()\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t$query = \"SELECT flavor_Name,purchase_Amount FROM CupcakeFlavor;\";\n\n\t$result = mysql_query($query);\n\n\t$finalArr = array();\n\n\t// This loop iterates over the results from the query and builds it into an array that will be returned later\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$finalArr[$row['flavor_Name']] = $row['purchase_Amount'];\n\t}\n\n\tmysql_close($con);\n\n\treturn $finalArr;\n}", "function getToppingsSalesFromDB()\n{\n\t$con = mysql_connect(\"localhost\", \"DBandGUI\", \"narwhal\");\n\n\tif(!$con) { die('Could not connect: ' . mysql_error()); }\n\n\tmysql_select_db(\"CustomCupcakes\", $con) or die('Could not select db: ' . mysql_error());\n\n\t$query = \"SELECT topping_Name,purchase_Amount FROM CupcakeTopping;\";\n\n\t$result = mysql_query($query);\n\n\t$finalArr = array();\n\n\twhile($row = mysql_fetch_array($result))\n\t{\n\t\t$finalArr[$row['topping_Name']] = $row['purchase_Amount'];\n\t}\n\n\tmysql_close($con);\n\n\treturn $finalArr;\n}", "function getReportofTotal(){\r\n $inx = 0;\r\n $arrpack = array();\r\n $conn = getConnection();\r\n\r\n $stmt = $conn->prepare(\"SELECT B.idreservations, B.datebkd, G.gs_name, P.price, B.totalAmount, B.discount from packages P, booking B, guests G where B.idreservations = G.reservations_idreservations and B.packages_idpackages = P.idpackages\");\r\n \r\n $stmt->execute();\r\n\r\n $result = $stmt->get_result();\r\n\r\n if($result->num_rows > 0){\r\n while($row = $result->fetch_assoc()){\r\n\r\n $dte = $row['datebkd'];\r\n $pieces = explode(\"-\", $dte);\r\n $id = $row['idreservations'];\r\n $totString = $pieces[0] . $pieces[1] . $pieces[2] . \"-o-\" . $id;\r\n $arrpack[$inx][0] = $totString;\r\n $arrpack[$inx][1] = $row['gs_name'];\r\n $down = $row['price'];\r\n $second = $row['totalAmount'];\r\n $dic = $row['discount'];\r\n\r\n $totality = ($down*0.5) + ($second*((100 - $dic)/100));\r\n\r\n $arrpack[$inx][2] = $totality;\r\n $inx++;\r\n }\r\n }\r\n $conn->close(); \r\n\r\n return $arrpack;\r\n }", "private function _getTicketsReferentSales()\n {\n $this->loadModel('Users');\n $users = $this->Users->find('all')->toArray();\n $data = [];\n\n foreach ($users as $user) {\n $count = $this->Tickets->find('all')->where(['paid' => 1, 'user_code' => $user->code])->count();\n\n if($count > 0) {\n $data[] = [\n 'label' => $user->firstname . ' ' . $user->lastname,\n 'value' => $this->Tickets->find('all')->where(['paid' => 1, 'user_code' => $user->code])->count()\n ];\n }\n }\n\n return $data;\n }", "public function getSalesDatafields()\n {\n return array_filter($this->contactDatafields, function ($array) {\n return isset($array['context']) && $array['context'] === 'sales';\n });\n }", "function getBookingsCheckdin(){\r\n $inx = 0;\r\n $arrpack = array();\r\n $conn = getConnection();\r\n\r\n $stmt = $conn->prepare(\"SELECT B.idreservations, B.datebkd, G.gs_name, G.gs_contact, B.type, P.pax, P.pooltype, P.time, P.ratetype, B.rs_checkin, P.num_rm, P.pax_pr_rm, B.datebkd FROM guests G, booking B, packages P where G.reservations_idreservations = B.idreservations AND B.packages_idpackages = P.idpackages AND B.status LIKE 'checked'\");\r\n $stmt->execute();\r\n\r\n $result = $stmt->get_result();\r\n\r\n if($result->num_rows > 0){\r\n while($row = $result->fetch_assoc()) {\r\n $dte = $row['datebkd'];\r\n $pieces = explode(\"-\", $dte);\r\n $id = $row['idreservations'];\r\n $totString = $pieces[0] . $pieces[1] . $pieces[2] . \"-o-\" . $id;\r\n $arrpack[$inx][0] = $totString;\r\n $arrpack[$inx][1] = $row[\"idreservations\"];\r\n $arrpack[$inx][2] = $row[\"gs_name\"];\r\n $arrpack[$inx][3] = $row[\"gs_contact\"];\r\n $arrpack[$inx][4] = $row[\"type\"];\r\n $arrpack[$inx][5] = $row[\"pax\"];\r\n $arrpack[$inx][6] = $row[\"pooltype\"];\r\n $arrpack[$inx][7] = $row[\"time\"];\r\n $arrpack[$inx][8] = $row[\"ratetype\"];\r\n $arrpack[$inx][9] = $row[\"rs_checkin\"];\r\n $inx++;\r\n }\r\n }\r\n $conn->close(); \r\n return $arrpack;\r\n }", "public function getFundingInformation($toget){\n\t\t$connection=Database::getConnection();\n\t\tswitch($toget){\n\t\t\tcase 'fundingamount':\n\t\t\t\t$query=\"SELECT fundingamount FROM fundingsource\";\n\t\t\t\tbreak;\n\t\t\tcase 'spent':\n\t\t\t\t$query=\"SELECT spent FROM fundingsource\";\n\t\t\t\tbreak;\n\t\t\tcase 'obligation':\n\t\t\t\t$query=\"SELECT obligation FROM fundingsource\";\n\t\t\t\tbreak;\n\t\t\tcase 'impactfee':\n\t\t\t\t$query=\"SELECT impactfee FROM fundingsource\";\n\t\t\t\tbreak;\n\t\t\tcase 'remaining':\n\t\t\t\t$query=\"SELECT (fundingamount - spent - obligation - IFNULL(impactfee,0)) as remaining FROM fundingsource\";\n\t\t\t\tbreak;\n\t\t}\n\t\t$result_obj=\"\";\n\t\t$result_obj=$connection->query($query);\n\t\ttry{\n\t\t\twhile($result = $result_obj->fetch_array(MYSQLI_ASSOC)){\n\t\t\t\t$items[]=$result[$toget];\n\t\t\t}\n\t\t\treturn($items);\n\t\t}\n\t\tcatch(Exception $e){\n\t\t\treturn false;\n\t\t}\n\t\t\n\t}", "public function giveProductionInfo()\n {\n $a=array();\n $sql = \"SELECT \n materials.material_name as product,\n color.material_name as type,\n SUM(`injection_production`.`good_pcs`) as pcs,\n SUM(`injection_production`.`used_weight`) as used\nFROM `injection_production`\nJOIN materials ON materials.material_id = injection_production.material_id\nLEFT JOIN materials color ON color.material_id = type_id\nWHERE status_production = 0\nGROUP BY `injection_production`.material_id, type_id;\";\n if($stmt = $this->_db->prepare($sql))\n {\n $stmt->execute();\n while($row = $stmt->fetch())\n {\n $PRODUCT = $row['product'];\n $TYPE = $row['type'];\n\t\t\t\tif(empty($row['type']))\n\t\t\t\t{\n\t\t\t\t\t$TYPE = 'Transparent';\n\t\t\t\t}\n $PCS = $row['pcs'] - $row['used'] ;\n \n echo '<tr>\n <td>'. $PRODUCT .'</td>\n <td>'. $TYPE .'</td>\n <td class=\"text-right\">'. number_format($PCS,0,'.',',') .'</td>\n </tr>';\n \n $countArray=array(\"y\" => $PCS, \"label\" => $PRODUCT . ' - ' . $TYPE);\n array_push($a,$countArray);\n }\n $stmt->closeCursor();\n $x=array();\n array_push($x,$a);\n return $x;\n }\n else\n {\n echo \"<tr>\n <td>Something went wrong.</td>\n <td>$db->errorInfo</td>\n <td></td>\n <td></td>\n </tr>\";\n }\n }", "public function getSubsBilled()\n\t{\n\t $subsbilled = array();\n\t \n\t require_once JPATH_COMPONENT . '/helpers/subs.php';\n\t // Get year for subs\n\t $subsyear = SubsHelper::returnSubsYear();\n\t // Get date of subs start\n\t $substartdate = SubsHelper::returnSubsStartDate($subsyear);\n\t \n\t \n\t // Initialize variables.\n\t $db = JFactory::getDbo ();\n\t $query = $db->getQuery ( true );\n\t \n\t // Need to loop through all finance entries with date = substartdate\n\t \n\t $query->select ( '*' );\n\t $query->from ( 'finances' );\n\t //$query->where ( 'TransactionDate = ' . $substartdate );\n\t $query->where ( 'TransactionDate = \\'2019-12-01\\'' );\n\t \n\t $db->setQuery ( $query );\n\t $db->execute ();\n\t $num_rows = $db->getNumRows();\n\t //JFactory::getApplication()->enqueueMessage(JText::_('Number of rows = '.$num_rows));\n\t $subsbilled = $db->loadObjectList ();\n\t \n\t return $subsbilled;\n\t}", "function get_items_producto_lista_material_packaging($productos_seleccionados,$deposito_destino,$cantidad_maquinas)\r\n{\r\n\t$sql=\"select en_stock.id_prod_esp,cant_disp,\r\n\t precio_stock,descripcion\r\n from stock.en_stock\r\n join general.producto_especifico on producto_especifico.id_prod_esp=en_stock.id_prod_esp\r\n where en_stock.id_prod_esp in ($productos_seleccionados)\r\n \t\tand id_deposito=2\";\r\n $prod_info=sql($sql,\"<br>Error al traer los productos de packaging desde el stock<br>\") or fin_pagina();\r\n\r\n $total=0;\r\n $i=0;\r\n while (!$prod_info->EOF)\r\n {\r\n //si la cantidad disponible no es mayor o igual que la cantidad de maquinas requeridas, damos el aviso y no lo\r\n //agregamos entre las filas del PM\r\n\t if($cantidad_maquinas<=$prod_info->fields[\"cant_disp\"])\r\n\t\t { $items[$i][\"id_prod_esp\"]=$prod_info->fields[\"id_prod_esp\"];\r\n\t\t $items[$i][\"cantidad\"]=$items[$i][\"cantidad_orig\"]=$cantidad_maquinas;\r\n\r\n\t\t $items[$i][\"descripcion\"]=$prod_info->fields[\"descripcion\"];\r\n\t\t $items[$i][\"precio\"]=$prod_info->fields[\"precio_stock\"];\r\n\t\t $total++;\r\n\t\t }//de if($cantidad_maquinas<=$prod_info->fields[\"cant_disp\"])\r\n\t\t else\r\n \t echo \"<font size=2 color='red'><b>-No hay suficiente Stock disponible para el producto: \".$prod_info->fields[\"descripcion\"].\"</b></font><br>\";\r\n $i++;\r\n \t $prod_info->MoveNext();\r\n }//de while(!$prod_info->EOF)\r\n\r\n $items[\"cantidad\"]=$total;\r\n return $items;\r\n}", "public function retrieve_product_sales_report()\n\t{\n\t\t$today = date('Y-m-d');\n\t\t$this->db->select(\"a.*,b.product_name,b.product_model,c.date,c.total_amount,d.customer_name\");\n\t\t$this->db->from('invoice_details a');\n\t\t$this->db->join('product_information b','b.product_id = a.product_id');\n\t\t$this->db->join('invoice c','c.invoice_id = a.invoice_id');\n\t\t$this->db->join('customer_information d','d.customer_id = c.customer_id');\n\t\t$this->db->where('c.date',$today);\n\t\t$this->db->order_by('c.date','desc');\n\t\t$this->db->limit('500');\n\t\t$query = $this->db->get();\t\n\t\treturn $query->result_array();\n\t}", "function getBookingsToday(){\r\n $inx = 0;\r\n $arrpack = array();\r\n $conn = getConnection();\r\n\r\n $stmt = $conn->prepare(\"SELECT B.idreservations, B.datebkd, G.gs_name, G.gs_contact, B.type, P.pax, P.pooltype, P.time, P.ratetype, B.rs_checkin, P.num_rm, P.pax_pr_rm, B.datebkd FROM guests G, booking B, packages P where G.reservations_idreservations = B.idreservations AND B.packages_idpackages = P.idpackages AND B.status IS NULL order by B.datebkd desc, B.rs_checkin desc\");\r\n $stmt->execute();\r\n\r\n $result = $stmt->get_result();\r\n\r\n if($result->num_rows > 0){\r\n while($row = $result->fetch_assoc()) {\r\n $dte = $row['datebkd'];\r\n $pieces = explode(\"-\", $dte);\r\n $id = $row['idreservations'];\r\n $totString = $pieces[0] . $pieces[1] . $pieces[2] . \"-o-\" . $id;\r\n $arrpack[$inx][0] = $totString;\r\n $arrpack[$inx][1] = $row[\"idreservations\"];\r\n $arrpack[$inx][2] = $row[\"gs_name\"];\r\n $arrpack[$inx][3] = $row[\"gs_contact\"];\r\n $arrpack[$inx][4] = $row[\"type\"];\r\n $arrpack[$inx][5] = $row[\"pax\"];\r\n $arrpack[$inx][6] = $row[\"pooltype\"];\r\n $arrpack[$inx][7] = $row[\"time\"];\r\n $arrpack[$inx][8] = $row[\"ratetype\"];\r\n $arrpack[$inx][9] = $row[\"rs_checkin\"];\r\n $inx++;\r\n }\r\n }\r\n $conn->close(); \r\n return $arrpack;\r\n\t}", "private function get_costing_finish_goods($costing_id){\n $costing = Costing::with(['style'])->find($costing_id);\n $product_feature = ProductFeature::find($costing->style->product_feature_id);\n $item = [];\n\n if($product_feature->count > 1){//has sfg items\n $list = DB::select(\"SELECT\n costing_sfg_item.costing_id,\n costing_fng_item.costing_fng_id,\n costing_fng_item.fng_id,\n item_master_fng.master_code AS fng_code,\n item_master_fng.master_description AS fng_description,\n org_color_fng.color_code AS fng_color_code,\n org_color_fng.color_name AS fng_color_name,\n costing_sfg_item.costing_sfg_id,\n costing_sfg_item.sfg_id,\n item_master_sfg.master_code AS sfg_code,\n item_master_sfg.master_description AS sfg_description,\n org_color_sfg.color_code AS sfg_color_code,\n org_color_sfg.color_name AS sfg_color_name,\n org_country.country_description\n FROM\n costing_sfg_item\n INNER JOIN costing_fng_item ON costing_fng_item.costing_fng_id = costing_sfg_item.costing_fng_id\n INNER JOIN item_master AS item_master_sfg ON item_master_sfg.master_id = costing_sfg_item.sfg_id\n INNER JOIN item_master AS item_master_fng ON item_master_fng.master_id = costing_fng_item.fng_id\n INNER JOIN org_country ON org_country.country_id = costing_sfg_item.country_id\n INNER JOIN org_color AS org_color_fng ON org_color_fng.color_id = costing_fng_item.fng_color_id\n INNEr JOIN org_color AS org_color_sfg ON org_color_sfg.color_id = costing_sfg_item.sfg_color_id\n WHERE costing_sfg_item.costing_id = ?\", [$costing_id]);\n }\n else {//no sfg items\n $list = DB::select(\"SELECT\n costing_fng_item.costing_id,\n costing_fng_item.costing_fng_id,\n costing_fng_item.fng_id,\n item_master.master_code AS fng_code,\n item_master.master_description AS fng_description,\n org_color.color_code AS fng_color_code,\n org_color.color_name AS fng_color_name,\n 0 AS costing_sfg_id,\n 0 AS sfg_id,\n '' AS sfg_code,\n '' AS sfg_description,\n '' AS sfg_color_code,\n '' AS sfg_color_name,\n org_country.country_description\n FROM\n costing_fng_item\n INNER JOIN item_master ON item_master.master_id = costing_fng_item.fng_id\n INNER JOIN org_country ON org_country.country_id = costing_fng_item.country_id\n INNER JOIN org_color ON org_color.color_id = costing_fng_item.fng_color_id\n WHERE costing_fng_item.costing_id = ?\", [$costing_id]);\n }\n\n return $list;\n }", "public static function get_fee()\n {\n $sql = \"SELECT F_FeeID_pk, F_Code, F_Description, F_Fee, F_AreaID_ind_fk FROM t_Fee ORDER BY F_Code ASC\";\n $stmt = \\NMI::Db()->prepare($sql);\n $stmt->execute();\n return $stmt->fetchAll();\n }", "public function billinfo()\n {\n\n $data = filter_input(INPUT_POST, 'val');\n $date = \\Illuminate\\Support\\Facades\\DB::table('patients')->where('id',$data)->lists('created_at');\n $bedcharges = \\Illuminate\\Support\\Facades\\DB::table('consumptions')->where('patient_id',$data)->lists('bed') ;\n $roomcharges = \\Illuminate\\Support\\Facades\\DB::table('consumptions')->where('patient_id',$data)->lists('room') ;\n $operationcharges = \\Illuminate\\Support\\Facades\\DB::table('consumptions')->where('patient_id',$data)->lists('operation') ;\n $medicinecharges = \\Illuminate\\Support\\Facades\\DB::table('consumptions')->where('patient_id',$data)->lists('medicine') ;\n $mealcharges = \\Illuminate\\Support\\Facades\\DB::table('consumptions')->where('patient_id',$data)->lists('meal') ;\n echo json_encode(array($date,$bedcharges,$roomcharges,$operationcharges,$medicinecharges,$mealcharges));\n//\n// echo json_encode($roomcharges);\n// echo json_encode($operationcharges);\n// echo json_encode($medicinecharges);\n// echo json_encode($mealcharges);\n return;\n }", "public function getSupplierData(){\n\n\t\t$supperDataSQL = \"select * FROM\n\t\t\t\t\t\t(\n\t\t\t\t\t\t\tSELECT *,\n\t\t\t\t\t\t\t(SELECT COUNT(inward_id) FROM inward AS inw WHERE inw.legal_entity_id=l.legal_entity_id) AS 'TotalGRN'\n\t\t\t\t\t\t\tFROM legal_entities AS l\n\t\t\t\t\t\t\tWHERE legal_entity_type_id='1002' AND is_posted=0\n\t\t\t\t\t\t) AS innertbl WHERE TotalGRN>0\";\n\n\t\t$supperData = DB::select(DB::raw($supperDataSQL));\n\n\t\t/*$supperData = DB::table('legal_entities_live')\n\t\t\t\t\t->where(\"legal_entity_type_id\",\"=\",\"1002\")\n\t\t\t\t\t->where('is_posted', '=', '0')\n\t\t\t\t\t->get();*/\n\n\t\treturn $supperData;\n\n\t}", "protected function _getItemsData()\n {\n $data = array();\n $status = $this->_getCount();\n if (isset($status['yes']) && $status['yes'] > 0) {\n $data[] = array(\n 'label' => Mage::helper('vs7_saleattribute')->__('Sale'),\n 'value' => 1,\n 'count' => isset($status['yes']) ? $status['yes'] : 0,\n );\n }\n\n return $data;\n }", "function get_contact_supplier_info($acc_s_id) {\n\t# Dim some Vars\n\t\tglobal $_DBCFG, $db_coin;\n\t\t$_cinfo = array(\"s_id\" => 0, \"s_name_first\" => '', \"s_name_last\" => '', \"s_company\" => '', \"s_email\" => '');\n\n\t# Set Query for select and execute\n\t\t$query\t = 'SELECT s_id, s_name_first, s_name_last, s_company, s_email FROM '.$_DBCFG['suppliers'];\n\t\t$query\t.= ' WHERE s_id='.$acc_s_id.' ORDER BY s_company ASC, s_name_last ASC, s_name_first ASC';\n\t\t$result\t= $db_coin->db_query_execute($query);\n\t\tIF ($db_coin->db_query_numrows($result)) {\n\t\t\twhile(list($s_id, $s_name_first, $s_name_last, $s_company, $s_email) = $db_coin->db_fetch_row($result)) {\n\t\t\t\t$_cinfo['s_id']\t\t= $s_id;\n\t\t\t\t$_cinfo['s_name_first']\t= $s_name_first;\n\t\t\t\t$_cinfo['s_name_last']\t= $s_name_last;\n\t\t\t\t$_cinfo['s_company']\t= $s_company;\n\t\t\t\t$_cinfo['s_email']\t\t= $s_email;\n\t\t\t}\n\t\t}\n\t\treturn $_cinfo;\n}", "function get_billed_parts() {\n\t\t// exit;\n\t\t$this->job_card_model->_table = 'view_service_billing_parts';\n\n\t\t$where['jobcard_group'] = $this->input->get('jobcard_group');\n\n\t\t$rows = $this->job_card_model->find_all($where);\n\n\t\tforeach ($rows as $key => $value) {\n\t\t\t$rows[$key]->has_billed = 1;\n\t\t}\n\n\t\t$total = count($rows);\n\t\techo json_encode(array('total' => $total, 'rows' => $rows));\n\t}", "public function get_data() {\n\n\t\t$data = array();\n\t\t$i = 0;\n\t\t// Payment query.\n\t\t$payments = give_get_payments( $this->get_donation_argument() );\n\n\t\tif ( $payments ) {\n\n\t\t\tforeach ( $payments as $payment ) {\n\n\t\t\t\t$columns = $this->csv_cols();\n\t\t\t\t$payment = new Give_Payment( $payment->ID );\n\t\t\t\t$payment_meta = $payment->payment_meta;\n\t\t\t\t$address = $payment->address;\n\n\t\t\t\t// Set columns.\n\t\t\t\tif ( ! empty( $columns['donation_id'] ) ) {\n\t\t\t\t\t$data[ $i ]['donation_id'] = $payment->ID;\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['seq_id'] ) ) {\n\t\t\t\t\t$data[ $i ]['seq_id'] = Give()->seq_donation_number->get_serial_code( $payment->ID );\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['title_prefix'] ) ) {\n\t\t\t\t\t$data[ $i ]['title_prefix'] = ! empty( $payment->title_prefix ) ? $payment->title_prefix : '';\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['first_name'] ) ) {\n\t\t\t\t\t$data[ $i ]['first_name'] = isset( $payment->first_name ) ? $payment->first_name : '';\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['last_name'] ) ) {\n\t\t\t\t\t$data[ $i ]['last_name'] = isset( $payment->last_name ) ? $payment->last_name : '';\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['email'] ) ) {\n\t\t\t\t\t$data[ $i ]['email'] = $payment->email;\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['company'] ) ) {\n\t\t\t\t\t$data[ $i ]['company'] = empty( $payment_meta['_give_donation_company'] ) ? '' : str_replace( \"\\'\", \"'\", $payment_meta['_give_donation_company'] );\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['address_line1'] ) ) {\n\t\t\t\t\t$data[ $i ]['address_line1'] = isset( $address['line1'] ) ? $address['line1'] : '';\n\t\t\t\t\t$data[ $i ]['address_line2'] = isset( $address['line2'] ) ? $address['line2'] : '';\n\t\t\t\t\t$data[ $i ]['address_city'] = isset( $address['city'] ) ? $address['city'] : '';\n\t\t\t\t\t$data[ $i ]['address_state'] = isset( $address['state'] ) ? $address['state'] : '';\n\t\t\t\t\t$data[ $i ]['address_zip'] = isset( $address['zip'] ) ? $address['zip'] : '';\n\t\t\t\t\t$data[ $i ]['address_country'] = isset( $address['country'] ) ? $address['country'] : '';\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['comment'] ) ) {\n\t\t\t\t\t$comment = give_get_donor_donation_comment( $payment->ID, $payment->donor_id );\n\t\t\t\t\t$data[ $i ]['comment'] = ! empty( $comment ) ? $comment->comment_content : '';\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['donation_total'] ) ) {\n\t\t\t\t\t$data[ $i ]['donation_total'] = give_format_amount( give_donation_amount( $payment->ID ) );\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['currency_code'] ) ) {\n\t\t\t\t\t$data[ $i ]['currency_code'] = empty( $payment_meta['_give_payment_currency'] ) ? give_get_currency() : $payment_meta['_give_payment_currency'];\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['currency_symbol'] ) ) {\n\t\t\t\t\t$currency_code = $data[ $i ]['currency_code'];\n\t\t\t\t\t$data[ $i ]['currency_symbol'] = give_currency_symbol( $currency_code, true );\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['donation_status'] ) ) {\n\t\t\t\t\t$data[ $i ]['donation_status'] = give_get_payment_status( $payment, true );\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['payment_gateway'] ) ) {\n\t\t\t\t\t$data[ $i ]['payment_gateway'] = $payment->gateway;\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['payment_mode'] ) ) {\n\t\t\t\t\t$data[ $i ]['payment_mode'] = $payment->mode;\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['form_id'] ) ) {\n\t\t\t\t\t$data[ $i ]['form_id'] = $payment->form_id;\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['form_title'] ) ) {\n\t\t\t\t\t$data[ $i ]['form_title'] = get_the_title( $payment->form_id );\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['form_level_id'] ) ) {\n\t\t\t\t\t$data[ $i ]['form_level_id'] = $payment->price_id;\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['form_level_title'] ) ) {\n\t\t\t\t\t$var_prices = give_has_variable_prices( $payment->form_id );\n\t\t\t\t\tif ( empty( $var_prices ) ) {\n\t\t\t\t\t\t$data[ $i ]['form_level_title'] = '';\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif ( 'custom' === $payment->price_id ) {\n\t\t\t\t\t\t\t$custom_amount_text = give_get_meta( $payment->form_id, '_give_custom_amount_text', true );\n\n\t\t\t\t\t\t\tif ( empty( $custom_amount_text ) ) {\n\t\t\t\t\t\t\t\t$custom_amount_text = esc_html__( 'Custom', 'give' );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t$data[ $i ]['form_level_title'] = $custom_amount_text;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$data[ $i ]['form_level_title'] = give_get_price_option_name( $payment->form_id, $payment->price_id );\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( $columns['donation_date'] ) ) {\n\t\t\t\t\t$payment_date = strtotime( $payment->date );\n\t\t\t\t\t$data[ $i ]['donation_date'] = date( give_date_format(), $payment_date );\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['donation_time'] ) ) {\n\t\t\t\t\t$payment_date = strtotime( $payment->date );\n\t\t\t\t\t$data[ $i ]['donation_time'] = date_i18n( 'H', $payment_date ) . ':' . date( 'i', $payment_date );\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['userid'] ) ) {\n\t\t\t\t\t$data[ $i ]['userid'] = $payment->user_id;\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['donorid'] ) ) {\n\t\t\t\t\t$data[ $i ]['donorid'] = $payment->customer_id;\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['donor_ip'] ) ) {\n\t\t\t\t\t$data[ $i ]['donor_ip'] = give_get_payment_user_ip( $payment->ID );\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['donation_note_private'] ) ) {\n\t\t\t\t\t$comments = Give()->comment->db->get_comments( array(\n\t\t\t\t\t\t'comment_parent' => $payment->ID,\n\t\t\t\t\t\t'comment_type' => 'donation',\n\t\t\t\t\t\t'meta_query' => array(\n\t\t\t\t\t\t\t'relation' => 'OR',\n\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t'key' => 'note_type',\n\t\t\t\t\t\t\t\t'compare' => 'NOT EXISTS',\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t'key' => 'note_type',\n\t\t\t\t\t\t\t\t'value' => 'donor',\n\t\t\t\t\t\t\t\t'compare' => '!=',\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\t$comment_html = array();\n\n\t\t\t\t\tif ( ! empty( $comments ) ) {\n\t\t\t\t\t\tforeach ( $comments as $comment ) {\n\t\t\t\t\t\t\t$comment_html[] = sprintf(\n\t\t\t\t\t\t\t\t'%s - %s',\n\t\t\t\t\t\t\t\tdate( 'Y-m-d', strtotime( $comment->comment_date ) ),\n\t\t\t\t\t\t\t\t$comment->comment_content\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\t$data[ $i ]['donation_note_private'] = implode( \"\\n\", $comment_html );\n\t\t\t\t}\n\n\t\t\t\tif ( ! empty( $columns['donation_note_to_donor'] ) ) {\n\t\t\t\t\t$comments = Give()->comment->db->get_comments( array(\n\t\t\t\t\t\t'comment_parent' => $payment->ID,\n\t\t\t\t\t\t'comment_type' => 'donation',\n\t\t\t\t\t\t'meta_query' => array(\n\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t'key' => 'note_type',\n\t\t\t\t\t\t\t\t'value' => 'donor',\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\t$comment_html = array();\n\n\t\t\t\t\tif ( ! empty( $comments ) ) {\n\t\t\t\t\t\tforeach ( $comments as $comment ) {\n\t\t\t\t\t\t\t$comment_html[] = sprintf(\n\t\t\t\t\t\t\t\t'%s - %s',\n\t\t\t\t\t\t\t\tdate( 'Y-m-d', strtotime( $comment->comment_date ) ),\n\t\t\t\t\t\t\t\t$comment->comment_content\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\t$data[ $i ]['donation_note_to_donor'] = implode( \"\\n\", $comment_html );\n\t\t\t\t}\n\n\t\t\t\t// Add custom field data.\n\t\t\t\t// First we remove the standard included keys from above.\n\t\t\t\t$remove_keys = array(\n\t\t\t\t\t'donation_id',\n\t\t\t\t\t'seq_id',\n\t\t\t\t\t'first_name',\n\t\t\t\t\t'last_name',\n\t\t\t\t\t'email',\n\t\t\t\t\t'address_line1',\n\t\t\t\t\t'address_line2',\n\t\t\t\t\t'address_city',\n\t\t\t\t\t'address_state',\n\t\t\t\t\t'address_zip',\n\t\t\t\t\t'address_country',\n\t\t\t\t\t'donation_total',\n\t\t\t\t\t'payment_gateway',\n\t\t\t\t\t'payment_mode',\n\t\t\t\t\t'form_id',\n\t\t\t\t\t'form_title',\n\t\t\t\t\t'form_level_id',\n\t\t\t\t\t'form_level_title',\n\t\t\t\t\t'donation_date',\n\t\t\t\t\t'donation_time',\n\t\t\t\t\t'userid',\n\t\t\t\t\t'donorid',\n\t\t\t\t\t'donor_ip',\n\t\t\t\t);\n\n\t\t\t\t// Removing above keys...\n\t\t\t\tforeach ( $remove_keys as $key ) {\n\t\t\t\t\tunset( $columns[ $key ] );\n\t\t\t\t}\n\n\t\t\t\t// Now loop through remaining meta fields.\n\t\t\t\tforeach ( $columns as $col ) {\n\t\t\t\t\t$field_data = get_post_meta( $payment->ID, $col, true );\n\t\t\t\t\t$data[ $i ][ $col ] = $field_data;\n\t\t\t\t\tunset( $columns[ $col ] );\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Filter to modify Donation CSV data when exporting donation\n\t\t\t\t *\n\t\t\t\t * @since 2.1\n\t\t\t\t *\n\t\t\t\t * @param array Donation data\n\t\t\t\t * @param Give_Payment $payment Instance of Give_Payment\n\t\t\t\t * @param array $columns Donation data $columns that are not being merge\n\t\t\t\t * @param Give_Export_Donations_CSV $this Instance of Give_Export_Donations_CSV\n\t\t\t\t *\n\t\t\t\t * @return array Donation data\n\t\t\t\t */\n\t\t\t\t$data[ $i ] = apply_filters( 'give_export_donation_data', $data[ $i ], $payment, $columns, $this );\n\n\t\t\t\t$new_data = array();\n\t\t\t\t$old_data = $data[ $i ];\n\n\t\t\t\t// sorting the columns bas on row\n\t\t\t\tforeach ( $this->csv_cols() as $key => $value ) {\n\t\t\t\t\tif ( array_key_exists( $key, $old_data ) ) {\n\t\t\t\t\t\t$new_data[ $key ] = $old_data[ $key ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t$data[ $i ] = $new_data;\n\n\t\t\t\t// Increment iterator.\n\t\t\t\t$i ++;\n\n\t\t\t}\n\n\t\t\t$data = apply_filters( 'give_export_get_data', $data );\n\t\t\t$data = apply_filters( \"give_export_get_data_{$this->export_type}\", $data );\n\n\t\t\treturn $data;\n\n\t\t}\n\n\t\treturn array();\n\n\t}", "public function dataForInvoice() {\n\t\t\t\n\t\t\t$data = [\n\t\t\t 'booking_reference' => $this->reference,\n\t\t\t 'booking_date' => Utility::dateTimeLocale($this->updated_at, false),\n\t\t\t 'user_booking_fullname' => $this->user_booking_fullname,\n\t\t\t 'user_booking_address' => $this->user_booking_address,\n\t\t\t 'user_booking_locality' => $this->user_booking_full_locality,\n\t\t\t 'user_booking_email' => $this->user_booking_email,\n\t\t\t 'user_booking_tax_code' => $this->user->customer->taxCode,\n\t\t\t 'apartment_owner_fullname' => $this->apartment_owner_fullname,\n\t\t\t 'apartment_owner_tax_code' => $this->apartmentOwner->customer->taxCode,\n\t\t\t 'apartment_owner_address' => $this->apartment_owner_address,\n\t\t\t 'apartment_owner_locality' => $this->apartment_owner_full_locality,\n\t\t\t 'apartment_owner_email' => $this->apartment_owner_email,\n\t\t\t 'apartment_title' => $this->apartment_title,\n\t\t\t 'apartment_price_per_night' => $this->apartment_price_per_night,\n\t\t\t 'check_in' => Utility::dateTimeLocale($this->check_in, false),\n\t\t\t 'check_out' => Utility::dateTimeLocale($this->check_out, false),\n\t\t\t 'nights_count' => Utility::diffInDays($this->check_in, $this->check_out),\n\t\t\t 'total_amount' => $this->bookingAmount(),\n\t\t\t 'has_upgrades' => $this->bookedServices()->exists(),\n\t\t\t];\n\t\t\tif ($data['has_upgrades']) {\n\t\t\t\t$data['upgrades'] = [];\n\t\t\t\tforeach ($this->bookedServices()->get() as $bookedService) {\n\t\t\t\t\t$data['upgrades'][] =\n\t\t\t\t\t [\n\t\t\t\t\t\t'name' => $bookedService->name,\n\t\t\t\t\t\t'price_per_night' => $bookedService->price_per_night,\n\t\t\t\t\t ];\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn $data;\n\t\t}", "public function getFills(): array;", "public function fetchPurchaseData()\n\t{\n\t\t$result = array('data' => array());\n\n\t\t$data = $this->model_purchase->getPurchaseData();\n\n\t\tforeach ($data as $key => $value) {\n\n\t\t\t$count_total_item = $this->model_purchase->countPurchaseItem($value['purchase_no']);\n\t\t\t// echo $count_total_item;\n\t\t\t// $date = date('Y-m-d', $value['invoice_date']);\n\t\t\t// $time = date('h:i a', $value['date_time']);\n\t\t\t$party_data = $this->model_party->getPartyData($value['party_id']);\n\n\t\t\t// $date_time = $date;\n\n\t\t\tif ($party_data['address'] == NULL) {\n\t\t\t\t$party_data['address'] = \"\";\n\t\t\t}\n\t\t\tif ($party_data['party_name'] == NULL) {\n\t\t\t\t$party_data['party_name'] = \"\";\n\t\t\t}\n\t\t\t// button\n\t\t\t$buttons = '';\n\n\n\t\t\tif (in_array('viewOrder', $this->permission)) {\n\t\t\t\t$buttons .= '<a style=\"font-size: 25px;\" target=\"__blank\" href=\"' . base_url('purchase/printDiv/' . $value['s_no'] . '/' . $value['purchase_no'] . '') . '\" class=\"btn btn-default\"><i class=\"fa fa-print\"></i></a>';\n\t\t\t}\n\n\t\t\tif (in_array('updateOrder', $this->permission)) {\n\t\t\t\t$buttons .= ' <a style=\"font-size: 25px;\" href=\"' . base_url('purchase/update/' . $value['s_no'] . '/' . $value['purchase_no'] . '') . '\" class=\"btn btn-default\"><i class=\"fa fa-pencil\"></i></a>';\n\t\t\t}\n\n\t\t\tif (in_array('deleteOrder', $this->permission)) {\n\t\t\t\t$buttons .= ' <button style=\"font-size: 25px;\" type=\"button\" class=\"btn btn-default\" onclick=\"removeFunc(' . $value['s_no'] . ', ' . $value['purchase_no'] . ')\" data-toggle=\"modal\" data-target=\"#removeModal\"><i class=\"fa fa-trash\"></i></button>';\n\t\t\t}\n\n\t\t\t// if($value['is_payment_received'] == 1) {\n\t\t\t// \t$paid_status = '<span class=\"label label-success\">Paid</span>';\t\n\t\t\t// }\n\t\t\t// else {\n\t\t\t// \t$paid_status = '<span class=\"label label-warning\">Not Paid</span>';\n\t\t\t// }\n\n\n\n\t\t\t$result['data'][$key] = array(\n\t\t\t\t$value['purchase_no'],\n\t\t\t\t$party_data['party_name'],\n\t\t\t\t$value['purchase_date'],\n\t\t\t\t$count_total_item,\n\t\t\t\t// $value['total_amount'],\n\t\t\t\t// $value['mode_of_payment'],\n\t\t\t\t$buttons\n\t\t\t);\n\t\t} // /foreach\n\n\t\techo json_encode($result);\n\t}", "public function getDebitData()\n {\n $where = \"(SELECT DATEDIFF(sales_order.`due_date`, '$this->curDate') AS days) < 14 AND sales_order.`status_paid` = 0 AND sales_order.`active` = 1\";\n $this->db->where($where);\n $this->db->from('sales_order');\n $query = $this->db->get();\n\n $data['sum'] = 0;\n $data['count'] = 0;\n\n if ($query->num_rows() > 0) {\n foreach ($query->result() as $row) {\n $data['count']++;\n $data['sum'] += ($row->grand_total - $row->paid);\n }\n }\n return $data;\n }", "function getBookings(){\r\n\t\t$inx = 0;\r\n\t\t$arrbook = array();\r\n\t\t$conn = getConnection();\r\n //These are the specific fields\r\n $stmt = $conn->prepare(\"SELECT B.idreservations, B.rs_checkin, B.rs_checkout, G.gs_name FROM booking B, guests G where G.reservations_idreservations = B.idreservations\");\r\n \r\n $stmt->execute();\r\n\r\n $result = $stmt->get_result();\r\n\r\n if($result->num_rows > 0){\r\n \twhile($row = $result->fetch_assoc()){\r\n \t\t$arrbook[$inx][0] = $row['rs_checkin'];\r\n \t\t$arrbook[$inx][1] = $row['gs_name'];\r\n \t\t$arrbook[$inx][2] = $row['rs_checkout'];\r\n $arrbook[$inx][3] = $row['idreservations'];\r\n $inx++;\r\n \t}\r\n }\r\n $conn->close(); \r\n\r\n return $arrbook;\r\n\t}", "public function facturar()\n {\n $detalle[0][\"cantidad\"] = 2;\n $detalle[0][\"unidadMedida\"] = \"UND\";\n $detalle[0][\"codigoProducto\"] = \"001-2011\";\n $detalle[0][\"descripcionProducto\"] = \"Prontuario Tributario\";\n $detalle[0][\"precioUnitario\"] = \"150\";\n $detalle[0][\"montoBruto\"] = \"300\";\n $detalle[0][\"montoDescuento\"] = \"0\";\n $detalle[0][\"importeNetoGravado\"] = \"336\";\n $detalle[0][\"detalleImpuestosIva\"] = \"36\";\n $detalle[0][\"importeExento\"] = \"0\";\n $detalle[0][\"otrosImpuestos\"] = \"0\";\n $detalle[0][\"importeOtrosImpuestos\"] = \"0\";\n $detalle[0][\"importeTotalOperacion\"] = \"336\";\n $detalle[0][\"tipoProducto\"] = \"S\";// B= BIEN, S= SERVICIO\n //-------------------------------------------------------------------------------------------------------\n $detalle[0][\"personalizado_01\"] = \"N/A\";\n $detalle[0][\"personalizado_02\"] = \"N/A\";\n $detalle[0][\"personalizado_03\"] = \"N/A\";\n $detalle[0][\"personalizado_04\"] = \"N/A\";\n $detalle[0][\"personalizado_05\"] = \"N/A\";\n $detalle[0][\"personalizado_06\"] = \"N/A\";\n //--------------------------------------- DETALLE DEL SEGUNDO PRODUCTO ----------------------------------\n $detalle[1][\"cantidad\"] = 1;\n $detalle[1][\"unidadMedida\"] = \"UND\";\n $detalle[1][\"codigoProducto\"] = \"002-2011\";\n $detalle[1][\"descripcionProducto\"] = \"Membresia 6 Meses \";\n $detalle[1][\"precioUnitario\"] = \"1750\";\n $detalle[1][\"montoBruto\"] = \"1750\";\n $detalle[1][\"montoDescuento\"] = \"0\";\n $detalle[1][\"importeNetoGravado\"] = \"1960\";\n $detalle[1][\"detalleImpuestosIva\"] = \"210\";\n $detalle[1][\"importeExento\"] = \"0\";\n $detalle[1][\"otrosImpuestos\"] = \"0\";\n $detalle[1][\"importeOtrosImpuestos\"] = \"0\";\n $detalle[1][\"importeTotalOperacion\"] = \"1960\";\n $detalle[1][\"tipoProducto\"] = \"B\";// B= BIEN, S= SERVICIO\n //-------------------------------------------------------------------------------------------------------\n $detalle[1][\"personalizado_01\"] = \"N/A\";\n $detalle[1][\"personalizado_02\"] = \"N/A\";\n $detalle[1][\"personalizado_03\"] = \"N/A\";\n $detalle[1][\"personalizado_04\"] = \"N/A\";\n $detalle[1][\"personalizado_05\"] = \"N/A\";\n $detalle[1][\"personalizado_06\"] = \"N/A\";\n\n try {\n\n $client = new SoapClient(\"https://www.ingface.net/listener/ingface?wsdl\", array(\"exceptions\" => 1));\n $resultado = $client->registrarDte(array(\"dte\" => array(\"usuario\" => \"GPAUTOS\",\n \"clave\" => \"A3C73DA00A0C49722CACA5AD7B80C6CDD41D8CD98F00B204E9800998ECF8427E\",\n \"validador\" => false,\n \"dte\" => array\n (\n \"codigoEstablecimiento\" => \"2\",\n \"idDispositivo\" => \"001\",\n \"serieAutorizada\" => \"FAC\",\n \"numeroResolucion\" => \"301620181114163\",\n \"fechaResolucion\" => \"2018-11-14\",\n \"tipoDocumento\" => \"FACE\",\n \"serieDocumento\" => \"63\",\n\n \"estadoDocumento\" => \"ACTIVO\",\n \"numeroDocumento\" => \"3\",\n \"fechaDocumento\" => \"2018-11-14\",\n \"codigoMoneda\" => \"GTQ\",\n \"tipoCambio\" => \"1\",\n \"nitComprador\" => str_replace(\"-\", \"\", \"5503407-1\"),\n \"nombreComercialComprador\" => \"CONSUMIDOR FELIZ\",\n \"direccionComercialComprador\" => \"CIUDAD\",\n \"telefonoComprador\" => \"22082208\",\n \"correoComprador\" => \"[email protected]\",\n \"regimen2989\" => false,\n \"departamentoComprador\" => \"N/A\",\n \"municipioComprador\" => \"N/A\",\n\n \"importeBruto\" => 200,\n \"importeDescuento\" => 0,\n \"importeTotalExento\" => 0,\n \"importeOtrosImpuestos\" => 0,\n \"importeNetoGravado\" => 224,\n \"detalleImpuestosIva\" => 24,\n \"montoTotalOperacion\" => 224,\n \"descripcionOtroImpuesto\" => \"N/A\",\n\n \"observaciones\" => \"N/A\",\n \"nitVendedor\" => str_replace(\"-\", \"\", \"136771-4\"),\n \"departamentoVendedor\" => \"GUATEMALA\",\n \"municipioVendedor\" => \"GUATEMALA\",\n \"direccionComercialVendedor\" => \"CIUDAD REFORMA\",\n \"NombreComercialRazonSocialVendedor\" => \"NOMBRE DELA EMPRESA, S.A\",\n \"nombreCompletoVendedor\" => \"NOMBRE DELA EMPRESA, S.A\",\n \"regimenISR\" => \"1\",\n\n \"personalizado_01\" => \"N/A\",\n \"personalizado_02\" => \"N/A\",\n \"personalizado_03\" => \"N/A\",\n \"personalizado_04\" => \"N/A\",\n \"personalizado_05\" => \"N/A\",\n \"personalizado_06\" => \"N/A\",\n \"personalizado_07\" => \"N/A\",\n \"personalizado_08\" => \"N/A\",\n \"personalizado_09\" => \"N/A\",\n \"personalizado_10\" => \"N/A\",\n \"personalizado_11\" => \"N/A\",\n \"personalizado_12\" => \"N/A\",\n \"personalizado_13\" => \"N/A\",\n \"personalizado_14\" => \"N/A\",\n \"personalizado_15\" => \"N/A\",\n \"personalizado_16\" => \"N/A\",\n \"personalizado_17\" => \"N/A\",\n \"personalizado_18\" => \"N/A\",\n \"personalizado_19\" => \"N/A\",\n \"personalizado_20\" => \"N/A\",\n\n \"detalleDte\" => $detalle\n )\n )\n )\n );\n\n if ($resultado->return->valido) {\n echo \"DTE: \" . $resultado->return->numeroDte . \"</br>\";\n echo \"CAE: \" . $resultado->return->cae . \"</br>\";\n } else {\n echo \"ERROR: \" . $resultado->return->descripcion;\n }\n } catch (SoapFault $E) {\n $objResponse->addAlert($E->faultstring);\n }\n }", "function GenrateBill($id = array(),$vid = array(),$ketObj ){\n$where = \" where kord.id = \".$id.\"\";\n$BillInfo= $ketObj->runquery( \"SELECT\", \"kord.same_productdetails,kord.mobile,kord.order_time_stamp,kord.shipping_value,kord.oaddress,kord.grossamount,kord.discount,kord.finalamount,kord.payment,kord.dis_type,kord.dis_method,kord.dis_value,kord.coupon_code,kord.tqty,ku.uname\", \"ketechord_\".$vid.\" kord INNER JOIN ketechuser ku ON ku.id = kord.userid\", array(),$where );\n\n$arrayPD = json_decode($BillInfo['0']['same_productdetails'],true);\n/*echo \"<pre>\";\nprint_r( $arrayPD );\ndie();*/\n\nif( $BillInfo['0']['dis_method'] == \"instant\" ){ \n\t\t\t\t\t\t\t$discount = $BillInfo['0']['dis_value'];\n\t\t\t\t\t }else{\n\t\t\t\t\t \t\t$discount = \"0\";\n\t\t\t\t\t }\n$finalamount = \t$BillInfo['0']['grossamount'] + $BillInfo['0']['shipping_value'] - $discount;\t\t\t\t \n\n$pdfBill = \"<table width=\\\"70%\\\">\n\t<thead>\n\t\t<th align=\\\"right\\\">\n\t\t\tBill Information\n\t\t</th>\n\t</thead>\t\n\t\n\t<tbody>\n\t\t<tr>\n\t\t\t<td><table width = \\\"100%\\\">\n\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\tNAME\n\t\t\t\t\t\t</td>\n\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\".$BillInfo['0']['uname'].\"\n\t\t\t\t\t\t</td>\n\t\t\t\t\t</tr>\n\t\t\t\t\t\n\t\t\t\t\t<tr>\n\t\t\t<td>\n\t\t\t\tADDRESS\n\t\t\t</td>\n\t\t\t<td>\n\t\t\t\t\".$BillInfo['0']['oaddress'].\"\n\t\t\t</td>\n\t\t</tr>\n\t\t\n\t\t<!--<tr>\n\t\t\t<td>\n\t\t\t\tShipping \n\t\t\t</td>\n\t\t\t<td>\n\t\t\t\t\".$BillInfo['0']['shipping_value'].\"\n\t\t\t</td>\n\t\t</tr>-->\n\t\t\n\t\t<tr>\n\t\t\t<td>\n\t\t\t\tOrder Date\n\t\t\t</td>\n\t\t\t<td>\n\t\t\t\t\".$BillInfo['0']['order_time_stamp'].\"\n\t\t</tr>\n\t\t\t</table>\n\t\t\t</td>\n\t\t\t\n\t\t\t<td><table width = \\\"100%\\\">\n\t\t\t\t<tr>\n\t\t\t\t\t<td>\n\t\t\t\t\t\tCompany Name:\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\tMYCHIRAAG\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t\t<td>\n\t\t\t\t\t\tAddress:\n\t\t\t\t\t</td>\n\t\t\t\t\t<td>\n\t\t\t\t\t\tMYCHIRAAG Address\n\t\t\t\t\t</td>\n\t\t\t </tr>\n\t\t\t\t\n\t\t\t\t</table>\n\t\t\t</td>\n\t\t</tr>\n\t\t\n\t</tbody>\n</table>\n\n<table border=\\\"1\\\" style = \\\"border-collapse:collapse;width:70%\\\">\n\t<thead>\n\t\t<tr>\t\n\t\t\t<th>\n\t\t\t\tProduct Name\n\t\t\t</th>\n\t\t\t<!--<th>\n\t\t\t\t Category\n\t\t\t</th>-->\n\t\t\t<!--<th>\n\t\t\t\tBase Price\n\t\t\t</th>-->\n\t\t\t\n\t\t\t<th>\n\t\t\t\tSell Price\n\t\t\t</th>\n\t\t\t\n\t\t\t<th>\n\t\t\t\tQty\n\t\t\t\t\n\t\t\t</th>\n\t\t\t<th>\n\t\t\t\tTotal\n\t\t\t</th>\n\t\t\t\n\t\t</tr>\t\n\t</thead>\n\t\n\t<tbody>\";\n\t\n\t$tmphold_first = \"\";\n\t\t\t\tforeach( $arrayPD['0'] as $arrayPDV ) {\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$singlePtotal = $arrayPDV['quantity']*$arrayPDV['saleprice'];\n\t\t\n\t\t$tmphold_first .= \"<tr>\n\t\t\t\t<td>\n\t\t\t\t\t \".$arrayPDV['name'].\" \n\t\t\t\t</td>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<td>\n\t\t\t\t\t\".$arrayPDV['saleprice'].\" \n\t\t\t\t</td>\n\t\t\t\t\n\t\t\t\t<td>\n\t\t\t\t\t \".$arrayPDV['quantity'].\" \n\t\t\t\t</td>\n\t\t\t\t\n\t\t\t\t<td>\n\t\t\t\t\t\".$singlePtotal.\"\n\t\t\t\t</td>\n\t\t</tr>\";\n\t\t\n\t\t\n\t\t\t\t\n\t\t\n}\n\t\t\n\t\t\n\t\t$tmphold_second = \"<tr>\n\t\t\t<td colspan=\\\"3\\\" align=\\\"right\\\">\n\t\t\t\tTotal\n\t\t\t</td>\n\t\t\t<td>\n\t\t\t\t \".$BillInfo['0']['grossamount'].\"\n\t\t\t</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td colspan=\\\"3\\\" align=\\\"right\\\">\n\t\t\t\tDiscount\n\t\t\t</td>\n\t\t\t<td>\n\t\t\t\t\n\t\t\t\t\".$discount.\"\n\t\t\t</td>\n\t\t</tr>\n\t\t\n\t\t<tr>\n\t\t\t<td colspan=\\\"3\\\" align=\\\"right\\\">\n\t\t\t\tShipping\n\t\t\t</td>\n\t\t\t<td>\n\t\t\t\t\".$BillInfo['0']['shipping_value'].\"\n\t\t\t</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td colspan=\\\"3\\\" align=\\\"right\\\">\n\t\t\t\tPayable\n\t\t\t</td>\n\t\t\t<td>\n\t\t\t\t\".$finalamount.\"\n\t\t\t</td>\n\t\t</tr>\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t</tbody>\t\n\n</table>\";\n\nreturn $pdfBill.\"\".$tmphold_first.\"\".\"\".$tmphold_second;\n}", "protected function getData()\n {\n $occupancies = (new RoomOccupancyRepository)->withoutLabel(['tent', 'free'])->byNational($this->year);\n\n $spendings = (new BillRepository)->withoutResourceLabel(['tent', 'free'])->byMonthNational($this->year);\n\n foreach ($occupancies as $occupancy) {\n $this->occ_arr[$occupancy->country][$occupancy->mth] = $occupancy->counter;\n }\n\n foreach ($spendings as $spending) {\n $this->spend_arr[$spending->country][$spending->mth] = $spending->sum;\n }\n }", "public function getMultipleData()\n\t{\n\t\t$calculatedData = $this->getCalculatedData();\n\t\t$items = [];\n\t\t$amountDealCurrencyId = \\CCrmCurrency::GetAccountCurrencyID();\n\n\t\t$config = [\n\t\t\t'title' => $this->getFormElement('label')->getValue()\n\t\t];\n\n\t\tif (!empty($calculatedData))\n\t\t{\n\t\t\t$calculateField = $this->getFormElement('calculate');\n\t\t\t$calculateValue = $calculateField ? $calculateField->getValue() : null;\n\n\t\t\t$shortModeField = $this->getFormElement('shortMode');\n\t\t\t$shortModeValue = $shortModeField ? $shortModeField->getValue() : false;\n\n\t\t\tswitch ($calculateValue)\n\t\t\t{\n\t\t\t\tcase self::WHAT_WILL_CALCULATE_DEAL_CONVERSION:\n\t\t\t\t\t$config['mode'] = 'singleData';\n\t\t\t\t\t$config['unitOfMeasurement'] = '%';\n\t\t\t\t\t$item['value'] = round($calculatedData['withoutGrouping'], 2);\n\t\t\t\t\t$item['color'] = '#9DCF00';\n\t\t\t\t\t$items[] = $item;\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\t$itemCount = 0;\n\t\t\t\t\tforeach ($calculatedData as $key => $data)\n\t\t\t\t\t{\n\n\t\t\t\t\t\tif ($key === 'amount') //TODO: optimise calculating of amount values\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t$item = [\n\t\t\t\t\t\t\t'label' => $data['title'],\n\t\t\t\t\t\t\t'value' => $data['value'],\n\t\t\t\t\t\t\t'color' => $data['color']\n\t\t\t\t\t\t];\n\n\n\n\t\t\t\t\t\tif ($calculateValue === self::WHAT_WILL_CALCULATE_DEAL_DATA_FOR_FUNNEL\n\t\t\t\t\t\t\t|| $calculateValue === self::WHAT_WILL_CALCULATE_SUCCESS_DEAL_DATA_FOR_FUNNEL\n\t\t\t\t\t\t)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tif ($this->isConversionCalculateMode())\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$item['link'] = $this->getTargetUrl('/crm/deal/analytics/list/', [\n\t\t\t\t\t\t\t\t\t'STAGE_ID_FROM_SUPPOSED_HISTORY' => $key\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$item['link'] = $this->getTargetUrl('/crm/deal/analytics/list/', [\n\t\t\t\t\t\t\t\t\t'STAGE_ID_FROM_HISTORY' => $key\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\n\t\t\t\t\t\t$config['additionalValues']['firstAdditionalValue']['titleShort'] = Loc::getMessage(\n\t\t\t\t\t\t\t'CRM_REPORT_DEAL_HANDLER_DEAL_COUNT_SHORT_TITLE'\n\t\t\t\t\t\t);\n\t\t\t\t\t\t$item['additionalValues']['firstAdditionalValue'] = [\n\t\t\t\t\t\t\t'value' => $data['value']\n\t\t\t\t\t\t];\n\n\t\t\t\t\t\tif (isset($data['additionalValues']['sum']))\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$amountDealCurrencyId = $data['additionalValues']['sum']['currencyId'];\n\t\t\t\t\t\t\t$config['additionalValues']['secondAdditionalValue']['titleShort'] = Loc::getMessage(\n\t\t\t\t\t\t\t\t'CRM_REPORT_DEAL_HANDLER_DEAL_SUM_SHORT_TITLE'\n\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t$item['additionalValues']['secondAdditionalValue'] = [\n\t\t\t\t\t\t\t\t'value' => \\CCrmCurrency::MoneyToString(\n\t\t\t\t\t\t\t\t\t$data['additionalValues']['sum']['VALUE'],\n\t\t\t\t\t\t\t\t\t$data['additionalValues']['sum']['currencyId']\n\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t'currencyId' => $data['additionalValues']['sum']['currencyId']\n\t\t\t\t\t\t\t];\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (isset($data['additionalValues']['avgSpentTime']))\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$config['additionalValues']['thirdAdditionalValue']['titleShort'] = Loc::getMessage(\n\t\t\t\t\t\t\t\t'CRM_REPORT_DEAL_HANDLER_DEAL_SPENT_TIME_SHORT_TITLE'\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t$item['additionalValues']['thirdAdditionalValue'] = [\n\t\t\t\t\t\t\t\t'value' => $this->getFormattedPassTime(\n\t\t\t\t\t\t\t\t\t$data['additionalValues']['avgSpentTime']['VALUE']\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\n\t\t\t\t\t\t$stageSemanticId = \\CCrmDeal::GetSemanticID($key);\n\t\t\t\t\t\t$config['additionalValues']['forthAdditionalValue']['titleShort'] = Loc::getMessage(\n\t\t\t\t\t\t\t'CRM_REPORT_DEAL_HANDLER_DEAL_CONVERSION_SHORT_TITLE'\n\t\t\t\t\t\t);\n\t\t\t\t\t\t$item['additionalValues']['forthAdditionalValue'] = [\n\t\t\t\t\t\t\t'title' => PhaseSemantics::isLost($stageSemanticId) ?\n\t\t\t\t\t\t\t\t\t\t\tLoc::getMessage(\"CRM_REPORT_DEAL_HANDLER_DEAL_LOSSES_SHORT_TITLE\")\n\t\t\t\t\t\t\t\t\t\t\t: Loc::getMessage(\"CRM_REPORT_DEAL_HANDLER_DEAL_CONVERSION_SHORT_TITLE\"),\n\t\t\t\t\t\t\t'value' => $calculatedData['amount']['value'] ? round(\n\t\t\t\t\t\t\t\t($data['value'] / $calculatedData['amount']['value']) * 100,\n\t\t\t\t\t\t\t\t2\n\t\t\t\t\t\t\t) : 0,\n\t\t\t\t\t\t\t'unitOfMeasurement' => '%',\n\t\t\t\t\t\t\t'helpLink' => 'someLink',\n\t\t\t\t\t\t\t'helpInSlider' => true\n\t\t\t\t\t\t];\n\t\t\t\t\t\t//hidden conversion on first column\n\t\t\t\t\t\tif ($calculateValue !== self::WHAT_WILL_CALCULATE_SUCCESS_DEAL_DATA_FOR_FUNNEL && $itemCount < 1)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tunset($item['additionalValues']['forthAdditionalValue']);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t$itemCount++;\n\n\n\n\t\t\t\t\t\t$items[] = $item;\n\t\t\t\t\t}\n\n\t\t\t\t\t$calculateField = $this->getFormElement('calculate');\n\t\t\t\t\t$calculateValue = $calculateField ? $calculateField->getValue() : null;\n\n\t\t\t\t\t$config['titleShort'] = Loc::getMessage('CRM_REPORT_DEAL_HANDLER_DEAL_COUNT_SHORT_TITLE');\n\n\t\t\t\t\t$config['valuesAmount'] = [\n\t\t\t\t\t\t'firstAdditionalAmount' => [\n\t\t\t\t\t\t\t'title' => Loc::getMessage('CRM_REPORT_DEAL_HANDLER_DEAL_SUM_SHORT_TITLE'),\n\t\t\t\t\t\t\t'value' => \\CCrmCurrency::MoneyToString(\n\t\t\t\t\t\t\t\t$calculatedData['amount']['sum'],\n\t\t\t\t\t\t\t\t$amountDealCurrencyId\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t'targetUrl' => $this->getTargetUrl('/crm/deal/analytics/list/'),\n\t\t\t\t\t\t]\n\t\t\t\t\t];\n\n\t\t\t\t\tif ($calculatedData['amount']['successPassTime'] ?? false)\n\t\t\t\t\t{\n\t\t\t\t\t\t$config['valuesAmount']['secondAdditionalAmount'] = [\n\t\t\t\t\t\t\t'title' => Loc::getMessage('CRM_REPORT_DEAL_HANDLER_DEAL_PASS_AVG_TIME_SHORT_TITLE'),\n\t\t\t\t\t\t\t'value' => $this->getFormattedPassTime($calculatedData['amount']['successPassTime'])\n\t\t\t\t\t\t];\n\t\t\t\t\t}\n\n\t\t\t\t\tswitch ($calculateValue)\n\t\t\t\t\t{\n\t\t\t\t\t\tcase self::WHAT_WILL_CALCULATE_SUCCESS_DEAL_DATA_FOR_FUNNEL:\n\t\t\t\t\t\t\t$config['topAdditionalTitle'] = Loc::getMessage(\n\t\t\t\t\t\t\t\t'CRM_REPORT_DEAL_HANDLER_DEAL_CONVERSION_SHORT_TITLE'\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t$config['topAdditionalValue'] = !empty($items[0]['additionalValues']['forthAdditionalValue']['value'])\n\t\t\t\t\t\t\t\t? $items[0]['additionalValues']['forthAdditionalValue']['value'] : 0;\n\t\t\t\t\t\t\t$config['topAdditionalValueUnit'] = '%';\n\t\t\t\t\t\t\t$config['valuesAmount']['firstAdditionalAmount']['value'] =\n\t\t\t\t\t\t\t\t($items[0]['additionalValues']['secondAdditionalValue']['value'] ?? null)\n\t\t\t\t\t\t\t;\n\t\t\t\t\t\t\t//$config['valuesAmount']['secondAdditionalAmount']['value'] =\n\t\t\t\t\t\t\t// $items[0]['additionalValues']['thirdAdditionalValue']['value']\n\t\t\t\t\t\t\t//;\n\n\t\t\t\t\t\t\tif ($shortModeValue)\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$config['mode'] = 'singleData';\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tunset($config['valuesAmount']['thirdAdditionalAmount']);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t$result = [\n\t\t\t'items' => $items,\n\t\t\t'config' => $config,\n\t\t];\n\n\t\treturn $result;\n\t}", "public function getStoreFullFillment($customerId, $aBasketProducts, $aStoreDetails) {\n $response = array(\n 'status' => false,\n 'message' => trans('messages.common_error'),\n 'data' => array()\n );\n $requestData = array(\n 'customerId' => $customerId,\n 'products' => $aBasketProducts,\n 'stores' => $aStoreDetails,\n );\n $aHeaders = array(\n 'Content-Type' => 'application/json',\n 'alchemy-transaction-id' => rand(),\n 'alchemy-request-id' => rand(),\n 'alchemy-device-type' => self::getUserDeviceType(),\n 'alchemy-auth-token' => '12345',\n );\n $requestParams = array(\n 'headers' => $aHeaders,\n 'json' => $requestData,\n );\n try {\n $client = new Client();\n $apiBaseUrl = env('FULLFILLMENT_API_URL', '');\n $apiEndpoint = $apiBaseUrl.\"/api/mapProductStore\";\n $res = $client->request('POST', $apiEndpoint, $requestParams);\n if ($res->getStatusCode() == '200') {\n $responseBody = json_decode($res->getBody(), true);\n if (isset($responseBody['status'])\n && $responseBody['status']) {\n if ($responseBody['response']['status']) {\n $response['status'] = true;\n $response['data']['mapping'] = $responseBody['response']['data']['mapping'];\n } else {\n $response['message'] = $responseBody['response']['message'];\n }\n } else {\n $response['message'] = $responseBody['message'];\n }\n } else {\n self::event(trans('messages.fullfillment_api_failure'), self::FULLFILLMENTAPI_LOG_FILE, self::DAILY);\n }\n } catch (Exception $ex) {\n self::event($ex->getMessage() . \"|\" . $ex->getFile(). \"|\" . $ex->getLine(), self::FULLFILLMENTAPI_LOG_FILE, self::DAILY);\n }\n return $response;\n }", "function &getDatas()\r\n\t{\r\n\t\t// Load the data\r\n\t\tif (empty( $this->_data )) \r\n\t\t{\r\n\t\t\t$query = ' SELECT * FROM #__hotelreservation_packages WHERE hotel_id='.$this->_hotel_id.\" ORDER BY package_name \";\r\n\t\t\t//$this->_db->setQuery( $query );\r\n\t\t\t$this->_data = &$this->_getList( $query );\r\n\t\t\t\r\n\t\t\tforeach( $this->_data as $key => $value )\r\n\t\t\t{\r\n\t\t\t\tif( $this->_data[$key]->is_price_day == false )\r\n\t\t\t\t\t$this->_data[$key]->package_type_price = 1;\r\n\t\t\t\t$this->_data[$key]->package_prices = null;\r\n\t\t\t\t$this->_data[$key]->package_prices[ $value->package_price_1 ][] = 1;\r\n\t\t\t\t$this->_data[$key]->package_prices[ $value->package_price_2 ][] = 2;\r\n\t\t\t\t$this->_data[$key]->package_prices[ $value->package_price_3 ][] = 3;\r\n\t\t\t\t$this->_data[$key]->package_prices[ $value->package_price_4 ][] = 4;\r\n\t\t\t\t$this->_data[$key]->package_prices[ $value->package_price_5 ][] = 5;\r\n\t\t\t\t$this->_data[$key]->package_prices[ $value->package_price_6 ][] = 6;\r\n\t\t\t\t$this->_data[$key]->package_prices[ $value->package_price_7 ][] = 7;\r\n\t\t\t}\r\n\t\t}\r\n\t\t\r\n\t\treturn $this->_data;\r\n\t}", "function getInfo($ID)\n{\n $result = GrabMoreData(\"SELECT origin, destination, name, pickup, dropoff, special FROM delivery WHERE ID = :ID\", array(array(\"ID\", $ID)));\n $result[0]['pickupDate'] = date('Y-m-d', $result[0]['pickup']);\n $result[0]['dropDate'] = date('Y-m-d', $result[0]['dropoff']);\n $result[0]['pickupTime'] = date('h:i A', $result[0]['pickup']);\n $result[0]['dropTime'] = date('h:i A', $result[0]['dropoff']);\n return $result[0];\n \n \n}", "function calculate_footers($data){\n\t\t$sumQty = 0.0;\n\t\t$sumSales = 0.0;\n\t\tforeach($data as $row){\n\t\t\t$sumQty += $row[3];\n\t\t\t$sumSales += $row[4];\n\t\t}\n\t\treturn array('Total',null,null,$sumQty,$sumSales);\n\t}", "public function pdf_purchase_list() {\n $this->db->select('a.*,b.supplier_name');\n $this->db->from('product_purchase a');\n $this->db->join('supplier_information b', 'b.supplier_id = a.supplier_id');\n $this->db->order_by('a.purchase_date', 'desc');\n $query = $this->db->get();\n\n $last_query = $this->db->last_query();\n if ($query->num_rows() > 0) {\n return $query->result_array();\n }\n return false;\n }", "public function fields() {\n $ID = $this->order['id'];\n $BUYCODE = $this->order['code'];\n $url = (mswSSL() == 'yes' ? str_replace('http://', 'https://', BASE_HREF) : BASE_HREF);\n $order = $this->getsale($ID, $BUYCODE);\n $params = $this->params();\n $timestamp = time();\n $name = $this->firstLastName($order->name);\n $country = $this->country($_POST['country']);\n $amount = $this->saletotal($order);\n $arr = array(\n 'x_login' => $params['login-id'],\n 'x_amount' => $amount,\n 'x_description' => $this->stripchars($this->lang[2]),\n 'x_invoice_num' => $ID,\n 'x_fp_sequence' => $ID,\n 'x_fp_timestamp' => $timestamp,\n 'x_fp_hash' => mmGateway::submissionhash($timestamp, $params, $ID, $amount),\n 'x_test_request' => ($this->settings->paymode == 'live' ? 'false' : 'true'),\n 'x_show_form' => 'PAYMENT_FORM',\n 'x_type' => 'AUTH_CAPTURE',\n 'x_first_name' => $this->stripchars($name['first-name']),\n 'x_last_name' => $this->stripchars($name['last-name']),\n 'x_address' => $this->stripchars($_POST['address1'] . ($_POST['address2'] ? ', ' . $_POST['address2'] : '')),\n 'x_email' => $this->stripchars($order->email),\n 'x_city' => $this->stripchars($_POST['city']),\n 'x_state' => $this->stripchars($_POST['county']),\n 'x_zip' => $this->stripchars($_POST['postcode']),\n 'x_country' => $this->stripchars($country->name),\n 'x_ship_to_first_name' => $this->stripchars($name['first-name']),\n 'x_ship_to_last_name' => $this->stripchars($name['last-name']),\n 'x_ship_to_address' => $this->stripchars($_POST['address1'] . ($_POST['address2'] ? ', ' . $_POST['address2'] : '')),\n 'x_ship_to_city' => $this->stripchars($_POST['city']),\n 'x_ship_to_state' => $this->stripchars($_POST['county']),\n 'x_ship_to_zip' => $this->stripchars($_POST['postcode']),\n 'x_ship_to_country' => $this->stripchars($country->name),\n 'x_relay_response' => 'false',\n 'x_cancel_url' => $url . $this->seo->url('cancel', array(), 'yes'),\n 'x_receipt_method' => 'POST',\n 'x_receipt_link_text' => $this->stripchars(str_replace('{store}', $this->settings->website, $this->lang[5])),\n 'x_receipt_link_url' => $url . 'index.php?gw=' . $ID . '-' . $BUYCODE\n );\n // Only include currency code for live server..\n // Seems to throw errors for test server..\n // If this throws (99) errors on live, uncomment..\n if ($this->settings->paymode == 'live') {\n $arr['x_currency_code'] = (in_array($this->settings->currency, array(\n 'USD',\n 'GBP',\n 'CAD',\n 'EUR'\n )) ? $this->settings->currency : 'USD');\n }\n return $arr;\n }", "private static function _getAdditionalFeeTextBidder($listing)\n {\n //display any optional fields that add to the cost.\n $additional_fees = array ( 'total' => 0);\n $message_data = '';\n $db = DataAccess::getInstance();\n $msgs = $db->get_text(true);\n $pre = $listing->precurrency;\n $post = $listing->postcurrency;\n for ($i = 1; $i < 21; $i++) {\n //go through all the optional fields, see if they add cost, and if they do,\n //see if the value actually adds any cost (not 0 or blank field)\n $option = 'optional_field_' . $i;\n $userId = $listing->seller;\n $groupId = ($userId) ? geoUser::getUser($userId)->group_id : 0;\n\n $fields = geoFields::getInstance($groupId, $listing->category);\n if ($fields->$option->field_type == 'cost' && $listing->$option > 0) {\n //this optional field needs to be displayed.\n $additional_fees[$i] = geoString::displayPrice($listing->$option, $pre, $post);\n $additional_fees['total'] += $listing->$option;\n }\n }\n if ($additional_fees['total'] > 0) {\n //there are additional costs to display!\n $message_data .= $msgs[500041] . \"\\n\";\n foreach ($additional_fees as $key => $cost) {\n //go through all the additional costs and display them\n if ($key != 'total') {\n //don't display the total twice!\n $message_data .= $cost . \"\\n\";\n }\n }\n //display the additional fee total.\n $message_data .= $msgs[500042] . geoString::displayPrice($additional_fees['total'], $pre, $post) . \"\\n\\n\";\n //display the grand total\n $grand_total = $listing->current_bid + $additional_fees['total'];\n $grand_total = geoString::displayPrice($grand_total, $pre, $post);\n $message_data .= $msgs[500043] . $grand_total . \"\\n\\n\";\n //display the additional fee disclaimer\n $message_data .= $msgs[500044] . \"\\n\\n\";\n }\n return $message_data;\n }", "public function get_restaurant_list_fees () {\n\t\t\n\t\t$restaurantIDString = $this->get_param('post.restaurant_id_list');\n\t\t$deliveryRegionID = $this->get_param('post.delivery_region_id');\n\t\t\n\t\t$extraFee = M('restaurant')\n\t\t\t->where('`id` in (' . $restaurantIDString . ')')\n\t\t\t->field('sum(`extra_fee`) as extra_fee')\n\t\t\t->find();\n\t\t\n\t\tif (!$extraFee) {\n\t\t\t$extraFee = \"0\";\n\t\t} else {\n\t\t\t$extraFee = $extraFee['extra_fee'];\n\t\t}\n\t\t\n\t\t\n\t\t$deliveryFee = M('restaurant_deliver_fee')\n\t\t\t->where(\"`region_id` = $deliveryRegionID and `restaurant_id` in ( $restaurantIDString ) \")\n\t\t\t->select();\n\t\t\n\t\t$this->return_data(['extra_fee' => $extraFee, 'delivery_fee' => $deliveryFee]);\n\t}", "function getStocksPurchases($mysqli,$sale_id){\n\t$query = \"SELECT stocks.description,subsales.price_per_ton,subsales.quantity,subsales.subtotal FROM sales INNER join subsales ON sales.id = subsales.sale_id INNER JOIN stocks ON stocks.id = subsales.stock_id WHERE sales.id = '$sale_id'\";\n\n\tif($result = mysqli_query($mysqli,$query)){\n\t\treturn $result ;\n\t}\n\telse{\n\t\tprintf(\"Notice: %s\", mysqli_error($mysqli));\n\t}\n\t\n}", "public function getFeedReport($from,$to,$choice,$sparray)\r\n\t\t{\r\n\t\t\t\t$link = $this->connect();\r\n\t\t\t\t$f_arr = array();\r\n\t\t\t\tforeach ($sparray as $var) {\r\n\t\t\t\t\t$query = \" SELECT DISTINCT\r\n\t\t\t\t\t\t\t\tft.quantity,\r\n\t\t\t\t\t\t\t\tft.unit,\r\n\t\t\t\t\t\t\t\tft.date_given,\r\n\t\t\t\t\t\t\t\tft.time_given,\r\n\t\t\t\t\t\t\t\tft.pig_id,\r\n\t\t\t\t\t\t\t\tft.prod_date,\r\n\t\t\t\t\t\t\t\tf.feed_name,\r\n\t\t\t\t\t\t\t\tf.feed_type\r\n\t\t\t\t\t\t\t\tFROM feed_transaction ft \r\n\t\t\t\t\t\t\t\tINNER JOIN feeds f on\r\n\t\t\t\t\t\t\t\t\tft.feed_id = f.feed_id\r\n\t\t\t\t\t\t\t\tWHERE ft.pig_id = '\" . $var . \"' and \r\n\t\t\t\t\t\t\t\tft.date_given BETWEEN '\".$from.\"' and '\".$to.\"'\";\r\n\t\t\t\t\t$result = mysqli_query($link, $query);\r\n\t\t\t\t\t$f = array();\r\n\t\t\t\t\t\r\n\t\t\t\t\twhile($row = mysqli_fetch_row($result)){\r\n\t\t\t\t\t\t$f['Pig_id'] = $row[4];\r\n\t\t\t\t\t\t$date = date_create($row[2]);\r\n\t\t\t\t\t\t$f['Date_given'] = $date->format('F j,Y');\r\n\t\t\t\t\t\t$f['Time_given'] = $row[3];\r\n\t\t\t\t\t\t$f['Quantity'] = $row[0];\r\n\t\t\t\t\t\t$f['Unit'] = $row[1];\r\n\t\t\t\t\t\t$date2 = date_create($row[5]);\r\n\t\t\t\t\t\t$f['Production_Date'] = $date2->format('F j,Y');\r\n\t\t\t\t\t\t$f['Feed_name'] = $row[6];\r\n\t\t\t\t\t\t$f['Feed_type'] = $row[7];\r\n\t\t\t\t\t\t$f_arr[] = $f;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\t/*$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\feed_reports\\\\feed_reports.json', 'w');\r\n\t\t\t\tfwrite($fp, json_encode($f_arr,JSON_PRETTY_PRINT));\r\n\t\t\t\tfclose($fp);\r\n\t\t\t\treturn $f_arr;*/\r\n\t\t\t\tif($choice == 'batch'){\r\n\t\t\t\t\t$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\feed_reports\\\\ftrans_details_perbatch.json', 'w');\r\n\t\t\t\t}else if($choice == 'house'){\r\n\t\t\t\t\t$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\feed_reports\\\\ftrans_details_perhouse.json', 'w');\r\n\t\t\t\t}else if($choice == 'pen'){\r\n\t\t\t\t\t$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\feed_reports\\\\ftrans_details_perpen.json', 'w');\r\n\t\t\t\t}else if($choice == 'pig'){\r\n\t\t\t\t\t$fp = fopen(getenv(\"HOMEDRIVE\") . getenv(\"HOMEPATH\").'\\\\Desktop\\\\reports\\\\feed_reports\\\\ftrans_details_perpig.json', 'w');\r\n\t\t\t\t}\r\n\t\t\t\tfwrite($fp, json_encode($f_arr,JSON_PRETTY_PRINT));\r\n\t\t\t\tfclose($fp);\r\n\t\t\t\treturn $f_arr;\r\n\t\t\t\t\r\n\t\t}", "public function foods_data() {\r\n\r\n if(isset($_POST['request'])) {\r\n $request = $_POST['request'];\r\n $conn = $this->conn();\r\n $sql = \"SELECT * FROM foods where category='$request' ORDER BY sales DESC\";\r\n $stmt = $conn->prepare($sql);\r\n $stmt->execute();\r\n $getData = $stmt->fetchAll();\r\n $result = $stmt->rowCount();\r\n\r\n if($result > 0) {\r\n return $getData;\r\n }\r\n }\r\n \r\n }", "public function getSalesList(){\n\t\n $registry = Zend_Registry::getInstance();\n\t\t$DB = $registry['DB'];\n\t\t\n $sql = \"SELECT sales_id,sales_comm_percentage FROM `tbl_sales_commission` where `deleted` = 0 ORDER BY sales_id DESC \";\n\t\t\n \t\t$result = $DB->fetchAssoc($sql);\n\t\treturn $result; \n\t\t\n }", "public function getSaleData($conditions,$fields) {\t\r\n return $this->find('all', array('fields' => $fields,'conditions'=>$conditions));\r\n }", "function getFromDbBarber($mysqli){\n\n //create array to save the price 2d\n $array_barber_fun = array(array());\n\n\n $sqlBarber = \"SELECT name,lastname,email,male,age,workThere FROM Barber \";\n\n $resultBarber = $mysqli->query($sqlBarber);\n\n\n\n $i = 1 ;\n\n if ($resultBarber->num_rows > 0) {\n // output data of each row\n while($row = $resultBarber->fetch_assoc()) {\n\n if (strcmp(\"Y\", $row[\"workThere\"]) === 0){\n $array_barber_fun[$i][0] = $row[\"name\"];\n $array_barber_fun[$i][1] = $row[\"lastname\"];\n $array_barber_fun[$i][2] = $row[\"email\"];\n $array_barber_fun[$i][3] = $row[\"male\"];\n $array_barber_fun[$i][4] = $row[\"age\"];\n $array_barber_fun[$i][5] = $row[\"workThere\"];\n\n $i = $i +1 ;\n }\n\n\n }\n }\n\n $array_barber_fun[0][0] = $i - 1 ;\n\n return $array_barber_fun ;\n\n\n}", "function get_biz_totals($con, $query){\n $result = mysqli_query($con, $query);\n $data = array();\n while ($row = mysqli_fetch_array($result)) {\n $data[] = array(\n 'id' => $row['id'],\n 'total' => $row['total'],\n 'auto' => filter_var($row['auto'], FILTER_VALIDATE_BOOLEAN),\n 'capacity' => $row['capacity']\n );\n }\n return $data;\n}", "public function get_ff()\n\t{\n\t\t$ff = array();\n\t\t\n\t\t// hent firmaer som leier ut garasjer\n\t\t$crew = access::has(\"mod\") ? \"\" : \" AND ff_is_crew = 0\";\n\t\t$result = \\Kofradia\\DB::get()->query(\"\n\t\t\tSELECT ff_id, ff_name, ff_params\n\t\t\tFROM ff\n\t\t\tWHERE ff_type = \".ff::TYPE_GARASJE.\" AND ff_inactive = 0$crew\");\n\t\t\n\t\twhile ($row = $result->fetch())\n\t\t{\n\t\t\t$params = new params($row['ff_params']);\n\t\t\tunset($row['ff_params']);\n\t\t\t\n\t\t\t$row['price'] = $params->get(\"garasje_price\", ff::GTA_GARAGE_PRICE_DEFAULT);\n\t\t\t$ff[$row['ff_id']] = $row;\n\t\t}\n\t\t\n\t\treturn $ff;\n\t}", "public function getPumpDetails($pump_id)\r\n {\r\n $pump = Pump::where('id', $pump_id)->first();\r\n $last_meter_reading = $pump->last_meter_reading;\r\n $last_meter_sale = MeterSale::where('pump_id', $pump_id)->orderBy('id', 'desc')->first();\r\n if (!empty($last_meter_sale)) {\r\n $last_meter_reading = $last_meter_sale->closing_meter;\r\n }\r\n $fuel_tank = FuelTank::where('id', $pump->fuel_tank_id)->first();\r\n\r\n $product = Variation::leftjoin('products', 'variations.product_id', 'products.id')\r\n ->leftjoin('variation_location_details', 'variations.id', 'variation_location_details.variation_id')\r\n ->where('products.id', $fuel_tank->product_id)\r\n ->select('sku', 'default_sell_price', 'products.name', 'products.id', 'variation_location_details.qty_available')->first();\r\n\r\n $current_balance = $this->transactionUtil->getTankBalanceById($pump->fuel_tank_id);\r\n\r\n return [\r\n 'colsing_value' => number_format($last_meter_reading, 5, '.', ''),\r\n 'tank_remaing_qty' => $current_balance,\r\n 'product' => $product,\r\n 'pump_name' => $pump->pump_name,\r\n 'product_id' => $product->id,\r\n 'pump_id' => $pump->id,\r\n 'bulk_sale_meter' => $pump->bulk_sale_meter\r\n ];\r\n }", "public function getFeeInfo()\n {\n return $this->trading([\n 'command' => 'returnFeeInfo',\n ]);\n }", "public function getProductBalancedLots($pid,$packing = 0, $firmId){\n\t \n\t \t\t$this->db->select('sum( PS.inw_qty ) - sum( PS.outw_qty ) AS batchStock, PS.lot_no, PS.su_id, PBD.packing');\n\t\t\t$this->db->from('product_stock AS PS');\n\t\t\t$this->db->join('product_batch_details AS PBD', 'PBD.lot_no = PS.lot_no');\n\t\t\t$this->db->where(\"PS.pid\",$pid);\n\t\t\t$this->db->where(\"PS.firm_id\",$firmId);\n\t\t\tif($packing > 0){\n\t\t\t\t$this->db->where(\"PBD.packing\",$packing);\n\t\t\t}\n\t\t\t$this->db->having(\"batchStock > \",0); \n\t\t\t$this->db->group_by('PS.`lot_no`');\t\t\n\t\t\t$this->db->order_by('PS.on_date ASC');\n\t\t\t\n\t\t\t$query_batch_details = $this->db->get();\n\t\t\t\n\t\t\t//echo $this->db->last_query();die;\n\t\t\tif($query_batch_details->num_rows()>0)\n\t\t\t{\n\t\t\t\treturn $query_batch_details->result_array();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\treturn array();\n\t\t\t}\n\t \n\t }", "public function getDistribusiRevenueData()\n {\n $rekening_tabungan = $this->getRekening(\"TABUNGAN\");\n $rekening_deposito = $this->getRekening(\"DEPOSITO\");\n\n $data_rekening = array();\n $total_rata_rata = array();\n\n foreach($rekening_tabungan as $tab)\n {\n $rata_rata_product_tabungan = 0.0;\n $tabungan = $this->tabunganReporsitory->getTabungan($tab->nama_rekening);\n foreach($tabungan as $user_tabungan) {\n $temporarySaldo = $this->getSaldoAverageTabunganAnggota($user_tabungan->id_user, $user_tabungan->id);\n $rata_rata_product_tabungan = $rata_rata_product_tabungan + $temporarySaldo;\n }\n Session::put($user_tabungan->jenis_tabungan, $rata_rata_product_tabungan);\n array_push($total_rata_rata, $rata_rata_product_tabungan);\n }\n\n foreach($rekening_deposito as $dep)\n {\n $rata_rata_product_deposito = 0.0;\n $deposito = $this->depositoReporsitory->getDepositoDistribusi($dep->nama_rekening);\n foreach($deposito as $user_deposito) {\n if ($user_deposito->type == 'jatuhtempo'){\n $tanggal = $user_deposito->tempo;\n }\n else if($user_deposito->type == 'pencairanawal')\n {\n $tanggal = $user_deposito->tanggal_pencairan;\n }\n else if($user_deposito->type == 'active')\n {\n $tanggal = Carbon::parse('first day of January 1970');\n }\n $temporarySaldo = $this->getSaldoAverageDepositoAnggota($user_deposito->id_user, $user_deposito->id, $tanggal);\n $rata_rata_product_deposito = $rata_rata_product_deposito + $temporarySaldo ;\n }\n Session::put($dep->nama_rekening, $rata_rata_product_deposito);\n array_push($total_rata_rata, $rata_rata_product_deposito);\n }\n\n $total_rata_rata = $this->getTotalProductAverage($total_rata_rata);\n Session::put(\"total_rata_rata\", $total_rata_rata);\n $total_pendapatan = $this->getRekeningPendapatan(\"saldo\") - $this->getRekeningBeban(\"saldo\");\n $total_pendapatan_product = 0;\n\n foreach($rekening_tabungan as $tab)\n {\n $tabungan = $this->tabunganReporsitory->getTabungan($tab->nama_rekening);\n $rata_rata = Session::get($tab->nama_rekening);\n $nisbah_anggota = json_decode($tab->detail)->nisbah_anggota;\n $nisbah_bmt = 100 - json_decode($tab->detail)->nisbah_anggota;\n $pendapatan_product = $this->getPendapatanProduk($rata_rata, $total_rata_rata, $total_pendapatan);\n\n $total_pendapatan_product += $pendapatan_product;\n\n array_push($data_rekening, [\n \"jenis_rekening\" => $tab->nama_rekening,\n \"jumlah\" => count($tabungan),\n \"rata_rata\" => $rata_rata,\n \"nisbah_anggota\" => $nisbah_anggota,\n \"nisbah_bmt\" => $nisbah_bmt,\n \"total_rata_rata\" => $total_rata_rata,\n \"total_pendapatan\" => $total_pendapatan,\n \"pendapatan_product\" => $pendapatan_product,\n \"porsi_anggota\" => $this->getPorsiPendapatanProduct($nisbah_anggota, $pendapatan_product),\n \"porsi_bmt\" => $this->getPorsiPendapatanProduct($nisbah_bmt, $pendapatan_product),\n \"percentage_anggota\" => $total_pendapatan > 0 ?$this->getPorsiPendapatanProduct($nisbah_anggota, $pendapatan_product) / $total_pendapatan : 0\n ]);\n }\n\n foreach($rekening_deposito as $dep)\n {\n $deposito = $this->depositoReporsitory->getDepositoDistribusi($dep->nama_rekening);\n $rata_rata = Session::get($dep->nama_rekening);\n $nisbah_anggota = json_decode($dep->detail)->nisbah_anggota;\n $nisbah_bmt = 100 - json_decode($dep->detail)->nisbah_anggota;\n $pendapatan_product = $this->getPendapatanProduk($rata_rata, $total_rata_rata, $total_pendapatan);\n\n $total_pendapatan_product += $pendapatan_product;\n\n array_push($data_rekening, [\n \"jenis_rekening\" => $dep->nama_rekening,\n \"jumlah\" => count($deposito),\n \"rata_rata\" => $rata_rata,\n \"nisbah_anggota\" => $nisbah_anggota,\n \"nisbah_bmt\" => $nisbah_bmt,\n \"total_rata_rata\" => $total_rata_rata,\n \"total_pendapatan\" => $total_pendapatan,\n \"pendapatan_product\" => $pendapatan_product,\n \"porsi_anggota\" => $this->getPorsiPendapatanProduct($nisbah_anggota, $pendapatan_product),\n \"porsi_bmt\" => $this->getPorsiPendapatanProduct($nisbah_bmt, $pendapatan_product)\n ]);\n }\n\n\n return $data_rekening;\n }", "public function listAgrement(array $checking){\n\n parent::hydrate($checking[0]);\n parent::select($checking[1]);\n $data = parent::getVariable();\n return $data;\n }", "public function fase(){\n $resultado = $this->mysqli->query(\"SELECT * from fase_proyecto;\n \n \");\n\n while( $fila = $resultado->fetch_assoc() ){\n $data[] = $fila;\n }\n\n if (isset($data)) {\n return $data; \n } \n \n }", "public function holdingData($totals){\n $holdings = array();\n foreach($totals as $list2){\n $this2 = array(\n 'stocksum' => $list2->Stock,\n 'qtysum' => $totals[$list2->Stock]->Quantity\n );\n $holdings[] = $this2;\n }\n return $holdings;\n }", "function getProducts() {\n\t\t$saleData = array();\n\t\tif($stmt = $this->connection->prepare(\"select * from products;\")) {\n\t\t\t$stmt -> execute();\n\n\t\t\t$stmt->store_result();\n\t\t\t$stmt->bind_result($id, $itemName, $itemImage, $itemDesc, $salePrice, $regularPrice, $numberLeft);\n\n\t\t\tif($stmt ->num_rows >0){\n\t\t\t\twhile($stmt->fetch() ){\n\t\t\t\t\t$saleData[] = array(\n\t\t\t\t\t\t'id' => $id,\n\t\t\t\t\t\t'itemName' => $itemName,\n\t\t\t\t\t\t'itemImage' => $itemImage,\n\t\t\t\t\t\t'itemDesc' => $itemDesc,\n\t\t\t\t\t\t'salePrice' => $salePrice,\n\t\t\t\t\t\t'regularPrice' => $regularPrice,\n\t\t\t\t\t\t'numberLeft' => $numberLeft\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $saleData;\n\t}", "function get_franchise_account_stat_byid($fid)\r\n\t{\r\n\t\t$det = array();\r\n\t\t\r\n\t\t$ordered_tilldate = @$this->db->query(\"select round(sum((i_orgprice-(i_coup_discount+i_discount))*b.quantity),2) as amt \r\n\t\t\tfrom king_transactions a \r\n\t\t\tjoin king_orders b on a.transid = b.transid \r\n\t\t join pnh_m_franchise_info c on c.franchise_id = a.franchise_id \r\n\t\t\twhere a.franchise_id = ? \",$fid)->row()->amt;\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t$not_shipped_amount = $this->db->query(\" select sum(t) as amt from (\r\n\t\t\t\t\t\t\t\t\t\t\tselect a.invoice_no,debit_amt as t \r\n\t\t\t\t\t\t\t\t\t\t\t\tfrom pnh_franchise_account_summary a \r\n\t\t\t\t\t\t\t\t\t\t\t\tjoin king_invoice c on c.invoice_no = a.invoice_no and invoice_status = 1 \r\n\t\t\t\t\t\t\t\t\t\t\t\twhere action_type = 1 \r\n\t\t\t\t\t\t\t\t\t\t\t\tand franchise_id = ? \r\n\t\t\t\t\t\t\t\t\t\t\tgroup by a.invoice_no ) as a \r\n\t\t\t\t\t\t\t\t\t\t\tjoin shipment_batch_process_invoice_link b on a.invoice_no = b.invoice_no and shipped = 0 \",$fid)->row()->amt;\r\n\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t$total_invoice_val = $this->db->query(\"select sum(debit_amt) as amt from pnh_franchise_account_summary where action_type = 1 and franchise_id = ? \",$fid)->row()->amt;\r\n\t\t$total_invoice_cancelled_val = $this->db->query(\"select sum(credit_amt) as amt from pnh_franchise_account_summary where action_type = 1 and franchise_id = ? \",$fid)->row()->amt;\r\n\t\t\t\r\n\t\t\t$sql = \"select sum(credit_amt) as amt \r\n\t\t\t\t\t\tfrom pnh_franchise_account_summary a\r\n\t\t\t\t\t\tjoin pnh_t_receipt_info b on a.receipt_id = b.receipt_id \r\n\t\t\t\t\t\twhere action_type = 3 and a.franchise_id = ? and a.receipt_type = 1 and a.status = 1 and b.status = 1 \r\n\t\t\t\t\t\";\r\n\t\t$total_active_receipts_val = $this->db->query($sql,array($fid))->row()->amt ;\r\n\t\t\t\r\n\t\t\t$sql = \"select sum(receipt_amount) as amt \r\n\t\t\t\t\t\t\tfrom pnh_t_receipt_info \r\n\t\t\t\t\t\t\twhere franchise_id = ? \r\n\t\t\t\t\t\t\tand status in (2,3) and is_active = 1 \r\n\t\t\t\t\t\";\r\n\t\t\t\t\t \r\n\t\t$total_cancelled_receipts_val = $this->db->query($sql,array($fid))->row()->amt;\r\n\t\t\t\r\n\t\t$sql = \"select sum(receipt_amount) as amt \r\n\t\t\t\t\t\t\tfrom pnh_t_receipt_info \r\n\t\t\t\t\t\t\twhere franchise_id = ? and status = 0 and receipt_type = 1 \r\n\t\t\t\t\t\";\r\n\t\t\t\t\t \r\n\t\t$total_pending_receipts_val = $this->db->query($sql,array($fid))->row()->amt;\r\n\t\t\t\r\n\t\t$sql = \"select sum(credit_amt-debit_amt) as amt \r\n\t\t\t\t\t\tfrom pnh_franchise_account_summary where action_type = 5 and franchise_id = ? \";\r\n\t\t$acc_adjustments_val = $this->db->query($sql,array($fid))->row()->amt;\r\n\t\t\r\n\t\t/*\r\n\t\t$sql = \"select sum(credit_amt-debit_amt) as amt \r\n\t\t\t\t\t\t\tfrom pnh_franchise_account_summary where action_type = 7 and franchise_id = ? \";\r\n\t\t$ttl_credit_note_val = $this->db->query($sql,array($fid))->row()->amt;\r\n\t\t */ \r\n\t\t\r\n\t\t$sql = \"select (sum(credit_amt)-sum(debit_amt)) as amt from ((\r\nselect statement_id,type,count(a.invoice_no) as invoice_no,sum(credit_amt) as credit_amt,sum(debit_amt) as debit_amt,date(a.created_on) as action_date,concat('Total ',count(a.invoice_no),' IMEI Activations') as remarks \r\n\t\tfrom pnh_franchise_account_summary a \r\n\t\tjoin t_invoice_credit_notes b on a.credit_note_id = b.id \r\n\t\twhere action_type = 7 and type = 2 \r\n\t\tand a.franchise_id = ? \r\n\t\t \r\n\tgroup by action_date \t\r\n)\r\nunion\r\n(\r\nselect statement_id,1 as type,(a.invoice_no) as invoice_no,sum(credit_amt) as credit_amt,sum(debit_amt) as debit_amt,date(a.created_on) as action_date,remarks\r\n\t\tfrom pnh_franchise_account_summary a \r\n\t\tjoin t_invoice_credit_notes b on a.invoice_no = b.invoice_no \r\n\t\twhere action_type = 7 and type = 1 \r\n\t\tand a.franchise_id = ? \r\n\t\t \r\n\t group by statement_id \r\n)\r\n) as g \r\norder by action_date\";\r\n\t\t$ttl_credit_note_val = $this->db->query($sql,array($fid,$fid))->row()->amt; \r\n\t\t\r\n\t\t$total_active_invoiced = ($total_invoice_val-$total_invoice_cancelled_val);\r\n\t\t\r\n\t\t$data['net_payable_amt'] = ($total_active_invoiced-($total_active_receipts_val+$acc_adjustments_val+$ttl_credit_note_val));\r\n\t\t\r\n\t\t$data['shipped_tilldate'] = $total_active_invoiced-$not_shipped_amount; \r\n\t\t$data['credit_note_amt'] = $ttl_credit_note_val;\r\n\t\t$data['paid_tilldate'] = $total_active_receipts_val;\r\n\t\t$data['uncleared_payment'] = $total_pending_receipts_val;\r\n\t\t$data['cancelled_tilldate'] = $total_cancelled_receipts_val;\r\n\t\t$data['ordered_tilldate'] = $ordered_tilldate;\r\n\t\t$data['not_shipped_amount'] = $not_shipped_amount;\r\n\t\t$data['acc_adjustments_val'] = $acc_adjustments_val;\r\n\t\t$data['current_balance'] = ($data['shipped_tilldate']-$data['paid_tilldate']+$data['acc_adjustments_val']-$data['credit_note_amt'])*-1;\r\n\t\t\r\n\t\t$payment_pen = ($data['shipped_tilldate']-$data['paid_tilldate']+$data['acc_adjustments_val']);\r\n\t\t$data['pending_payment'] = ($payment_pen<0)?0:$payment_pen;\r\n\t\t\t\r\n\t\treturn $data;\t\r\n\t}", "private function rateOfSaleTrackerGrid() {\n\t\t$arr = array();\t\t\n /*[PART 1] GETTING THE STORE COUNT DATA*/\n $this->settingVars->tableUsedForQuery = $this->measureFields = array();\n $this->measureFields[] = $this->accountID;\n $this->measureFields[] = $this->storeCount;\n $this->settingVars->useRequiredTablesOnly = true;\n if (is_array($this->measureFields) && !empty($this->measureFields)) {\n $this->prepareTablesUsedForQuery($this->measureFields);\n }\n $this->queryPart = $this->getAll();\n\t\t$getStoreData = $this->storeCountData($this->accountID,$this->storeCount);\n\n\t\t/*[PART 2] GETTING THE GRID DATA*/\n $this->settingVars->tableUsedForQuery = $this->measureFields = array();\n \t$measureSelectRes = $this->prepareMeasureSelectPart();\n\t\t$this->measureFields = $measureSelectRes['measureFields'];\n\n\t\t$measureSelectionArr = $measureSelectRes['measureSelectionArr'];\n\t\t$havingTYValue \t\t = $measureSelectRes['havingTYValue'];\n\t\t$havingLYValue \t\t = $measureSelectRes['havingLYValue'];\n\n $this->measureFields[] = $this->accountID;\n $this->measureFields[] = $this->accountName;\n\t\t\n $this->settingVars->useRequiredTablesOnly = true;\n if (is_array($this->measureFields) && !empty($this->measureFields)) {\n $this->prepareTablesUsedForQuery($this->measureFields);\n }\n $this->queryPart = $this->getAll();\n\n /*$options = array();\n if (!empty($this->ytdTyWeekRange))\n $options['tyLyRange']['SALES'] = $this->ytdTyWeekRange;\n\n if (!empty($this->ytdLyWeekRange))\n $options['tyLyRange']['LYSALES'] = $this->ytdLyWeekRange;\n\n $measureSelect = config\\MeasureConfigure::prepareSelect($this->settingVars, $this->queryVars, array('M'.$_REQUEST['ValueVolume']), $options);\n $measureSelect = implode(\", \", $measureSelect);*/\n\n\t\t$measureSelect = implode(\", \", $measureSelectionArr);\n $query = \"SELECT \".$this->accountID.\" as SKUID\" .\n\t\t\t\t\",\".$this->accountName.\" as SKU\".\n\t\t\t\t\",\".$measureSelect.\" \".\n \",SUM((CASE WHEN \" . $this->ytdTyWeekRange . \" THEN 1 ELSE 0 END)*\".$this->settingVars->ProjectVolume.\") as QTY \".\n \",SUM((CASE WHEN \" . $this->ytdLyWeekRange . \" THEN 1 ELSE 0 END)*\".$this->settingVars->ProjectVolume.\") as QTY_LY \".\n \",SUM((CASE WHEN \" . $this->ytdTyWeekRange . \" THEN 1 ELSE 0 END)*\".$this->settingVars->ProjectValue.\") as VAL_TY \".\n\t\t\t\t\",SUM((CASE WHEN \" . $this->ytdLyWeekRange . \" THEN 1 ELSE 0 END)*\".$this->settingVars->ProjectValue.\") as VAL_LY \".\n \"FROM \" . $this->settingVars->tablename.\" \".$this->queryPart.\n\t\t\t\t\" AND (\" . $this->ytdTyWeekRange . \" OR \" . $this->ytdLyWeekRange . \") \".\n\t\t\t\t\"GROUP BY SKUID, SKU \";\n\t\t\n\t\t//HAVING (SALES > 0 AND QTY > 0) ORDER BY SALES DESC\n\t\t$redisOutput = $this->redisCache->checkAndReadByQueryHashFromCache($query);\n if ($redisOutput === false) {\n $result = $this->queryVars->queryHandler->runQuery($query, $this->queryVars->linkid, db\\ResultTypes::$TYPE_OBJECT);\n $this->redisCache->setDataForHash($result);\n } else {\n $result = $redisOutput;\n }\n\n\n\t\t$requiredGridFields = ['SKUID','SKU','QTY','QTY_LY','VAL_TY','VAL_LY',$havingTYValue, $havingLYValue];\n\t\t$result = $this->redisCache->getRequiredData($result, $requiredGridFields, $havingTYValue, $havingTYValue);\n\t\t\n\t\tif (is_array($result) && !empty($result)) {\n\n\t\t\t$result = \\utils\\SortUtility::sort2DArray($result, $havingTYValue, \\utils\\SortTypes::$SORT_DESCENDING);\t\n\t\t\t//$total = array_sum(array_column($result,'SALES'));\n //$totalSALESLY = array_sum(array_column($result,'LYSALES'));\n\t\t\t\n // $total = array_sum(array_column($result,$havingTYValue));\n // $totalSALESLY = array_sum(array_column($result,$havingLYValue));\n \n $total = $totalSALESLY = 0;\n $resultFn = [];\n foreach($result as $data){\n if(round($data[$havingTYValue]) > 0 && $data['QTY'] > 0){\n $total += $data[$havingTYValue];\n $totalSALESLY += $data[$havingLYValue];\n $resultFn[] = $data;\n }\n }\n\n\t\t\tforeach($resultFn as $data){\n\t\t\t\tif(round($data[$havingTYValue]) > 0 && $data['QTY'] > 0){\n $data[$havingTYValue] = round($data[$havingTYValue]);\n $data[$havingLYValue] = round($data[$havingLYValue]);\n \n\t\t\t\t\t$var = $data[$havingLYValue] != 0 ? ((($data[$havingTYValue] - $data[$havingLYValue]) / $data[$havingLYValue]) * 100) : 0;\n\t $share = $total != 0 ? (($data[$havingTYValue] / $total) * 100) : 0;\n\t $shareLY = $totalSALESLY != 0 ? (($data[$havingLYValue] / $totalSALESLY) * 100) : 0;\n\n\t\t\t\t\t$temp = array();\n\t\t\t\t\t$temp['SKUID'] \t\t= $data['SKUID'];\n\t\t\t\t\t$temp['SKU'] \t\t= $data['SKU'];\n\t\t\t\t\t$temp['SALES'] \t\t= $data[$havingTYValue];\n\t\t\t\t\t$temp['LYSALES'] \t= $data[$havingLYValue];\n\t\t\t\t\t$temp['VAR'] \t\t= $var;\n\t\t\t\t\t$temp['SHARE'] \t\t= $share;\n\t\t\t\t\t$temp['SHARELY'] \t= $shareLY;\n\t\t\t\t\t$temp['QTY'] \t\t= $data['QTY'];\n $temp['QTY_LY'] = $data['QTY_LY'];\n $temp['QTY_VAR'] = ($data['QTY_LY'] > 0) ? number_format( (($data['QTY'] - $data['QTY_LY']) / $data['QTY_LY']) * 100, 1, '.', '') : 0;\n\t\t\t\t\t$temp['CASH_ROS'] \t= ($getStoreData[$data['SKUID']]['ID_TY'] > 0) ? number_format($getStoreData[$data['SKUID']]['VALUE_TY']/$getStoreData[$data['SKUID']]['ID_TY'], 2, '.', '') : 0;\n\t\t\t\t\t$temp['QTY_ROS'] \t= ($getStoreData[$data['SKUID']]['ID_TY'] > 0) ? number_format($getStoreData[$data['SKUID']]['VOLUME_TY']/$getStoreData[$data['SKUID']]['ID_TY'], 2, '.', '') : 0;\n\t\t\t\t\t$temp['CROS_LY'] \t= ($getStoreData[$data['SKUID']]['ID_LY'] > 0) ? number_format($getStoreData[$data['SKUID']]['VALUE_LY']/$getStoreData[$data['SKUID']]['ID_LY'], 2, '.', '') : 0;\n\t\t\t\t\t$temp['QROS_LY'] \t= ($getStoreData[$data['SKUID']]['ID_LY'] > 0) ? number_format($getStoreData[$data['SKUID']]['VOLUME_LY']/$getStoreData[$data['SKUID']]['ID_LY'], 2, '.', '') : 0;\n\t $temp['AVE_STORE_TY'] = number_format($getStoreData[$data['SKUID']]['AVE_STORE_TY'], 2, '.', '');\n\t $temp['AVE_STORE_LY'] = number_format($getStoreData[$data['SKUID']]['AVE_STORE_LY'], 2, '.', '');\n \n $temp['AVE_PRICE_TY'] = ($data['QTY'] > 0) ? number_format($data['VAL_TY'] / $data['QTY'], 2, '.', '') : 0;\n $temp['AVE_PRICE_LY'] = ($data['QTY_LY'] > 0) ? number_format($data['VAL_LY'] / $data['QTY_LY'], 2, '.', '') : 0;\n\n\t\t\t\t\t$arr[]\t\t\t\t= $temp;\n\t\t\t\t}\n\t\t\t}\n\t\t} // end if\n $this->jsonOutput['rateOfSaleTrackerGrid'] = $arr;\n }", "function getSalesConsultants() {\n\t\t\n\t\t$sel_consultant= tep_db_query(\"SELECT DISTINCT order_assigned_to FROM orders ORDER BY order_assigned_to ASC\");\n\t\twhile($sales_arr = tep_db_fetch_array($sel_consultant)) {\n\t\t\tif($sales_arr['order_assigned_to']==\"\" || is_null($sales_arr['order_assigned_to']) || $sales_arr['order_assigned_to']==\" \") {\n\t\t\t\t$sales_arr['order_assigned_to'] = \"Empty\";\n\t\t\t}\n\t\t\t$sales_consultants[] = $sales_arr['order_assigned_to'];\n\t\t}\n\t\t\n\t\treturn $sales_consultants;\t\t\n\t}", "public function getFees()\n {\n $fees = Fee::where('archived', '=', 0);\n return Datatables::of($fees)\n ->editColumn('name', function ($fee) {\n return '<a href=\"' . url('admin/products/' . $fee->id . '/edit') . '\">' . $fee->name . '</a>';\n })\n ->editColumn('cost', function ($fee) {\n return \"$\" . number_format($fee->cost, 2);\n })\n ->make(true);\n }", "private static function _getAdditionalFeeTextSeller($listing)\n {\n //display any optional fields that add to the cost.\n $additional_fees = array ( 'total' => 0);\n $message_data = '';\n $db = DataAccess::getInstance();\n $pre = $listing->precurrency;\n $post = $listing->postcurrency;\n if (geoPC::is_ent()) {\n $userId = $listing->seller;\n $groupId = ($userId) ? geoUser::getUser($userId)->group_id : 0;\n\n $fields = geoFields::getInstance($groupId, $listing->category);\n for ($i = 1; $i < 21; $i++) {\n //go through all the optional fields, see if they add cost, and if they do,\n //see if the value actually adds any cost (not 0 or blank field)\n $option = 'optional_field_' . $i;\n\n if ($fields->$option->field_type == 'cost' && $listing->$option > 0) {\n //this optional field needs to be displayed.\n $additional_fees[$i] = geoString::displayPrice($listing->$option, $pre, $post);\n $additional_fees['total'] += $listing->$option;\n }\n }\n }\n if ($additional_fees['total'] > 0) {\n $msgs = $db->get_text(true);\n //there are additional costs to display!\n $message_data .= $msgs[500037] . \"\\n\";\n foreach ($additional_fees as $key => $cost) {\n //go through all the additional costs and display them\n if ($key != 'total') {\n //don't display the total twice!\n $message_data .= $cost . \"\\n\";\n }\n }\n //display the additional fee total.\n $message_data .= $msgs[500040] . geoString::displayPrice($additional_fees['total'], $pre, $post) . \"\\n\\n\";\n //display the grand total\n $grand_total = $listing->current_bid + $additional_fees['total'];\n $grand_total = geoString::displayPrice($grand_total, $pre, $post);\n $message_data .= $msgs[500038] . $grand_total . \"\\n\\n\";\n //display the additional fee disclaimer\n $message_data .= $msgs[500039] . \"\\n\\n\";\n }\n return $message_data;\n }", "public function packing_station_tanker_report_print()\n\t{\t\t\n $loose_oil=$this->Common_model->get_data('loose_oil',array('status'=>1));\n $loose_oil_id=array_column($loose_oil,'loose_oil_id');\n $packing_material=$this->Common_model->get_data('packing_material',array('status'=>1));\n $packing_material_id=array_column($packing_material,'pm_id');\n $free_gift=$this->Common_model->get_data('free_gift',array('status'=>1));\n $free_gift_id=array_column($free_gift,'free_gift_id');\n $plant_id=$this->session->userdata('ses_plant_id');\n $submit=$this->input->post('search_sales', TRUE);\n $from_date=date('Y-m-d', strtotime($this->input->post('start_date',TRUE)));\n $to_date=date('Y-m-d', strtotime($this->input->post('end_date',TRUE)));\n if($submit!='')\n {\t$oil_results = array();\n \t$pm_results = array();\n \t$fg_results = array();\n \tforeach($loose_oil_id as $key=>$value)\n\t {\n\t \t$oil_results[$value]['loose_oil_name'] = $this->Common_model->get_value('loose_oil',array('loose_oil_id'=>$value),'name');\n\t \t$oil_results[$value]['sub_products']=$this->Packing_station_m->oil_reports($value,$from_date,$to_date);\n\t }\n //echo \"<pre>\";\n //print_r($oil_results); exit();\n\t foreach($packing_material_id as $key=>$value)\n\t {\n\t \t$pm_results[$value]['pm_name'] = $this->Common_model->get_value('packing_material',array('pm_id'=>$value),'name');\n\t \t$pm_results[$value]['sub_products']=$this->Packing_station_m->pm_reports($value,$from_date,$to_date);\n\t }\n\t foreach($free_gift_id as $key=>$value)\n\t {\n\t \t$fg_results[$value]['fg_name'] = $this->Common_model->get_value('free_gift',array('free_gift_id'=>$value),'name');\n\t \t$fg_results[$value]['sub_products']=$this->Packing_station_m->fg_reports($value,$from_date,$to_date);\n\t }\n $empty_truck_results=$this->Packing_station_m->get_empty_truck_reports($from_date,$to_date);\n $invoice_details = array();\n foreach($empty_truck_results as $key => $value)\n {\n $tanker_id[$key]['tanker_id']=$value['tanker_id'];\n $weight_result[$key]=array();\n foreach($tanker_id as $key1=>$value1)\n {\n \n $invoice_details[$key1]=$this->Packing_station_m->get_empty_truck_invoice_details($value1);\n $invoice_id_arr = $invoice_details[$key1][0]['invoice_ids'];\n if($invoice_id_arr!='')\n {\n $single_invoice_id = $invoice_details[$key1][0]['single'];\n $result = $this->Packing_station_m->get_party_name($single_invoice_id);\n $invoice =explode(',', $invoice_id_arr);\n $total_weight = 0;\n foreach ($invoice as $key2 => $value2) \n {\n $inv_products = $this->Packing_station_m->get_invoice_products($value2);\n $sum_of_qty = 0;\n $t_pm_weight = 0;\n $t_gross = 0;\n foreach($inv_products as $keys3 =>$values3)\n { \n $sum_of_qty = $sum_of_qty + $values3['qty_in_kg'];\n $t_pm_weight = $t_pm_weight + $values3['pm_weight'];\n $t_gross = $sum_of_qty + $t_pm_weight ; \n }\n $total_weight+=$t_gross; \n\n }\n }\n else\n {\n $total_weight = '';\n }\n \n \n $invoice_details[$key1][0]['weight'] = $total_weight;\n $invoice_details[$key1][0]['agency_name']=$result;\n }\n \n \n }\n /*echo \"<pre>\";\n print_r($invoice_details); exit();*/\n $data['invoice_details']=$invoice_details;\n\t $data['oil_results']=$oil_results;\n\t $data['pm_results']=$pm_results;\n\t $data['fg_results']=$fg_results;\n\t $data['from_date']=$from_date;\n\t $data['to_date']=$to_date;\n }\n \n $data['packing_station_name']=$this->Common_model->get_value('plant',array('plant_id'=>$plant_id),'name');\n //$oil_tanker=$this->Packing_station_m->oil_reports($loose_oil_id);\n //echo \"<pre>\"; print_r($product_results); exit;\n $this->load->view('packing_station/packing_station_tanker_report_print',$data);\n\t}", "public function get_entries() {\n\t\t$this->db->select('oznaka, lokacija, brm');\n\t\t$query = $this->db->get('sale');\n\t\tif ($query->num_rows() > 0) {\n foreach ($query->result() as $temp) {\n $array[] = $temp;\n }\n\t\t\treturn $array;\n\t\t}\n\t}", "public static function getExport($purchases) {\n $lines = array();\n\n // create each line\n foreach ($purchases as $p) {\n\n // Purchase status must be 'OK'\n if ($p->status != 'OK') {\n continue;\n }\n\n $l = array();\n\n // Record type\n $l[] = $p->bookedby ? 'P' : 'O';\n\n // Tour ref\n $l[] = Admin::clean($p->code);\n\n // Bkg ref\n $l[] = Admin::clean($p->bookingref);\n\n // Surname\n $l[] = Admin::clean($p->surname, 20);\n\n // Title\n $l[] = Admin::clean($p->title, 12);\n\n // First names\n $l[] = Admin::clean($p->firstname, 20);\n\n // Address line 1\n $l[] = Admin::clean($p->address1, 25);\n\n // Address line 2\n $l[] = Admin::clean($p->address2, 25);\n\n // Address line 3\n $l[] = Admin::clean($p->city, 25);\n\n // Address line 4\n $l[] = Admin::clean($p->county, 25);\n\n // Post code\n $l[] = Admin::clean($p->postcode, 8);\n\n // Phone No\n $l[] = Admin::clean($p->phone, 15);\n\n // Email\n $l[] = Admin::clean($p->email, 50);\n\n // Start\n $l[] = Admin::clean($p->joining);\n\n // Destination\n $l[] = Admin::clean($p->destination);\n\n // Class\n $l[] = Admin::clean($p->class, 1);\n\n // Adults\n $l[] = Admin::clean($p->adults);\n\n // Children\n $l[] = Admin::clean($p->children);\n\n // OAP (not used)\n $l[] = '0';\n\n // Family (not used)\n $l[] = '0';\n\n // Meal A\n $l[] = Admin::clean($p->meala);\n\n // Meal B\n $l[] = Admin::clean($p->mealb);\n\n // Meal C\n $l[] = Admin::clean($p->mealc);\n\n // Meal D\n $l[] = Admin::clean($p->meald);\n\n // Comment - add booker on the front\n // Remove 1/2 spurious characters from comment\n $comment = strlen($p->comment) < 3 ? '' : $p->comment;\n if ($p->bookedby) {\n $bookedby = Admin::getInitials($p->bookedby) . ' ';\n } else {\n $bookedby = '';\n }\n $l[] = Admin::clean($bookedby . $comment, 39);\n\n // Payment\n $l[] = Admin::clean(intval($p->payment * 100));\n\n // Booking Date\n $fdate = substr($p->date, 0, 4) . substr($p->date, 5, 2) . substr($p->date, 8, 2);\n $l[] = Admin::clean($fdate);\n\n // Seat supplement\n $l[] = $p->seatsupplement ? 'Y' : 'N';\n\n // Card Payment\n $l[] = 'Y';\n\n // Action required\n $l[] = 'N';\n\n // make tab separated line\n $line = implode(\"\\t\", $l);\n $lines[] = $line;\n }\n\n // combine lines\n return implode(\"\\n\", $lines);\n }", "public function get_debit_data($i, $object, $highestRow, $worksheet) {\n $tax_debit_value = array();\n $data_arr4 = array();\n for ($j = $i; $j <= $highestRow; $j++) {\n if ($object->getActiveSheet()->getCell('B' . $j)->getValue() == \"Total\") {\n $highestColumn_dr = $worksheet->getHighestColumn($j);\n for ($k = 0; $k < 4; $k++) {\n $a11 = strlen($highestColumn_dr);\n $index1 = strlen($highestColumn_dr) - 1;\n $ord1 = ord($highestColumn_dr[$index1]);\n $a1 = substr($highestColumn_dr, 0, 1);\n $a2 = substr($highestColumn_dr, 1);\n if ($a1 != $a2 and $a2 == \"A\") {\n $ord = ord($highestColumn_dr[1]);\n $index = 1;\n $o1 = ord($a1);\n $o2 = chr($o1 - 1);\n $highestColumn_row_pp = $o2 . \"Z\";\n } else {\n $highestColumn_row_pp = $this->getAlpha($highestColumn_dr, $ord1, $a11, $index1);\n }\n $highestColumn_dr = $highestColumn_row_pp;\n }\n\n $highest_value_without_DR = $highestColumn_dr; //hightest cloumn till where we have to find our data\n $char = 'G';\n while ($char !== $highest_value_without_DR) {\n $values_DR[] = $object->getActiveSheet()->getCell($char . $j)->getValue();\n $char++;\n }\n $cnt = count($values_DR);\n\n//get the value for tax debit value\n\n $data_debit_value_tax = array();\n\n for ($a_dr = 0; $a_dr < $cnt; $a_dr++) {\n $Dr_values = $values_DR[$a_dr];\n $data_debit_value_tax[] = $values_DR[$a_dr];\n }\n\n $aa2 = array();\n for ($a_dr = 1; $a_dr < sizeof($values_DR); $a_dr++) {\n\n if ($a_dr % 5 != 0) {\n\n $aa2[] = $values_DR[$a_dr];\n }\n// var_dump($aa2);\n }\n $a1 = sizeof($aa2);\n $a2 = $a1 % 4;\n $a3 = $a1 - $a2;\n\n for ($k = 0; $k < $a3; $k = $k + 4) {\n $tax_debit_value[] = $aa2[$k] + $aa2[$k + 1] + $aa2[$k + 2] + $aa2[$k + 3];\n }\n\n for ($a_dr = 0; $a_dr < $cnt; $a_dr++) {\n// $Dr_values = $values_DR[$a_dr];\n $data_arr4[] = $values_DR[$a_dr];\n $a_dr = ($a_dr * 1 + 4);\n }\n }\n }\n\n return array($data_arr4, $tax_debit_value);\n }", "public function getInventoryAndSales() {\n\t\t$isql=\"SELECT i.id as value,i.item_name as label,i.sell_price,i.quantity FROM inventory i where rstatus='A' and quantity > 0\";\t\t\n\t\t$iresult=$this->runQuery('getAll',$isql);\n\t\t\n\t\t$sosql=\"SELECT so.id as so_id,so.product_id as inv_id,p.item_name as inv_name,date(so.sell_date) as selling_date,so.customer_name,so.sell_price as selling_price,so.prod_qty as selling_qty,so.comments FROM sales_order so, inventory p where p.id = so.product_id and so.rstatus ='A'\";\t\t\n\t\t$soresult=$this->runQuery('getAll',$sosql);\n\t\t\n\t\techo '[{\"invDropdownList\":'.json_encode($iresult).',\"salesOrderList\":'.json_encode($soresult).'}]';\n\t}", "function do_gen_salesreportfortally($st,$en,$sales_by)\r\n\t{\r\n\t\tini_set('memory_limit','512M');\r\n\t\t\r\n\t\t$cond = '';\r\n\t\tif($sales_by == 'sit')\r\n\t\t\t$cond .= ' and is_pnh = 0 and partner_id = 0 ';\r\n\t\telse if($sales_by == 'sit_part')\r\n\t\t\t$cond .= ' and is_pnh = 0 ';\r\n\t\telse if($sales_by == 'pnh')\r\n\t\t\t$cond .= ' and is_pnh = 1 ';\r\n\t\t\r\n\t\t$sql = \"select c.createdon,a.transid,b.ship_person,ifnull(d.pnh_franchise_id,0) as pnh_franchise_id,c.invoice_no,\r\n\t\t\t\t\t\tsum(b.quantity*c.mrp) as mrp,\r\n\t\t\t\t\t\tsum(b.quantity*c.discount) as discount,c.tax,c.service_tax,sum(c.ship+c.giftwrap_charge) as handling_charge\r\n\t\t\t\t\tfrom king_transactions a \r\n\t\t\t\t\tjoin king_orders b on a.transid = b.transid \r\n\t\t\t\t\tjoin king_invoice c on c.order_id = b.id \r\n\t\t\t\t\tleft join pnh_m_franchise_info d on d.franchise_id = a.franchise_id \r\n\t\t\t\t\twhere date(from_unixtime(c.createdon)) >= ? and date(from_unixtime(c.createdon)) <= ? and c.invoice_status = 1 $cond \r\n\t\t\t\t\tgroup by c.invoice_no,c.tax \r\n\t\t\t\t\torder by c.createdon asc \r\n\t\t\t\t\t\";\r\n\t\t$res = $this->db->query($sql,array($st,$en));\t\r\n\t\t$inv_gross_total = array();\t\t\r\n\t\tif($res->num_rows())\r\n\t\t{\r\n\t\t\t$tax_list = array('1450'=>1,'550'=>1,'0'=>1);\r\n\t\t\t$tax_list_tax = array('1450'=>1,'550'=>1,'0'=>1);\r\n\t\t\t$tax_list_sales = array('1450'=>1,'550'=>1,'0'=>1);\r\n\t\t\t$tax_list_disc = array('550'=>1,'1450'=>1,'0'=>1);\r\n\t\t\t$tax_list_op_vat = array('1450'=>1,'550'=>1);\r\n\t\t\t\r\n\t\t\t$sales_det = array();\r\n\t\t\tforeach($res->result_array() as $row)\r\n\t\t\t{\r\n\t\t\t\tif(!isset($sales_det[$row['invoice_no']]))\r\n\t\t\t\t\t$sales_det[$row['invoice_no']] = array();\r\n\t\t\t\tif(!isset($sales_det[$row['invoice_no']][$row['tax']]))\r\n\t\t\t\t\t$sales_det[$row['invoice_no']][$row['tax']] = array();\r\n\t\t\t\t\r\n\t\t\t\tarray_push($sales_det[$row['invoice_no']][$row['tax']],$row);\r\n\t\t\t\tif($row['tax'])\r\n\t\t\t\t\t$tax_list[$row['tax']] = 1;\r\n\t\t\t\t\r\n\t\t\t\tif(!isset($sales_inv_det[$row['invoice_no']]))\t\r\n\t\t\t\t{\r\n\t\t\t\t\t$sales_inv_det[$row['invoice_no']] = array();\r\n\t\t\t\t\t$sales_inv_det[$row['invoice_no']]['date'] = date('d m Y',$row['createdon']);\r\n\t\t\t\t\t$sales_inv_det[$row['invoice_no']]['invno'] = $row['invoice_no'];\r\n\t\t\t\t\t$sales_inv_det[$row['invoice_no']]['partyname'] = $row['ship_person'].($row['pnh_franchise_id']?'-'.$row['pnh_franchise_id']:'');\r\n\t\t\t\t\t\r\n\t\t\t\t\t$sales_inv_det[$row['invoice_no']]['billing_price'] = ($row['mrp']-$row['discount']);\r\n\t\t\t\t\t\r\n\t\t\t\t\t$sales_inv_det[$row['invoice_no']]['hand_charge'] = $row['handling_charge'];\r\n\t\t\t\t\t$sales_inv_det[$row['invoice_no']]['serv_tax'] = $row['handling_charge']*($row['service_tax']/10000);\r\n\t\t\t\t\t\r\n\t\t\t\t\t$sales_inv_det[$row['invoice_no']]['vchtype'] = 'Sales PNH';\r\n\t\t\t\t\t\r\n\t\t\t\t\t$sales_inv_det[$row['invoice_no']]['round_off_part'] = 0;\r\n\t\t\t\t\t//$sales_inv_det[$row['invoice_no']]['sales_exempt'] = 0;\r\n\t\t\t\t\t\r\n\t\t\t\t\t$sales_inv_det[$row['invoice_no']]['disc_sum'] = 0;\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t$sales_inv_det[$row['invoice_no']]['gross_total'] = ($sales_inv_det[$row['invoice_no']]['hand_charge']+$sales_inv_det[$row['invoice_no']]['serv_tax']);\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$tax = $row['tax'];\r\n\t\t\t\t\r\n\t\t\t\t$disc_amt = round(($row['discount']*($row['tax']/10000)),2);\r\n\t\t\t\t\r\n\t\t\t\t$disc = round($row['discount'],2);\r\n\t\t\t\t$tax_amt = round(($row['mrp']-$row['discount'])/(1/1+($row['tax']/10000)),2);\r\n\t\t\t\t\r\n\t\t\t\t$op_vat_amt = round(($tax_amt*($row['tax']/10000)),2); \r\n\t\t\t\t$sales_amt = round($tax_amt+$disc,2);\r\n\t\t\t\t\r\n\t\t\t\t//$sales_inv_det[$row['invoice_no']]['sales_exempt'] += $tax?0:($sales_amt+$disc);\r\n\t\t\t\t\r\n\t\t\t\t$sales_inv_det[$row['invoice_no']]['discount_'.$tax] = $disc;\r\n\t\t\t\t$sales_inv_det[$row['invoice_no']]['tax_'.$tax] = $tax_amt;\t\r\n\t\t\t\t$sales_inv_det[$row['invoice_no']]['sales_'.$tax] = $sales_amt;\r\n\t\t\t\t$sales_inv_det[$row['invoice_no']]['op_vat_'.$tax] = $op_vat_amt;\r\n\r\n\t\t\t\t$sales_inv_det[$row['invoice_no']]['gross_total'] += ($row['mrp']-$row['discount']);\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t$sales_inv_det[$row['invoice_no']]['disc_sum'] += $disc;\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t$sales_inv_det[$row['invoice_no']]['round_off_part'] += ($sales_amt)+$op_vat_amt;\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\t$op_head = array();\r\n\t\t\t$op_head['date'] = \"Date\";\r\n\t\t\t$op_head['invno'] = \"Inv No\";\r\n\t\t\t$op_head['partyname'] = \"Party Name\";\r\n\t\t\t$op_head['gross_total'] = \"Gross Total\";\r\n\t\t\t\r\n\t\t\tforeach ($tax_list_tax as $tax_v=>$stat) \r\n\t\t\t\t$op_head['tax_'.$tax_v] = $tax_v?\"Taxable Amount \".round($tax_v/100,1).\"%\":'AssesVal Sales-Exempt';\r\n\t\t\t\t\t\t\r\n\t\t\tforeach ($tax_list_sales as $tax_v=>$stat) \r\n\t\t\t\t$op_head['sales_'.$tax_v] = $tax_v?\"Sales \".round($tax_v/100,1).\"%\":'Sales Exempt';\r\n\t\t\t\r\n\t\t\t//$op_head['sales_exempt'] = \"Sales Exempt\";\r\n\t\t\t\r\n\t\t\tforeach ($tax_list_disc as $tax_v=>$stat) \r\n\t\t\t\t$op_head['discount_'.$tax_v] = \"Discount @ \".round($tax_v/100,1).\"%\";\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t$op_head['hand_charge'] = \"Handling Charges\";\r\n\t\t\t$op_head['serv_tax'] = \"Service tax\";\r\n\t\t\t\r\n\t\t\tforeach ($tax_list_op_vat as $tax_v=>$stat) \r\n\t\t\t\tif($tax_v)\r\n\t\t\t\t\t$op_head['op_vat_'.$tax_v] = \"Output vat \".round($tax_v/100,1).\"%\";\r\n\t\t\t\r\n\t\t\t$op_head['round_off'] = \"Round off\";\r\n\t\t\t$op_head['vchtype'] = \"VchType\";\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t$csv_data = array();\r\n\t\t\t$csv_data [] = '\"'.implode('\",\"',array_values($op_head)).'\"';\r\n\t\t\t\r\n\t\t\tforeach ($sales_inv_det as $sale_inv) \r\n\t\t\t{\r\n\t\t\t\t$sale_inv['gross_total'] = round($sale_inv['gross_total']);\r\n\t\t\t\t$sale_inv['round_off'] = (($sale_inv['round_off_part']+$sale_inv['hand_charge']+$sale_inv['serv_tax'])-($sale_inv['gross_total']+$sale_inv['disc_sum']));\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t$t = array();\r\n\t\t\t\tforeach (array_keys($op_head) as $k) \r\n\t\t\t\t{\r\n\t\t\t\t\tarray_push($t,isset($sale_inv[$k])?$sale_inv[$k]:0);\r\n\t\t\t\t}\t\r\n\t\t\t\t$csv_data[] = '\"'.implode('\",\"',array_values($t)).'\"';\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\t$csv = implode(\"\\r\\n\",$csv_data);\r\n\t\t\t\r\n\t\t\theader('Content-Description: File Transfer');\r\n\t\t header('Content-Type: text/csv');\r\n\t\t header('Content-Disposition: attachment; filename='.(\"SalesReport-\".$sales_by.'-'.date(\"d_m_y_H\\h:i\\m\").\".csv\"));\r\n\t\t header('Content-Transfer-Encoding: binary');\r\n\t\t header('Expires: 0');\r\n\t\t header('Cache-Control: must-revalidate');\r\n\t\t header('Pragma: public');\r\n\t\t header('Content-Length: ' . strlen($csv));\r\n\t\t \r\n\t\t\techo $csv;\r\n\t\t}else\r\n\t\t{\r\n\t\t\techo '<script>alert(\"No Invoices found\")</script>'; \t\t\r\n\t\t}\r\n\t\t\r\n\t\texit;\r\n\t}", "public function displayDeliveryTable(){\n $sql=\"SELECT * FROM `deliveries`\n INNER JOIN `users` ON deliveries.user_id=users.user_id\n INNER JOIN `accounts`ON users.account_id=accounts.account_id\";\n $result=$this->conn->query($sql);\n $rows=array();\n\n if($result->num_rows>0){\n while($displayDeli=$result->fetch_assoc()){\n $rows[]=$displayDeli;\n }\n return $rows;\n }else{\n return false;\n }\n }", "public function getFeedTransDetails($var)\r\n\t\t{\r\n\t\t\t\t$link = $this->connect();\r\n\t\t\t\t$query = \" SELECT DISTINCT ft.ft_id,\r\n\t\t\t\t\t\t\tft.quantity,\r\n\t\t\t\t\t\t\tft.unit,\r\n\r\n\t\t\t\t\t\t\tft.date_given,\r\n\t\t\t\t\t\t\tft.time_given,\r\n\t\t\t\t\t\t\tft.pig_id,\r\n\t\t\t\t\t\t\tft.feed_id,\r\n\t\t\t\t\t\t\tft.prod_date,\r\n\t\t\t\t\t\t\tf.feed_name,\r\n\t\t\t\t\t\t\tf.feed_type\r\n\t\t\t\t\t\t\tFROM feed_transaction ft \r\n\t\t\t\t\t\t\tINNER JOIN feeds f on\r\n\t\t\t\t\t\t\t\tft.feed_id = f.feed_id\r\n\t\t\t\t\t\t\tWHERE ft.feed_id = '\" . $var . \"'\";\r\n\t\t\t\t$result = mysqli_query($link, $query);\r\n\t\t\t\t$f = array();\r\n\t\t\t\t$f_arr = array();\r\n\t\t\t\twhile($row = mysqli_fetch_row($result)){\r\n\t\t\t\t\t$f['ft_id'] = $row[0];\r\n\t\t\t\t\t$f['qty'] = $row[1];\r\n\t\t\t\t\t$f['unit'] = $row[2];\r\n\t\t\t\t\t$date = date_create($row[3]);\r\n\t\t\t\t\t$f['d_given'] = $date->format('F j,Y');\r\n\t\t\t\t\t$f['t_given'] = $row[4];\r\n\t\t\t\t\t$f['pid'] = $row[5];\r\n\t\t\t\t\t$f['f_id'] = $row[6];\r\n\t\t\t\t\t$date2 = date_create($row[7]);\r\n\t\t\t\t\t$f['proddate'] = $date2->format('F j,Y');\r\n\t\t\t\t\t$f['fname'] = $row[8];\r\n\t\t\t\t\t$f['ftype'] = $row[9];\r\n\t\t\t\t\t$f_arr[] = $f;\r\n\t\t\t\t}\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\treturn $f_arr;\r\n\t\t\t\t\r\n\t\t}", "function cp_do_view_supplier_bills($adata) {\n\t# Get security vars\n\t\t$_SEC \t= get_security_flags();\n\t\t$_PERMS\t= do_decode_perms_admin($_SEC['_sadmin_perms']);\n\n\t# Dim some Vars:\n\t\tglobal $_CCFG, $_TCFG, $_DBCFG, $db_coin, $_LANG, $_nl, $_sp;\n\n\t# Set Query parameters for select.\n\t\t$query\t = 'SELECT *';\n\t\t$_from\t.= ' FROM '.$_DBCFG['bills'].', '.$_DBCFG['suppliers'];\n\t\t$_where\t.= ' WHERE '.$_DBCFG['bills'].'.bill_s_id='.$_DBCFG['suppliers'].'.s_id';\n\t\t$_where\t.= ' AND '.$_DBCFG['bills'].'.bill_s_id='.$adata['s_id'];\n\t\t$_order\t.= ' ORDER BY '.$_DBCFG['bills'].'.bill_ts DESC';\n\n\t\tIF (!$_CCFG['IPL_SUPPLIERS'] > 0) {$_CCFG['IPL_SUPPLIERS'] = 5;}\n\t\t$_limit .= ' LIMIT 0, '.$_CCFG['IPL_SUPPLIERS'];\n\n\t# Get count of rows total:\n\t\t$query_ttl = 'SELECT COUNT(*)';\n\t\t$query_ttl .= $_from;\n\t\t$query_ttl .= $_where;\n\t\t$result_ttl\t= $db_coin->db_query_execute($query_ttl);\n\t\twhile(list($cnt) = $db_coin->db_fetch_row($result_ttl)) {$numrows_ttl = $cnt;}\n\n\t# Do select listing records and return check\n\t\t$query\t.= $_from.$_where.$_order.$_limit;\n\t\t$result\t= $db_coin->db_query_execute($query);\n\t\t$numrows\t= $db_coin->db_query_numrows($result);\n\n\t# Build form output\n\t#\t$_out .= '<br>'.$_nl;\n\t\t$_out .= '<div align=\"center\">'.$_nl;\n\t\t$_out .= '<table width=\"100%\" border=\"0\" bordercolor=\"'.$_TCFG['_TAG_TABLE_BRDR_COLOR'].'\" bgcolor=\"'.$_TCFG['_TAG_TRTD_BKGRND_COLOR'].'\" cellpadding=\"0\" cellspacing=\"1\">'.$_nl;\n\t\t$_out .= '<tr class=\"BLK_DEF_TITLE\"><td class=\"TP3MED_NC\" colspan=\"8\">'.$_nl;\n\n\t\t$_out .= '<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">'.$_nl;\n\t\t$_out .= '<tr class=\"BLK_IT_TITLE_TXT\">'.$_nl.'<td class=\"TP0MED_NL\">'.$_nl;\n\t\t$_out .= '<b>'.$_LANG['_ADMIN']['Bills'];\n\t\t$_out .= ' ('.$numrows.$_sp.$_LANG['_ADMIN']['of'].$_sp.$numrows_ttl.$_sp.$_LANG['_ADMIN']['total_entries'].')</b><br>'.$_nl;\n\t\t$_out .= '</td>'.$_nl.'<td class=\"TP0MED_NR\">'.$_nl;\n\t\tIF ($_CCFG['_IS_PRINT'] != 1) {\n\t\t\tIF ($numrows_ttl > $_CCFG['IPL_SUPPLIERS']) {\n\t\t\t\t$_out .= do_nav_link('mod.php?mod=bills&mode=view&bill_s_id='.$adata['s_id'], $_TCFG['_S_IMG_VIEW_S'],$_TCFG['_S_IMG_VIEW_S_MO'],'','');\n\t\t\t}\n\t\t\t$_out .= do_nav_link('mod.php?mod=cc&mode=search&sw=bills', $_TCFG['_S_IMG_SEARCH_S'],$_TCFG['_S_IMG_SEARCH_S_MO'],'','');\n\t\t} ELSE {\n\t\t\t$_out .= $_sp;\n\t\t}\n\t\t$_out .= '</td>'.$_nl.'</tr>'.$_nl.'</table>'.$_nl;\n\n\t\t$_out .= '</td></tr>'.$_nl;\n\t\t$_out .= '<tr class=\"BLK_DEF_ENTRY\">'.$_nl;\n\t\t$_out .= '<td class=\"TP3SML_BC\">'.$_LANG['_ADMIN']['l_Id'].'</td>'.$_nl;\n\t\t$_out .= '<td class=\"TP3SML_BC\">'.$_LANG['_ADMIN']['l_Status'].'</td>'.$_nl;\n\t\t$_out .= '<td class=\"TP3SML_BC\">'.$_LANG['_ADMIN']['l_Date_Issued'].'</td>'.$_nl;\n\t\t$_out .= '<td class=\"TP3SML_BC\">'.$_LANG['_ADMIN']['l_Date_Due'].'</td>'.$_nl;\n\t\t$_out .= '<td class=\"TP3SML_BR\">'.$_LANG['_ADMIN']['l_Amount'].'</td>'.$_nl;\n\t\t$_out .= '<td class=\"TP3SML_BR\">'.$_LANG['_ADMIN']['l_Balance'].'</td>'.$_nl;\n\t\t$_out .= '<td class=\"TP3SML_BL\">'.$_LANG['_CCFG']['Actions'].'</td>'.$_nl;\n\t\t$_out .= '</tr>'.$_nl;\n\n\t# Process query results\n\t\tIF ($numrows) {\n\t\t\twhile ($row = $db_coin->db_fetch_array($result)) {\n\n\t\t\t\t$_out .= '<tr class=\"BLK_DEF_ENTRY\">'.$_nl;\n\t\t\t\t$_out .= '<td class=\"TP3SML_NC\">'.$row['bill_id'].'</td>'.$_nl;\n\t\t\t\t$_out .= '<td class=\"TP3SML_NC\">'.htmlspecialchars($row['bill_status']).'</td>'.$_nl;\n\t\t\t\t$_out .= '<td class=\"TP3SML_NC\">'.dt_make_datetime($row['bill_ts'], $_CCFG['_PKG_DATE_FORMAT_SHORT_DT']).'</td>'.$_nl;\n\t\t\t\t$_out .= '<td class=\"TP3SML_NC\">'.dt_make_datetime($row['bill_ts_due'], $_CCFG['_PKG_DATE_FORMAT_SHORT_DT']).'</td>'.$_nl;\n\t\t\t\t$_out .= '<td class=\"TP3SML_NR\">'.do_currency_format($row['bill_total_cost'],1,0,$_CCFG['CURRENCY_DISPLAY_DIGITS_AMOUNT']).$_sp.$_sp.'</td>'.$_nl;\n\n\t\t\t# Show current bill balance\n\t\t\t\t$idata = do_get_bill_supplier_balance($adata['s_id'], $row['bill_id']);\n\t\t\t\t$_out .= '<td class=\"TP3SML_NR\">'.do_currency_format($idata['net_balance'],1,0,$_CCFG['CURRENCY_DISPLAY_DIGITS_AMOUNT']).$_sp.'</td>'.$_nl;\n\t\t\t\t$_out .= '<td class=\"TP3SML_NL\"><nobr>'.$_nl;\n\t\t\t\tIF ($_CCFG['_IS_PRINT'] != 1) {\n\t\t\t\t\t$_out .= do_nav_link('mod.php?mod=bills&mode=view&bill_id='.$row['bill_id'], $_TCFG['_S_IMG_VIEW_S'],$_TCFG['_S_IMG_VIEW_S_MO'],'','');\n\t\t\t\t\t$_out .= do_nav_link('mod_print.php?mod=bills&mode=view&bill_id='.$row['bill_id'], $_TCFG['_S_IMG_PRINT_S'],$_TCFG['_S_IMG_PRINT_S_MO'],'_new','');\n\t\t\t\t\tIF ($_PERMS['AP16'] == 1 || $_PERMS['AP08'] == 1) {\n\t\t\t\t\t\t$_out .= do_nav_link('mod.php?mod=bills&mode=edit&bill_id='.$row['bill_id'], $_TCFG['_S_IMG_EDIT_S'],$_TCFG['_S_IMG_EDIT_S_MO'],'','');\n\t\t\t\t\t\t$_out .= do_nav_link('mod.php?mod=bills&mode=delete&stage=1&bill_id='.$row['bill_id'].'&invc_ts='.$row['invc_ts'].'&invc_status='.$row['invc_status'], $_TCFG['_S_IMG_DEL_S'],$_TCFG['_S_IMG_DEL_S_MO'],'','');\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t$_out .= '</nobr></td>'.$_nl;\n\t\t\t\t$_out .= '</tr>'.$_nl;\n\t\t\t}\n\t\t}\n\n\t# Show totals footer row\n\t\t$idata = do_get_bill_supplier_balance($adata['s_id'], 0);\n\t\t$_out .= '<tr class=\"BLK_DEF_ENTRY\">'.$_nl;\n\t\t$_out .= '<td class=\"TP3SML_BR\" colspan=\"4\">'.$_nl;\n\t\t$_out .= $_LANG['_SUPPLIERS']['l_Amount'].$_nl;\n\t\t$_out .= '</td><td class=\"TP3SML_BR\">'.$_nl;\n\t\t$_out .= do_currency_format($idata['total_cost'],1,0,$_CCFG['CURRENCY_DISPLAY_DIGITS_AMOUNT']).$_sp.$_nl;\n\t\t$_out .= '</td><td class=\"TP3SML_BR\">'.$_nl;\n\t\t$_out .= do_currency_format($idata['net_balance'],1,0,$_CCFG['CURRENCY_DISPLAY_DIGITS_AMOUNT']).$_sp.$_nl;\n\t\t$_out .= '</td><td class=\"TP3SML_BL\">'.$_nl;\n\t\t$_out .= $_sp.$_nl;\n\t\t$_out .= '</td></tr>'.$_nl;\n\n\t\t$_out .= '</table>'.$_nl;\n\t\t$_out .= '</div>'.$_nl;\n\t\t$_out .= '<br>'.$_nl;\n\n\t# Return results\n\t\treturn $_out;\n}", "public function getPricing() : array\n {\n $data = $this->fetchJson();\n $result = [];\n\n foreach ($data['fuel']['types'] as $fuelType) {\n if (!in_array($fuelType['name'], $this->types)) {\n continue;\n }\n\n $result[] = [\n 'name' => $fuelType['name'],\n 'price' => $fuelType['price'] * 100\n ] ;\n }\n\n return $result;\n }", "public function getData()\n {\n $data = $this->only(['allocation_id','name','email','mobile','address','education','remark']);\n return $data;\n }", "public function add_sales() {\r\n //var_dump($_POST); \r\n $is_retail = $this->input->post('hddn_is_retail');\r\n $total_amount = $this->input->post('txt_total_amount');\r\n $discount = $this->input->post('txt_discount');\r\n $net_amount = $total_amount - ($total_amount * $discount / 100);\r\n $data_set_skus = array();\r\n $data_set_books = array();\r\n $data_set_sales_books = array();\r\n $data_set_sales = array(\r\n 'total_amount' => $total_amount,\r\n 'discount' => $discount,\r\n 'total_paid' => $net_amount, //will change later if whole sale\r\n 'date_sold' => get_cur_date(),\r\n 'user_sold' => $this->session->userdata('user_id')\r\n );\r\n if(!$is_retail) {\r\n $data_set_sales['dealer_id'] = $this->input->post('lst_dealer_id');\r\n $data_set_sales['total_paid']= 0.00;\r\n }\r\n \r\n foreach($_POST as $key => $val) {\r\n if((boolean)preg_match(\"/hddn_sales_sku_/\", $key)) { //book is selected\r\n //set variables\r\n $book_id = $val;\r\n \r\n //add entries to arrays\r\n array_push($data_set_skus,$book_id);\r\n array_push($data_set_books,array(\r\n 'sku' => $book_id,\r\n 'last_sold' => get_cur_date(),\r\n 'cur_stock' => $this->input->post(\"hddn_quantity_sold_{$book_id}\") //the exisitng stock will be added\r\n ));\r\n array_push($data_set_sales_books,array(\r\n 'sales_id' => NULL, //will be set after adding the sales\r\n 'sales_sku' => $book_id,\r\n 'discount' => $this->input->post(\"hddn_discount_{$book_id}\"),\r\n 'list_price' => $this->input->post(\"hddn_list_price_{$book_id}\"),\r\n 'quantity_sold' => $this->input->post(\"hddn_quantity_sold_{$book_id}\")\r\n ));\r\n\r\n }//if\r\n }//for\r\n //var_dump($data_set_sales);\r\n //var_dump($data_set_sales_books);\r\n //var_dump($data_set_books);\r\n \r\n $this->db->trans_start();\r\n\r\n //get current stocks\r\n $fields = array('sku','cur_stock');\r\n $criteria_in = array('sku',$data_set_skus);\r\n $books = $this->book_model->get_books($fields,'','','','','','','','',$criteria_in);\r\n $books = $this->application->array_set_index($books,'sku');\r\n //var_dump($books);\r\n\r\n //update current stock\r\n for($i = 0; $i < count($data_set_books); $i++) {\r\n $data_set_books[$i]['cur_stock'] = $books[$data_set_books[$i]['sku']]['cur_stock'] - $data_set_books[$i]['cur_stock'];\r\n }\r\n //var_dump($data_set_books);\r\n \r\n //insert sales\r\n $sales_id = $this->sales_model->add_sale($data_set_sales);\r\n\r\n //insert sales id in to sales books\r\n for($i = 0; $i < count($data_set_sales_books); $i++) {\r\n $data_set_sales_books[$i]['sales_id'] = $sales_id ;\r\n }\r\n\r\n //insert sales books\r\n $this->sales_book_model->add_sales_books($data_set_sales_books);\r\n\r\n //update books/stock\r\n $criteria = 'sku';\r\n $this->book_model->update_books($data_set_books,$criteria);\r\n\r\n if($is_retail) {\r\n //insert financial\r\n $data_set_financial = array(\r\n 'trans_category' => 'sales',\r\n 'description' => \"Add retail sales: {$sales_id}\",\r\n 'amount' => $net_amount,\r\n 'date_made' => get_cur_date_time(),\r\n 'user_made' => $this->session->userdata('user_id')\r\n );\r\n $this->financial_model->add_transaction($data_set_financial);\r\n } else { //wholesale\r\n //update dealers debit\r\n $fields = array('debit_amount');\r\n $criteria = array('id' => $this->input->post('lst_dealer_id'));\r\n $dealer = $this->dealer_model->get_dealer($fields,$criteria);\r\n $data_set_dealer = array(\r\n 'debit_amount' => $dealer['debit_amount'] + $net_amount\r\n );\r\n $this->dealer_model->update_dealer($data_set_dealer,$criteria);\r\n }\r\n \r\n $this->db->trans_complete();\r\n\r\n $query_status = $this->db->trans_status();\r\n if($query_status) {\r\n\r\n //insert system log entry\r\n $description = \"Add sales: {$sales_id}.\";\r\n $this->application->write_log('sales', $description);\r\n \r\n //prepare notifications\r\n $url = site_url('reports/sales_invoice/'. $sales_id);\r\n if($is_retail) {\r\n $url .= '/1/' . $this->input->post('txt_payment');\r\n } else {\r\n $url .= '/0';\r\n }\r\n $notification = array(\r\n 'is_notification'\t\t=> TRUE,\r\n 'notification_type'\t\t=> 'success',\r\n 'notification_description' => \"The new sales is added successfully.&nbsp;&nbsp;<a href='{$url}' target='_blank' ><button type='button' class='btn btn-success btn-xs'>Print Sales Invoice</button></a>\"\r\n );\r\n\r\n } else {\r\n $notification = array(\r\n 'is_notification'\t\t=> TRUE,\r\n 'notification_type'\t\t=> 'error',\r\n 'notification_description' => 'Error terminated adding the new sales.'\r\n );\r\n }\r\n $this->session->set_flashdata($notification);\r\n redirect('sales');\r\n\r\n }", "public function tabelsales()\n {\n return DB::table('tbl_sales')->get();\n }", "public function get_income_expenditure_report_data($year)\n\t{\n\t\t$this->db->where('td_fee_collection.session', $year);\n\t\t$this->db->select('tb_fin_head.name as name, SUM(td_fee_subfunds.amount) as amount');\n\t\t$this->db->group_by('td_fee_subfunds.fee_head_id');\n\t\t$this->db->order_by('tb_fin_head.name', 'asc');\n\t\t$this->db->from('td_fee_collection');\n\t\t$this->db->join('td_fee_subfunds', 'td_fee_subfunds.fee_id = td_fee_collection.fee_id', 'inner');\n\t\t$this->db->join('tb_fin_head', 'tb_fin_head.id = td_fee_subfunds.fee_head_id', 'inner');\n\t\t$query=$this->db->get();\n\t\treturn $query->result();\n\t}", "public function getfilingfee()\n\t{\n\t\t$filingId = $_SESSION['filingId'];\n\t\t$form_type = $_SESSION['formtype'];\n\t\t$result = $this->productpaymentDAO->getfilingfee($filingId, $form_type);\n\t\treturn $result;\n\t}", "function export_pnh_sales_report()\r\n\t {\r\n\t \t\r\n\t \t$this->erpm->auth(PNH_EXECUTIVE_ROLE|FINANCE_ROLE);\r\n\t \t\r\n\t \t//ssql to generate franchise list \r\n\t \t$sql_f = \"select pnh_franchise_id,franchise_id,login_mobile1,login_mobile2,franchise_name,b.territory_name,c.town_name \r\n\t \t\t\t\t\t\tfrom pnh_m_franchise_info a \r\n\t \t\t\t\t\t\tjoin pnh_m_territory_info b on a.territory_id = b.id\r\n\t \t\t\t\t\t\tjoin pnh_towns c on c.id = a.town_id \r\n\t \t\t\t\t\t\torder by territory_name,town_name,franchise_name\";\r\n\t \t$res_f = $this->db->query($sql_f);\r\n\t \t\r\n\t \t$fr_sales_list = array();\r\n\t \t$fr_sales_list[] = '';\r\n\t \t$fr_sales_list[] = '\"Paynearhome Franchise Sales Summary Till - '.date('d/m/Y h:i a').'\"';\r\n\t \t$fr_sales_list[] = '';\r\n\t \t$fr_sales_list[] = '';\r\n\t \t$fr_sales_list[] = '\"Slno\",\"Territory\",\"Town\",\"Status\",\"FranciseID\",\"FranchiseName\",\"Contact no\",\"Ordered\",\"Shipped\",\"Invoiced Not Shipped\",\"Cancelled\",\"Paid Till Date\",\"UnCleared\",\"Corrections\",\"Credit Notes Raised\",\"Pending Payment\",\" Before 3 Days\",\"Before 5 Days\",\"Before 7 Day\",\"Before 10 Day\"';\r\n\t \t\r\n\t \t\r\n\t \tif($res_f->num_rows())\r\n\t \t{\r\n\t \t\t$i=0;\r\n\t \t\t// loop through all franchises \r\n\t \t\tforeach($res_f->result_array() as $row_f)\r\n\t \t\t{\r\n\t \t\t\t\r\n\t \t\t\t$fr_sales_det = array();\r\n\t \t\t\t$fr_sales_det[] = ++$i;\r\n\t\t\t\t$fr_sales_det[] = $row_f['territory_name'];\r\n\t\t\t\t$fr_sales_det[] = $row_f['town_name'];\r\n\t \t\t\t$fr_sales_det[] = $row_f['is_suspended']?'Suspended':'Active';\r\n\t\t\t\t$fr_sales_det[] = $row_f['pnh_franchise_id'];\r\n\t \t\t\t$fr_sales_det[] = ucwords($row_f['franchise_name']);\r\n\t \t\t\t\r\n\t\t\t\t$cnos = array($row_f['login_mobile1'],$row_f['login_mobile2']);\r\n\t \t\t\t$fr_sales_det[] = implode('/',array_filter($cnos));\r\n\t\t\t\t\r\n\t \t\t\t// get franchise total sales \r\n\t \t\t\t$ordered_tilldate = @$this->db->query(\"select round(sum((i_orgprice-(i_coup_discount+i_discount))*b.quantity),2) as amt \r\n\t\t\t\t\t\t\t\t\tfrom king_transactions a \r\n\t\t\t\t\t\t\t\t\tjoin king_orders b on a.transid = b.transid \r\n\t\t\t\t\t\t\t\t join pnh_m_franchise_info c on c.franchise_id = a.franchise_id \r\n\t\t\t\t\t\t\t\t\twhere a.franchise_id = ? \",$row_f['franchise_id'])->row()->amt*1;\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t$cancelled_tilldate = @$this->db->query(\"select round(sum((i_orgprice-(i_coup_discount+i_discount))*b.quantity),2) as amt \r\n\t\t\t\t\t\t\t\t\tfrom king_transactions a \r\n\t\t\t\t\t\t\t\t\tjoin king_orders b on a.transid = b.transid \r\n\t\t\t\t\t\t\t\t join pnh_m_franchise_info c on c.franchise_id = a.franchise_id \r\n\t\t\t\t\t\t\t\t\twhere a.franchise_id = ? and b.status = 3 \",$row_f['franchise_id'])->row()->amt*1;\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t$shipped_tilldate = @$this->db->query(\"SELECT round(sum((i_orgprice-(i_coup_discount+i_discount))*b.quantity),2) as amt \r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tFROM king_transactions a\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN king_orders b ON a.transid = b.transid\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN pnh_m_franchise_info c ON c.franchise_id = a.franchise_id\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN king_invoice d ON d.order_id = b.id\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN shipment_batch_process_invoice_link e ON e.invoice_no = d.invoice_no\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tAND e.shipped =1 AND e.packed =1\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tWHERE a.franchise_id = ? AND d.invoice_status = 1 and b.status != 0 \r\n\t\t\t\t\t\t\t\t\t\t \",$row_f['franchise_id'])->row()->amt*1;\r\n\t\t\t\t\t\t\t\t\t\t \r\n\t\t\t\t\t\t\t\t\t\t \r\n\t\t\t\t$sql = \"select sum(debit_amt-credit_amt) as amt \r\n\t\t\t\t\t\t\tfrom pnh_franchise_account_summary where action_type = 1 and franchise_id = ? \";\r\n\t\t\t\t$active_invoiced = $this->db->query($sql,array($row_f['franchise_id']))->row()->amt*1;\t\t\t\t\t\t \r\n\t\t\t\t\r\n\t\t\t\t// invoiced not shipped \r\n\t\t\t\t$not_shipped_amount = $this->db->query(\" select sum(t) as amt from (\r\n\t\t\t\t\t\t\t\t\t\t\tselect a.invoice_no,debit_amt as t \r\n\t\t\t\t\t\t\t\t\t\t\t\tfrom pnh_franchise_account_summary a \r\n\t\t\t\t\t\t\t\t\t\t\t\tjoin king_invoice c on c.invoice_no = a.invoice_no and invoice_status = 1 \r\n\t\t\t\t\t\t\t\t\t\t\t\twhere action_type = 1 \r\n\t\t\t\t\t\t\t\t\t\t\t\tand franchise_id = ? \r\n\t\t\t\t\t\t\t\t\t\t\tgroup by a.invoice_no ) as a \r\n\t\t\t\t\t\t\t\t\t\t\tjoin shipment_batch_process_invoice_link b on a.invoice_no = b.invoice_no and shipped = 0 \",$row_f['franchise_id'])->row()->amt*1;\r\n\t\t\t\t\r\n\t\t\t\t$shipped_tilldate = $active_invoiced-$not_shipped_amount;\t\t\t \r\n\t\t\t\t\t\t\t\t\t\t \r\n\t\t\t\t//$cancelled_tilldate = $ordered_tilldate-$shipped_tilldate-$not_shipped_amount;\r\n\t\t\t\t\r\n\t\t\t\t$paid_tilldate = @$this->db->query(\"select sum(receipt_amount) as amt from pnh_t_receipt_info where receipt_type = 1 and status = 1 and franchise_id = ? \",$row_f['franchise_id'])->row()->amt*1;\r\n\t\t\t\t\r\n\t\t\t\t$sql = \"select sum(credit_amt-debit_amt) as amt \r\n\t\t\t\t\t\t\tfrom pnh_franchise_account_summary where action_type = 5 and franchise_id = ? \";\r\n\t\t\t\t$acc_adjustments_val = $this->db->query($sql,array($row_f['franchise_id']))->row()->amt*1;\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t$sql = \"select sum(credit_amt-debit_amt) as amt \r\n\t\t\t\t\t\t\tfrom pnh_franchise_account_summary where action_type = 7 and franchise_id = ? \";\r\n\t\t\t\t$ttl_credit_note_val = $this->db->query($sql,array($row_f['franchise_id']))->row()->amt;\r\n\t\t\t\t\r\n\t\t\t\t$uncleared_payment = @$this->db->query(\"select sum(receipt_amount) as amt from pnh_t_receipt_info where status = 0 and franchise_id = ? and receipt_type = 1 \",$row_f['franchise_id'])->row()->amt*1;\r\n\t\t\t\t\r\n\t\t\t\t$fr_sales_det[] = $ordered_tilldate;\r\n\t\t\t\t$fr_sales_det[] = $shipped_tilldate;\r\n\t\t\t\t$fr_sales_det[] = $not_shipped_amount;\r\n\t\t\t\t$fr_sales_det[] = $cancelled_tilldate;\r\n\t\t\t\t$fr_sales_det[] = $paid_tilldate;\r\n\t\t\t\t$fr_sales_det[] = $uncleared_payment;\r\n\t\t\t\t$fr_sales_det[] = $acc_adjustments_val;\r\n\t\t\t\t$fr_sales_det[] = $ttl_credit_note_val;\r\n\t\t\t\t$fr_sales_det[] = $shipped_tilldate-($paid_tilldate+$acc_adjustments_val+$ttl_credit_note_val);\r\n\t\t\t\t\r\n\t\t\t\t$past_sales_summ = array(3,5,7,10);\r\n\t\t\t\t\r\n\t\t\t\tforeach($past_sales_summ as $k)\r\n\t\t\t\t{\r\n\t\t\t\t\t$cond = ' and date(e.shipped_on) < date_add(curdate(),INTERVAL -'.$k.' day) ';\r\n\t\t\t\t\t$cond_pay = ' and date(from_unixtime(activated_on)) < date_add(curdate(),INTERVAL -'.$k.' day) ';\r\n\t\t\t\t\t\r\n\t\t\t\t\t$shipped_tilldate_byday = @$this->db->query(\"SELECT round(sum((i_orgprice-(i_coup_discount+i_discount))*b.quantity),2) as amt \r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tFROM king_transactions a\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN king_orders b ON a.transid = b.transid\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN pnh_m_franchise_info c ON c.franchise_id = a.franchise_id\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN king_invoice d ON d.order_id = b.id\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN shipment_batch_process_invoice_link e ON e.invoice_no = d.invoice_no\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tAND e.shipped =1 AND e.packed = 1 \r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tWHERE a.franchise_id = ? AND d.invoice_status = 1 and b.status != 0 $cond \r\n\t\t\t\t\t\t\t\t\t\t\t \",$row_f['franchise_id'])->row()->amt*1;\r\n\t\t\t\t\t\t\t\t\t\t\t \r\n\t\t\t\t\t$paid_tilldate_byday = @$this->db->query(\"select sum(receipt_amount) as amt from pnh_t_receipt_info where receipt_type = 1 and status = 1 and franchise_id = ? \",$row_f['franchise_id'])->row()->amt*1;\r\n\t\t\t\t\t\r\n\t\t\t\t\t$pen_pay_byday = ($shipped_tilldate_byday-($paid_tilldate_byday+$acc_adjustments_val+$ttl_credit_note_val));\r\n\r\n\t\t\t\t\t$fr_sales_det[] = ($pen_pay_byday>0)?$pen_pay_byday:0;\r\n\t\t\t\t\t\r\n\t\t\t\t}\t\t\t\t\t\t \r\n\t\t\t\t\r\n\t\t\t\t$fr_sales_list[] = '\"'.implode('\",\"',$fr_sales_det).'\"';\r\n\t \t\t}\r\n\t \t} \r\n\t \t\r\n\t \theader('Content-Type: application/csv');\r\n\t\theader('Content-Disposition: attachment; filename=PNH_SALES_REPORT_'.date('d_m_Y_H_i').'.csv');\r\n\t\theader('Pragma: no-cache');\r\n\r\n\t \techo implode(\"\\r\\n\",$fr_sales_list);\r\n\t \t\r\n\t }", "private function value_fundraising($data){\n $dataArray = array();\n if(isset($data->fundraising)){\n $dataArray['round_opened_at'] = $this->value_fundraising_round_opened_at($data->fundraising);\n $dataArray['raising_amount'] = $this->value_fundraising_raising_amount($data->fundraising);\n $dataArray['pre_money_valuation'] = $this->value_fundraising_pre_money_valuation($data->fundraising);\n $dataArray['equity_basis'] = $this->value_fundraising_equity_basis($data->fundraising);\n $dataArray['updated_at'] = $this->value_fundraising_updated_at($data->fundraising);\n $dataArray['raised_amount'] = $this->value_fundraising_raised_amount($data->fundraising);\n }\n return $dataArray;\n }", "function getAllsiteFee()\n {\n global $db;\n $listeFee = $db->query('SELECT idF , date , nature , amount , site_id ,initialmonatant ,totalpayments ,\n remainingbalance ,quotation_id FROM fees INNER JOIN sites WHERE fees.site_id = sites.idS \n ORDER BY idF DESC');\n return $listeFee;\n\n }", "function accommodation(){\n $sql= $this->chk(\n \"SELECT \n accommodation.name,\n accommodation.description,\n acccomodation.rate\n FROM \n accommodation \"\n );\n // \n $accomodation= $this->sqlData($sql);\n echo ($accomodation);\n }", "function sale_bill_reports($per_id,$b_id,$s_id)\n\t{\n\t\t$this->db->where('per_id',$per_id);\n\t\t$this->db->order_by('b_id','desc');\n\t\t$result['bill_data']= $this->db->get('billinfo')->result();\n\t\t//--------------- Get Saled Data --------------//\n\t\t$this->db->from('sale')\n\t\t->where('sale.per_id',$per_id)\n \t\t->group_start()\n \t\t->where('sale.trans_status',0)\n \t\t->where('sale.b_id',$b_id)\n\t \t->or_where('sale.s_id',$b_id)\n \t\t->group_end();\n\t\t$this->db->join('product pr','sale.p_id = pr.p_id');\n\t\t$qry = $this->db->get();\n\t\t$result['sale_data'] = $qry->result();\n\n\t\t//------------- Get Person details -----------//\n\t\t$this->db->from('person p');\n\t\t$this->db->where('p.Per_id',$per_id);\n\t\tif( $s_id != null ){\n\t\t\t$this->db->where('sale.s_id',$s_id);\n\t\t}else{\n\t\t\t$this->db->or_where('sale.s_id',$s_id);\n \t\t}\n \t\t$this->db->join('sale','p.Per_id = sale.Per_id');\n \t\t// $this->db->limit(1);\n\t\t$qry_1 = $this->db->get();\n\t\t$result['persondata'] = $qry_1->result();\n\t\t // echo '<pre>';print_r($result['persondata']);die;\n\t\treturn $result;\n\t}", "function fill($args) {\n global $_lib;\n\n $query = \"select i.* from invoicein as i where \";\n\n if($this->RemittanceStatus) {\n $query .= \" i.RemittanceStatus='$this->RemittanceStatus' and \";\n }\n if($this->InvoiceNumber) {\n $query .= \" i.InvoiceNumber like '%$this->InvoiceNumber%' and \";\n }\n if($this->FromDate) {\n $query .= \" i.InvoiceDate >= '$this->FromDate' and \";\n }\n if($this->ToDate) {\n $query .= \" i.InvoiceDate <= '$this->ToDate' and \";\n }\n if($this->PaymentMeans) {\n $query .= \" i.PaymentMeans = '$this->PaymentMeans' and \";\n }\n if($this->Journaled) {\n $query .= \" i.JournalID > 0 and \";\n } else {\n $query .= \" (i.JournalID = 0 or i.JournalID is NULL) and \";\n }\n\n $query = substr($query, 0, -4);\n $query .= \" order by i.InvoiceDate asc\";\n\n $result = $_lib['db']->db_query($query);\n list($NextAvailableJournalID) = $this->accounting->get_next_available_journalid(array('available' => true, 'update' => false, 'type' => $this->VoucherType, 'reuse' => false, 'from' => 'Invoicein'));\n\n while($row = $_lib['db']->db_fetch_object($result)) {\n\n $row->Journal = true;\n $row->Journaled = false;\n\n # More fail checking that sum/amount is correct and that the period is open\n\n if($row->JournalID) {\n $row->Journal = false;\n $row->Class = 'red';\n $row->Journaled = true;\n # Is already bookkept\n $row->Status .= \"Er allerede bilagsf&oslash;rt\";\n\n } else {\n $row->JournalID = $NextAvailableJournalID++;\n $row->Journal = true;\n $row->Class = 'green';\n }\n\n $query = \"select * from accountplan where AccountPlanID='\" . $row->SupplierAccountPlanID . \"' and AccountPlanType='supplier' and Active=1\";\n #print \"$query<br>\\n\";\n $account = $_lib['storage']->get_row(array('query' => $query, 'debug' => true));\n\n #Counterpart accountplan result.\n if($account) {\n\n if($account->EnableMotkontoResultat && $account->MotkontoResultat1) {\n $row->MotkontoAccountPlanID = $account->MotkontoResultat1;\n } elseif($account->EnableMotkontoBalanse && $account->MotkontoBalanse1) {\n $row->MotkontoAccountPlanID = $account->MotkontoBalanse1;\n }\n\n // Bookkeeping account data\n $query = \"select * from accountplan where AccountPlanID='\" . $row->MotkontoAccountPlanID . \"' and Active=1\";\n\n $acc = $_lib['storage']->get_row(array('query' => $query, 'debug' => true));\n\n $row->MotkontoAccountName = $acc->AccountName;\n\n\n $query_line = \"select * from invoiceinline where ID='\" . $row->ID . \"' and Active=1\";\n $_lib['sess']->debug(\"linje: $query\");\n $result_line = $_lib['db']->db_query($query_line);\n while($line = $_lib['db']->db_fetch_object($result_line)) {\n\n if(!$line->AccountPlanID) {\n # One or more invoice lines are missing result accountplan\n $row->Status .= \"En eller flere fakturalinjer mangler resultatkonto\";\n $row->Journal = false;\n $row->Class = 'red';\n break;\n }\n }\n\n } else {\n # Could not find accountplan __\n $row->Status .= \"Finner ikke kontoplan: \" . $row->SupplierAccountPlanID;\n $row->Journal = false;\n $row->Class = 'red';\n }\n\n $row->VoucherType = $this->VoucherType;\n $this->iteratorH[] = $row;\n }\n }", "function GetDetailsData(){\n\n $CoID = $this->session->userdata('CoID') ;\n $WorkYear = $this->session->userdata('WorkYear') ;\n\n $this->db->select('BillNo');\n $this->db->select('BillDate');\n $this->db->select('GodownID');\n \n $this->db->select('BrokerID');\n $this->db->select('BrokerTitle');\n $this->db->select('BillAmt');\n $this->db->select('LRNo');\n $this->db->select('DeliDate');\n $this->db->select('DebtorID');\n $this->db->select('MudiBazar');\n $this->db->select('EWayBillNo');\n $this->db->select('CPName');\n $this->db->select('PartyTitle');\n $this->db->select('Area');\n $this->db->select('SaleType');\n $this->db->select('HelMajuri');\n $this->db->select('OtherChrgs');\n \n $this->db->from('SaleMast');\n $this->db->where(array('CoID' => $CoID, 'WorkYear' => $WorkYear));\n $query = $this->db->get();\n\n \n $result = $query->result();\n return $result;\n }", "function pnh_exp_franchise_orders_stat()\r\n\t{\r\n\t\t$this->erpm->auth(true);\r\n\t\t\r\n\t\t$fran_list_res = $this->db->query(\"select franchise_id,franchise_name,is_suspended,territory_name,town_name from pnh_m_franchise_info a join pnh_m_territory_info b on a.territory_id = b.id join pnh_towns c on c.id = a.town_id order by franchise_name;\");\r\n\t\t$fran_sales_data = array();\r\n\t\tforeach($fran_list_res->result_array() as $fran)\r\n\t\t{\r\n\t\t\tif(!isset($fran_sales_data[$fran['franchise_id']]))\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']] = array();\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['name'] = $fran['franchise_name'];\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['territory'] = $fran['territory_name'];\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['town'] = $fran['town_name'];\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['last_ordered_on'] = @$this->db->query(\"select date(from_unixtime(b.init)) as last_ordered_on from king_orders a join king_transactions b on a.transid = b.transid and b.is_pnh = 1 where franchise_id = ? order by b.init desc limit 1\",$fran['franchise_id'])->row()->last_ordered_on;\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t$shipped_tilldate=$this->db->query(\"SELECT round(sum((i_orgprice-(i_coup_discount+i_discount))*b.quantity),2) as amt \r\n\t\t\t\t\t\t\t\t\t\t\t\t\tFROM king_transactions a\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN king_orders b ON a.transid = b.transid\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN pnh_m_franchise_info c ON c.franchise_id = a.franchise_id\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN king_invoice d ON d.order_id = b.id\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN shipment_batch_process_invoice_link e ON e.invoice_no = d.invoice_no\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tAND e.shipped =1 AND e.packed =1\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tWHERE a.franchise_id = ? AND d.invoice_status = 1 and b.status != 0 \r\n\t\t\t\t\t\t\t \t\t\t\t\t\t\",$fran['franchise_id'])->row()->amt;\r\n\t\t\t\t$paid_tilldate =$this->db->query(\"select sum(receipt_amount) as amt from pnh_t_receipt_info where receipt_type = 1 and status = 1 and franchise_id = ? \",$fran['franchise_id'])->row()->amt;\r\n\t\t\t\t$payment_pending = round($shipped_tilldate-$paid_tilldate,2);\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['pending_payment'] = $payment_pending;\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['current_week_sales'] = round($this->db->query(\"select ifnull(sum(i_orgprice-(i_coup_discount+i_discount)),0)*1 as amt from king_orders a join king_transactions b on a.transid = b.transid and b.is_pnh = 1 where date(from_unixtime(b.init)) between DATE_ADD(curdate(), INTERVAL - (dayofweek(curdate())-1) DAY) and curdate() and a.status < 3 and franchise_id = ? \",$fran['franchise_id'])->row()->amt,2);\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['week_4'] = round($this->db->query(\"select ifnull(sum(i_orgprice-(i_coup_discount+i_discount)*quantity),0)*1 as amt from king_orders a join king_transactions b on a.transid = b.transid and b.is_pnh = 1 where date(from_unixtime(b.init)) between DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate())+1 DAY), INTERVAL -1 WEEK) and DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate()) DAY), INTERVAL 0 WEEK) and a.status < 3 and franchise_id = ? \",$fran['franchise_id'])->row()->amt,2);\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['week_3'] = round($this->db->query(\"select ifnull(sum(i_orgprice-(i_coup_discount+i_discount)*quantity),0)*1 as amt from king_orders a join king_transactions b on a.transid = b.transid and b.is_pnh = 1 where date(from_unixtime(b.init)) between DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate())+1 DAY), INTERVAL -2 WEEK) and DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate()) DAY), INTERVAL -1 WEEK) and a.status < 3 and franchise_id = ? \",$fran['franchise_id'])->row()->amt,2);\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['week_2'] = round($this->db->query(\"select ifnull(sum(i_orgprice-(i_coup_discount+i_discount)*quantity),0)*1 as amt from king_orders a join king_transactions b on a.transid = b.transid and b.is_pnh = 1 where date(from_unixtime(b.init)) between DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate())+1 DAY), INTERVAL -3 WEEK) and DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate()) DAY), INTERVAL -2 WEEK) and a.status < 3 and franchise_id = ? \",$fran['franchise_id'])->row()->amt,2);\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['week_1'] = round($this->db->query(\"select ifnull(sum(i_orgprice-(i_coup_discount+i_discount)*quantity),0)*1 as amt from king_orders a join king_transactions b on a.transid = b.transid and b.is_pnh = 1 where date(from_unixtime(b.init)) between DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate())+1 DAY), INTERVAL -4 WEEK) and DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate()) DAY), INTERVAL -3 WEEK) and a.status < 3 and franchise_id = ? \",$fran['franchise_id'])->row()->amt,2);\r\n\t\t\t\t\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['month_4'] = round($this->db->query(\"select ifnull(sum(i_orgprice-(i_coup_discount+i_discount)*quantity),0)*1 as amt from king_orders a join king_transactions b on a.transid = b.transid and b.is_pnh = 1 where date(from_unixtime(b.init)) between ADDDATE(LAST_DAY(SUBDATE(curdate(), INTERVAL 2 MONTH)), 1) and LAST_DAY(SUBDATE(curdate(), INTERVAL 1 MONTH)) and a.status < 3 and franchise_id = ? \",$fran['franchise_id'])->row()->amt,2);\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['month_3'] = round($this->db->query(\"select ifnull(sum(i_orgprice-(i_coup_discount+i_discount)*quantity),0)*1 as amt from king_orders a join king_transactions b on a.transid = b.transid and b.is_pnh = 1 where date(from_unixtime(b.init)) between ADDDATE(LAST_DAY(SUBDATE(curdate(), INTERVAL 3 MONTH)), 1) and LAST_DAY(SUBDATE(curdate(), INTERVAL 2 MONTH)) and a.status < 3 and franchise_id = ? \",$fran['franchise_id'])->row()->amt,2);\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['month_2'] = round($this->db->query(\"select ifnull(sum(i_orgprice-(i_coup_discount+i_discount)*quantity),0)*1 as amt from king_orders a join king_transactions b on a.transid = b.transid and b.is_pnh = 1 where date(from_unixtime(b.init)) between ADDDATE(LAST_DAY(SUBDATE(curdate(), INTERVAL 4 MONTH)), 1) and LAST_DAY(SUBDATE(curdate(), INTERVAL 3 MONTH)) and a.status < 3 and franchise_id = ? \",$fran['franchise_id'])->row()->amt,2);\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['month_1'] = round($this->db->query(\"select ifnull(sum(i_orgprice-(i_coup_discount+i_discount)*quantity),0)*1 as amt from king_orders a join king_transactions b on a.transid = b.transid and b.is_pnh = 1 where date(from_unixtime(b.init)) between ADDDATE(LAST_DAY(SUBDATE(curdate(), INTERVAL 5 MONTH)), 1) and LAST_DAY(SUBDATE(curdate(), INTERVAL 4 MONTH)) and a.status < 3 and franchise_id = ? \",$fran['franchise_id'])->row()->amt,2);\r\n\t\t\t\t\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['sales_till_date'] = round($this->db->query(\"select ifnull(sum(i_orgprice-(i_coup_discount+i_discount)*quantity),0)*1 as amt from king_orders a join king_transactions b on a.transid = b.transid and b.is_pnh = 1 where a.status < 3 and franchise_id = ? \",$fran['franchise_id'])->row()->amt,2);\r\n\t\t\t\t\r\n\t\t\t\t$fran_topsalesbycat = $this->db->query(\"select e.name,ifnull(round(sum(i_orgprice-(i_coup_discount+i_discount)*a.quantity),2),0) as amt \r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfrom king_orders a \r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tjoin king_transactions b on a.transid = b.transid and b.is_pnh = 1 \r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tjoin king_dealitems c on c.id = a.itemid\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tjoin king_deals d on d.dealid = c.dealid\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tjoin pnh_menu e on e.id = d.menuid\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\twhere a.status < 3 and franchise_id = ? \r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tgroup by d.menuid \r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\torder by amt desc \r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlimit 3\",$fran['franchise_id'])->result_array();\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['top_selling_category_1'] = isset($fran_topsalesbycat[0])?$fran_topsalesbycat[0]['name'].'-'.$fran_topsalesbycat[0]['amt']:\"\";\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['top_selling_category_2'] = isset($fran_topsalesbycat[1])?$fran_topsalesbycat[1]['name'].'-'.$fran_topsalesbycat[1]['amt']:\"\";\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['top_selling_category_3'] = isset($fran_topsalesbycat[2])?$fran_topsalesbycat[2]['name'].'-'.$fran_topsalesbycat[2]['amt']:\"\";\r\n\t\t\t\t\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['total_members'] = $this->db->query(\"select count(*) as t from pnh_member_info where franchise_id = ? \",$fran['franchise_id'])->row()->t;\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['ordered_members'] = $this->db->query(\"select count( distinct a.userid ) as t from king_orders a join king_transactions b on a.transid = b.transid and is_pnh = 1 join pnh_member_info c on c.user_id = a.userid where c.franchise_id = ? ; \",$fran['franchise_id'])->row()->t;\r\n\t\t\t\t$fran_sales_data[$fran['franchise_id']]['suspended'] = $fran['is_suspended'];\r\n\t\t}\r\n\t\t$fran_sales_data_fil = array();\r\n\t\tforeach($fran_sales_data as $fid=>$fdet)\r\n\t\t{\r\n\t\t\t$week4_det = $this->db->query(\"select DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate())+1 DAY), INTERVAL -1 WEEK) as w_st,DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate()) DAY), INTERVAL 0 WEEK) as w_en\")->row_array();\r\n\t\t\t$week3_det = $this->db->query(\"select DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate())+1 DAY), INTERVAL -2 WEEK) as w_st,DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate()) DAY), INTERVAL -1 WEEK) as w_en\")->row_array();\r\n\t\t\t$week2_det = $this->db->query(\"select DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate())+1 DAY), INTERVAL -3 WEEK) as w_st,DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate()) DAY), INTERVAL -2 WEEK) as w_en\")->row_array();\r\n\t\t\t$week1_det = $this->db->query(\"select DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate())+1 DAY), INTERVAL -4 WEEK) as w_st,DATE_ADD(DATE_ADD(curdate(), INTERVAL - dayofweek(curdate()) DAY), INTERVAL -3 WEEK) as w_en\")->row_array();\r\n\t\t\t\r\n\t\t\t$mon4_det = $this->db->query(\"select ADDDATE(LAST_DAY(SUBDATE(curdate(), INTERVAL 2 MONTH)), 1) as m_st,LAST_DAY(SUBDATE(curdate(), INTERVAL 1 MONTH)) as m_en\")->row_array();\r\n\t\t\t$mon3_det = $this->db->query(\"select ADDDATE(LAST_DAY(SUBDATE(curdate(), INTERVAL 3 MONTH)), 1) as m_st,LAST_DAY(SUBDATE(curdate(), INTERVAL 2 MONTH)) as m_en\")->row_array();\r\n\t\t\t$mon2_det = $this->db->query(\"select ADDDATE(LAST_DAY(SUBDATE(curdate(), INTERVAL 4 MONTH)), 1) as m_st,LAST_DAY(SUBDATE(curdate(), INTERVAL 3 MONTH)) as m_en\")->row_array();\r\n\t\t\t$mon1_det = $this->db->query(\"select ADDDATE(LAST_DAY(SUBDATE(curdate(), INTERVAL 5 MONTH)), 1) as m_st,LAST_DAY(SUBDATE(curdate(), INTERVAL 4 MONTH)) as m_en\")->row_array();\r\n\t\t\t\r\n\t\t\t$tmp = array();\r\n\t\t\t$tmp['Territory'] = $fdet['territory'];\r\n\t\t\t$tmp['Town'] = $fdet['town'];\r\n\t\t\t$tmp['Franchise'] = $fdet['name'];\r\n\t\t\t$tmp['Last ordered on'] = $fdet['last_ordered_on'];\r\n\t\t\t\r\n\t\t\t$tmp['Pending payment'] = $fdet['pending_payment'];\r\n\t\t\t$tmp['Current week sales'] = $fdet['current_week_sales'];\r\n\t\t\t \r\n\t\t\t$tmp[date('d M',strtotime($week4_det['w_st'])).' - '.date('d M',strtotime($week4_det['w_en']))] = $fdet['week_4'];\r\n\t\t\t\r\n\t\t\t$tmp[date('d M',strtotime($week3_det['w_st'])).' - '.date('d M',strtotime($week3_det['w_en']))] = $fdet['week_3'];\r\n\t\t\t\r\n\t\t\t$tmp[date('d M',strtotime($week2_det['w_st'])).' - '.date('d M',strtotime($week2_det['w_en']))] = $fdet['week_2'];\r\n\t\t\t\r\n\t\t\t$tmp[date('d M',strtotime($week1_det['w_st'])).' - '.date('d M',strtotime($week1_det['w_en']))] = $fdet['week_1'];\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t$tmp[date('MY',strtotime($mon4_det['m_st']))] = $fdet['month_4'];\r\n\t\t\t\r\n\t\t\t$tmp[date('MY',strtotime($mon3_det['m_st']))] = $fdet['month_3'];\r\n\t\t\t\r\n\t\t\t$tmp[date('MY',strtotime($mon2_det['m_st']))] = $fdet['month_2'];\r\n\t\t\t\r\n\t\t\t$tmp[date('MY',strtotime($mon1_det['m_st']))] = $fdet['month_1'];\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t$tmp['Top selling category 1'] = $fdet['top_selling_category_1'];\r\n\t\t\t$tmp['Top selling category 2'] = $fdet['top_selling_category_2'];\r\n\t\t\t$tmp['Top selling category 3'] = $fdet['top_selling_category_3'];\r\n\t\t\t\r\n\t\t\t$tmp['Total members'] = $fdet['total_members'];\r\n\t\t\t$tmp['ordered members'] = $fdet['ordered_members'];\r\n\t\t\t$tmp['Suspended'] = $fdet['suspended'];\r\n\t\t\t\r\n\t\t\t$fran_sales_data_fil[]=$tmp;\r\n\t\t\t\r\n\t\t\t\r\n\t\t}\r\n\t\t \r\n\t\t$this->erpm->export_csv(\"Franchise Sales Value Report -\".date('Y-m-d'),$fran_sales_data_fil);\r\n\t\t\r\n\t}", "function getShipping()\n {\n return array('name'=>'test','cost'=>4.5);\n }", "public function purchasedBooks()\n { \n return $this->orders();\n }", "function pnh_getdeals()\r\n\t{\r\n\t\t$sql = \"select ifnull(group_concat(smd.special_margin),0) as sm,d.publish,d.brandid,d.catid,i.orgprice,\r\n\t\t\t\t\t\ti.price,i.name,i.pic,i.pnh_id,i.id as itemid,\r\n\t\t\t\t\t\tb.name as brand,c.name as category \r\n\t\t\t\t\tfrom king_deals d \r\n\t\t\t\t\tjoin king_dealitems i on i.dealid=d.dealid \r\n\t\t\t\t\tjoin king_brands b on b.id=d.brandid \r\n\t\t\t\t\tjoin king_categories c on c.id=d.catid \r\n\t\t\t\t\tleft join pnh_special_margin_deals smd on i.id = smd.itemid and smd.from <= unix_timestamp() and smd.to >=unix_timestamp() \r\n\t\t\t\t\twhere i.is_pnh=1 \r\n\t\t\t\t\tgroup by i.id \r\n\t\t\t\t\torder by i.sno desc\r\n\t\t\t\t\tlimit 30 \r\n\t\t\t\t\";\r\n\t\treturn $this->db->query($sql)->result_array();\r\n\t}", "public function fetchCoffeeShops(){\n // $endPrice = $this->_request['endPrice'] != \"undefined\" ? intval ($this->_request['endPrice']) : -1;\n \n\n $sql = \"select distinct * from coffee_shops cf join city c on cf.CityId = c.CityID \";\n // if($startPrice!=\"undefined\")\n // {\n // $sql.=\" where cf.start_price>=$startPrice \";\n // if($endPrice != -1 )\n // $sql.=\" and cf.end_price<=$endPrice\";\n // }\n $rows = $this->executeGenericDQLQuery($sql);\n $coffeeShops = array();\n for($i=0;$i<sizeof($rows);$i++)\n {\n\n\n $coffeeShops[$i]['Name'] =($rows[$i]['Name'] == null || $rows[$i]['Name'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Name'] ;\n $coffeeShops[$i]['Address'] =($rows[$i]['Address'] == null || $rows[$i]['Address'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Address'] ;\n $coffeeShops[$i]['content'] =($rows[$i]['content'] == null || $rows[$i]['content'] ==\"null\") ? \"No Data Available\" : $rows[$i]['content'] ;\n $coffeeShops[$i]['Phone1'] =($rows[$i]['Phone1'] == null || $rows[$i]['Phone1'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Phone1'] ;\n $coffeeShops[$i]['Phone2'] =($rows[$i]['Phone2'] == null || $rows[$i]['Phone2'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Phone2'] ;\n $coffeeShops[$i]['Phone3'] =($rows[$i]['Phone3'] == null || $rows[$i]['Phone3'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Phone3'] ;\n $coffeeShops[$i]['Mobile'] =($rows[$i]['Mobile'] == null || $rows[$i]['Mobile'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Mobile'] ;\n $coffeeShops[$i]['Website'] =($rows[$i]['Website'] == null || $rows[$i]['Website'] ==\"null\") ? \"No Data Available\" : $rows[$i]['Website'] ;\n $coffeeShops[$i]['Category'] =($rows[$i]['Category'] == null) ? 0 : $rows[$i]['Category'] ;\n $coffeeShops[$i]['Facilities'] =$this->getFacilitiesByIds($rows[$i]['Facilities']);\n $coffeeShops[$i]['CityId'] =$rows[$i]['CityId'] ;\n $coffeeShops[$i]['icon_image'] =($rows[$i]['icon_image'] == null || $rows[$i]['icon_image'] ==\"null\") ? \"img/not_found.jpg\" : $rows[$i]['icon_image'] ;\n $coffeeShops[$i]['home_image'] =($rows[$i]['home_image'] == null || $rows[$i]['home_image'] ==\"null\") ? \"img/not_found.jpg\" : $rows[$i]['home_image'] ;\n \n \n \n \n }\n $this->response($this->json($coffeeShops), 200);\n\n }", "public function get_listings_details($dom){\t\n\t\t\t//push each entry into new array\n\t\t\t$update_item_array = array();\n\t\t\t$update_item_array['itemnumber'] = array();\n\t\t\t$update_item_array['customlabel'] = array();\n\t\t\t$update_item_array['quantity'] = array();\n\t\t\t$update_item_array['quantitysoldandavailable'] = array();\n\t\t\t$update_item_array['sellprice'] = array();\n\t\t\t$update_item_array['starttime'] = array();\n\t\t\t$update_item_array['endtime'] = array();\n\t\t\t$update_item_array['itemtitle'] = array();\n\t\t\t$update_item_array['stockcntrl'] = array();\n\t\t\t$update_item_array['listingtype'] = array();\n\n\n\t\t\t$update_item_response = $dom->getElementsByTagName(DOM_ELEMENT_LISTINGSSHOW_RESPONSE);\n\n\n\n\t\t\tforeach ($update_item_response as $item){\n\t \t\t\t\n\n\t\t\t\t$activelist = $item->getElementsByTagName(DOM_ELEMENT_LISTINGS_ACTIVELIST);\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tforeach ($activelist as $activelistshow){\n\t\t\t\t\t\n\t\t\t\t\t$itemarrays = $activelistshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_ITEMARRAY);\n\n\n\t\t\t\t\tforeach($itemarrays as $itemarray){\n\n\t\t\t\t\t\t$inditems = $itemarray->getElementsByTagName(DOM_ELEMENT_LISTINGS_ITEMSS);\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\tforeach($inditems as $inditemshow){\n\n\t\t\t\t\t\t\t$costers = trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_LISTINGTYPE)->item(0)->nodeValue) != \"\" ? trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_LISTINGTYPE)->item(0)->nodeValue) : \"Listing Type - Error\";\n\n\t\t\t\t\t\t\tarray_push($update_item_array['listingtype'], $costers);\n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t$costers = trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_ITEMID)->item(0)->nodeValue) != \"\" ? trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_ITEMID)->item(0)->nodeValue) : \"Item Num - Error\";\n\n\t\t\t\t\t\t\tarray_push($update_item_array['itemnumber'], $costers);\n\n\t\t\t\t\t\t\t$costers = trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_SKU)->item(0)->nodeValue) != \"\" ? trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_SKU)->item(0)->nodeValue) : \"SKU - Error\";\n\n\t\t\t\t\t\t\tarray_push($update_item_array['customlabel'], $costers);\n\t\t\t\t\n\t\t\t\t\t\t\t$costers = trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_QUANTITY)->item(0)->nodeValue) != \"\" ? trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_QUANTITY)->item(0)->nodeValue) : \"0\";\n\n\t\t\t\t\t\t\tarray_push($update_item_array['quantity'], $costers);\n\n\t\t\t\t\t\t\t$costers = trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_TOTALQUANTITY)->item(0)->nodeValue) != \"\" ? trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_TOTALQUANTITY)->item(0)->nodeValue) : \"0\";\n\n\t\t\t\t\t\t\tarray_push($update_item_array['quantitysoldandavailable'], $costers);\n\n\n\n\t\t\t\t\t\t\t$costers = trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_CURRENTPRICE)->item(0)->nodeValue) != \"\" ? trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_CURRENTPRICE)->item(0)->nodeValue) : \"price sold - Error\";\n\n\t\t\t\t\t\t\tarray_push($update_item_array['sellprice'], $costers);\t\n\n\n\n\t\t\t\t\t\t\t$costers = trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_STARTTIME)->item(0)->nodeValue) != \"\" ? trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_STARTTIME)->item(0)->nodeValue) : \"0\";\n\n\n\t\t\t\t\t\t\tarray_push($update_item_array['starttime'], $costers);\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t$costers = trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_ENDTIME)->item(0)->nodeValue) != \"\" ? trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_ENDTIME)->item(0)->nodeValue) : \"\";\n\n\n\t\t\t\t\t\t\tarray_push($update_item_array['endtime'], $costers);\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t$costers = trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_ITEMTITLE)->item(0)->nodeValue) != \"\" ? trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_ITEMTITLE)->item(0)->nodeValue) : \"\";\n\n\n\t\t\t\t\t\t\tarray_push($update_item_array['itemtitle'], $costers);\t\t\t\t\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t$costers = trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_STOCKCNTRL)->item(0)->nodeValue) != \"\" ? trim($inditemshow->getElementsByTagName(DOM_ELEMENT_LISTINGS_STOCKCNTRL)->item(0)->nodeValue) : \"FALSE\";\n\n\n\t\t\t\t\t\t\tarray_push($update_item_array['stockcntrl'], $costers);\t\t\n\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t}\n\n\n\n\t\t\t\t\t\n\t\t\t\t}\t\t\n\n\n\t\t\t\t//errors\n\t\t\t\t$error_messages = $item->getElementsByTagName(DOM_ELEMENT_ERRORS);\n\n\t\t\t\tforeach ($error_messages as $errormsg){\n\t\t\t\t\t$error = trim($errormsg->getElementsByTagName(DOM_ELEMENT_SHORT_ERROR_MSG)->item(0)->nodeValue) != \"\" ? trim($errormsg->getElementsByTagName(DOM_ELEMENT_SHORT_ERROR_MSG)->item(0)->nodeValue) : \"No Error\";\n\t\t\t\t\tarray_push($update_item_array, $error);\n\t\t\t\t}\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\n\t\t\t}\n\n\t\t\treturn $update_item_array;\n\n\t\t//DOM_ELEMENT_SHORT_ERROR_MSG\n\t\t}", "function fetch_daily_sales_report(){\n \t\t$this->db->select('products.PRODUCT, SUM(sales.QUANTITY_SOLD) SALES, products.COST_PRICE, products.SALES_PRICE, sales.SALES_DATE');\n \t\t$this->db->from('sales');\n \t\t$this->db->join('products', 'products.PRODUCT_ID=sales.PRODUCT_ID', 'left');\n \t\t$this->db->where('sales.SALES_DATE', date('Y-m-d'));\n \t\t$this->db->where('sales.STATUS','Confirmed');\n \t\t$this->db->group_by('sales.PRODUCT_ID');\n \t\t$query=$this->db->get();\n \t\tif($query->num_rows()>0){\n \t\t\treturn $query->result();\n \t\t}\n \t\telse{\n \t\t\treturn false;\n \t\t}\n \t}", "public function get_sales_data(Request $request){\n\n $sales_graph=$this->all_orders->groupBy(function($item){\n return ($item->created_at->format('Y:m'));\n })->map(function($item,$key){\n return ($item->sum('grand_total'));\n });\n $orders_graph=$this->all_orders->groupBy(function($item){\n return ($item->created_at->format('Y:m'));\n })->map(function($item,$key){\n return ($item->count());\n });\n \n $sales_str=\"[\";\n foreach($sales_graph as $key=>$value){\n\n if($sales_graph->last()==$value)\n $sales_str.='{\"Month\" : \"' . $key . '\", \"Sales\":\"'.$value .'\"}';\n else\n $sales_str.='{\"Month\": \"' . $key . '\", \"Sales\":\"'.$value .'\"},';\n }\n $sales_str.=\"]\";\n \n $orders_str=\"[\";\n \n foreach($orders_graph as $key=>$value){\n\n if($orders_graph->last()==$value)\n $orders_str.='{\"Month\" : \"' . $key . '\", \"Orders\":\"'.$value .'\"}';\n else\n $orders_str.='{\"Month\": \"' . $key . '\", \"Orders\":\"'.$value .'\"},';\n }\n $orders_str.=\"]\";\n\n\n echo json_encode([$sales_str,$orders_str]);\n }", "function sys_sales($oConnect, $link, $startDate, $endDate,&$sys_log) {\n $sSQL = \"sp_report SalesByItemDetail show Text, Blank, TxnType, Date, Memo, Name, Quantity, UnitPrice, Amount parameters DateFrom = {d'$startDate'}, DateTo= {d'$endDate'}\";\n // Perform the query\n $oResult = odbc_exec($oConnect, $sSQL);\n $keys = array(\"Type\", \"FullName\", \"Description\", \"TxnType\", \"Date\", \"Memo\", \"Name\", \"Quantity\", \"UnitPrice\", \"Amount\");\n $lFieldCount = odbc_num_fields($oResult);\n $rows = array();\n //print_r($keys.\"<br>\");\n while ($myRow = odbc_fetch_array($oResult)) {\n $rows[] = $myRow;\n }\n $values = array();\n $Type = \"\";\n $FullName = \"\";\n $NewFullName = \"\";\n $Description = \"\";\n if (count($rows) > 0) {\n // do delete then add\n $resUpdate = mysqli_query($link, \"delete from r_salesbyitemdetail WHERE date>= '$startDate' \");\n //print (\"delete from r_salesbyitemdetail WHERE date>= '$startDate'\");\n if ($resUpdate) {\n $items = 0;\n for ($i = 0;$i < count($rows);++$i) {\n $values = array();\n $l1_parentCount = 0;\n $l2_parentCount = 0;\n $l3_parentCount = 0;\n // print $rows[$i]['Text'];\n //if ($rows[$i]['Text'] == \"\" && $rows[$i]['Blank'] == \"\" && $rows[$i]['Amount'] != \"\")\n if ($rows[$i]['UnitPrice'] != \"\") {\n if ($i >= 3) {\n if ($rows[$i - 1]['Text'] != \"\" && $rows[$i - 1]['Amount'] == \"\") {\n $Description = $rows[$i - 1]['Text'];\n if ($rows[$i - 2]['Text'] != \"\" && $rows[$i - 2]['Amount'] == \"\") {\n $FullName = $rows[$i - 2]['Text'];\n if ($rows[$i - 3]['Text'] != \"\" && $rows[$i - 3]['Amount'] == \"\") {\n $Type = $rows[$i - 3]['Text'];\n }\n }\n }\n }\n if (strpos($Description, '(') !== false) {\n $newDescription = preg_replace(\"/\\([^)]+\\)/\", \"\", $Description);\n $NewFullName = $FullName . ':' . $newDescription;\n $splitArr = explode(\"(\", $Description);\n $newDescription2 = str_replace(\")\", \"\", $splitArr[1]);\n } else {\n $NewFullName = $FullName . ':' . $Description;\n $newDescription2 = $Description;\n }\n array_push($values, $Type);\n array_push($values, $NewFullName);\n //array_push($values, addslashes($Description));\n array_push($values, addslashes($newDescription2));\n array_push($values, $rows[$i]['TxnType']);\n array_push($values, $rows[$i]['Date']);\n array_push($values, addslashes($rows[$i]['Memo']));\n array_push($values, $rows[$i]['Name']);\n array_push($values, $rows[$i]['Quantity']);\n array_push($values, $rows[$i]['UnitPrice']);\n array_push($values, $rows[$i]['Amount']);\n //print $Type . \"**:***\" . $FullName . \"***:***\" . $Description . \"*************\".$rows[$i]['TxnType'] . \" - \" . $rows[$i]['Date'] . \" - \" . $rows[$i]['Memo'] . \" - \" . $rows[$i]['Name'] . \" - \" . $rows[$i]['Quantity'] . \" - \" . $rows[$i]['UnitPrice'] . \" - \" . $rows[$i]['Amount'] . \"<br />\";\n //print_r($values.\"<br>\");\n $resInsert = mysqli_query($link, \"INSERT INTO r_salesbyitemdetail (\" . implode(\", \", $keys) . \") VALUES ('\" . implode(\"', '\", $values) . \"');\"); // insert one row into new table\n if ($resInsert) {\n //print (\"r_salesbyitemdetail--Insert2 :Success<br>\");\n \n } else {\n print (\"r_salesbyitemdetail--INSERT INTO r_salesbyitemdetail (\" . implode(\", \", $keys) . \") VALUES ('\" . implode(\"', '\", $values) . \"')<br>\");\n }\n $items++;\n }\n }\n } else {\n print (\"delete failed!<br>\");\n }\n }\n odbc_free_result($oResult);\n\t$sys_log .=\"total No. of SalesByItemDetail: $items \\r\\n\";\n\t\n\t\n echo \"<br>total No. of SalesByItemDetail: $items\";\n\t//$arr['SalesByItemDetail'] = \"total No. of SalesByItemDetail: $items\";\n\t\n}", "public function getPraposalFinsummary( $param1 = null, $param2 = null, $param3 = null, $param4 = null, $param5 = null, $param6 = null, $param7 = null)\n {\n $endUseList = $param2;\n $loanProduct = $param2;\n $amount = $param3;\n $loanTenure = $param4;\n $companySharePledged = null;\n $bscNscCode = null;\n if (isset($param5) && isset($param6)) {\n $companySharePledged = $param5;\n $bscNscCode = $param6;\n $loanId = $param7;\n } else {\n $loanId = $param5;\n }\n\n\n $loan = null;\n $loanType = null;\n //$bl_year = MasterData::BalanceSheet_FY();\n $bl_year = $this->setFinancialYears();\n $groupType = Config::get('constants.CONST_FIN_GROUP_TYPE_RATIO');\n $financialGroups = FinancialGroup::with('financialEntries')->where('type', '=', $groupType)->where('status', '=', 1)->orderBy('sortOrder')->get();\n $helper = new ExpressionHelper($loanId);\n $financialDataRecords = BalanceSheet::where('loan_id', '=', $loanId)->get();\n\n\n $financialDataExpressionsMap = $helper->calculateRatios();\n //dd($bl_year, $groupType, $financialGroups, $financialDataExpressionsMap);\n $financialDataMap = new Collection();\n $showFormulaText = true;\n $financialProfitLoss = ProfitLoss::where('loan_id', '=', $loanId)->get();\n $test = Cashflow::where('loan_id', '=', $loanId)->get();\n $fromCashflowTable = Cashflow::periodsCashflowIdMap($loanId);\n //echo $existingPeriodsCashsasflowIdMap[76]->value;\n /* echo \"<pre>\";\n print_r($fromCashflowTable['FY 2017-18(Prov)'][79]->value);\n echo \"</pre>\";*/\n\n \n $ratios = Ratio::where('loan_id', '=', $loanId)->get();\n /* echo \"<pre>\";\n print_r($ratios);\n echo \"</pre>\";\n */ \n $subViewType = 'loans._finsummary';\n $formaction = 'Loans\\LoansController@postPraposalFinsummary';\n //$formaction = 'loans/newlap/uploaddoc/'.$loanId;\n $validLoanHelper = new validLoanUrlhelper();\n //getting borrowers profile\n if (isset($loanId)) {\n $loan = Loan::find($loanId);\n\n $loanUser = User::find($loan->user_id);\n $loanUserProfile = $loanUser->userProfile();\n }\n $userPr = UserProfile::where('user_id', '=', $loan->user_id)->first();\n $userProfileFirm = UserProfile::with('user')->find($userPr->id);\n return view('loans.praposalCreditEdit', compact(\n 'subViewType',\n 'loan',\n 'loanId',\n 'endUseList',\n 'loanType',\n 'amount',\n 'loanTenure',\n 'formaction',\n 'bl_year',\n 'financialGroups',\n 'groupType',\n 'financialDataExpressionsMap',\n 'showFormulaText',\n 'financialDataMap',\n 'fromCashflowTable',\n 'validLoanHelper',\n 'userProfileFirm',\n 'loanUserProfile',\n 'companySharePledged',\n 'bscNscCode',\n 'financialProfitLoss',\n 'ratios',\n 'financialDataRecords'\n ));\n }", "function get_franchise_payment_details($fr_id)\r\n\t{\r\n\t\t$data = array();\r\n\t\t$data['ordered_tilldate'] = @$this->db->query(\"select round(sum((i_orgprice-(i_coup_discount+i_discount))*b.quantity),2) as amt \r\n\t\tfrom king_transactions a \r\n\t\tjoin king_orders b on a.transid = b.transid \r\n\t join pnh_m_franchise_info c on c.franchise_id = a.franchise_id \r\n\t\twhere a.franchise_id = ? \",$fr_id)->row()->amt;\r\n\t\t\r\n\t\t$data['shipped_tilldate'] = @$this->db->query(\"SELECT round(sum((i_orgprice-(i_coup_discount+i_discount))*b.quantity),2) as amt \r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tFROM king_transactions a\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN king_orders b ON a.transid = b.transid\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN pnh_m_franchise_info c ON c.franchise_id = a.franchise_id\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN king_invoice d ON d.order_id = b.id\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tJOIN shipment_batch_process_invoice_link e ON e.invoice_no = d.invoice_no\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tAND e.shipped =1 AND e.packed =1\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tWHERE a.franchise_id = ? AND d.invoice_status = 1 and b.status != 0 \r\n\t\t\t\t\t\t\t\t \",$fr_id)->row()->amt;\r\n\t\t$data['cancelled_tilldate'] = $data['ordered_tilldate']-$data['shipped_tilldate'];\r\n\t\t\r\n\t\t$data['paid_tilldate'] = @$this->db->query(\"select sum(receipt_amount) as amt from pnh_t_receipt_info where receipt_type = 1 and status = 1 and franchise_id = ? \",$fr_id)->row()->amt;\r\n\t\t$data['uncleared_payment'] = @$this->db->query(\"select sum(receipt_amount) as amt from pnh_t_receipt_info where status = 0 and franchise_id = ? \",$fr_id)->row()->amt;\r\n\t\t\r\n\t\t$data['pending_payment'] = $data['shipped_tilldate']-$data['paid_tilldate'];\r\n\t\treturn $data;\r\n\t}", "public function getData()\n {\n $oUtils = $this->getDataUtils();\n $oConvert = $this->getConverter();\n $aShopData = $this->_getData();\n\n $dError = (double) $this->_calculatePayPalTaxError($aShopData);\n $dHandlingExtra = $dDiscountExtra = 0.0;\n\n if ($dError >= 0.0) {\n $dHandlingExtra = $dError;\n } else {\n $dDiscountExtra = $dError;\n }\n\n return array(\n 'Amount' => array(\n 'Total' => $oConvert->price($oUtils->getArrayValue('Total', $aShopData)),\n 'Currency' => $oConvert->string($oUtils->getArrayValue('Currency', $aShopData), 3),\n ),\n 'Details' => array(\n 'Subtotal' => $oConvert->price($oUtils->getArrayValue('Subtotal', $aShopData)),\n 'Tax' => $oConvert->price($oUtils->getArrayValue('Tax', $aShopData)),\n 'HandlingFee' => $oConvert->price($oUtils->getArrayValue('HandlingFee', $aShopData) + $dHandlingExtra),\n 'Insurance' => $oConvert->price($oUtils->getArrayValue('Insurance', $aShopData)),\n 'Shipping' => $oConvert->price($oUtils->getArrayValue('Shipping', $aShopData)),\n 'ShippingDiscount' => $oConvert->price($oUtils->getArrayValue('ShippingDiscount', $aShopData) + $dDiscountExtra),\n ),\n 'ItemList' => (array) $oUtils->getArrayValue('ItemList', $aShopData),\n );\n }", "public function display_data()\n\t{\n\t\t//get records\n\t\t$record_set = $this->connection->query\n\t\t(\"\n\t\t\tselect\n\t\t\t\tBoothID as ID,\n\t\t\t\tCONCAT ('Booth ', BoothNum) as selection\n\t\t\tfrom Booth\n\t\t\");\n\t\t$records = $record_set->fetchAll();\n\t\t$record_set->closeCursor();\n\n\t\t//return records\n\t\treturn $records;\n\n\t}", "public function getAllCashPaidInvoiceDetails(){\n\n try {\n $invoiceDetials = array();\n $invoiceDetials = DB::table('purchase_invoices')\n ->join('cash_paid_to_suppliers', 'purchase_invoices.invoiceNum', '=', 'cash_paid_to_suppliers.invoiceNum')\n ->join('supplier_details', 'purchase_invoices.supplierId', '=', 'supplier_details.id')\n ->select(\n 'cash_paid_to_suppliers.invoiceNum',\n 'supplier_details.supplierName', \n 'cash_paid_to_suppliers.date', \n 'cash_paid_to_suppliers.cashPaid'\n )\n ->get();\n\n $cashPaid = DB::table('cash_paid_to_suppliers')->sum('cashPaid'); \n\n return response()->json([\n 'success'=>true,\n 'error'=>null,\n 'code'=>200,\n 'total'=>count($invoiceDetials),\n 'cumCashPaid'=>$cashPaid,\n 'data'=>$invoiceDetials\n ], 200);\n \n } catch (Exception $e) {\n return response()->json([\n 'success'=>false,\n 'error'=>($e->getMessage()),\n 'code'=>500\n ], 500);\n }\n }", "public function getBillings($filter = null) {\n $billingTable = new Yourdelivery_Model_DbTable_Billing();\n $all = $billingTable->fetchAll('mode=\"company\" AND refId=\"' . $this->getId() . '\"');\n $storage = new splObjectStorage();\n foreach ($all AS $bill) {\n try {\n $bill = new Yourdelivery_Model_Billing($bill->id);\n } catch (Yourdelivery_Exception_Database_Inconsistency $e) {\n continue;\n }\n $storage->attach($bill);\n }\n return $storage;\n }", "function camposBD(){\n//\t\tSELECT idFactura, nombreTienda AS tienda, fecha, numfactura AS Factura FROM tblfacturas \n//\t\tINNER JOIN tbltiendas ON tbltiendas.idtblTienda = tblfacturas.idtblTienda\n\t\t$fields = array();\n\t\t$fields[] = 'idFactura';\t\n\t\t$fields[] = 'fecha';\t\n\t\t$fields[] = 'tienda';\t\n\t\t$fields[] = 'numFactura';\t\n\t\t/*$fields[] = 'opcion';\t*/\n\t\t/*$fields[] = 'comentario';*/\t\n\t\treturn $fields;\n\t}", "function get_data_product() {\n $query = $this->db->query('select * from BI_emarsys_product_feeds');\n \n \tif ($query->num_rows() > 0) {\n\t\t\treturn $query->result_array();\n\t\t}\n }", "public function allProduct($flower) {\n $result = $this->connection->query(\n \"SELECT p.ID id, p.name name, p.price price, p.availability availability,\n p.description description, COUNT(pu.ID) quantity\n FROM product p LEFT JOIN purchase pu ON (p.ID=pu.id_product)\n WHERE p.id_flower=$flower\n GROUP BY p.ID, p.name, p.price, p.availability, p.description;\"\n );\n return $result->fetchAll(PDO::FETCH_OBJ);\n }", "public function getData()\n {\n $this->validate('contact', 'quotation_data', 'gst_registered', 'gst_inclusive');\n\n $this->issetParam('Date', 'date');\n $this->issetParam('Number', 'quotation_number');\n $this->issetParam('Subtotal', 'subtotal');\n $this->issetParam('TotalAmount', 'total');\n $this->issetParam('TotalTax', 'total_tax');\n\n if ($this->getStatus()) {\n $this->data['Status'] = $this->parseStatus($this->getStatus());\n }\n\n if ($this->getExpiryDate()) {\n if ($this->getDate()) {\n $currentDateMonth = $this->getDate()->month;\n $dueDateMonth = $this->getExpiryDate()->month;\n if ($dueDateMonth > $currentDateMonth) {\n $this->data['Terms']['PaymentIsDue'] = 'DayOfMonthAfterEOM';\n } else {\n $this->data['Terms']['PaymentIsDue'] = 'OnADayOfTheMonth';\n }\n }\n\n $this->data['Terms']['DueDate'] = $this->getExpiryDate();\n $this->data['Terms']['BalanceDueDate'] = $this->getExpiryDate()->day;\n }\n\n if ($this->getQuotationData() !== null && $this->getGSTRegistered() !== null) {\n $gst = $this->getGSTRegistered();\n $this->data = $this->parseLines($this->getQuotationData(),$gst, $this->data);\n }\n if ($this->getContact() !== null) {\n $this->data['Customer'] = [];\n $this->data['Customer']['UID'] = $this->getContact();\n }\n\n if ($this->getGSTInclusive()) {\n if ($this->getGSTInclusive() === 'INCLUSIVE') {\n $this->data['IsTaxInclusive'] = true;\n } else if ($this->getGSTInclusive() === 'EXCLUSIVE') {\n $this->data['IsTaxInclusive'] = false;\n } else {\n $this->data['IsTaxInclusive'] = true;\n }\n }\n\n return $this->data;\n }" ]
[ "0.6411483", "0.6274318", "0.60811806", "0.5664742", "0.5556389", "0.5523418", "0.5518602", "0.5490816", "0.54526174", "0.54459536", "0.54419196", "0.54417664", "0.5440585", "0.5422967", "0.54215235", "0.54070294", "0.5393089", "0.53468114", "0.53206", "0.5303705", "0.5268643", "0.5258521", "0.5255208", "0.5236693", "0.522081", "0.5211342", "0.52072", "0.5189301", "0.5183061", "0.51828027", "0.51711863", "0.51700103", "0.5156", "0.51463276", "0.51375073", "0.5121318", "0.51205534", "0.5109573", "0.510572", "0.5097444", "0.50825214", "0.507354", "0.50717074", "0.50641227", "0.506331", "0.5063056", "0.5061397", "0.5052009", "0.5048314", "0.50448227", "0.5044492", "0.50371367", "0.5034919", "0.50348747", "0.5029856", "0.5028825", "0.5026343", "0.50250196", "0.50248194", "0.50222117", "0.5019075", "0.5015267", "0.5010569", "0.5003682", "0.5003576", "0.50017583", "0.49972665", "0.4996743", "0.49963647", "0.49937358", "0.4992152", "0.49918413", "0.49909922", "0.49895945", "0.4985705", "0.49748376", "0.49719283", "0.49701405", "0.49692193", "0.49645358", "0.49523118", "0.4951086", "0.4946787", "0.49463427", "0.49390453", "0.49381912", "0.4936755", "0.4935726", "0.49356142", "0.4922505", "0.49168304", "0.4913989", "0.49061716", "0.49038404", "0.49024034", "0.4901418", "0.4899372", "0.4894693", "0.489374", "0.48924658" ]
0.780674
0
This function takes in an array of values that is not only updated into the Orders, but also the four attribute tables as well
function updateSaleToDB($arrOfInfo) { $customerID = $arrOfInfo['customerID']; $flavor = $arrOfInfo['cupcakeFlavor_ID']; $icing = $arrOfInfo['cupcakeIcing_ID']; $topping = $arrOfInfo['cupcakeTopping_ID']; $filling = $arrOfInfo['cupcakeFilling_ID']; $quantity = $arrOfInfo['cupcakeQuantity']; $con = mysql_connect("localhost", "DBandGUI", "narwhal"); if(!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("CustomCupcakes", $con) or die('Could not select db: ' . mysql_error()); $query = "SELECT order_ID FROM Orders ORDER BY order_ID DESC"; $result = mysql_query($query); $newSalesID = mysql_fetch_array($result)['order_ID'] + 1; $query = "INSERT INTO Orders VALUES ('" . $newSalesID . "','" . $customerID . "','" . $flavor . "','" . $icing . "','" . $topping . "','" . $filling . "','" . $quantity . "');"; mysql_query($query); $query = "UPDATE CupcakeFlavor SET purchase_Amount=purchase_Amount+" . $quantity . " WHERE cupcakeFlavor_ID=" . $flavor . ";"; mysql_query($query); $query = "UPDATE CupcakeIcing SET purchase_Amount=purchase_Amount+" . $quantity . " WHERE cupcakeIcing_ID=" . $icing . ";"; mysql_query($query); $query = "UPDATE CupcakeTopping SET purchase_Amount=purchase_Amount+" . $quantity . " WHERE cupcakeTopping_ID=" . $topping . ";"; mysql_query($query); $query = "UPDATE CupcakeFilling SET purchase_Amount=purchase_Amount+" . $quantity . " WHERE cupcakeFilling_ID=" . $filling . ";"; mysql_query($query); mysql_close($con); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function create_tables_with_attributes($array, $tables, $old = \"\")\n{\n\tforeach($array as $key => $value)\n\t{\n\t\tif(is_string($key)) // if key is string, so leads to object (single table)\n\t\t{\n\t\t\t$key = mb_strtolower($key, 'UTF-8');\n\t\t\tif(is_array($value)) // array of values means there is more sub attributes under it\n\t\t\t{\n\t\t\t\tif($key == \"@attributes\")\n\t\t\t\t\tset_attributes_data_types($tables[$old][\"attributes\"], $value);\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\tif(!array_key_exists($key, $tables))\n\t\t\t\t\t\t$tables[$key] = array(\"attributes\" => array(), \"keys\" => array()); //create new empty substance of array\n\n\t\t\t\t\t$old = $key; // set odl key\n\t\t\t\t}\n\t\t\t}\n\t\t\telse if($key == \"@value\") // key is value so it represents value of the table\n\t\t\t\tset_value_type($tables[$old][\"value\"], $value, $old); // get data type of that value\n\t\t}\n\n\t\tif(is_array($value)) //if value is array (there are more sub tables) there is a need to call creating again...\n\t\t\t$tables = create_tables_with_attributes($value, $tables, $old);\n\t}\n\n\treturn $tables;\n}", "private function alterOrderInformation()\n {\n if (version_compare(Shopware()->Config()->get( 'Version' ), '5.2.0', '<')) {\n $sql = \"UPDATE `s_core_snippets`\n SET `value` = CASE\n WHEN `value` = 'Free text 4' THEN 'Transaction ID'\n WHEN `value` = 'Freitextfeld 4' THEN 'Transaktions-ID'\n ELSE `value`\n END\n WHERE `namespace` = 'backend/order/main'\n AND `value` IN ('Freitextfeld 4', 'Free text 4')\";\n } elseif (version_compare(Shopware()->Config()->get( 'Version' ), '5.2.0', '>=')) {\n $sql = \"INSERT INTO `s_attribute_configuration` (table_name, column_name, \"\n . \"column_type, position, translatable, display_in_backend, custom, \"\n . \"help_text, support_text, label, entity, array_store) \"\n . \"VALUES ('s_order_attributes','attribute4','string',1,0,1,0,'','','Transaction ID','NULL',NULL)\";\n }\n Shopware()->Db()->query($sql);\n }", "function update_attributes($array = array())\n {\n foreach ($array as $key => $value) {\n $this->_stdObject->{$key} = $value;\n }\n }", "public function updateOrder()\n {\n if (!empty($_POST['order'])) {\n $values = [];\n\n $key = $this->businessModel->data[$this->table]['key'];\n\n $query = '\n UPDATE '.$this->db->backtick($this->table).'\n SET '.$this->db->backtick($this->businessModel->data[$this->table]['order']['column']).' = CASE '.$this->db->backtick($key)\n ;\n\n foreach ($_POST['order'] as $order => $id) {\n $values[':'.$key.$id] = $id;\n $values[':order'.$order] = $order;\n $query .= ' WHEN :'.$key.$id.' THEN :order'.$order;\n }\n\n $query .= ' END WHERE '.$this->db->backtick($key).' IN ('.implode(',', array_values($_POST['order'])).')';\n\n $statement = $this->db->handle->prepare($query);\n\n exit($statement->execute($values));\n }\n }", "function updateBatch($multipleData = array(), $tableName) {\n\t// $multipleData = [\n\t// \t['id' => 1, 'order' => 11],\n\t// \t['id' => 2, 'order' => 22],\n\t// \t['id' => 3, 'order' => 33],\n\t// ];\n\tif ($tableName && !empty($multipleData)) {\n\t\t// column or fields to update\n\t\t// dd($multipleData);\n\t\t$updateColumn = array_keys($multipleData[0]);\n\t\t$referenceColumn = $updateColumn[0]; //e.g id\n\t\tunset($updateColumn[0]);\n\t\t$whereIn = \"\";\n\t\t$q = \"UPDATE `\" . $tableName . \"` SET \";\n\t\tforeach ($updateColumn as $uColumn) {\n\t\t\t$q .= \"`\" . $uColumn . \"` = CASE \";\n\t\t\tforeach ($multipleData as $data) {\n\t\t\t\t// $upData = $data[$uColumn];\n\t\t\t\t$upreData = is_array($data[$referenceColumn]) ? serialize($data[$referenceColumn]) : $data[$referenceColumn];\n\t\t\t\t$upData = is_array($data[$uColumn]) ? serialize($data[$uColumn]) : $data[$uColumn];\n\t\t\t\t// dump($data[$uColumn]);\n\t\t\t\t$q .= \"WHEN \" . $referenceColumn . \" = \" . $upreData . \" THEN '\" . $upData . \"' \";\n\t\t\t}\n\t\t\t$q .= \"ELSE `\" . $uColumn . \"` END, \";\n\t\t}\n\t\tforeach ($multipleData as $data) {\n\t\t\t// $upData = is_array($data[$referenceColumn]) ? json_encode($data[$referenceColumn]) : $data[$referenceColumn];\n\t\t\t$upData = $data[$referenceColumn];\n\t\t\t$whereIn .= \"'\" . $upData . \"', \";\n\t\t}\n\t\t$q = rtrim($q, \", \") . \" WHERE \" . $referenceColumn . \" IN (\" . rtrim($whereIn, ', ') . \")\";\n\t\t// Update\n\t\treturn \\DB::update(DB::raw($q));\n\n\t} else {\n\t\treturn false;\n\t}\n}", "function generate_order($order,$mysqli){\r\n\r\n $orders = get_items_database($mysqli);\r\n\r\n \r\n $level = ($order->extension_attributes->shipping_assignments);\r\n foreach($level as $i){\r\n $address = $i->shipping->address;\r\n \r\n $adr = $address->street[0];\r\n $postal = $address->postcode;\r\n $city = $address->city;\r\n \r\n }\r\n\r\n \r\n foreach($order->items as $i){ \r\n foreach ($orders as $e){\r\n if ($e[\"code\"] == $i->sku){\r\n //print_r($e[\"code\"] .\" \". $i->sku);\r\n \r\n $ITid = $e[\"item_id\"];\r\n $ITname = $i->name;\r\n $ITcode = $i->sku;\r\n $qty = $i->qty_ordered;\r\n $cena = $i->price_incl_tax;\r\n \r\n \r\n } \r\n }\r\n }\r\n\r\n\r\n\r\n $data = array(\r\n \"OrderId\" => $order->increment_id,\r\n \"ReceivedIssued\" => \"P\",\r\n \"Year\" => 0,\r\n \"Number\" => null,\r\n \"Date\" => date(\"Y-m-d H:i:s\"),\r\n \"Customer\" => array(\r\n \"ID\" => 8451445,\r\n \"Name\" => null,\r\n \"ResourceUrl\" => null\r\n ),\r\n \"CustomerName\" => $order->customer_firstname.\" \". $order->customer_lastname,\r\n \"CustomerAddress\" => $adr,\r\n \"CustomerPostalCode\" => $postal,\r\n \"CustomerCity\" => $city,\r\n\r\n \"CustomerCountry\" => array(\r\n \"ID\" => 192,\r\n \"Name\" => null,\r\n \"ResourceUrl\" => null\r\n ),\r\n \"CustomerCountryName\" => null,\r\n \"Analytic\" => null,\r\n \"DueDate\" => null,\r\n \"Reference\" => $order->entity_id,\r\n \"Currency\" => array(\r\n \"ID\" => 7,\r\n \"Name\" => null,\r\n \"ResourceUrl\" => null\r\n ),\r\n \"Notes\" => null,\r\n \"Document\" => null,\r\n \"DateConfirmed\" => null,\r\n \"DateCompleted\" => null,\r\n \"DateCanceled\" => null,\r\n \"Status\" => null,\r\n \"DescriptionAbove\" => null,\r\n \"DescriptionBelow\" => null,\r\n \"ReportTemplate\" => array(\r\n \"ID\" => null,\r\n \"Name\" => null,\r\n \"ResourceUrl\" => null\r\n ),\r\n\r\n \"OrderRows\" => [array(\r\n \"OrderRowId\" => null,\r\n \"Order\" => null,\r\n \"Item\" => array(\r\n \"ID\" => $ITid,\r\n \"Name\" => null,\r\n \"ResourceUrl\" => null,\r\n ),\r\n \"ItemName\" => $ITname,\r\n \"ItemCode\" => $ITcode,\r\n \"Description\" => null,\r\n \"Quantity\" => $qty,\r\n \"Price\" => $cena,\r\n \"UnitOfMeasurement\" => \"kos\",\r\n \"RecordDtModified\" => \"2020-01-07T12:20:00+02:00\",\r\n \"RowVersion\" => null,\r\n \"_links\" => null,\r\n ) ],\r\n\r\n \"RecordDtModified\" => date(\"Y-m-d H:i:s\"),\r\n \"RowVersion\" => null,\r\n \"_links\" => null\r\n\r\n );\r\n \r\n return $data;\r\n}", "function buildOrder($orders) {\n\t$order = [\n\t\t\"service_uid\" => $orders[0][15],\n\t\t\"points\" => 0,\n\t\t\"invoice_number\" => $orders[0][2],\n\t\t\"purchase_detail\" => [],\n\t\t\"prices\" => [],\n\t\t\"branch_name\" => $orders[0][0],\n\t\t\"createtime\" => date('Y-m-d H:i:s')\n\t];\n\n\t$total = 0;\n\t$discount = 0;\n\tforeach ($orders as $o) {\n\t\t$order['purchase_detail'][] = [\n\t\t\t\"sku\" => $o[3],\n\t\t\t\"product_name\" => $o[4],\n\t\t\t\"category\" => [$o[5], $o[6]],\n\t\t\t\"quantity\" => (int) abs($o[16]),\n\t\t\t\"unit_price\" => (float) $o[17],\n\t\t\t\"variations\" => [\n\t\t\t\t['name' => 'Linea', 'value' => $o[5]],\n\t\t\t\t['name' => 'Color', 'value' => $o[10]],\n\t\t\t\t['name' => 'Talle', 'value' => $o[11]],\n\t\t\t]\n\t\t];\n\n\t\t$total += (int) abs($o[16]) * (float) $o[17];\n\t\t$discount += abs($o[19]);\n\t}\n\n\t$order['prices'] = [\n\t\t\"gross\" => $total,\n\t\t\"discount\" => $discount,\n\t\t\"total\" => $total - $discount\n\t];\n\n\treturn $order;\n}", "protected function setUpdateArray() {\n $column_names = getColumnNames($this->table_name);\n foreach ($column_names as $column_name) {\n if (isset($_POST[$column_name])) {\n $this->update[$column_name] = Mysql::SQLValue($_POST[$column_name]);\n } else if (isset($_GET[$column_name])) {\n $this->update[$column_name] = Mysql::SQLValue($_GET[$column_name]);\n }\n }\n }", "public function testUpdateOrder()\n {\n }", "function setOrder($array)\n\t{\n\t\t$this->table->order = $array;\n\t}", "function setOrder(array $orderParams)\n {\n foreach ($orderParams as $row)\n {\n if (is_array($this->{$row['name']}))\n array_push($this->{$row['name']}, $row['value']);\n else\n $this->{$row['name']} = $row['value'];\n }\n }", "function explodeUpdate($data_arr)\n\t{\n\t\t$ret=\"\";\n\t\twhile(list($key,$value)=each($data_arr))\n\t\t{\n\t\t\tif(!is_numeric($key))\n\t\t\t{\n\t\t\t\tif($ret)\n\t\t\t\t{\n\t\t\t\t\t$ret.=\",\" . $key . \"=\" . $this->sqlFormatField($value);\n\t\t\t\t}else{\n\t\t\t\t\t$ret=$key . \"=\" . $this->sqlFormatField($value);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $ret;\n\t}", "function build_update($table,$arr,$where) {\n\t$str = \"UPDATE `\".$table.\"` SET \";\n\t$keys = array_keys($arr);\n\tfor($a=0;$a<count($keys);$a++) {\n\t\t$updates[] = \"`\".$keys[$a].\"`='\".str_replace(\"'\",\"''\",$arr[$keys[$a]]).\"'\";\n\t}\n\n\t$str .= implode(',',$updates).' WHERE '.$where;\n\n\treturn $str;\n}", "function get_Articles_by_AttributeArray($attribute_Array,$proofUid=1){\n\t\tif($proofUid){ \t \t\n\t \t \t $whereUid = ' and tx_commerce_articles.uid_product = '.$this->uid;\n\t\t}\n \t \t$first = 1;\n\t\t// Setzen der Arrays damit array_intersect keine Fehlermeldung ausgibt\t\n\t\t$first_array = array();\n\t\t$next_array = array();\n \t \t$addwhere='';\n \t \tif (is_array($attribute_Array))\t {\n\t \t \tforeach ($attribute_Array as $uid_val_pair) \t{\n\t\t\t$addwheretmp = '';\n\t\n\t \t \t\t// attribute char wird noch nicht verwendet, dafuer muss eine Pruefung auf die ID\n\t\t \t \tif (is_string($uid_val_pair['AttributeValue']))\t \t{\n\t\t \t \t\t$addwheretmp .=\t\" OR (tx_commerce_attributes.uid = \".$uid_val_pair['AttributeUid'].\" and tx_commerce_articles_article_attributes_mm.value_char='\".\n\t\t\t\t\t\t\t\t\t\t$GLOBALS['TYPO3_DB']->quoteStr($uid_val_pair['AttributeValue'],'tx_commerce_articles_article_attributes_mm').\"' )\";\n\t\t \t \t}\n\t\t\t // Nach dem charwert immer ueberpruefen, solange value_char noch nicht drin ist.\n\t \n\t\t \t \tif (is_float($uid_val_pair['AttributeValue']) || is_integer(intval($uid_val_pair['AttributeValue'])))\t \t{\n\t\t \t \t\t$addwheretmp.=\t\" OR (tx_commerce_attributes.uid = \".$uid_val_pair['AttributeUid'].\" and tx_commerce_articles_article_attributes_mm.default_value in (\".\n\t\t\t\t\t\t\t\t\t\t$uid_val_pair['AttributeValue'].\" ) )\";\n\t\t \t \t}\n\t\t \n\t\t \t \tif (is_float($uid_val_pair['AttributeValue']) || is_integer(intval($uid_val_pair['AttributeValue']))) \t{\n\t\t \t \t\t$addwheretmp.=\t\" OR (tx_commerce_attributes.uid = \".$uid_val_pair['AttributeUid'].\" and tx_commerce_articles_article_attributes_mm.uid_valuelist in (\".\n\t\t\t\t\t\t\t\t\t\t$uid_val_pair['AttributeValue'].\") )\";\n\t\t \t \t}\n\t\t\t\t$addwhere = ' AND (0 '.$addwheretmp. ') ';\t\n\t \t \t\n \t \t\t\t\n \t \t \t \t\t\n \t \t\t\t$result=$GLOBALS['TYPO3_DB']->exec_SELECT_mm_query('distinct tx_commerce_articles.uid',\n \t \t\t\t\t\t\t\t'tx_commerce_articles ',\n \t\t\t\t\t\t\t\t'tx_commerce_articles_article_attributes_mm',\n\t\t\t\t\t\t\t\t'tx_commerce_attributes',\t\n\t\t\t\t\t\t\t\t\"\".$addwhere.\" and tx_commerce_articles.hidden = 0 and tx_commerce_articles.deleted = 0\".$whereUid \n\t\t\t\t\t\t\t\t);\n\t\t\t\t\n\t \t \t\tif (($result) && ($GLOBALS['TYPO3_DB']->sql_num_rows($result)>0)){\n\t \t\t\t\twhile ($return_data=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($result))\t{\n\t\t\t\t\t\tif($first){\n\t\t \t\t\t\t\t$first_array[] = $return_data['uid'];\n\t \t\t\t\t\t}else{\n\t\t\t\t\t\t\t$next_array[] = $return_data['uid'];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t \t\t\t\t$GLOBALS['TYPO3_DB']->sql_free_result($result);\n\t \t\t\t}\n\t\n\t\t\t\t// Es sollen nur Artikel zur?ckgeliefert werden, die in allen Array's vorkommen.\n\t\t\t\t// Daher das Erste Array setzen und dann mit Array Intersect nur noch die ?bereinstimmungen\n\t\t\t\t// behalten.\n\t\t\t\tif($first){\n\t\t\t\t\t$attribute_uid_list = $first_array;\n\t\t\t\t\t$first = 0;\n\t\t\t\t}else{\n\t\t\t\t\t$attribute_uid_list = array_intersect($attribute_uid_list,$next_array);\n\t\t\t\t\t$next_array = array();\n\t\t\t\t}\n\t\t \t} \t\t\t\t\n\t \t\tif(count($attribute_uid_list)>0){\n\t \t\t\tsort($attribute_uid_list);\n\t\t\t\treturn $attribute_uid_list;\n \t\t\t}else{\n\t\t\t\treturn false;\t\t\t\n\t\t\t}\t\n\t\t}\n\t\t \t \t \t \t\n \t \t\n \t }", "function updateFields($table,$postedArray,$condition) \t{\n\t\tforeach($postedArray as $key=>$val){\n\t\t\t$postedArray[$key] = mysql_real_escape_string($postedArray[$key]); \n\t\t}\n\t\treturn $this->update($this->tablePrefix.$table, $postedArray,$condition);\n\t}", "function esiUpdateApimarketorders() {\n $table = db_asocquery(\"DESCRIBE `apimarketorders`;\");\n $found = FALSE;\n foreach ($table as $column) {\n if ($column['Field']=='range' && $column['Type']=='int(11)') {\n $found = TRUE;\n }\n } \n if ($found === TRUE) {\n return db_uquery(\"ALTER TABLE `apimarketorders` CHANGE COLUMN `range` `range` VARCHAR(12) NULL DEFAULT NULL;\");\n }\n return TRUE;\n}", "function Update($array){\n\n }", "public function build_array($orders)\n {\n $this->load->model('accounts_model');\n\n if (count($orders) > 0) {\n $i = 0;\n $item_array = array();\n\n // Loop through each order.\n foreach ($orders as $order) {\n // Extract product hash/quantities.\n $items = explode(\":\", $order['items']);\n $j = 0;\n\n $price_b = 0.00000000;\n $price_l = 0.00000000;\n foreach ($items as $item) {\n // Load each item & quantity.\n $array = explode(\"-\", $item);\n $quantity = $array[1];\n\n if($order['progress'] == '0') {\n $item_info = $this->items_model->get($array[0], FALSE, FALSE);\n } else {\n if(isset($array[2]) AND isset($array[3]))\n $item_info = $this->items_model->get($array[0], FALSE, $array[2], $array[3]);\n else\n $item_info = $this->items_model->get($array[0], FALSE, FALSE);\n }\n\n // If the item no longer exists, display a message.\n if ($item_info == FALSE) {\n $message = \"Item \";\n $message .= (strtolower($this->current_user->user_role) == 'vendor') ? 'has been removed' : 'was removed, contact your vendor';\n $item_array[$j] = array('hash' => 'removed',\n 'name' => $message);\n } else {\n // Remove the vendor array, reduces the size of responses.\n unset($item_info['vendor']);\n $item_array[$j] = $item_info;\n }\n\n $item_array[$j++]['quantity'] = $quantity;\n }\n\n // Determine the progress message. Contains a status update\n // for the order, and lets the user progress to the next step.\n switch ($order['progress']) {\n case '0': // Buyer choses items. (1)\n $buyer_progress_message = 'Confirm your order to proceed.';\n $vendor_progress_message = '';\n // no vendor progress message\n break;\n case '1': // Vendor must chose escrow, or up-front. (2)\n $buyer_progress_message = 'Awaiting vendor response. <input type=\"submit\" class=\"btn btn-mini\" name=\"cancel[' . $order['id'] . ']\" value=\"Cancel\" /> ';\n $vendor_progress_message = \"Accept order to continue.\";\n break;\n case '2': // Buyer must pay to address. Escrow: 4. Upfront: 3.\n $buyer_progress_message = (($order['vendor_selected_escrow'] == '0') ? 'Early finalization requested. ' : 'Escrow Transaction: ') . 'Pay to address. ';\n $vendor_progress_message = 'Waiting for buyer to pay to the order address. <input type=\"submit\" class=\"btn btn-mini\" name=\"cancel[' . $order['id'] . ']\" value=\"Cancel\" /> ';\n break;\n case '3': // An up-front payment. Buyer signs first.\n $buyer_progress_message = (($order['vendor_selected_upfront'] == '1') ? 'Vendor requested up-front payment.' : '') . \" Please sign transaction. \";\n $vendor_progress_message = \"Waiting on buyer to sign. \";\n break;\n case '4': // Awaiting dispatch. Vendor must sign to indicate dispatch. (5)\n $buyer_progress_message = \"Awaiting Dispatch. \";\n $vendor_progress_message = \"Sign \" . (($order['vendor_selected_upfront'] == '1') ? ' & broadcast' : '') . \" the transaction to confirm the items dispatch. \";\n break;\n case '5': // Awaiting delivery. Escrow: buyer finalizes or disputes.\n // Upfront: buyer can dispute or mark received.\n $buyer_progress_message = 'Order dispatched. ' . (($order['vendor_selected_upfront'] == '1') ? 'Click to confirm receipt of the goods, or raise a dispute' : 'Sign & broadcast once received, or raise a dispute');\n $vendor_progress_message = 'Buyer awaiting delivery. ';\n break;\n case '6': // Disputed transaction.\n $buyer_progress_message = \"Disputed transaction. \";\n $vendor_progress_message = \"Disputed transaction. \";\n break;\n case '7':\n $buyer_progress_message = ($order['refund_time'] !== '') ? \"Payment refunded.\" : \"Purchase complete.\";\n $vendor_progress_message = ($order['refund_time'] !== '') ? \"Order refunded.\" : \"Order complete.\";\n break;\n case '8':\n $buyer_progress_message = \"Awaiting refund.\";\n $vendor_progress_message = \"Awaiting refund.\";\n }\n\n $currency = $this->bw_config->currencies[$order['currency']];\n\n // Work out what price to display for the current user.\n $order_price = ($this->current_user->user_role == 'Vendor') ? ($order['price'] + $order['shipping_costs'] - $order['extra_fees']) : ($order['price'] + $order['shipping_costs'] + $order['fees']);\n\n // Convert price to monero.\n $order_price = ($currency['id'] !== '0') ? $order_price / $this->bw_config->currencies[$order['currency']]['rate'] : number_format($order_price, 8);\n\n // Load the users local currency.\n // Convert the order's price into the users own currency.\n $price_l = ($order_price * $this->bw_config->exchange_rates[strtolower($this->current_user->currency['code'])]);\n $price_l = ($this->current_user->currency['id'] !== '0') ? number_format($price_l, 2) : number_format($price_l, 8);\n\n // Add extra details to the order.\n $tmp = $order;\n $tmp['vendor'] = $this->accounts_model->get(array('user_hash' => $order['vendor_hash']));\n $tmp['buyer'] = $this->accounts_model->get(array('id' => $order['buyer_id']));\n $tmp['public_keys'] = $this->load_public_keys($order['id']);\n $tmp['items'] = $item_array;\n $tmp['order_price'] = $order_price;\n $tmp['vendor_fees'] = $order['fees'] + $order['extra_fees'];\n $tmp['total_paid'] = number_format($order['price'] + $order['shipping_costs'] + $order['fees'], 8);\n $tmp['price_l'] = $price_l;\n $tmp['currency'] = $currency;\n $tmp['time_f'] = $this->general->format_time($order['time']);\n $tmp['partially_signed_time_f'] = $this->general->format_time($order['partially_signed_time']);\n $tmp['created_time_f'] = $this->general->format_time($order['created_time']); // 0\n $tmp['confirmed_time_f'] = $this->general->format_time($order['confirmed_time']); // 1\n $tmp['selected_payment_type_time'] = $this->general->format_time($order['selected_payment_type_time']); // 2\n $tmp['paid_time_f'] = $this->general->format_time($order['paid_time']); // 3\n $tmp['dispatched_time_f'] = $this->general->format_time($order['dispatched_time']); // 5\n $tmp['received_time_f'] = $this->general->format_time($order['received_time']); // 6\n $tmp['disputed_time_f'] = $this->general->format_time($order['disputed_time']); // 6\n $tmp['finalized_time_f'] = $this->general->format_time($order['dispatched_time']); // 7\n $tmp['progress_message'] = ($this->current_user->user_role == 'Vendor') ? $vendor_progress_message : $buyer_progress_message;\n\n $orders[$i++] = $tmp;\n unset($item_array);\n unset($tmp);\n }\n return $orders;\n\n } else {\n return FALSE;\n }\n }", "function get_product_attribute_matrix($attribute_include=false, $showHiddenValues=true,$sortingTable = 'tx_commerce_products_attributes_mm')\n \t{\n \t\t\n \t\t\n \t\t$return_array=array();\n \t\t/**\n \t\t * if no list is given, take complate arctile-list from product\n \t\t */\n \t\t\n \t\t\n \t\tif ($this->uid>0) { \n\t \t\t\n\t\n\t if (is_array($attribute_include)){\n\t \tif (!is_null($attribute_include[0])) {\n\t\t \t\t\t$addwhere.=' AND tx_commerce_attributes.uid in ('.implode(',',$attribute_include).')';\n\t\t\t\t}\t\n\t \t\t}\n\t \t\t\n\t \t\t\n\t \t\t$result=$GLOBALS['TYPO3_DB']->exec_SELECT_mm_query('distinct tx_commerce_attributes.uid,tx_commerce_attributes.sys_language_uid,tx_commerce_products.uid as product ,tx_commerce_attributes.title, tx_commerce_attributes.unit, tx_commerce_attributes.valueformat, tx_commerce_attributes.internal_title,tx_commerce_attributes.icon, '.$sortingTable.'.sorting',\n\t \t \t\t\t\t\t\t\t'tx_commerce_products',\n\t \t\t\t\t\t\t\t\t'tx_commerce_products_attributes_mm',\n\t\t\t\t\t\t\t\t\t'tx_commerce_attributes',\t\n\t\t\t\t\t\t\t\t\t' AND tx_commerce_products.uid = '.$this->uid.' '.$addwhere.' order by '.$sortingTable.'.sorting'\n\t\t\t\t\t\t\t\t\t);\n\n\t\t\tif (($result) && ($GLOBALS['TYPO3_DB']->sql_num_rows($result)>0))\t{\n\t \t\t\twhile ($data=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($result))\t{\n\t \t\t\t\t/** \n\t \t\t\t\t * Do the language overlay\n\t \t\t\t\t */\n\t \t\t\t\tif ($this->lang_uid>0) {\n\t \t\t\t\t\tif(is_object($GLOBALS['TSFE']->sys_page)){\n\t\t\t \t\t\t\t\t$proofSQL = $GLOBALS['TSFE']->sys_page->enableFields('tx_commerce_attributes',$GLOBALS['TSFE']->showHiddenRecords);\n\t\t\t\t\t\t}\n\t\t\t\t \t\t$result2=$GLOBALS['TYPO3_DB']->exec_SELECTquery('*',\n\t\t\t\t \t\t\t'tx_commerce_attributes',\n\t\t\t\t\t\t\t'uid = '.$data['uid'].' '.$proofSQL\n\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// Result should contain only one Dataset\n\t\t\t\t \t\tif ($GLOBALS['TYPO3_DB']->sql_num_rows($result2)==1)\t{\n\t\t\t\t \t\t\t$return_data=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($result2);\n\t\t\t\t \t\t\t$GLOBALS['TYPO3_DB']->sql_free_result($result2);\n\t\t\t\t \t\t\t$return_data=$GLOBALS['TSFE']->sys_page->getRecordOverlay('tx_commerce_attributes',$return_data,$this->lang_uid,$this->translationMode);\n\t\t\t\t \t\t\tif (!is_array($return_data)){\n\t\t\t\t \t\t\t/**\n\t\t\t\t \t\t\t * No Translation possible, so next interation\n\t\t\t\t \t\t\t */\t\n\t\t\t\t \t\t\t\tcontinue;\n\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$data['title']=$return_data['title'];\n\t \t\t\t\t\t$data['unit']=$return_data['unit'];\n\t \t\t\t\t\t$data['internal_title']=$return_data['internal_title'];\n\t \t\t\t\t\t\n\t \t\t\t\t\t\n\t \t\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$valueshown=false;\n\t \t\t\t\t/**\n\t \t\t\t\t * get the different possible values form value_char an value\n\t \t\t\t\t */\n\t \t\t\t\t/**\n\t \t\t\t\t * @since 13.12.2005 Get the lokalized values from tx_commerce_products_attributes_mm\n\t \t\t\t\t * @author Ingo Schmitt <[email protected]>\n\t \t\t\t\t */\n\t \t\t\t\t\n\t\t\t\t\t$valuelist=array();\n\t \t\t\t\t$attribute_uid=$data['uid'];\n\t \t\t\t\t$article=$data['product'];\n\t \t\t\t\t$result_value=$GLOBALS['TYPO3_DB']->exec_SELECT_mm_query('distinct tx_commerce_products_attributes_mm.default_value, tx_commerce_products.uid product_uid, tx_commerce_attributes.uid attribute_uid',\n\t \t \t\t\t\t\t\t\t'tx_commerce_products',\n\t \t\t\t\t\t\t\t\t'tx_commerce_products_attributes_mm',\n\t\t\t\t\t\t\t\t\t'tx_commerce_attributes',\t\n\t\t\t\t\t\t\t\t\t' AND tx_commerce_products.uid = '.$this->uid.' AND tx_commerce_attributes.uid='.$attribute_uid\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\tif (($result_value) && ($GLOBALS['TYPO3_DB']->sql_num_rows($result_value)>0))\n\t \t\t\t\t{\n\t \t\t\t\t\t\twhile ($value=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($result_value))\n\t \t\t\t\t\t\t{\n\t \t\t\t\t\t\t\tif (strlen($value['default_value'])>0){\n\t \t\t\t\t\t\t\t\t\n\t \t\t\t\t\t\t\t\tif ($this->lang_uid>0)\n\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\t * Do the lokalization\n\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\t$proofSQL_attributes = $GLOBALS['TSFE']->sys_page->enableFields('tx_commerce_attributes',$GLOBALS['TSFE']->showHiddenRecords);\n\t \t\t\t\t\t\t\t\t\t$proofSQL_articles = $GLOBALS['TSFE']->sys_page->enableFields('tx_commerce_products',$GLOBALS['TSFE']->showHiddenRecords);\n\t \t\t\t\t\t\t\t\t\t$res_value_lok=$GLOBALS['TYPO3_DB']->exec_SELECTquery('distinct tx_commerce_products_attributes_mm.default_value',\n\t\t\t\t\t\t\t\t\t\t'tx_commerce_products_attributes_mm, tx_commerce_products, tx_commerce_attributes',\n\t\t\t\t\t\t\t\t\t\t\"tx_commerce_products_attributes_mm.uid_foreign=\".$value['attribute_uid'].\n\t\t\t\t\t\t\t\t\t\t\t\t\t\" and tx_commerce_products_attributes_mm.uid_local=tx_commerce_products.uid and tx_commerce_products.sys_language_uid=\".$this->lang_uid.\n\t\t\t\t\t\t\t\t\t\t\t\t\t\" and tx_commerce_products.uid>0 and tx_commerce_products.l18n_parent=\".$value['product_uid'].\n\t\t\t\t\t\t\t\t\t\t\t\t\t\" \".$proofSQL_attributes.$proofSQL_articles\n\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\tif (($res_value_lok) && ($GLOBALS['TYPO3_DB']->sql_num_rows($res_value_lok)>0)) {\n\t\t\t\t\t\t\t\t\t\t\twhile ($lok_value=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($res_value_lok)){\n\t\t\t\t\t\t\t\t\t\t\t\tif (strlen($lok_value['default_value'])>0){\n\t\t\t\t\t\t\t\t\t\t\t\t\t$valuelist[]=$lok_value['default_value'];\n\t\t\t\t\t\t\t\t\t\t\t\t\t$valueUidList[] = 0;\n\t\t\t\t\t\t\t\t\t\t\t\t\t$valueshown=true;\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\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t}else\n\t \t\t\t\t\t\t\t\t{\n\t \t\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$valuelist[]=$value['default_value'];\n\t\t\t\t\t\t\t\t\t\t$valueUidList[] = 0;\n\t\t\t\t\t\t\t\t\t\t$valueshown=true;\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\t\n\t\t\t\t\t$result_value=$GLOBALS['TYPO3_DB']->exec_SELECT_mm_query('distinct tx_commerce_products_attributes_mm.uid_valuelist ',\n\t \t \t\t\t\t\t'tx_commerce_products',\n\t \t\t\t\t\t\t'tx_commerce_products_attributes_mm',\n\t\t\t\t\t\t\t'tx_commerce_attributes',\t\n\t\t\t\t\t\t\t' AND tx_commerce_products.uid = '.$this->uid.\" AND tx_commerce_attributes.uid=$attribute_uid\"\n\t\t\t\t\t\t);\n\t\t\t\t\tif (($result_value) && ($GLOBALS['TYPO3_DB']->sql_num_rows($result_value)>0))\n\t \t\t\t\t{\n\t \t\t\t\t\t\twhile ($value=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($result_value))\n\t \t\t\t\t\t\t{\n\t \t\t\t\t\t\t\tif ($value['uid_valuelist'])\n\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 $resvalue = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*','tx_commerce_attribute_values','uid = '.$value['uid_valuelist']);\n\t \t\t\t\t\t\t\t $row=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($resvalue);\n\t \t\t\t\t\t\t\t if ($this->lang_uid>0) {\n\t \t\t\t\t\t\t\t \t$row=$GLOBALS['TSFE']->sys_page->getRecordOverlay('tx_commerce_attribute_values',$row,$this->lang_uid,$this->translationMode);\n\t \t\t\t\t\t\t\t \tif (!is_array($row)){\n\t \t\t\t\t\t\t\t \t\tcontinue;\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\t if (($showHiddenValues==true) || (($showHiddenValues==false) && ($row['showvalue']==1))){\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\t \t $valuelist[] = $row['value'];\n\t\t\t\t\t\t\t\t\t $valueUidList[] = $value['uid_valuelist'];\n\t \t\t\t\t\t\t\t \t $valueshown=true;\n\t \t\t\t\t\t\t\t }\n\t\n\t \t\t\t\t\t\t\t}\n\t \t\t\t\t\t\t}\n\t \t\t\t\t}\n\t \t\t\t\tif ($valueshown==false){\n\t \t\t\t\t\t$return_array[$attribute_uid]=array('title' => $data['title'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'unit' => $data['unit'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'values' =>array(),\n\t\t\t\t\t\t\t\t\t\t\t\t\t 'valueuidlist' => array(),\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'valueformat' => $data['valueformat'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'Internal_title' => $data['internal_title'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'icon' => $data['icon']\n\t \t\t\t\t\t\t\t\t\t\t\t\t);\n\t \t\t\t\t}\n\t \t\t\t\tif ($valueshown==true){\n\t \t\t\t\t\t$return_array[$attribute_uid]=array('title' => $data['title'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'unit' => $data['unit'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'values' => $valuelist,\n\t\t\t\t\t\t\t\t\t\t\t\t\t 'valueuidlist' => $valueUidList,\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'valueformat' => $data['valueformat'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'Internal_title' => $data['internal_title'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'icon' => $data['icon']\n\t \t\t\t\t\t\t\t\t\t\t\t\t);\n\t \t\t\t\t}\n\t \t\t\t\t\n\t \t\t\t}\n\t \t\t\n\t \t\t\treturn $return_array;\n\t \t\t}\n \t\t}\n \t\treturn false;\n \t\t\n \t}", "protected function getModifiedOrders($orders = []){\n $orders = array_chunk(explode(',', $orders), 5);\n $filter = function ($item){\n return $item != 'disable';\n };\n $modiOrders = [\n 'mon' => array_filter(array_column($orders, 0), $filter),\n 'tue' => array_filter(array_column($orders, 1), $filter),\n 'wed' => array_filter(array_column($orders, 2), $filter),\n 'thu' => array_filter(array_column($orders, 3), $filter),\n 'fri' => array_filter(array_column($orders, 4), $filter)\n ];\n return $modiOrders;\n }", "public function rebuildOrders() {\n\t\t$totalOrdersPage = $this->ordersGetTotalPages();\n\t\tfor($i=1;$i<=$totalOrdersPage;$i++) {\n\t\t\t$page = $this->getOrders($i);\n\t\t\tif(count($page->response)) {\n\t\t\t\tforeach($page->response as $order) {\n\t\t\t\t\t$data = array(\n\t\t\t\t\t\t'id' => $order->id,\n\t\t\t\t\t\t'artist_id' => $order->artist_id,\n\t\t\t\t\t\t'created_at' => $order->created_at,\n\t\t\t\t\t\t'subtotal' => $order->subtotal,\n\t\t\t\t\t\t'tax' => $order->tax,\n\t\t\t\t\t\t'currency' => $order->currency,\n\t\t\t\t\t\t'phone' => $order->phone,\n\t\t\t\t\t\t'shipping_method_calculator' => $order->shipping_method_calculator,\n\t\t\t\t\t\t'reshipment' => $order->reshipment,\n\t\t\t\t\t\t'fan' => $order->fan,\n\t\t\t\t\t\t'details_url' => $order->details_url,\n\t\t\t\t\t\t'exchange_rate' => $order->exchange_rate,\n\t\t\t\t\t\t'shipping_method_code' => $order->shipping_method_code,\n\t\t\t\t\t\t'shipping_address_firstname' => $order->shipping_address->firstname,\n\t\t\t\t\t\t'shipping_address_lastname' => $order->shipping_address->lastname,\n\t\t\t\t\t\t'shipping_address_address1' => $order->shipping_address->address1,\n\t\t\t\t\t\t'shipping_address_address2' => $order->shipping_address->address2,\n\t\t\t\t\t\t'shipping_address_city' => $order->shipping_address->city,\n\t\t\t\t\t\t'shipping_address_state' => $order->shipping_address->state,\n\t\t\t\t\t\t'shipping_address_postal_code' => $order->shipping_address->postal_code,\n\t\t\t\t\t\t'shipping_address_country' => $order->shipping_address->country,\n\t\t\t\t\t\t'shipping_address_phone' => $order->shipping_address->phone\n\t\t\t\t\t);\n\t\t\t\t\t$format = array('%d','%d','%s','%f','%f','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s');\n\t\t\t\t\t$tableFields = implode(',',array_keys($data));\n\t\t\t\t\t$tableFormat = implode(',',$format);\n\t\t\t\t\t$orderOnDuplicateUpdate = '';\n\t\t\t\t\t$keyIndex = 0;\n\t\t\t\t\tforeach($data as $key=>$field) {\n\t\t\t\t\t\tif($keyIndex>0) { $orderOnDuplicateUpdate .= ', '; }\n\t\t\t\t\t\t$orderOnDuplicateUpdate .= $key.'=VALUES('.$key.')';\n\t\t\t\t\t\t$keyIndex++;\n\t\t\t\t\t}\n\t\t\t\t\t$orderSQL = <<<EOD\n\t\t\t\t\tINSERT INTO {$this->wpdb->prefix}topspin_orders ({$tableFields}) VALUES ({$tableFormat})\n\t\t\t\t\tON DUPLICATE KEY UPDATE {$orderOnDuplicateUpdate}\nEOD;\n\t\t\t\t\t$this->wpdb->query($this->wpdb->prepare($orderSQL,$data));\n\t\t\t\t\t\n\t\t\t\t\t//Build items for the order\n\t\t\t\t\tforeach($order->items as $item) {\n\t\t\t\t\t\t$itemData = array(\n\t\t\t\t\t\t\t'id' => $item->id,\n\t\t\t\t\t\t\t'order_id' => $order->id,\n\t\t\t\t\t\t\t'campaign_id' => $item->campaign_id,\n\t\t\t\t\t\t\t'line_item_id' => $item->line_item_id,\n\t\t\t\t\t\t\t'spin_name' => $item->spin_name,\n\t\t\t\t\t\t\t'product_id' => $item->product_id,\n\t\t\t\t\t\t\t'product_name' => $item->product_name,\n\t\t\t\t\t\t\t'product_type' => $item->product_type,\n\t\t\t\t\t\t\t'merchandise_type' => $item->merchandise_type,\n\t\t\t\t\t\t\t'quantity' => $item->quantity,\n\t\t\t\t\t\t\t'sku_id' => $item->sku_id,\n\t\t\t\t\t\t\t'sku_upc' => $item->sku_upc,\n\t\t\t\t\t\t\t'sku_attributes' => serialize($item->sku_attributes),\n\t\t\t\t\t\t\t'factory_sku' => $item->factory_sku,\n\t\t\t\t\t\t\t'shipped' => $item->shipped,\n\t\t\t\t\t\t\t'status' => $item->status,\n\t\t\t\t\t\t\t'weight' => serialize($item->weight),\n\t\t\t\t\t\t\t'bundle_sku_id' => $item->bundle_sku_id,\n\t\t\t\t\t\t\t'shipping_date' => $item->shipping_date\n\t\t\t\t\t\t);\n\t\t\t\t\t\t$itemFormat = array('%d','%d','%d','%d','%s','%d','%s','%s','%s','%d','%d','%s','%s','%s','%d','%s','%s','%d','%s');\n\t\t\t\t\t\t$itemTableFields = implode(',',array_keys($itemData));\n\t\t\t\t\t\t$itemTableFormats = implode(',',$itemFormat);\n\t\t\t\t\t\t$itemOnDuplicateUpdate = '';\n\t\t\t\t\t\t$itemKeyIndex = 0;\n\t\t\t\t\t\tforeach($itemData as $itemKey=>$itemField) {\n\t\t\t\t\t\t\tif($itemKeyIndex>0) { $itemOnDuplicateUpdate .= ', '; }\n\t\t\t\t\t\t\t$itemOnDuplicateUpdate .= $itemKey.'=VALUES('.$itemKey.')';\n\t\t\t\t\t\t\t$itemKeyIndex++;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t$itemSQL = <<<EOD\n\t\t\t\t\t\tINSERT INTO {$this->wpdb->prefix}topspin_orders_items ({$itemTableFields}) VALUES ({$itemTableFormats})\n\t\t\t\t\t\tON DUPLICATE KEY UPDATE {$itemOnDuplicateUpdate}\nEOD;\n\t\t\t\t\t\t$this->wpdb->query($this->wpdb->prepare($itemSQL,$itemData));\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "function orders_a($orders_id, $allorders = null, $site_id = 0)\n{\n static $products;\n $str = \"\";\n if ($allorders && $products === null) {\n foreach($allorders as $o) {\n $allorders_ids[] = $o['orders_id'];\n }\n $sql = \"select pd.products_name,p.products_attention_5,p.products_id from \".TABLE_ORDERS_PRODUCTS.\" op, \".TABLE_PRODUCTS_DESCRIPTION.\" pd,\".TABLE_PRODUCTS.\" p WHERE op.products_id=pd.products_id and p.products_id=pd.products_id and `orders_id` IN ('\".join(\"','\", $allorders_ids).\"') and pd.site_id = '\".$site_id.\"'\";\n $orders_products_query = tep_db_query($sql);\n while ($product = tep_db_fetch_array($orders_products_query)) {\n $products[$product['orders_id']][] = $product;\n }\n }\n if (isset($products[$orders_id]) && $products[$orders_id]) {\n foreach($products[$orders_id] as $p){\n $str .= $p['products_name'] . \" 当社のキャラクター名:\\n\";\n $str .= $p['products_attention_5'] . \"\\n\";\n }\n } else {\n $sql = \"select * from `\".TABLE_ORDERS_PRODUCTS.\"` WHERE `orders_id`='\".$orders_id.\"'\";\n $orders_products_query = tep_db_query($sql);\n while ($orders_products = tep_db_fetch_array($orders_products_query)){\n $sql = \"select pd.products_name,p.products_attention_5,p.products_id from `\".TABLE_PRODUCTS_DESCRIPTION.\"` pd,\".TABLE_PRODUCTS.\" p WHERE p.products_id=pd.products_id and p.`products_id`='\".$orders_products['products_id'].\"' and pd.site_id = '\".$site_id.\"'\";\n $products_description = tep_db_fetch_array(tep_db_query($sql));\n if ($products_description['products_attention_5']) {\n $str .= $orders_products['products_name'].\" 当社のキャラクター名:\\n\";\n $str .= $products_description['products_attention_5'] . \"\\n\";\n }\n }\n }\n return $str;\n}", "function update($id,$table) \n{\n $config = [\"fields\"=>\"(\",\"values\"=>\"\",\"update_v\"=>\" \"];\n $values = $config['values'];\n $_HTTP = getPOST_GET(); $i=0; $id_use = 3;\n\n foreach($_HTTP as $KEY => $VALUE)\n {\n if($i<(count($_HTTP)) && $i > $id_use) \n {\n if ($i<(count($_HTTP)-1)) \n { \n $coma = \",\";\n }\n\n else \n { \n $coma = \"\"; \n }\n $values.=\"$KEY='\".$VALUE.\"' \".$coma;\n }\n $i++;\n }\n $SQL_UPDATE = \"UPDATE \". $table.\" SET \".$values.\" WHERE IdProfesor = '\".$id.\"'\";\n echo $SQL_UPDATE;\n queryUpdate($SQL_UPDATE);\n}", "public function testUpdateOrderCustomFields()\n {\n }", "private function joinPurchaseOrders($ordersArray)\n {\n\n $stringresponse = 'om_f.ship_po in ';\n $i = 1;\n $totalitems = count($ordersArray);\n foreach ($ordersArray as $item) {\n if ($i == 1 && $totalitems == 1) {\n return $stringresponse .= \"('\" . $item . \"')\";\n } elseif ($i == 1) {\n $stringresponse .= \"('\" . $item . \"',\";\n } elseif ($i == $totalitems) {\n $stringresponse .= \"'\" . $item . \"')\";\n } else {\n $stringresponse .= \"'\" . $item . \"',\";\n }\n $i++;\n }\n return $stringresponse;\n\n }", "protected function _prepareDataForUpdate(array $rowData):array\n {\n $multiSeparator = $this->getMultipleValueSeparator();\n $email = strtolower($rowData[self::COLUMN_EMAIL]);\n $customerId = $this->_getCustomerId($email, $rowData[self::COLUMN_WEBSITE]);\n // entity table data\n $entityRowNew = [];\n $entityRowUpdate = [];\n // attribute values\n $attributes = [];\n // customer default addresses\n $defaults = [];\n $newAddress = true;\n // get address id\n if ($rowData[self::COLUMN_ADDRESS_ID]\n && $this->addressStorage->doesExist(\n $rowData[self::COLUMN_ADDRESS_ID],\n (string)$customerId\n )\n ) {\n $newAddress = false;\n $addressId = $rowData[self::COLUMN_ADDRESS_ID];\n } else {\n $addressId = $this->_getNextEntityId();\n }\n $entityRow = [\n 'entity_id' => $addressId,\n 'parent_id' => $customerId,\n 'updated_at' => (new \\DateTime())->format(\\Magento\\Framework\\Stdlib\\DateTime::DATETIME_PHP_FORMAT),\n ];\n $websiteId = $this->_websiteCodeToId[$rowData[self::COLUMN_WEBSITE]];\n\n foreach ($this->_attributes as $attributeAlias => $attributeParams) {\n if (array_key_exists($attributeAlias, $rowData)) {\n $attributeParams = $this->adjustAttributeDataForWebsite($attributeParams, $websiteId);\n\n if (!strlen($rowData[$attributeAlias])) {\n if ($newAddress) {\n $value = null;\n } else {\n continue;\n }\n } elseif ($newAddress && !strlen($rowData[$attributeAlias])) {\n } elseif (in_array($attributeParams['type'], ['select', 'boolean'])) {\n $value = $this->getSelectAttrIdByValue($attributeParams, mb_strtolower($rowData[$attributeAlias]));\n } elseif ('datetime' == $attributeParams['type']) {\n $value = (new \\DateTime())->setTimestamp(strtotime($rowData[$attributeAlias]));\n $value = $value->format(\\Magento\\Framework\\Stdlib\\DateTime::DATETIME_PHP_FORMAT);\n } elseif ('multiselect' == $attributeParams['type']) {\n $ids = [];\n foreach (explode($multiSeparator, mb_strtolower($rowData[$attributeAlias])) as $subValue) {\n $ids[] = $this->getSelectAttrIdByValue($attributeParams, $subValue);\n }\n $value = implode(',', $ids);\n } else {\n $value = $rowData[$attributeAlias];\n }\n if ($attributeParams['is_static']) {\n $entityRow[$attributeAlias] = $value;\n } else {\n $attributes[$attributeParams['table']][$addressId][$attributeParams['id']]= $value;\n }\n }\n }\n foreach (self::getDefaultAddressAttributeMapping() as $columnName => $attributeCode) {\n if (!empty($rowData[$columnName])) {\n /** @var $attribute \\Magento\\Eav\\Model\\Entity\\Attribute\\AbstractAttribute */\n $table = $this->_getCustomerEntity()->getResource()->getTable('customer_entity');\n $defaults[$table][$customerId][$attributeCode] = $addressId;\n }\n }\n // let's try to find region ID\n $entityRow['region_id'] = null;\n if (!empty($rowData[self::COLUMN_REGION])) {\n $countryNormalized = strtolower($rowData[self::COLUMN_COUNTRY_ID]);\n $regionNormalized = strtolower($rowData[self::COLUMN_REGION]);\n\n if (isset($this->_countryRegions[$countryNormalized][$regionNormalized])) {\n $regionId = $this->_countryRegions[$countryNormalized][$regionNormalized];\n $entityRow[self::COLUMN_REGION] = $this->_regions[$regionId];\n $entityRow['region_id'] = $regionId;\n }\n }\n if ($newAddress) {\n $entityRowNew = $entityRow;\n $entityRowNew['created_at'] =\n (new \\DateTime())->format(\\Magento\\Framework\\Stdlib\\DateTime::DATETIME_PHP_FORMAT);\n } else {\n $entityRowUpdate = $entityRow;\n }\n\n return [\n 'entity_row_new' => $entityRowNew,\n 'entity_row_update' => $entityRowUpdate,\n 'attributes' => $attributes,\n 'defaults' => $defaults\n ];\n }", "function get_policy_list_by_order_id($order_id)\r\n{\r\n\tglobal $attr_status;\r\n\tss_log(\"into \".__FUNCTION__);\r\n\t$sql=\"SELECT * FROM t_insurance_policy WHERE order_id ='$order_id'\";\r\n\tss_log($sql);\r\n\t$policy_list = $GLOBALS['db']->getAll($sql);\t\r\n\t\r\n\tforeach ($policy_list AS $key => $value)\r\n\t{\r\n\t\t$policy_list[$key]['dateline'] = date('Y-m-d H:i', $value['dateline']);\r\n\t\tif($value['policy_status'])\r\n\t\t{\r\n\t\t\t$policy_list[$key]['policy_status'] = $policy_list[$key]['policy_status_str'] = $attr_status[$value['policy_status']];\r\n\t\t}\r\n\t\t\r\n\t}\r\n\treturn $policy_list;\r\n}", "function updateMultipleData($tableName,$ids,$fieldName,$val,$condfld){\t\t\r\n\t\tif(!isset($ids)){\r\n\t\t\treturn FALSE;\r\n\t\t}else{\r\n\t\t\tif(isset($tableName) && trim($tableName)!=''&& trim($fieldName)!='' && trim($condfld)!='' && trim($ids)!=''){\r\n\t\t\t\t$this->db->trans_start(); //start database transction\r\n\t\t\t\t\t$query=\"UPDATE \".$tableName.\" SET $fieldName=\".trim($val).\" WHERE \". trim($condfld).\" IN(\".trim($ids).\")\";\r\n\t\t\t\t\tmysql_query($query); \r\n\t\t\t\t$this->db->trans_complete(); //complete database transction\t\r\n\t\t\t\r\n\t\t\t\tif ($this->db->trans_status() === FALSE){ //it returns false if transction falied\r\n\t\t\t\t\t$this->db->trans_rollback();\t\t\t//Rollback to previous state\r\n\t\t\t\t}else{\r\n\t\t\t\t\t$this->db->trans_commit();\t\t\t//either Commit data\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t \t}\r\n\t }", "public function run()\n {\n //\n\t\tDB::table('attributevalues')->delete();\n\t\t/***********************************/\n\t\t$attributevalues = array(\n\t\t array('attributegroup_id'=>1,'name'=>'白色','val'=>'#ffffff','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>1,'name'=>'黑色','val'=>'#000000','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>1,'name'=>'红色','val'=>'#d71345','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>1,'name'=>'橙色','val'=>'#f47920','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>1,'name'=>'灰色','val'=>'#77787b','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>1,'name'=>'绿色','val'=>'#45b97c','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>1,'name'=>'蓝色','val'=>'#145b7d','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>1,'name'=>'青色','val'=>'#009ad6','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>1,'name'=>'紫色','val'=>'#8552a1','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>1,'name'=>'黄色','val'=>'#ffd400','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>1,'name'=>'褐色','val'=>'#843900','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>1,'name'=>'桃色','val'=>'#f58f98','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>1,'name'=>'金色','val'=>'#c37e00','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>2,'name'=>'XXS','val'=>'XXS','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>2,'name'=>'XS','val'=>'XS','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>2,'name'=>'S','val'=>'S','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>2,'name'=>'M','val'=>'M','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>2,'name'=>'L','val'=>'L','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>2,'name'=>'XL','val'=>'XL','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>2,'name'=>'XXL','val'=>'XXL','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>3,'name'=>34,'val'=>34,'orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>3,'name'=>35,'val'=>35,'orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>3,'name'=>36,'val'=>36,'orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>3,'name'=>37,'val'=>37,'orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>3,'name'=>38,'val'=>38,'orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>3,'name'=>39,'val'=>39,'orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>3,'name'=>40,'val'=>40,'orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>3,'name'=>41,'val'=>41,'orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>3,'name'=>42,'val'=>42,'orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>3,'name'=>43,'val'=>43,'orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>3,'name'=>44,'val'=>44,'orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>3,'name'=>45,'val'=>45,'orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>3,'name'=>46,'val'=>46,'orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>4,'name'=>'男','val'=>'男','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>4,'name'=>'女','val'=>'女','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>5,'name'=>'上衣','val'=>'上衣','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>5,'name'=>'衬衫','val'=>'衬衫','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>5,'name'=>'短裤','val'=>'短裤','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>5,'name'=>'T恤','val'=>'T恤','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>5,'name'=>'睡衣','val'=>'睡衣','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>5,'name'=>'长裤','val'=>'长裤','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>5,'name'=>'童装','val'=>'童装','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>6,'name'=>'棉织物','val'=>'棉织物','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>6,'name'=>'毛织物','val'=>'毛织物','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>6,'name'=>'皮革','val'=>'皮革','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>6,'name'=>'麻织物','val'=>'麻织物','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>6,'name'=>'丝织物','val'=>'丝织物','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>7,'name'=>'圆领','val'=>'圆领','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>7,'name'=>'尖领','val'=>'尖领','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>7,'name'=>'方领','val'=>'方领','orderid'=>0,'status'=>1,'user_id'=>1),\n\t\t\tarray('attributegroup_id'=>7,'name'=>'倒挂领','val'=>'倒挂领','orderid'=>0,'status'=>1,'user_id'=>1)\n\t\t \n\t\t);\n\n\t\t/***********************************/\n\t\tforeach($attributevalues as $key => $val)\n\t\t{\n\t\t\t\\App\\Http\\Model\\Attributevalue::create($val);\t\n\t\t}\n\n }", "function modifyDataArrForFormUpdate($inputArr)\t{\n\t\tif (is_array($this->conf[$this->conf['cmdKey'].'.']['evalValues.']))\t{\n\t\t\treset($this->conf[$this->conf['cmdKey'].'.']['evalValues.']);\n\t\t\twhile(list($theField,$theValue)=each($this->conf[$this->conf['cmdKey'].'.']['evalValues.']))\t{\n\t\t\t\t\n\t\t\t\t$listOfCommands = t3lib_div::trimExplode(',',$theValue,1);\n\t\t\t\twhile(list(,$cmd)=each($listOfCommands))\t{\n\t\t\t\t\t$cmdParts = preg_split('/\\[|\\]/',$cmd);\t// Point is to enable parameters after each command enclosed in brackets [..]. These will be in position 1 in the array.\n\t\t\t\t\t$theCmd = trim($cmdParts[0]);\n\t\t\t\t\tswitch($theCmd)\t{\n\t\t\t\t\t\tcase 'twice':\n\t\t\t\t\t\t\tif (isset($inputArr[$theField]))\t{\n\t\t\t\t\t\t\t\tif (!isset($inputArr[$theField.'_again']))\t{\n\t\t\t\t\t\t\t\t\t$inputArr[$theField.'_again'] = $inputArr[$theField];\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t$this->additionalUpdateFields.=','.$theField.'_again';\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 'checkArray':\n\t\t\t\t\t\t\t//echo \"<br>$theField : \".$inputArr[$theField];\n\t\t\t\t\t\t\tif ($inputArr[$theField] && !$this->isPreview())\t{\n\t\t\t\t\t\t\t\tfor($a=0;$a<=30;$a++)\t{\n\t\t\t\t\t\t\t\t\tif ($inputArr[$theField] & pow(2,$a))\t{\n\t\t\t\t\t\t\t\t\t\t$alt_theField = $theField.']['.$a;\n\t\t\t\t\t\t\t\t\t\t$inputArr[$alt_theField] = 1;\n\t\t\t\t\t\t\t\t\t\t$this->additionalUpdateFields.=','.$alt_theField;\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//echo ' modifyDataArrForFormUpdate : '.$theField.','.$this->additionalUpdateFields;\n\t\t\t\t\t\tbreak;\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\tif (is_array($this->conf['parseValues.']))\t{\n\t\t\treset($this->conf['parseValues.']);\n\t\t\twhile(list($theField,$theValue)=each($this->conf['parseValues.']))\t{\n\t\t\t\t$listOfCommands = t3lib_div::trimExplode(',',$theValue,1);\n\t\t\t\twhile(list(,$cmd)=each($listOfCommands))\t{\n\t\t\t\t\t$cmdParts = split('\\[|\\]',$cmd);\t// Point is to enable parameters after each command enclosed in brackets [..]. These will be in position 1 in the array.\n\t\t\t\t\t$theCmd = trim($cmdParts[0]);\n\t\t\t\t\tswitch($theCmd)\t{\n\t\t\t\t\t\tcase 'multiple':\n\t\t\t\t\t\t\tif (isset($inputArr[$theField]) && !$this->isPreview())\t{\n\t\t\t\t\t\t\t\t$inputArr[$theField] = explode(',',$inputArr[$theField]);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 'checkArray':\n\t\t\t\t\t\t\tif ($inputArr[$theField] && !$this->isPreview())\t{\n\t\t\t\t\t\t\t\tfor($a=0;$a<=30;$a++)\t{\n\t\t\t\t\t\t\t\t\tif ($inputArr[$theField] & pow(2,$a))\t{\n\t\t\t\t\t\t\t\t\t\t$alt_theField = $theField.']['.$a;\n\t\t\t\t\t\t\t\t\t\t$inputArr[$alt_theField] = 1;\n\t\t\t\t\t\t\t\t\t\t$this->additionalUpdateFields.=','.$alt_theField;\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\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t$inputArr = $this->userProcess_alt(\n\t\t\t$this->conf['userFunc_updateArray'],\n\t\t\t$this->conf['userFunc_updateArray.'],\n\t\t\t$inputArr\n\t\t);\n\n\t\treturn $inputArr;\n\t}", "function fill_relationship_array(&$tables, &$relations, $parameters)\n{\n\t$relations_array = array();\n\tforeach($tables as $key => $value)\n\t{\n\t\tforeach($relations[$key] as $key_attr => $attribute)\n\t\t{\n\t\t\tif((!array_key_exists(\"etc\", $parameters) && !array_key_exists(\"b\", $parameters)) || (array_key_exists(\"etc\", $parameters) && $parameters[\"etc\"] >= $attribute) || array_key_exists(\"b\", $parameters))\n\t\t\t\t$relations_array[$key][$key_attr] = 1;\n\t\t}\n\n\t\tforeach($relations as $parent => $child)\n\t\t{\n\t\t\tforeach($relations[$parent] as $key_child => $attribute)\n\t\t\t{\n\t\t\t\tif(array_key_exists(\"etc\", $parameters) && ($parameters[\"etc\"] < $attribute) && $key_child == $key)\n\t\t\t\t\t$relations_array[$key][$parent] = 1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn $relations_array;\n}", "static private function explodeOrders($orders)\n {\n //Log::info('explodeOrders goods=' . print_r($orders, 1));\n\n $goods = [];\n if ($orders['result'] = true) {\n foreach ($orders['order_goods_list'] as $avail) {\n $avail = $avail[0];\n Log::info('avail=' . print_r($avail, 1));\n\n $goods[$avail['goods_internal_id']] = [\n 'id' => $avail['goods_internal_id'],\n 'goods_id' => $avail['goods_id'],\n 'company_name' => $avail['company_name'],\n 'count' => $avail['count'],\n 'count_avail' => $avail['count_avail'],\n 'expected_delivery_days' => $avail['expected_delivery_days'],\n 'goods_name' => $avail['goods_name'],\n 'goods_supplier_sh_id' => $avail['goods_supplier_sh_id'],\n 'num' => $avail['num'],\n 'price' => $avail['price'],\n 'price_reseller' => $avail['price_reseller'],\n 'state' => $avail['state'],\n 'state_change_date' => $avail['state_change_date'],\n 'supplier_point_id' => $avail['supplier_point_id'],\n 'tags' => $avail['tags'],\n 'user_comment' => $avail['user_comment'],\n ];\n }\n }\n\n return $goods;\n }", "public function getUpdateValues(): array;", "public function actualizeSellOrders()\n {\n $orders = $this->orderService->getOpenSellOrders();\n\n if (is_array($orders)) {\n $this->msg[] = $this->timestamp . ' .... <info>actualizeSellOrders</info>';\n foreach ($orders as $order) {\n $gdaxOrder = $this->gdaxService->getOrder($order['order_id']);\n $status = $gdaxOrder->getStatus();\n\n if ($status) {\n $this->orderService->updateOrderStatus($order['id'], $gdaxOrder->getStatus());\n } else {\n $this->orderService->updateOrderStatus($order['id'], $gdaxOrder->getMessage());\n }\n }\n }\n }", "public function updateMultiple_data()\n {\n \n }", "public function update_att_items()\n\t\t\t{\n\t\t\t\t$attr_name=$this->input->post('att_edit_name');\n\t\t\t\t$attr_id=$this->input->post('att_edit_name_id');\n\t\t\t\t$attr_value_name=$this->input->post('att_edit_value');\n\t\t\t\t$attr_value_price=$this->input->post('att_edit_price');\n\t\t\t\t$attr_value_id=$this->input->post('att_edit_id');\n\t\t\t\t$dd_done=1;\n\t\t\t\t$update_att=$this->db->where(\"f_att_v_id\",$attr_id)->update('food_att_value',array(\"f_att_v_name\"=>$attr_name));\n\t\t\t\tif($update_att)\n\t\t\t\t{\n\t\t\t\t\n\t\t\t\t\t\tfor($p=0;$p<count($attr_value_name);$p++)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$up_values=$this->db->where(\"f_att_vit_id\",$attr_value_id[$p])->update('f_att_v_item',array(\"f_att_vit_name\"=>$attr_value_name[$p],\"f_att_vit_price\"=>$attr_value_price[$p]));\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(($this->input->post('att_editadd_value')))\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$attr_value_newname=$this->input->post('att_editadd_value');\n\t\t\t\t\t\t\t$attr_value_newprice=$this->input->post('att_editadd_price');\n\t\t\t\t\t\t\t\tfor($a=0;$a<count($attr_value_newname);$a++)\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t$add_values=$this->db->insert(\"f_att_v_item\",array(\"f_att_vit_name\"=>$attr_value_newname[$a],\"f_att_vit_price\"=>$attr_value_newprice[$a],\"f_att_v_id\"=>$attr_id));\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\tif($add_values)\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t$dd_done=1;\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$add_done=0;\n\t\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\t\tif($up_values && $dd_done)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\texit;\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\texit;\n\t\t\t\t\t\t}\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\treturn false;\n\t\t\t\t}\n\t\t\t}", "public function updatePurchaseOrderData($invoiceArray,$purc_order_id, $notificationArray ){\n\t \t if(sizeof($invoiceArray) > 0 ){\n\t\t\t \t// update discount and frignt\n\t\t\t\t$this->db->where(\"purc_order_id\",$purc_order_id );\n\t\t\t\t$this->db->update(\"purchase_orders\", $invoiceArray);\n\t\t\t $this->db->limit(1);\n\t\t\t\t// add notification\n\t\t\t\tif(sizeof($notificationArray) > 0){\n\t\t\t\t\t$this->load->model('Orders_model', 'orders_model'); \t\t\n\t\t\t\t\t$notificationDataArray = array();\n\t\t\t\t\t$today = date(\"Y-m-d\");\n\t\t\t\t\t$notificationDataArray['uid'] = $this->session->userdata('userid');\n\t\t\t\t\t$notificationDataArray['message_text'] = 'Take follow-up of PO # '.$notificationArray['purchase_order_number'].' for receiving material.';\n\t\t\t\t\t$notificationDataArray['added_on'] = $today;\n\t\t\t\t\t$notificationDataArray['reminder_date'] = $notificationArray['expected_delivery'];\n\t\t\t\t\t$notificationDataArray['read_flag'] = 'Pending';\n\t\t\t\t\t$this->orders_model->add_notification($notificationDataArray);\n\t\t\t\t}\n\t\t\t\t\t\t \n\t\t\t $result = 1;\n\t\t\t}else{\n\t\t\t\t$result = 0;\n\t\t\t}\n\t\t\treturn $result;\n\t }", "public function update($arr) {\n // update attribute\n foreach ($arr as $key => $value) {\n $this->{$key} = $value;\n }\n }", "public function update($arr) {\n // update attribute\n foreach ($arr as $key => $value) {\n $this->{$key} = $value;\n }\n }", "public function construct_value_array() {\r\n\t\t$fields = array(\r\n\t\t\t'Amount' => $this->cart_data['total_price'] * 100,\r\n\t\t\t'CurrencyCode' => $this->get_currency_iso_code( $this->cart_data['store_currency'] ),\r\n\t\t\t'OrderID' => $this->purchase_id,\r\n\t\t\t'TransactionType' => 'SALE',\r\n\t\t\t'TransactionDateTime' => date( 'Y-m-d H:i:s P' ),\r\n\t\t\t'CallbackURL' => add_query_arg( 'gateway', 'paymentsense', $this->cart_data['notification_url'] ),\r\n\t\t\t'OrderDescription' => 'Order ID: ' . $this->purchase_id . ' - ' . $this->cart_data['session_id'],\r\n\t\t\t'CustomerName' => $this->cart_data['billing_address']['first_name'] . ' ' . $this->cart_data['billing_address']['last_name'],\r\n\t\t\t'Address1' => trim( implode( '&#10;', explode( \"\\n\\r\", $this->cart_data['billing_address']['address'] ) ), '&#10;' ),\r\n\t\t\t'Address2' => '',\r\n\t\t\t'Address3' => '',\r\n\t\t\t'Address4' => '',\r\n\t\t\t'City' => $this->cart_data['billing_address']['city'],\r\n\t\t\t'State' => $this->cart_data['billing_address']['state'],\r\n\t\t\t'PostCode' => $this->cart_data['billing_address']['post_code'],\r\n\t\t\t'CountryCode' => $this->get_country_iso_code( $this->cart_data['billing_address']['country'] ),\r\n\t\t\t'EmailAddress' => $this->cart_data['email_address'],\r\n\t\t\t'PhoneNumber' => $this->cart_data['billing_address']['phone'],\r\n\t\t\t'EmailAddressEditable' => 'true',\r\n\t\t\t'PhoneNumberEditable' => 'true',\r\n\t\t\t'CV2Mandatory' => 'true',\r\n\t\t\t'Address1Mandatory' => 'true',\r\n\t\t\t'CityMandatory' => 'true',\r\n\t\t\t'PostCodeMandatory' => 'true',\r\n\t\t\t'StateMandatory' => 'true',\r\n\t\t\t'CountryMandatory' => 'true',\r\n\t\t\t'ResultDeliveryMethod' => 'POST',\r\n\t\t\t'ServerResultURL' => '',\r\n\t\t\t'PaymentFormDisplaysResult' => 'false',\r\n\t\t);\r\n\r\n\t\t$data = 'MerchantID=' . get_option( 'paymentsense_id' );\r\n\t\t$data .= '&Password=' . get_option( 'paymentsense_password' );\r\n\r\n\t\tforeach ( $fields as $key => $value ) {\r\n\t\t\t$data .= '&' . $key . '=' . $value;\r\n\t\t};\r\n\r\n\t\t$additional_fields = array(\r\n\t\t\t'HashDigest' => $this->calculate_hash_digest( $data, 'SHA1', get_option( 'paymentsense_preshared_key' ) ),\r\n\t\t\t'MerchantID' => get_option( 'paymentsense_id' ),\r\n\t\t);\r\n\r\n\t\t$this->request_data = array_merge( $additional_fields, $fields );\r\n\t}", "private function updateAttributes(array $array, array $attributes, QueryResult $result)\n {\n foreach ($array as $attribute) {\n if (array_key_exists($attribute, $attributes)) {\n $result->addAttribute($attribute, $attributes[$attribute]);\n }\n }\n }", "function jigoshop_upgrade_120() {\n\n // update orders\n\t$args = array(\n\t\t'post_type'\t => 'shop_order',\n\t\t'numberposts' => -1,\n\t\t'post_status' => 'publish'\n\t);\n\n\t$posts = get_posts( $args );\n\n\tforeach( $posts as $post ) :\n $order_data = get_post_meta($post->ID, 'order_data', true);\n\n if (!empty($order_data['order_tax'])) :\n\n // means someone has posted a manual order. Need to update to new tax string\n if (strpos($order_data['order_tax'], ':') === false) :\n $order_data['order_tax_total'] = $order_data['order_tax'];\n $order_data['order_tax'] = jigoshop_tax::create_custom_tax($order_data['order_total'] - $order_data['order_tax_total'], $order_data['order_tax_total'], $order_data['order_shipping_tax'], $order_data['order_tax_divisor']);\n else :\n $tax_array = get_old_taxes_as_array($order_data['order_tax']);\n $order_data['order_tax'] = jigoshop_tax::array_implode($tax_array);\n endif;\n\n update_post_meta($post->ID, 'order_data', $order_data);\n\n endif;\n\n endforeach;\n \n}", "function set(array $array){\n foreach($this as $atributo => $valor){\n if(isset($array[$atributo])){\n $this->$atributo = $array[$atributo];\n }\n }\n }", "public function update(SaleOrdersRequest $request, $id)\n {\n //\n $input = $request->all();\n $request->validate([\n 'customerID' => 'required|min:1',\n 'productID' => 'required|array',\n 'productID.*' => 'required',\n 'quantity' => 'required|array|min:1',\n 'quantity.*' => 'required|numeric|min:1',\n 'quantity' => 'required|array|min:1',\n 'quantity.*' => 'required|numeric|min:1',\n ]);\n $so = SaleOrders::find($id);\n $so->update($input);\n\n $i = 1;\n $cntRow = count($input['productID']);\n $oldDetails = SaleOrderDetails::where(\"orderID\",$input['orderID']);\n $cntOldDetails = $oldDetails->get()->count();\n $diffRow = $cntOldDetails - $cntRow;\n if($diffRow > 0){\n $oldDetails = SaleOrderDetails::where(\"orderID\",$input['orderID'])->whereNotIn(\"saleorderdetailsID\",$input['detailID'])->delete();\n }\n\n foreach ($request->input('productID') as $key => $value) {\n if ($value == \"0\") {\n continue;\n }\n $detail['orderID'] = $request['orderID'];\n $detail['productID'] = $value;\n $detail['quantity'] = $request['quantity'][$key];\n $detail['price'] = $request['price'][$key];\n $detail['tax'] = $request['tax'][$key];\n $detail['subtotal'] = $request['subtotal'][$key];\n $detail['discount'] = $request['discount'][$key];\n $detail['amount'] = $request['amount'][$key];\n\n $oldDetails = SaleOrderDetails::where(\"orderID\",$detail['orderID'])->get();\n if(isset($oldDetails[$key])){\n $oldDetails[$key]->update($detail);\n }else{\n SaleOrderDetails::create($detail);\n }\n $i++;\n }\n\n return redirect()->route('saleorders.index')\n ->with('success', 'Sale Order updated successfully');\n }", "function update_attributes($attributes) {\n\t\t\tif(is_array($attributes)) {\n\t\t \t \t// Test each attribute to be updated\n\t\t \t \t// and process according to its type\n\t\t\t\tforeach($attributes as $field => $value) {\n\t\t\t\t\t# datetime / date parts check\n\t\t\t\t\tif(preg_match('/^\\w+\\(.*i\\)$/i', $field)) {\n\t\t\t\t\t\t// The name of this attribute ends in '(?i)'\n\t\t\t\t\t\t// indicating that it's part of a date or time\n\t\t\t\t\t\t$datetime_field = substr($field, 0, strpos($field, '('));\n\t\t\t\t\t\tif(!in_array($datetime_field, $datetime_fields)) {\n\t\t\t\t\t\t\t$datetime_fields[] = $datetime_field;\n\t\t\t\t\t\t}\n\t\t\t\t\t} elseif(is_object($value) && get_parent_class($value) == __CLASS__ && $this->auto_save_associations) {\n\t\t\t\t\t\t# this elseif checks if first its an object if its parent is ActiveRecord\n\t\t\t\t\t\tif($association_type = $this->get_association_type($field)) {\n\t\t\t\t\t\t\t$this->save_associations[$association_type][] = $value;\n\t\t\t\t\t\t\tif($association_type == \"belongs_to\") {\n\t\t\t\t\t\t\t\t$foreign_key = Inflector::singularize($value->table_name).\"_id\";\n\t\t\t\t\t\t\t\t$this->$foreign_key = $value->id;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} elseif(is_array($value) && $this->auto_save_associations) {\n\t\t\t\t\t\t# this elseif checks if its an array of objects and if its parent is ActiveRecord\n\t\t\t\t\t\tif($association_type = $this->get_association_type($field)) {\n\t\t\t\t\t\t\t$this->save_associations[$association_type][] = $value;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$this->$field = $value;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t \t \t \t\t// Just a simple attribute, copy it\n\t\t\t\t\t\t$this->$field = $value;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// If any date/time fields were found, assign the\n\t\t\t\t// accumulated values to corresponding attributes\n\t\t\t\tif(count($datetime_fields)) {\n\t\t\t\t\tforeach($datetime_fields as $datetime_field) {\n\t\t\t\t\t\t$datetime_format = '';\n\t\t\t\t\t\t$datetime_value = '';\n\n\t\t\t\t\t\tif($attributes[$datetime_field.'(1i)']\n\t\t\t\t\t\t\t&& $attributes[$datetime_field.'(2i)']\n\t\t\t\t\t\t\t&& $attributes[$datetime_field.'(3i)']) {\n\t\t\t\t\t\t\t$datetime_value = $attributes[$datetime_field.'(1i)']\n\t\t\t\t\t\t\t. '-' . $attributes[$datetime_field.'(2i)']\n\t\t\t\t\t\t\t. '-' . $attributes[$datetime_field.'(3i)'];\n\t\t\t\t\t\t\t$datetime_format = $this->date_format;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t$datetime_value .= ' ';\n\n\t\t\t\t\t\tif($attributes[$datetime_field.'(4i)']\n\t\t\t\t\t\t\t&& $attributes[$datetime_field.'(5i)']) {\n\t\t\t\t\t\t\t$datetime_value .= $attributes[$datetime_field.'(4i)']\n\t\t\t\t\t\t\t. ':' . $attributes[$datetime_field.'(5i)'];\n\t\t\t\t\t\t\t$datetime_format .= ' '.$this->time_format;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif($datetime_value = trim($datetime_value)) {\n\t\t\t\t\t\t\t$datetime_value = date($datetime_format, strtotime($datetime_value));\n\t\t\t\t\t\t\t//error_log('($field) $datetime_field = $datetime_value');\n\t\t\t\t\t\t\t$this->$datetime_field = $datetime_value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t$this->set_habtm_attributes($attributes);\n\t\t\t}\n\t\t}", "function updateTable($tableName, $valuesToUpdate, $valuesToEquate){\r\n\t$updateQuery = \"UPDATE \" . \r\n\t\tmysql_real_escape_string($tableName) . \" SET \";\r\n\tforeach ($valuesToUpdate as $fieldName => $value){\r\n\t\t$updateQuery .= mysql_real_escape_string($fieldName) . \" = \" . $value . \", \";\r\n\t}\r\n\t$updateQuery = rtrim($updateQuery, \", \");\t//compensate for the loop not knowing when it's almost over\r\n\t$updateQuery .= \" WHERE \";\t//End field specification and begin where clause\r\n\tforeach ($valuesToEquate as $condition => $value){\r\n\t\t$updateQuery .= mysql_real_escape_string($condition) . \" = \" . mysql_real_escape_string($value) . \" AND \";\r\n\t}\r\n\t$updateQuery = rtrim($updateQuery, \" AND \");\t//compensate for the loop not knowing when it's almost over\r\n\t//Done with query creation. Now, execute.\r\n\tif(!$updateResult = mysql_query($updateQuery)){echo ('Query failed: ' . mysql_error() . \"QUERY TEXT: \" . $updateQuery); mysql_query(\"ROLLBACK\"); die();} \r\n}", "function get_attribute_matrix($articleList=false, $attribute_include=false, $showHiddenValues=true,$sortingTable = 'tx_commerce_articles_article_attributes_mm'){\n\t \n\t \t\t$return_array=array();\n\t \t\t/**\n\t \t\t * if no list is given, take complate arctile-list from product\n\t \t\t */\n\t \n\t \n\t \t\tif ($this->uid>0) { \n\t \t\t\tif ($articleList==false){\n\t \t\t\t\t$articleList=$this->load_articles();\n\t \t\t\t}\n\t \n\t \t\tif (is_array($attribute_include)){\n\t \t\t\tif (!is_null($attribute_include[0])) {\n\t \t\t\t\t\t$addwhere.=' AND tx_commerce_attributes.uid in ('.implode(',',$attribute_include).')';\n\t \t\t\t\t}\t\n\t \t\t\t}\n\t \t\t\tif(is_array($articleList) && count($articleList)>0) {\n\t \t\t\t\t$query_article_list= implode(',',$articleList);\n\t \t\t\t\t$addwhere2 =' AND tx_commerce_articles.uid in ('.$query_article_list.')';\n\t \t\t\t}\n\t \n\t \t\t\t$result=$GLOBALS['TYPO3_DB']->exec_SELECT_mm_query('distinct tx_commerce_attributes.uid,tx_commerce_attributes.sys_language_uid,tx_commerce_articles.uid as article ,tx_commerce_attributes.title, tx_commerce_attributes.unit, tx_commerce_attributes.valueformat, tx_commerce_attributes.internal_title,tx_commerce_attributes.icon, '.$sortingTable.'.sorting',\n\t \t\t\t\t\t\t\t\t\t'tx_commerce_articles',\n\t \t\t\t\t\t\t\t\t\t'tx_commerce_articles_article_attributes_mm',\n\t \t\t\t\t\t\t\t\t\t'tx_commerce_attributes',\t\n\t \t\t\t\t\t\t\t\t\t' AND tx_commerce_articles.uid_product = '.$this->uid.' '.$addwhere.$addwhere2.' order by '.$sortingTable.'.sorting'\n\t \t\t\t\t\t\t\t\t\t);\n\t \t\t\t$addwhere = $addwhere2;\n\t \n\t \t\t\tif (($result) && ($GLOBALS['TYPO3_DB']->sql_num_rows($result)>0))\t{\n\t \t\t\t\twhile ($data=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($result))\t{\n\t \n\t \t\t\t\t\t/** \n\t \t\t\t\t\t * Do the language overlay\n\t \t\t\t\t\t */\n\t \t\t\t\t\tif ($this->lang_uid>0) {\n\t \t\t\t\t\t\tif(is_object($GLOBALS['TSFE']->sys_page)){\n\t \t\t\t\t\t\t\t\t$proofSQL = $GLOBALS['TSFE']->sys_page->enableFields('tx_commerce_attributes',$GLOBALS['TSFE']->showHiddenRecords);\n\t \t\t\t\t\t\t}\n\t \t\t\t\t\t\t$result2=$GLOBALS['TYPO3_DB']->exec_SELECTquery('*',\n\t \t\t\t\t\t\t\t'tx_commerce_attributes',\n\t \t\t\t\t\t\t\t'uid = '.$data['uid'].' '.$proofSQL\n\t \t\t\t\t\t\t\t);\n\t \n\t \n\t \t\t\t\t\t\t// Result should contain only one Dataset\n\t \t\t\t\t\t\tif ($GLOBALS['TYPO3_DB']->sql_num_rows($result2)==1)\t{\n\t \t\t\t\t\t\t\t$return_data=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($result2);\n\t \t\t\t\t\t\t\t$GLOBALS['TYPO3_DB']->sql_free_result($result2);\n\t \t\t\t\t\t\t\t$return_data=$GLOBALS['TSFE']->sys_page->getRecordOverlay('tx_commerce_attributes',$return_data,$this->lang_uid,$this->translationMode);\n\t \t\t\t\t\t\t\tif (!is_array($return_data)){\n\t \t\t\t\t\t\t\t/**\n\t \t\t\t\t\t\t\t * No Translation possible, so next interation\n\t \t\t\t\t\t\t\t */\t\n\t \t\t\t\t\t\t\t\tcontinue;\n\t \t\t\t\t\t\t\t}\n\t \t\t\t\t\t\t}\n\t \n\t \t\t\t\t\t\t$data['title']=$return_data['title'];\n\t \t\t\t\t\t\t$data['unit']=$return_data['unit'];\n\t \t\t\t\t\t\t$data['internal_title']=$return_data['internal_title'];\n\t \n\t \n\t \n\t \t\t\t\t\t}\n\t \n\t \t\t\t\t\t$valueshown=false;\n\t \t\t\t\t\t/**\n\t \t\t\t\t\t * get the different possible values form value_char an value\n\t \t\t\t\t\t */\n\t \t\t\t\t\t/**\n\t \t\t\t\t\t * @since 13.12.2005 Get the lokalized values from tx_commerce_articles_article_attributes_mm\n\t \t\t\t\t\t * @author Ingo Schmitt <[email protected]>\n\t \t\t\t\t\t */\n\t \n\t \t\t\t\t\t$valuelist=array();\n\t\t\t\t\t\t$valueUidList = array();\n\t \t\t\t\t\t$attribute_uid=$data['uid'];\n\t \t\t\t\t\t$article=$data['article'];\n\t \t\t\t\t\t$result_value=$GLOBALS['TYPO3_DB']->exec_SELECT_mm_query('distinct tx_commerce_articles_article_attributes_mm.value_char, tx_commerce_articles.uid article_uid, tx_commerce_attributes.uid attribute_uid',\n\t \t\t\t\t\t\t\t\t\t'tx_commerce_articles',\n\t \t\t\t\t\t\t\t\t\t'tx_commerce_articles_article_attributes_mm',\n\t \t\t\t\t\t\t\t\t\t'tx_commerce_attributes',\t\n\t \t\t\t\t\t\t\t\t\t' AND tx_commerce_articles.uid_product = '.$this->uid.' AND tx_commerce_attributes.uid='.$attribute_uid.$addwhere\n\t \t\t\t\t\t\t\t\t\t);\n\t \t\t\t\t\tif (($result_value) && ($GLOBALS['TYPO3_DB']->sql_num_rows($result_value)>0))\t{\n\t \t\t\t\t\t\t\twhile ($value=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($result_value))\t\t{\n\t \n\t \t\t\t\t\t\t\t\tif (strlen($value['value_char'])>0)\t{\n\t \n\t \t\t\t\t\t\t\t\t\tif ($this->lang_uid>0)\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 * Do the lokalization\n\t \t\t\t\t\t\t\t\t\t\t */\n\t \n\t \t\t\t\t\t\t\t\t\t\t$proofSQL_attributes = $GLOBALS['TSFE']->sys_page->enableFields('tx_commerce_attributes',$GLOBALS['TSFE']->showHiddenRecords);\n\t \t\t\t\t\t\t\t\t\t\t$proofSQL_articles = $GLOBALS['TSFE']->sys_page->enableFields('tx_commerce_articles',$GLOBALS['TSFE']->showHiddenRecords);\n\t \t\t\t\t\t\t\t\t\t\t$res_value_lok=$GLOBALS['TYPO3_DB']->exec_SELECTquery('distinct tx_commerce_articles_article_attributes_mm.value_char, tx_commerce_articles_article_attributes_mm.default_value',\n\t \t\t\t\t\t\t\t\t\t\t'tx_commerce_articles_article_attributes_mm, tx_commerce_articles, tx_commerce_attributes',\n\t \t\t\t\t\t\t\t\t\t\t\"tx_commerce_articles_article_attributes_mm.uid_foreign=\".$value['attribute_uid'].\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\" and tx_commerce_articles_article_attributes_mm.uid_local=tx_commerce_articles.uid and tx_commerce_articles.sys_language_uid=\".$this->lang_uid.\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\" and tx_commerce_articles.uid_product>0 and tx_commerce_articles.l18n_parent=\".$value['article_uid'].\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\" \".$proofSQL_attributes.$proofSQL_articles\n\t \t\t\t\t\t\t\t\t\t\t);\n\t \n\t \t\t\t\t\t\t\t\t\t\tif (($res_value_lok) && ($GLOBALS['TYPO3_DB']->sql_num_rows($res_value_lok)>0)) {\n\t \t\t\t\t\t\t\t\t\t\t\twhile ($lok_value=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($res_value_lok)){\n\t \n\t \t\t\t\t\t\t\t\t\t\t\t\tif (strlen($lok_value['value_char'])>0){\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t$valuelist[]=$lok_value['value_char'];\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t$valueshown=true;\n\t \t\t\t\t\t\t\t\t\t\t\t\t}elseif (strlen($lok_value['default_value'])>0){\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t$valuelist[]=$lok_value['default_value'];\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t$valueshown=true;\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 \n\t \t\t\t\t\t\t\t\t\t}else\t{\n\t \n\t \t\t\t\t\t\t\t\t\t\t$valuelist[]=$value['value_char'];\n\t \t\t\t\t\t\t\t\t\t\t$valueshown=true;\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\t\n\t \n\t \t\t\t\t\t$result_value=$GLOBALS['TYPO3_DB']->exec_SELECT_mm_query('distinct tx_commerce_articles_article_attributes_mm.default_value, tx_commerce_articles.uid article_uid, tx_commerce_attributes.uid attribute_uid ',\n\t \t\t\t\t\t\t\t\t\t'tx_commerce_articles',\n\t \t\t\t\t\t\t\t\t\t'tx_commerce_articles_article_attributes_mm',\n\t \t\t\t\t\t\t\t\t\t'tx_commerce_attributes',\t\n\t \t\t\t\t\t\t\t\t\t' AND tx_commerce_articles.uid_product = '.$this->uid.\" AND tx_commerce_attributes.uid=$attribute_uid\".$addwhere\n\t \t\t\t\t\t\t\t\t\t);\n\t \t\t\t\t\tif (($valueshown == false) && ($result_value) && ($GLOBALS['TYPO3_DB']->sql_num_rows($result_value)>0)){\n\t \t\t\t\t\t\t\twhile ($value=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($result_value))\t{\n\t \n\t \t\t\t\t\t\t\t\tif ($value['default_value']>0)\t{\n\t \n\t \t\t\t\t\t\t\t\t\tif ($this->lang_uid>0){\n\t \t\t\t\t\t\t\t\t\t\t/**\n\t \t\t\t\t\t\t\t\t\t\t * Do the lokalization\n\t \t\t\t\t\t\t\t\t\t\t */\n\t \n\t \t\t\t\t\t\t\t\t\t\t$proofSQL_attributes = $GLOBALS['TSFE']->sys_page->enableFields('tx_commerce_attributes',$GLOBALS['TSFE']->showHiddenRecords);\n\t \t\t\t\t\t\t\t\t\t\t$proofSQL_articles = $GLOBALS['TSFE']->sys_page->enableFields('tx_commerce_articles',$GLOBALS['TSFE']->showHiddenRecords);\n\t \t\t\t\t\t\t\t\t\t\t$res_value_lok=$GLOBALS['TYPO3_DB']->exec_SELECTquery('distinct tx_commerce_articles_article_attributes_mm.default_value, tx_commerce_articles_article_attributes_mm.value_char',\n\t \t\t\t\t\t\t\t\t\t\t'tx_commerce_articles_article_attributes_mm, tx_commerce_articles, tx_commerce_attributes',\n\t \t\t\t\t\t\t\t\t\t\t\"tx_commerce_articles_article_attributes_mm.uid_foreign=\".$value['attribute_uid'].\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\" and tx_commerce_articles_article_attributes_mm.uid_local=tx_commerce_articles.uid and tx_commerce_articles.sys_language_uid=\".$this->lang_uid.\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\" and tx_commerce_articles.l18n_parent=\".$value['article_uid'].\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\" \".$proofSQL_attributes.$proofSQL_articles\n\t \t\t\t\t\t\t\t\t\t\t);\n\t \t\t\t\t\t\t\t\t\t\tif (($res_value_lok) && ($GLOBALS['TYPO3_DB']->sql_num_rows($res_value_lok)>0)) {\n\t \t\t\t\t\t\t\t\t\t\t\twhile ($lok_value=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($res_value_lok)){\n\t \t\t\t\t\t\t\t\t\t\t\t\tif (strlen($lok_value['default_value'])>0){\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t$valuelist[]=$lok_value['default_value'];\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t$valueshown=true;\n\t \t\t\t\t\t\t\t\t\t\t\t\t}elseif(strlen($lok_value['value_char'])>0) {\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t$valuelist[]=$lok_value['value_char'];\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t$valueshown=true;\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}else\n\t \t\t\t\t\t\t\t\t\t{\n\t \t\t\t\t\t\t\t\t\t\t$valuelist[]=$value['default_value'];\n\t \t\t\t\t\t\t\t\t\t\t$valueshown=true;\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}\n\t \n\t \t\t\t\t\t$result_value=$GLOBALS['TYPO3_DB']->exec_SELECT_mm_query('distinct tx_commerce_articles_article_attributes_mm.uid_valuelist ',\n\t \t\t\t\t\t\t\t'tx_commerce_articles',\n\t \t\t\t\t\t\t\t'tx_commerce_articles_article_attributes_mm',\n\t \t\t\t\t\t\t\t'tx_commerce_attributes',\t\n\t \t\t\t\t\t\t\t' AND tx_commerce_articles_article_attributes_mm.uid_valuelist>0 AND tx_commerce_articles.uid_product = '.$this->uid.\" AND tx_commerce_attributes.uid=$attribute_uid\".$addwhere\n\t \t\t\t\t\t\t);\n\t \t\t\t\t\tif (($valueshown == false) && ($result_value) && ($GLOBALS['TYPO3_DB']->sql_num_rows($result_value)>0)){\n\t \t\t\t\t\t\t\twhile ($value=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($result_value)){\n\t \n\t \t\t\t\t\t\t\t\tif ($value['uid_valuelist']>0){\n\t \n\t \t\t\t\t\t\t\t\t $resvalue = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*','tx_commerce_attribute_values','uid = '.$value['uid_valuelist']);\n\t \t\t\t\t\t\t\t\t $row=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($resvalue);\n\t \t\t\t\t\t\t\t\t if ($this->lang_uid>0) {\n\t \t\t\t\t\t\t\t\t\t$row=$GLOBALS['TSFE']->sys_page->getRecordOverlay('tx_commerce_attribute_values',$row,$this->lang_uid,$this->translationMode);\n\t \t\t\t\t\t\t\t\t\tif (!is_array($row)){\n\t \t\t\t\t\t\t\t\t\t\tcontinue;\t\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 if (($showHiddenValues==true) || (($showHiddenValues==false) && ($row['showvalue']==1))){\n\t \n\t \n\t \t\t\t\t\t\t\t\t\t $valuelist[] = $row['value'];\n\t\t\t\t\t\t\t\t\t\t $valueUidList[] = $row['uid'];\n\t \t\t\t\t\t\t\t\t\t $valueshown=true;\n\t \t\t\t\t\t\t\t\t }\n\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}\n\t \t\t\t\t\tif ($valueshown == false) {\n\t \t\t\t\t\t\t$return_array[$attribute_uid]=array('title' => $data['title'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t 'unit' => $data['unit'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t 'values' => array(),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'valueuidlist' => array(),\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t 'valueformat' => $data['valueformat'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t 'Internal_title' => $data['internal_title'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t 'icon' => $data['icon']\n\t \t\t\t\t\t\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 \n\t \t\t\t\t\tif ($valueshown==true){\n\t \t\t\t\t\t\t$return_array[$attribute_uid]=array('title' => $data['title'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t 'unit' => $data['unit'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t 'values' => $valuelist,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t 'valueuidlist' => $valueUidList,\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t 'valueformat' => $data['valueformat'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t 'Internal_title' => $data['internal_title'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t 'icon' => $data['icon']\n\t \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 \n\t \t\t\t\t}\n\t \n\t \t\t\t\treturn $return_array;\n\t \t\t\t}\n\t \t\t}\n\t \t\treturn false;\n\t \n\t}", "public function update($listOfValue);", "private function joinOrders($ordersArray)\n {\n\n $stringresponse = 'om_f.ob_oid in ';\n $i = 1;\n $ordersArray=array_unique($ordersArray);\n sort($ordersArray);\n $totalitems = count($ordersArray);\n foreach ($ordersArray as $item) {\n if ($i == 1 && $totalitems == 1) {\n return $stringresponse .= \"('\" . $item . \"')\";\n } elseif ($i == 1) {\n $stringresponse .= \"('\" . $item . \"',\";\n } elseif ($i == $totalitems) {\n $stringresponse .= \"'\" . $item . \"')\";\n } else {\n $stringresponse .= \"'\" . $item . \"',\";\n }\n $i++;\n }\n return $stringresponse;\n\n }", "private function makePKAttributesArray($array){\n\n \t\t$PKAttributes;\n \t\t$count = 0;\n \t\t$referenceTableKeys = $this->tableNames;\n \t\t$refTableKeyCount = count($referenceTableKeys);\n\n\n \t\tforeach($array as $row){\n \t\t\t$searchElement = $row['table_name'];\n\t if($count !=0 && $searchElement != $tableNames[$count-1] ){\n\t \tfor($i=0;$i<$refTableKeyCount;$i++){\n\t \t\tif($row['table_name'] == $referenceTableKeys[$i] ){\n\t \t\t\t$PKAttributes[$count]=array($row['table_name'] => $row['column_name']);\n\t \t\t}\n\t \t}\n\t \t$tableNames[$count]=$searchElement;\n\t \t$count++;\n\t }\n\t else if ($count == 0){\n\t \tfor($i=0;$i<$refTableKeyCount;$i++){\n\t \t\tif($row['table_name'] == $referenceTableKeys[$i] ){\n\t \t\t\t$PKAttributes[$count]=array($row['table_name'] => $row['column_name']);\n\t \t\t}\n\t \t}\n\t \t$tableNames[0] = $array[0]['table_name'];\n\t \t$count++;\n\t }\n\t }\n\n\t //removes indexed keys and returns a clean array\n\t $PKtemp;\n \t\tforeach ($PKAttributes as $array){\n \t\t\tforeach ($array as$tableName=>$PK){\n \t\t\t\t$PKtemp[$tableName]=$PK;\n \t\t\t}\n \t\t}\n\n \t\t$PKAttributes = $PKtemp;\n\t return $PKAttributes;\n \t}", "public function modify_data($tablename, $vararray, $cond) {\n $str = \"UPDATE `\".$tablename.\"` SET \";\n $fixed = false;\n foreach($vararray as $row) {\n if ($fixed) $str .= \", \";\n if ($row['key'] == 'id' || $row['key'] == 'status') {\n $row['key'] = $tablename.\"_\".$row['key'];\n }\n $str .= \"`\".$row['key'].\"` = '\".$row['val'].\"'\"; \n $fixed = true;\n }\n $str .= \" WHERE \".$cond.\";\\nCOMMIT;\\n\";\n try {\n $result = $this->conn->query($str);\n } catch (PDOException $e) {\n die(\"DB ERROR: \".$e->getMessage());\n }\n }", "public function order_save_data() {\n\t\tglobal $wpdb;\n\n\t\t$user_id = $_POST['user_id'];\n\n\t\t// Get order info that can be manipulated and compared\n\t\t$current_info \t= WC_Api_Manager_Helpers::get_users_data( $user_id );\n\n\t\t$order_key \t\t= esc_attr( stripslashes_deep( $_POST['order_key'] ) );\n\n\t\tif ( ! empty( $_POST['_api_update_permission'] ) )\n\t\t\t$update_permission = 'yes';\n\t\telse\n\t\t\t$update_permission = 'no';\n\n\t\t$info = WC_Api_Manager_Helpers::get_users_data( $user_id );\n\n\t\t// Get order info that can be used to populate values\n\t\t$data = $info[$order_key];\n\n\t\tif ( isset( $data ) ) {\n\n\t\t\tif ( $order_key ) {\n\n\t\t\t\tunset( $current_info[$order_key] );\n\n\t\t\t\t$update =\n\t\t \t\tarray( $order_key =>\n\t\t \t\t\tarray(\n\t\t \t'user_id'\t\t\t\t\t\t=> absint( $data['user_id'] ),\n\t\t\t\t\t\t\t'order_id' \t\t\t\t\t\t=> absint( $data['order_id'] ),\n\t\t\t\t\t\t\t'order_key' \t\t\t\t\t=> sanitize_text_field( $order_key ),\n\t\t\t\t\t\t\t'license_email' \t\t\t\t=> sanitize_text_field( stripslashes_deep( $_POST['license_email'] ) ),\n\t\t\t\t\t\t\t'_api_software_title_parent' \t=> empty( $_POST['_api_software_title_parent'] ) ? '' : sanitize_text_field( stripslashes_deep( $_POST['_api_software_title_parent'] ) ),\n\t\t\t\t\t\t\t'_api_software_title_var' \t\t=> empty( $_POST['_api_software_title_var'] ) ? '' : sanitize_text_field( stripslashes_deep( $_POST['_api_software_title_var'] ) ),\n\t\t\t\t\t\t\t'software_title' \t\t\t\t=> empty( $_POST['software_title'] ) ? '' : sanitize_text_field( stripslashes_deep( $_POST['software_title'] ) ),\n\t\t\t\t\t\t\t'parent_product_id'\t\t\t\t=> sanitize_text_field( $data['parent_product_id'] ),\n\t\t\t\t\t\t\t'variable_product_id'\t\t\t=> sanitize_text_field( $data['variable_product_id'] ),\n\t\t\t\t\t\t\t'current_version'\t\t\t\t=> sanitize_text_field( stripslashes_deep( $_POST['current_version'] ) ),\n\t\t\t\t\t\t\t'_api_activations'\t\t\t\t=> empty( $_POST['_api_activations'] ) ? '' : absint( $_POST['_api_activations'] ),\n\t\t\t\t\t\t\t'_api_activations_parent'\t\t=> empty( $_POST['_api_activations_parent'] ) ? '' : absint( $_POST['_api_activations_parent'] ),\n\t\t\t\t\t\t\t'_api_update_permission'\t\t=> sanitize_text_field( $update_permission ),\n\t\t\t\t\t\t\t'is_variable_product'\t\t\t=> sanitize_text_field( $data['is_variable_product'] ),\n\t\t\t\t\t\t\t'license_type'\t\t\t\t\t=> '',\n\t\t\t\t\t\t\t'expires'\t\t\t\t\t\t=> '',\n\t\t\t\t\t\t\t)\n\t\t \t\t\t);\n\n\t\t\t\t$new_info = array_merge_recursive( $update, $current_info );\n\n\t\t\t\tupdate_user_meta( $user_id, $wpdb->get_blog_prefix() . WC_Api_Manager_Helpers::$user_meta_key_orders, $new_info );\n\n\t\t\t}\n\n\t\t}\n\n\t}", "function update_field_sort_values($id = 0) {\n\n $sort_values = $this->input->post(\"sort_values\");\n if ($sort_values) {\n\n //extract the values from the comma separated string\n $sort_array = explode(\",\", $sort_values);\n\n\n //update the value in db\n foreach ($sort_array as $value) {\n $sort_item = explode(\"-\", $value); //extract id and sort value\n\n $id = get_array_value($sort_item, 0);\n $sort = get_array_value($sort_item, 1);\n\n $data = array(\"sort\" => $sort);\n $this->Fuel_model->save($data, $id);\n }\n }\n }", "function set_dropified_tracking($_dropified_array){\n \n $db_instance = new Database();\n \n $ids = $db_instance->db_retrieve('fulfillments', Array('fulfillment_id'), Array('fulfillment_shopify_id'=>$_dropified_array['fulfillment_shopify_id']));\n \n foreach($ids as $id){\n \n $data = Array();\n $db_conditions = Array(\n 'tracking_number' => $_dropified_array['tracking_number'],\n 'fulfillment_id' => $id['fulfillment_id']\n );\n $data = $db_instance->db_retrieve('vendor_tracking', Array('tracking_number', 'fulfillment_id'), $db_conditions);\n \n if(sizeof($data) > 0){\n\n $dropified_array = Array(\n 'vendor_id' => $_dropified_array['vendor_id'],\n 'tracking_tmodified'=>$_dropified_array['tracking_tmodified']\n );\n $db_instance->db_update('vendor_tracking',$dropified_array,$db_conditions);\n\n } else {\n\n $dropified_array = Array(\n 'tracking_number' => $_dropified_array['tracking_number'],\n 'fulfillment_id' => $id['fulfillment_id'],\n 'order_id' => $_dropified_array['order_id'],\n 'vendor_id' => $_dropified_array['vendor_id'],\n 'order_receipt_id'=>$_dropified_array['order_receipt_id'],\n 'tracking_tcreate' => $_dropified_array['tracking_tcreate'],\n 'tracking_tmodified'=>$_dropified_array['tracking_tmodified']\n );\n $result = $db_instance->db_create('vendor_tracking',$dropified_array);\n\n }\n }\n unset($db_instance);\n \n return;\n}", "function Evidence_Codes_Update($inaccred_evidenceasset_codes,$tacd,$tevidenceasset_code,$tevidenceseq) {\r\r\n\t// XH2($inaccred_evidenceasset_codes.\"-\".$tacd.\"-\".$tevidenceasset_code.\"-\".$tevidenceseq);\r\r\n\t// XH2(\"IN |\".$inaccred_evidenceasset_codes.\"|\");\r\r\n\t$tevidenceasset_codesa = explode (',', $inaccred_evidenceasset_codes); \r\r\n\tif ($tacd == \"A\") { array_push ($tevidenceasset_codesa, $tevidenceasset_code); }\t\r\r\n\tif ($tacd == \"C\") { $tevidenceasset_codesa[$tevidenceseq] = $tevidenceasset_code; }\t\r\r\n\tif ($tacd == \"D\") { $tevidenceasset_codesa[$tevidenceseq] = \"\"; }\t\r\r\n\t$outaccred_evidenceasset_codes = \"\"; $sep = \"\";\r\r\n\tforeach ( $tevidenceasset_codesa as $evidenceasset_code ) {\r\r\n\t\tif ($evidenceasset_code != \"\") {$outaccred_evidenceasset_codes = $outaccred_evidenceasset_codes.$sep.$evidenceasset_code; $sep = \",\";}\r\r\n\t}\r\r\n\t// XH2(\"OUT |\".$outaccred_evidenceasset_codes.\"|\");\t\r\r\n\treturn $outaccred_evidenceasset_codes; \r\r\n}", "public function AdminArray_forLCItem(array $ar) {\n\tif (count($ar) > 0) {\n\t $rcOrdLine = $this->OrderLineTable()->SpawnRecordset();\n\t $rcPkgLine = $this->PackageLineTable()->SpawnRecordset();\n\t $out = <<<__END__\n\n<table class=listing>\n <tr>\n <th colspan=3 rowspan=2>-- Order --</th>\n <th colspan=6>-- Package --</th>\n </tr>\n <tr>\n <th colspan=2 align=right>Shipment &rarr;</th>\n <th colspan=4>Quantities</th>\n <tr>\n <th>Line</th>\n <th>When Placed</th>\n <th>Qty Ord</th>\n \n <th>Line</th>\n <th title=\"when package was created\">When</th>\n <th><abbr title=\"quantity shipped\">shp</abbr></th>\n <th><abbr title=\"quantity not available\">n/a</abbr></th>\n <th><abbr title=\"quantity cancelled\">kld</abbr></th>\n <th><abbr title=\"quantity returned\">rtn</abbr></th>\n \n <th>Notes</th>\n </tr>\n__END__;\n\t $isOdd = FALSE;\n\t foreach ($ar as $sKey => $arPair) {\n\t\t$isOdd = !$isOdd;\n\t\t$cssClass = $isOdd?'odd':'even';\n\t\t$out .= \"\\n <tr class=$cssClass>\";\n\t\t\n\t\t$hasOL = array_key_exists('ol',$arPair);\n\t\t$hasPL = array_key_exists('pl',$arPair);\n\t\t\n\t\t$sNotesOL = NULL;\n\t\t$sNotesPL = NULL;\n\t\t\n\t\tif ($hasOL) {\n\t\t $rcOrdLine->SetFieldValues($arPair['ol']);\n\t\t $htIDOL = $rcOrdLine->SelfLink_name();\n\t\t \n\t\t $rcOrd = $rcOrdLine->OrderRecord();\n\t\t $htWhenPlaced = $rcOrd->WhenStarted();\n\t\t $qtyOrd = $rcOrdLine->QtyOrdered();\n\t\t $sNotesOL = $rcOrdLine->NotesText();\n\t\t if (!is_null($sNotesOL)) {\n\t\t\t$sNotesOL = '<b>ord</b>: '.$sNotesOL;\n\t\t }\n\t\t \n\t\t $out .= <<<__END__\n <td>$htIDOL</td>\n <td>$htWhenPlaced</td>\n <td align=center>$qtyOrd</td>\n__END__;\n\t\t} else {\n\t\t // indicate status of PL's OL pointer\n\t\t if ($hasPL) {\n\t\t\t$idOL = $arPair['pl']['ID_OrdLine'];\n\t\t\tif (is_null($idOL)) {\n\t\t\t $sOL = \"Order Line NULL\";\n\t\t\t} else {\n\t\t\t $sOL = \"Order Line ID $idOL N/A\";\n\t\t\t}\n\t\t } else {\n\t\t\t$sOL = NULL;\n\t\t }\n\t\t $out .= \"\\n <td colspan=3 class=inact>$sOL</td>\";\n\t\t}\n\t\t \n\t\tif ($hasPL) {\n\t\t $rcPkgLine->SetFieldValues($arPair['pl']);\n\t\t $htIDPL = $rcPkgLine->SelfLink_name();\n\t\t\n\t\t $rcPkg = $rcPkgLine->PackageRecord();\n\t\t $htWhenPacked = $rcPkg->WhenStarted();\n\t\t $qtyShp = $rcPkgLine->QtyShipped();\n\t\t $qtyNA = $rcPkgLine->QtyNotAvail();\n\t\t $qtyKld = $rcPkgLine->QtyKilled();\n\t\t $qtyRtn = $rcPkgLine->QtyReturned();\n\t\t $sNotesPL = $rcPkgLine->NotesText();\n\t\t if (!is_null($sNotesPL)) {\n\t\t\t$sNotesPL = '<b>pkg</b>: '.$sNotesPL;\n\t\t }\n\t\t\n\t\t $out .= <<<__END__\n <td>$htIDPL</td>\n <td>$htWhenPacked</td>\n <td align=center>$qtyShp</td>\n <td align=center>$qtyNA</td>\n <td align=center>$qtyKld</td>\n <td align=center>$qtyRtn</td>\n__END__;\n\t\t}\n\t\t$sNotes = fcString::ConcatArray(' / ',array($sNotesOL,$sNotesPL));\n\t\t$out .= \n\t\t \"\\n <td>$sNotes</td>\"\n\t\t .\"\\n </tr>\"\n\t\t ;\n\t }\n\t $out .= \"\\n</table>\";\n\t} else {\n\t $out = 'No order or package lines found.';\n\t}\n\treturn $out;\n }", "function array_to_insertquery($table, $attrs)\r\n{ \r\n $sql1 = '';\r\n $sql2 = '';\r\n $first = true;\r\n foreach ($attrs as $key => $value) {\r\n if (!$first) {\r\n $sql1 = $sql1.\",\";\r\n $sql2 = $sql2.\",\";\r\n }\r\n $sql1 = $sql1.' `'.mysql_escape_string($key).\"`\";\r\n $sql2 = $sql2.\" '\".mysql_escape_string($value).\"'\";\r\n $first = false;\r\n }\r\n $query = \"INSERT INTO `\".mysql_escape_string($table).\"` ($sql1) VALUES ($sql2);\";\r\n return $query;\r\n}", "function update_player_league($playerID, $leagueID, $player) {\r\n\tforeach($player as $key => $value){\r\n\t\t$values[] = array(\"col\" => $key, \"value\" => $value);\r\n\t}\r\n\t$cond[]= array(\"col\" => \"playerID\", \"value\" => $playerID);\r\n\t$cond[]= array(\"col\" => \"leagueID\", \"value\" => $leagueID);\r\n\r\n\t//print_r($cond);\r\n\t$ID = uli_update_record('player_league', $cond, $values);\r\n\tif ($ID){return TRUE;}\r\n\telse {return FALSE;}\r\n}", "function myPear_update27(){\n foreach(array('zzz_unit_members','zzz_list_members') as $table){\n foreach(array('lm_option'=>'lm_id',\n\t\t 'um_option'=>'um_id',\n\t\t ) as $column=>$lm_id){\n if (myPear_db()->columnExists($column,$table)){\n\t$q=myPear_db()->qquery(\"SELECT $lm_id,$column FROM $table\",1);\n\twhile($r=myPear_db()->next_record($q)){\n\t if (empty($r[$column])){\n\t $f = array();\n\t }else{\n\t $e = error_reporting(0); $f = unserialize($r[$column]); error_reporting($e);\n\t if (!is_array($f)){\n\t if (cnf_dev) b_debug::var_dump($r[$column],\"- $table.$column not serialized, leave it as it is\");\n\t $f = array();\n\t }\n\t }\n\t $OK = True;\n\t foreach(array_keys($f) as $k){\n\t $v = $f[$k];\n\t if(is_array($v)){\n\t // b_debug::xxx(\"array $column($k=\".join(',',$v).')');\n\t $f[$k] = join(',',$v);\n\t $OK = False;\n\t }\n\t }\n\t if (!$OK) myPear_db()->query(\"UPDATE $table SET $column='\".serialize($f).\"' WHERE $lm_id = \".$r[$lm_id]);\n\t}\n }\n }\n }\n}", "public function loadProductAttributeValues($productIds = array())\n {\n $selects = [];\n $storeId = $this->getIndex()->getStoreId();\n $storeIds = array(0, $storeId);\n \n $connection = $this->_attributeCollection->getConnection();\n \n $attributeTables = array();\n $attributesMap = array();\n \n $this->_dataProductAttributeValues = array();\n \n $attributesWithSelect = array();\n $attributesWithMultipleSelect = array();\n \n $productSearchWeightAttributes = $this->getProductAttrCodeUseForSearchWeight();\n if (!empty($productSearchWeightAttributes)) {\n $productSearchWeightAttributes = explode(',', $productSearchWeightAttributes);\n $conditions = 'main_table.attribute_code IN (?)';\n $this->_attributeCollection->getSelect()->orWhere($conditions, $productSearchWeightAttributes);\n }\n \n foreach ($this->_attributeCollection as $attribute) {\n $this->_dataProductAttributeData[$attribute->getAttributeCode()] = $attribute;\n $this->_dataProductAttributeData[$attribute->getAttributeId()] = $attribute;\n if (!$attribute->isStatic()) {\n //Collect attributes with frontendInput is select\n if ($attribute->getFrontendInput() == 'select') {\n //Ignore attribute has source model, those attributes will load option from source model\n $attributesWithSelect[$attribute->getAttributeId()] = $attribute->getBackend()->getTable();\n }\n //Collect attributes with frontendInput is multiple select\n if ($attribute->getFrontendInput() == 'multiselect') {\n $attributesWithMultipleSelect[$attribute->getAttributeId()] = $attribute->getBackend()->getTable();\n }\n $attributeTables[$attribute->getBackend()->getTable()][] = $attribute->getAttributeId();\n $attributesMap[$attribute->getAttributeId()] = $attribute->getAttributeCode();\n }\n }\n \n $productEntityLinkField = $this->getProductEntityLinkField();\n \n $index = 1;\n if (count($attributeTables)) {\n $attributeTables = array_keys($attributeTables);\n foreach ($productIds as $productId) {\n foreach ($attributeTables as $attributeTable) {\n $alias = 't'.$index;\n $aliasEntity = 'tf'.$index;\n $select = $connection->select()\n ->from(\n [$alias => $attributeTable],\n [\n 'value' => $alias.'.value',\n 'attribute_id' => $alias.'.attribute_id'\n ]\n )->joinInner(\n [$aliasEntity => 'catalog_product_entity'],\n \"{$alias}.{$productEntityLinkField} = {$aliasEntity}.{$productEntityLinkField}\",\n [\n 'product_id' => $aliasEntity.'.entity_id'\n ]\n )\n ->where($aliasEntity.'.entity_id = ?', $productId)\n ->where($alias.'.store_id' . ' IN (?)', $storeIds)\n ->order($alias.'.store_id' . ' DESC');\n $index++;\n $selects[] = $select;\n }\n }\n \n //Please be careful here Because $unionSelect can be nothing that is the reason for fetchAll throw error\n if (count($selects) > 0) {\n $unionSelect = new \\Magento\\Framework\\DB\\Sql\\UnionExpression(\n $selects,\n \\Magento\\Framework\\DB\\Select::SQL_UNION_ALL\n );\n \n foreach ($connection->fetchAll($unionSelect) as $attributeValue) {\n if (array_key_exists($attributeValue['attribute_id'], $attributesMap)) {\n $pId = $attributeValue['product_id'];\n $attrId = $attributeValue['attribute_id'];\n \n $this->_dataProductAttributeValues[$pId][$attributesMap[$attrId]] = $attributeValue['value'];\n \n //Collect data for attribute has options like select/multiple select\n if (in_array($attrId, array_keys($attributesWithSelect))) {\n //This function call may cause performance issue - need better way\n //load attribute option labels for autocomplete only, if laod attribute it may cause performance issue\n if ($this->_isAttributeRequiredToLoadOptionLabel($attrId)) {\n $attributeValue['option_label'] = $this->_getAttributeOptionLabels(\n $connection,\n $attrId,\n $attributeValue['value'],\n $storeIds\n );\n }\n \n $this->_dataProductAttributeValuesOptions[$pId][$attributesMap[$attrId]] = array($attributeValue['value']);\n }\n if (in_array($attrId, array_keys($attributesWithMultipleSelect))) {\n $this->_dataProductAttributeValuesOptions[$pId][$attributesMap[$attrId]] = explode(',', $attributeValue['value']);\n //This function call may cause performance issue - need better way\n //load attribute option labels for autocomplete only, if laod attribute it may cause performance issue\n if ($this->_isAttributeRequiredToLoadOptionLabel($attrId)) {\n $attributeValue['option_label'] = $this->_getAttributeOptionLabels(\n $connection,\n $attrId,\n explode(',', $attributeValue['value']),\n $storeIds\n );\n }\n }\n //TODO: for multiple select\n if (isset($attributeValue['option_label'])) {\n $this->_dataProductAttributeValuesOptionsLabels[$pId][$attributesMap[$attrId]] = $attributeValue['option_label'];\n }\n }\n }\n }\n }\n \n return $this;\n }", "function get_selectattribute_matrix($articleList=false, $attribute_include=false, $showHiddenValues=true,$sortingTable = 'tx_commerce_articles_article_attributes_mm'){\n \t\t\n \t\t\n \t\t$return_array=array();\n \t\t/**\n \t\t * if no list is given, take complate arctile-list from product\n \t\t */\n \t\t\n \t\t\n \t\tif ($this->uid>0) { \n\t \t\tif ($articleList==false){\n\t \t\t\t$articleList=$this->load_articles();\n\t \t\t}\n\t\n\t if (is_array($attribute_include)){\n\t \tif (!is_null($attribute_include[0])) {\n\t\t \t\t\t$addwhere.=' AND tx_commerce_attributes.uid in ('.implode(',',$attribute_include).')';\n\t\t\t\t}\t\n\t \t\t}\n\t \t\tif(is_array($articleList) && count($articleList)>0) {\n\t\t\t\t$query_article_list= implode(',',$articleList);\n\t \t\t\t$addwhere2 =' AND tx_commerce_articles.uid in ('.$query_article_list.')';\n\t\t\t}\n\t \t\t\n\t \t\t$result=$GLOBALS['TYPO3_DB']->exec_SELECT_mm_query('distinct tx_commerce_attributes.uid,tx_commerce_attributes.sys_language_uid,tx_commerce_articles.uid as article ,tx_commerce_attributes.title, tx_commerce_attributes.unit, tx_commerce_attributes.valueformat, tx_commerce_attributes.internal_title,tx_commerce_attributes.icon, '.$sortingTable.'.sorting',\n\t \t \t\t\t\t\t\t\t'tx_commerce_articles',\n\t \t\t\t\t\t\t\t\t'tx_commerce_articles_article_attributes_mm',\n\t\t\t\t\t\t\t\t\t'tx_commerce_attributes',\t\n\t\t\t\t\t\t\t\t\t' AND tx_commerce_articles.uid_product = '.$this->uid.' '.$addwhere.$addwhere2.' order by '.$sortingTable.'.sorting'\n\t\t\t\t\t\t\t\t\t);\n\t \t\t$addwhere = $addwhere2;\n\t\t\t\n\t\t\tif (($result) && ($GLOBALS['TYPO3_DB']->sql_num_rows($result)>0))\t{\n\t \t\t\twhile ($data=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($result))\t{\n\t \t\t\t\t/** \n\t \t\t\t\t * Do the language overlay\n\t \t\t\t\t */\n\t \t\t\t\t \n\t \t\t\t\tif ($this->lang_uid>0) {\n\t \t\t\t\t\tif(is_object($GLOBALS['TSFE']->sys_page)){\n\t\t\t \t\t\t\t\t$proofSQL = $GLOBALS['TSFE']->sys_page->enableFields('tx_commerce_attributes',$GLOBALS['TSFE']->showHiddenRecords);\n\t\t\t\t\t\t}\n\t\t\t\t \t\t$result2=$GLOBALS['TYPO3_DB']->exec_SELECTquery('*',\n\t\t\t\t \t\t\t'tx_commerce_attributes',\n\t\t\t\t\t\t\t'uid = '.$data['uid'].' '.$proofSQL\n\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// Result should contain only one Dataset\n\t\t\t\t \t\tif ($GLOBALS['TYPO3_DB']->sql_num_rows($result2)==1)\t{\n\t\t\t\t \t\t\t$return_data=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($result2);\n\t\t\t\t \t\t\t$GLOBALS['TYPO3_DB']->sql_free_result($result2);\n\t\t\t\t \t\t\t$return_data=$GLOBALS['TSFE']->sys_page->getRecordOverlay('tx_commerce_attributes',$return_data,$this->lang_uid,$this->translationMode);\n\t\t\t\t \t\t\tif (!is_array($return_data)){\n\t\t\t\t \t\t\t/**\n\t\t\t\t \t\t\t * No Translation possible, so next interation\n\t\t\t\t \t\t\t */\t\n\t\t\t\t \t\t\t\tcontinue;\n\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$data['title']=$return_data['title'];\n\t \t\t\t\t\t$data['unit']=$return_data['unit'];\n\t \t\t\t\t\t$data['internal_title']=$return_data['internal_title'];\n\t \t\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$valueshown=false;\n\t \t\t\t\t/**\n\t \t\t\t\t * only get select attributs, since we don't need any other in selectattribut Matrix and we need the arrayKeys in this case\n\t \t\t\t\t */\n\t \t\t\t\t/**\n\t \t\t\t\t * @since 13.12.2005 Get the lokalized values from tx_commerce_articles_article_attributes_mm\n\t \t\t\t\t * @author Ingo Schmitt <[email protected]>\n\t \t\t\t\t */\n\t \t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t$valuelist=array();\n\t\t\t\t\t$valueUidList = array();\n\t\t\t\t\t$attribute_uid=$data['uid'];\n\t \t\t\t\t$article=$data['article'];\n\t\t\t\t\t\n\t\t\t\t\t$result_value=$GLOBALS['TYPO3_DB']->exec_SELECT_mm_query('distinct tx_commerce_articles_article_attributes_mm.uid_valuelist ',\n\t \t \t\t\t\t\t'tx_commerce_articles',\n\t \t\t\t\t\t\t'tx_commerce_articles_article_attributes_mm',\n\t\t\t\t\t\t\t'tx_commerce_attributes',\t\n\t\t\t\t\t\t\t' AND tx_commerce_articles_article_attributes_mm.uid_valuelist>0 AND tx_commerce_articles.uid_product = '.$this->uid.\" AND tx_commerce_attributes.uid=$attribute_uid\".$addwhere\n\t\t\t\t\t\t);\n\t\t\t\t\tif (($valueshown == false) && ($result_value) && ($GLOBALS['TYPO3_DB']->sql_num_rows($result_value)>0)){\n\t \t\t\t\t\t\twhile ($value=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($result_value)){\n\t \t\t\t\t\t\t\tif ($value['uid_valuelist']>0){\n\t \t\t\t\t\t\t\t \t\n\t \t\t\t\t\t\t\t $resvalue = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*','tx_commerce_attribute_values','uid = '.$value['uid_valuelist']);\n\t \t\t\t\t\t\t\t $row=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($resvalue);\n\t \t\t\t\t\t\t\t if ($this->lang_uid>0) {\n\t \t\t\t\t\t\t\t \t$row=$GLOBALS['TSFE']->sys_page->getRecordOverlay('tx_commerce_attribute_values',$row,$this->lang_uid,$this->translationMode);\n\t \t\t\t\t\t\t\t \tif (!is_array($row)){\n\t \t\t\t\t\t\t\t \t\tcontinue;\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\t if (($showHiddenValues==true) || (($showHiddenValues==false) && ($row['showvalue']==1))){\n\t \t\t\t\t\t\t\t \n\t \t\t\t\t\t\t\t \t $valuelist[$row['uid']] = $row['value'];\n\t \t\t\t\t\t\t\t \t $valueshown=true;\n\t \t\t\t\t\t\t\t }\n\t\n\t \t\t\t\t\t\t\t}\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\n\t \t\t\t\tif ($valueshown==true){\n\t \t\t\t\t\t$return_array[$attribute_uid]=array('title' => $data['title'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'unit' => $data['unit'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'values' => $valuelist,\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'valueformat' => $data['valueformat'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'Internal_title' => $data['internal_title'],\n\t \t\t\t\t\t\t\t\t\t\t\t\t 'icon' => $data['icon']\n\t \t\t\t\t\t\t\t\t\t\t\t\t);\n\t \t\t\t\t}\n\t \t\t\t\t\n\t \t\t\t}\n\t \t\t\t\n\t \t\t\treturn $return_array;\n\t \t\t}\n \t\t}\n \t\treturn false;\n \t\t\n \t}", "public function updateOrder()\n\t{\n\t\tApp::error(function(ModelNotFoundException $e)\n\t\t{\n\t\t\tApp::abort(404);\n\t\t});\n\t\t\n\t\t$objectarray = Input::get('objectarray');\n\t\t// rsort($objectarray);\n\t\t// print_r($objectarray[0]->id); exit;\n\n\t\t$counter = sizeof($objectarray);\n\t\tforeach ($objectarray as $object) {\n\t\t\tDB::update('UPDATE estimate_entries SET sortorder = '.$counter.' WHERE id='.$object['id']);\n\t\t\t$counter--;\n\t\t}\n\t\t//UPDATE comments SET post_id = 10 WHERE id IN (3,6,23,56)\n\n\t\t// $entry = EstimateEntry::findOrFail($id);\n\n\t\t// $get = Input::get();\n\t\t// $entry->title = $get['title'];\n\t\t// $entry->hours = isset($get['hours']) ? $get['hours'] : $entry->hours;\n\n\t\t// $entry->save();\n\n\t\treturn $objectarray;\n\t}", "public function setOrderAttributes($requestParameters = array());", "public function updateOrderStatusForSellerItems($itemsArr, $orderId)\r\n {\r\n foreach ($itemsArr as $item) {\r\n /**\r\n * Get status based on order item\r\n */\r\n $status = Mage::helper('marketplace/vieworder')->getOrderStatusForSellerItemsBased($item);\r\n\r\n /**\r\n * Inilize product id\r\n */\r\n $itemProductId = $item->getProductId();\r\n\r\n /**\r\n * Load commission collection\r\n */\r\n $products = Mage::getModel('marketplace/commission')->getCollection();\r\n $products->addFieldToSelect('*');\r\n\r\n /**\r\n * Filter by order id and product id\r\n */\r\n $products->addFieldToFilter('order_id', $orderId);\r\n $products->addFieldToFilter('product_id', $itemProductId);\r\n $collectionId = $products->getFirstItem()->getId();\r\n\r\n /**\r\n * Checking for collection id exist or not\r\n */\r\n if (!empty($collectionId)) {\r\n /**\r\n * Initilize order item status\r\n */\r\n $data = array('item_order_status' => $status);\r\n $model = Mage::getModel('marketplace/commission')->load($collectionId)->addData($data);\r\n\r\n /**\r\n * Save model\r\n */\r\n $model->setId($collectionId)->save();\r\n }\r\n }\r\n }", "function acf_merge_attributes($array1, $array2)\n{\n}", "protected function hydrate($array){\r\n\t\tforeach ($array as $key => $value) {\r\n\t\t\t$methodName = 'set'.ucfirst($key);\r\n\t\t\tif(method_exists($this, $methodName)){\r\n\t\t\t\t$this->$methodName($value);\r\n\t\t\t}\r\n\t\t}\r\n\t}", "protected function _cleanOrderOfMultipleRowsOfSameItem($apiOrder) {\n $temp = array();\n\n foreach ($apiOrder->itemsOrdered as $orderItem) {\n // check if an item uses more than one row\n if(array_key_exists($orderItem->article->id, $temp)) {\n // add the additonal row to the first one\n $temp[$orderItem->article->id]->quantityOrdered += $orderItem->quantityOrdered;\n $temp[$orderItem->article->id]->costsTotal->net += $orderItem->costsTotal->net;\n\t\t\t\t$temp[$orderItem->article->id]->costsTotal->gross += $orderItem->costsTotal->gross;\n\t\t\t\t$temp[$orderItem->article->id]->costsTotal->net += $orderItem->costsTotal->net;\n\t\t\t\t\n $apiOrder->summary->totalSumItems->net = $temp[$orderItem->article->id]->costsTotal->net;\n $apiOrder->summary->totalSumItems->gross = $temp[$orderItem->article->id]->costsTotal->gross;\n $apiOrder->summary->totalSumItems->tax = $temp[$orderItem->article->id]->costsTotal->tax;\n \n } else {\n $temp[$orderItem->article->id] = $orderItem;\n }\n }\n\n $orderItems = array();\n foreach($temp as $item) {\n $orderItems[] = $item;\n }\n\n // save the cleaned order items\n $apiOrder->itemsOrdered = $orderItems;\n\n return $apiOrder;\n }", "function getOrders() {\r\n $b2b_orders = getOrdersFromB2B();\r\n //GET ORDERS FROM B2C\r\n $b2c_orders = getOrdersFromB2C();\r\n //COMBINE ORDERS\r\n $today_orders = array_merge($b2b_orders, $b2c_orders);\r\n \r\n $restaurant_array = array();\r\n \r\n foreach($today_orders as $order ) {\r\n $restaurant = array(\r\n \"id\" => '',\r\n \"orders\"=> array(),\r\n );\r\n if ( count($restaurant_array) == 0 ) {\r\n $restaurant[\"id\"] = $order[\"restaurant_id\"];\r\n array_push($restaurant[\"orders\"], $order);\r\n array_push($restaurant_array, $restaurant);\r\n } else {\r\n foreach($restaurant_array as &$array_item) {\r\n if ( $array_item[\"id\"] == $order[\"restaurant_id\"] ) {\r\n array_push($array_item[\"orders\"], $order);\r\n continue 2;\r\n }\r\n }\r\n $restaurant[\"id\"] = $order[\"restaurant_id\"];\r\n array_push($restaurant[\"orders\"], $order);\r\n array_push($restaurant_array, $restaurant);\r\n }\r\n }\r\n \r\n return $restaurant_array;\r\n}", "protected function _updateVarsListTable($arr)\n\t{\n\t\tglobal $classHtml;\n\n\t\t$varsStrFlagFiscalPeriod = $arr['varsItem']['varsStrFlagFiscalPeriod'];\n\t\t$varsBase = $arr['varsBase'];\n\n\t\t$varsColumn = array('');\n\t\t$varsColumnWidth = array($arr['value']['tmplTable']['numWidthItem']);\n\t\t$varsColumnId = array('item');\n\t\t$numWidth = 0;\n\t\t$strPeriod = $arr['vars']['varsItem']['tmplFiscalPeriod']['strPeriod'];\n\t\t$array = $arr['varsItem']['varsPeriod'];\n\t\tforeach ($array as $key => $value) {\n\t\t\t$numFiscalPeriod = $value;\n\t\t\t$arrayFlagFiscalPeriod = $arr['varsItem']['varsStrFlagFiscalPeriod'][$numFiscalPeriod];\n\t\t\tforeach ($arrayFlagFiscalPeriod as $keyFlagFiscalPeriod => $valueFlagFiscalPeriod) {\n\t\t\t\tif ($arr['value']['id'] == 'TableF1') {\n\t\t\t\t\tif (!preg_match(\"/^f1$/\", $keyFlagFiscalPeriod)) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\n\t\t\t\t} else if ($arr['value']['id'] == 'TableF2') {\n\t\t\t\t\tif (!preg_match(\"/^f2/\", $keyFlagFiscalPeriod)) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\n\t\t\t\t} else if ($arr['value']['id'] == 'TableF4') {\n\t\t\t\t\tif (!preg_match(\"/^f4/\", $keyFlagFiscalPeriod)) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\n\t\t\t\t} else if ($arr['value']['id'] == 'TableMonth') {\n\t\t\t\t\tif (preg_match(\"/^f/\", $keyFlagFiscalPeriod)) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t$varsColumn[] = $numFiscalPeriod . $strPeriod . '' . $valueFlagFiscalPeriod;\n\t\t\t\t$varsColumnId[] = $numFiscalPeriod . '_' . $keyFlagFiscalPeriod;\n\t\t\t\t$varsColumnWidth[] = $arr['value']['tmplTable']['numWidth'];\n\t\t\t\t$numWidth += $arr['value']['tmplTable']['numWidth'];\n\t\t\t}\n\t\t}\n\t\t$varsBase = &$arr['vars']['varsCollect']['varsBase'];\n\n\t\t$arrayNew = array();\n\t\t$array = $arr['vars']['varsCollect']['arrStrTitle'];\n\t\tforeach ($array as $key => $value) {\n\t\t\t$varsDetail = $arr['value']['tmplTable']['tmplDetail'];\n\t\t\t$arrayColumn = $varsColumnId;\n\t\t\tforeach ($arrayColumn as $keyColumn => $valueColumn) {\n\t\t\t\t$varsDetail['varsDetail'][$valueColumn] = $arr['value']['tmplTable']['tmplData'];\n\n\t\t\t\tif ($valueColumn == 'item') {\n\t\t\t\t\t$varsDetail['varsDetail'][$valueColumn]['value'] = $value['strTitleFSTag'];\n\t\t\t\t\t$varsDetail['varsDetail'][$valueColumn]['strClass'] = $arr['value']['tmplTable']['strClassLeft'];\n\t\t\t\t\tif ($value['strClassFont']) {\n\t\t\t\t\t\t$varsDetail['varsDetail'][$valueColumn]['strClassFont'] = $value['strClassFont'];\n\t\t\t\t\t}\n\t\t\t\t\t$varsDetail['varsDetail'][$valueColumn]['flagOverflowUse'] = 1;\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t$arrLevel = preg_split(\"/_/\", $valueColumn);\n\t\t\t\t$numFiscalPeriod = reset($arrLevel);\n\t\t\t\t$flagFiscalPeriod = end($arrLevel);\n\t\t\t\t$arrLevel = array();\n\t\t\t\tif ($value['strClassFont']) {\n\t\t\t\t\t$varsDetail['varsDetail'][$valueColumn]['strClassFont'] = $value['strClassFont'];\n\t\t\t\t}\n\t\t\t\t$varsDetail['varsDetail'][$valueColumn]['value'] = $varsBase[$numFiscalPeriod]['varsComma'][$flagFiscalPeriod][$key]['sumNext'];\n\t\t\t}\n\t\t\t$arrayNew[] = $varsDetail;\n\t\t}\n\n\t\t$arr['value']['tmplTable']['varsStatus']['varsColumnId'] = $varsColumnId;\n\t\t$arr['value']['tmplTable']['varsStatus']['varsColumnWidth'] = $varsColumnWidth;\n\n\t\t$varsTemp = $classHtml->allot(array(\n\t\t\t'strClass' => 'TableSimple',\n\t\t\t'flagStatus' => 'Html',\n\t\t\t'varsDetail' => $arrayNew,\n\t\t\t'varsColumn' => $varsColumn,\n\t\t\t'varsStatus' => $arr['value']['tmplTable']['varsStatus'],\n\t\t));\n\t\t$arr['value']['varsSpace']['varsDetail']['strHtml'] = $varsTemp['strHtml'];\n\n\t\treturn $arr['value'];\n\t}", "public function addFilters($values)\n {\n $attributes = $this->getAttributes();\n $allConditions = [];\n\n foreach ($attributes as $attribute) {\n /* @var $attribute Attribute */\n if (!isset($values[$attribute->getAttributeCode()])) {\n continue;\n }\n $value = $values[$attribute->getAttributeCode()];\n $preparedSearchValue = $this->getPreparedSearchCriteria($attribute, $value);\n if (false === $preparedSearchValue) {\n continue;\n }\n $this->addSearchCriteria($attribute, $preparedSearchValue);\n\n if ($attribute->getAttributeCode() == 'price') {\n $rate = 1;\n $store = $this->_storeManager->getStore();\n $currency = $store->getCurrentCurrencyCode();\n if ($currency != $store->getBaseCurrencyCode()) {\n $rate = $store->getBaseCurrency()->getRate($currency);\n }\n\n $value['from'] = (isset($value['from']) && is_numeric($value['from']))\n ? (float)$value['from'] / $rate\n : '';\n $value['to'] = (isset($value['to']) && is_numeric($value['to']))\n ? (float)$value['to'] / $rate\n : '';\n }\n\n if ($attribute->getBackendType() == 'datetime') {\n $value['from'] = (isset($value['from']) && !empty($value['from']))\n ? date('Y-m-d\\TH:i:s\\Z', strtotime($value['from']))\n : '';\n $value['to'] = (isset($value['to']) && !empty($value['to']))\n ? date('Y-m-d\\TH:i:s\\Z', strtotime($value['to']))\n : '';\n }\n $condition = $this->_getResource()->prepareCondition(\n $attribute,\n $value,\n $this->getProductCollection()\n );\n if ($condition === false) {\n continue;\n }\n\n $table = $attribute->getBackend()->getTable();\n if ($attribute->getBackendType() == 'static') {\n $attributeId = $attribute->getAttributeCode();\n } else {\n $attributeId = $attribute->getId();\n }\n $allConditions[$table][$attributeId] = $condition;\n }\n //if ($allConditions)\n if ($allConditions || (isset($values['cat']) && is_numeric($values['cat'])) ) {\n $this->_registry->register('advanced_search_conditions', $allConditions);\n $this->getProductCollection()->addFieldsToFilter($allConditions);\n } else {\n throw new LocalizedException(__('Please specify at least one search term.'));\n }\n\n return $this;\n }", "function i_or_u_tables($f_arr_table, $t_arr_table, $search_arr, $type, $i_table_fields, $table_name) {\n\t\tglobal $DB, $Messages;\n\t\t// Construct Insert and Update array\n\t\t$u_arr_table = array_intersect($f_arr_table, $t_arr_table); //intersection values for update\n\t\t$i_arr_table = array_diff($f_arr_table, $t_arr_table); // difference set values for insert\n\n\t\tif (count($u_arr_table) > 0) {\n\t\t\tif ($type == \"Regions\") { // update the values of region\n\t\t\t\tforeach ($u_arr_table as $v) {\n\t\t\t\t\t$update_values[] = \"rgn_ctry_ID = \" . $search_arr['f_arr_rgn_ctry'][$v] . \", rgn_code = '\" . addslashes($search_arr['f_arr_rgn_code'][$v]) . \"'\n\t\t\t\t\tWHERE rgn_ID = \" . $search_arr['t_arr_rgn_name_id'][$v] . \";\";\n\t\t\t\t}\n\t\t\t} else if ($type == \"Sub-regions\") { // update the values of sub-region\n\t\t\t\tforeach ($u_arr_table as $v) {\n\t\t\t\t\t$update_values[] = \"subrg_rgn_ID = \" . $search_arr['t_arr_rgn_name_id'][$search_arr['f_arr_subrg_rgn'][$v]] . \", subrg_code = '\" . addslashes($search_arr['f_arr_subrg_code'][$v]) . \"'\n\t\t\t\t\tWHERE subrg_ID = \" . $search_arr['t_arr_subrg_name_id'][$v] . \";\";\n\t\t\t\t}\n\t\t\t} else if ($type == \"Cities\") { // update the values of city\n\t\t\t\tforeach ($u_arr_table as $v) {\n\t\t\t\t\t$update_values[] = \"city_ctry_ID = \" . $search_arr['f_arr_rgn_ctry'][$search_arr['f_arr_subrg_rgn'][$search_arr['f_arr_city_subrg'][$v]]] . \", \"\n\t\t\t\t\t\t. \" city_rgn_ID = \" . $search_arr['t_arr_rgn_name_id'][$search_arr['f_arr_subrg_rgn'][$search_arr['f_arr_city_subrg'][$v]]] . \", \"\n\t\t\t\t\t\t. \" city_subrg_ID = \" . $search_arr['t_arr_subrg_name_id'][$search_arr['f_arr_city_subrg'][$v]] . \", \"\n\t\t\t\t\t\t. \" city_postcode = '\" . addslashes($search_arr['f_arr_city_postcode'][$v]) . \"' \"\n\t\t\t\t\t\t. \" WHERE city_ID = \" . $search_arr['t_arr_city_name_id'][$v] . \";\";\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (count($i_arr_table) > 0) {\n\t\t\tif ($type == \"Regions\") { // insert the values of region\n\t\t\t\tforeach ($i_arr_table as $v) {\n\t\t\t\t\t$insert_values[] = \"(\" . $search_arr['f_arr_rgn_ctry'][$v] . \", '\" . addslashes($search_arr['f_arr_rgn_code'][$v]) . \"','\" . addslashes($v) . \"')\";\n\t\t\t\t}\n\t\t\t} else if ($type == \"Sub-regions\") { // insert the values of sub-regions\n\t\t\t\tforeach ($i_arr_table as $v) {\n\t\t\t\t\t$insert_values[] = \"(\" . $search_arr['t_arr_rgn_name_id'][$search_arr['f_arr_subrg_rgn'][$v]] . \", '\" . addslashes($search_arr['f_arr_subrg_code'][$v]) . \"','\" . addslashes($v) . \"')\";\n\t\t\t\t}\n\t\t\t} else if ($type == \"Cities\") { // insert the values of city\n\t\t\t\tforeach ($i_arr_table as $v) {\n\t\t\t\t\t$insert_values[] = \"(\" . $search_arr['f_arr_rgn_ctry'][$search_arr['f_arr_subrg_rgn'][$search_arr['f_arr_city_subrg'][$v]]] . \"\"\n\t\t\t\t\t\t. \", \" . $search_arr['t_arr_rgn_name_id'][$search_arr['f_arr_subrg_rgn'][$search_arr['f_arr_city_subrg'][$v]]] . \"\"\n\t\t\t\t\t\t. \", \" . $search_arr['t_arr_subrg_name_id'][$search_arr['f_arr_city_subrg'][$v]] . \"\"\n\t\t\t\t\t\t. \", '\" . addslashes($search_arr['f_arr_city_postcode'][$v]) . \"'\"\n\t\t\t\t\t\t. \",'\" . addslashes($v) . \"')\";\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t$count_insert = isset($insert_values) ? count($insert_values) : 0;\n\t\t$count_update = isset($update_values) ? count($update_values) : 0;\n\n\t\tif ($count_insert > 0) {\n\t\t\t$insert_values = array_chunk($insert_values, 1000);\n\t\t\tforeach ($insert_values as $v) {\n\t\t\t\t$v = implode(', ', $v);\n\t\t\t\t$DB->query('INSERT INTO ' . $table_name . '\n\t\t\t\t( ' . $i_table_fields . ' )\n\t\t\t\tVALUES ' . $v);\n\t\t\t}\n\t\t}\n\n\t\tif ($count_update > 0) {\n\t\t\tforeach ($update_values as $v) {\n\t\t\t\t$DB->query('UPDATE ' . $table_name . '\n\t\t\t\tSET ' . $v);\n\t\t\t}\n\t\t}\n\t\tunset($insert_values);\n\t\tunset($update_values);\n\n\t\t$Messages->add(sprintf(T_('%s ' . $type . ' updated , %s ' . $type . ' added.'), $count_update, $count_insert), 'success');\n\t}", "private function processOpenOrderDetails(array $orderValue, array $orders, $orderKey)\n {\n /** @var array $orderDetails */\n $orderDetails = $this->db->fetchAll(\n 'SELECT * FROM s_order_details WHERE orderID = ? ORDER BY id ASC',\n [$orderValue['id']]\n );\n\n if (!count($orderDetails)) {\n unset($orders[$orderKey]);\n\n return $orders;\n }\n\n $context = $this->contextService->getShopContext();\n $orderProductOrderNumbers = array_column($orderDetails, 'articleordernumber');\n $listProducts = Shopware()->Container()->get('shopware_storefront.list_product_service')\n ->getList($orderProductOrderNumbers, $context);\n $listProducts = Shopware()->Container()->get('legacy_struct_converter')\n ->convertListProductStructList($listProducts);\n\n foreach ($listProducts as &$listProduct) {\n $listProduct = array_merge($listProduct, $listProduct['prices'][0]);\n }\n\n foreach ($orderDetails as $orderDetailsKey => $orderDetailsValue) {\n $orderDetails[$orderDetailsKey]['amountNumeric'] = round($orderDetailsValue['price'] * $orderDetailsValue['quantity'], 2);\n $orderDetails[$orderDetailsKey]['priceNumeric'] = $orderDetailsValue['price'];\n $orderDetails[$orderDetailsKey]['amount'] = $this->moduleManager->Articles()\n ->sFormatPrice($orderDetails[$orderDetailsKey]['amountNumeric']);\n $orderDetails[$orderDetailsKey]['price'] = $this->moduleManager->Articles()\n ->sFormatPrice($orderDetailsValue['price']);\n $orderDetails[$orderDetailsKey]['active'] = 0;\n\n $tmpProduct = null;\n if (!empty($listProducts[$orderDetailsValue['articleordernumber']])) {\n $tmpProduct = $listProducts[$orderDetailsValue['articleordernumber']];\n }\n\n if (!empty($tmpProduct) && is_array($tmpProduct)) {\n // Set product in activate state\n $orderDetails[$orderDetailsKey]['active'] = 1;\n $orderDetails[$orderDetailsKey]['article'] = $tmpProduct;\n if (!empty($tmpProduct['purchaseunit'])) {\n $orderDetails[$orderDetailsKey]['purchaseunit'] = $tmpProduct['purchaseunit'];\n }\n\n if (!empty($tmpProduct['referenceunit'])) {\n $orderDetails[$orderDetailsKey]['referenceunit'] = $tmpProduct['referenceunit'];\n }\n\n if (!empty($tmpProduct['referenceprice'])) {\n $orderDetails[$orderDetailsKey]['referenceprice'] = $tmpProduct['referenceprice'];\n }\n\n if (!empty($tmpProduct['sUnit']) && is_array($tmpProduct['sUnit'])) {\n $orderDetails[$orderDetailsKey]['sUnit'] = $tmpProduct['sUnit'];\n }\n\n if (!empty($tmpProduct['price'])) {\n $orderDetails[$orderDetailsKey]['currentPrice'] = $tmpProduct['price'];\n }\n\n if (!empty($tmpProduct['pseudoprice'])) {\n $orderDetails[$orderDetailsKey]['currentPseudoprice'] = $tmpProduct['pseudoprice'];\n }\n\n $orderDetails[$orderDetailsKey]['currentHas_pseudoprice'] = $tmpProduct['has_pseudoprice'];\n }\n\n // Check for serial\n if ($orderDetails[$orderDetailsKey]['esdarticle']) {\n $numbers = [];\n $getSerial = $this->db->fetchAll(\n 'SELECT serialnumber\n FROM s_articles_esd_serials, s_order_esd\n WHERE userID = ?\n AND orderID = ?\n AND orderdetailsID = ?\n AND s_order_esd.serialID = s_articles_esd_serials.id',\n [\n $this->session->offsetGet('sUserId'),\n $orderValue['id'],\n $orderDetailsValue['id'],\n ]\n );\n foreach ($getSerial as $serial) {\n $numbers[] = $serial['serialnumber'];\n }\n $orderDetails[$orderDetailsKey]['serial'] = implode(',', $numbers);\n $orderDetails[$orderDetailsKey]['esdLink'] = $this->config->get('sBASEFILE')\n . '?sViewport=account&sAction=download&esdID='\n . $orderDetailsValue['id'];\n }\n }\n $orders[$orderKey]['activeBuyButton'] = 1;\n $orders[$orderKey]['details'] = $orderDetails;\n\n return $orders;\n }", "public function orderNew($order_id) {\n\t\t \n\t $order_qry = $this->db->query(\"SELECT * FROM `\" . DB_PREFIX . \"order_product` WHERE `order_id` = '\" . (int)$order_id . \"'\");\n foreach ($order_qry->rows as $product){\n\t \n\t\t $product_id=$product['product_id'];\n\t\t \n\t\t $mercaInfo=$this->getMercadolivreIDs($product_id);\n\t\t if(!$mercaInfo) continue;\n\t\t\n\t\t $order_product_options = $this->db->query(\"SELECT * FROM `\" . DB_PREFIX . \"order_option` WHERE `order_product_id` = '\" . (int)$product['order_product_id'] . \"'\")->rows;\n\t\t \n\t\t $oc_options=array();\n\t\t if($order_product_options){\n\t\t\t foreach($order_product_options as $order_product_option){\n\t\t\t\t $oc_options[]=strtolower(trim($order_product_option['value'])); \n\t\t } \n\t\t }\n\t\t \n\t\t $oc_combinations=$this->getMLProductAttribute($product_id,'value');\n\t\t \n\t\t \n\t\t \n\t\t if($oc_combinations){\n\t\t\t $isFound=false;\n\t\t\t foreach($oc_combinations as $oc_combination){\n\t\n\t\t\t\t\tif(!array_diff($oc_combination['attributes'],$oc_options)){\n\t\t\t\t\t\t $this->db->query(\"UPDATE \" . DB_PREFIX . \"mercadolivre_attr_combination SET quantity=(quantity-\".(int)$product['quantity'].\") WHERE id='\".(int)$oc_combination['id'].\"'\");\n\t\t\t\t\t\t $isFound=true;\n\t\t\t\t\t}\n\t\t } \n\t\t\t \n\t\t\t if($isFound){ //if found, then update ML using API too\n\t\t\t\t $product_attributes=array();\n\t\t\t\t $combinations=$this->mercadolivre->getMLProductAttribute($product_id); //get updated combinations\n\t\t\t\t foreach($combinations as $index=>$combination){\n\t\t\t\t\t \n\t\t\t\t\t\t $product_attributes[]=array(\n\t\t\t\t\t\t\t 'id'=>(float)$combination['mercaId'],\n\t\t\t\t\t\t\t 'available_quantity'=>(int)$combination['quantity']\n\t\t\t\t\t\t\t ); \n\t\t\t\t }\n\t\t\t\t\t\n\t\t\t\t\t$param=array();\n\t\t\t\t\t$param['variations']=$product_attributes;\n\t\t\t\t\t$this->mercadolivre->updateProduct($param,$mercaInfo['mercaId']);\n\t\t\t } \n \n\t\t } \n\t\t else {\n\t\t \n\t\t\t $quantity=$this->db->query(\"SELECT * FROM `\".DB_PREFIX.\"product` WHERE `product_id` = '\" . (int)$product_id . \"'\")->row['quantity'];\n\t\t\t $option='';\n\t\t\t if($mercaInfo){\n\t\t\t\t$this->mercadolivreStockUpdate($mercaInfo['mercaId'],$quantity);\n\t\t\t }\n\t\t }\n } // end of foreach \n\n }", "public function setAttributes($arr) {\n foreach($arr as $key => $val) {\n switch($key) {\n case \"id\":\n case \"user_id\":\n //casting null to int will return 0; don't want that\n if ($val !== null) {\n $this->id_ = (int) $val;\n }\n break; \n case \"username\":\n $this->username_ = $val;\n break; \n case \"email\":\n $this->email_ = $val;\n break; \n case \"displayName\":\n case \"display_name\":\n $this->displayName_ = $val;\n break; \n case \"firstName\":\n case \"first_name\":\n $this->firstName_ = $val;\n break; \n case \"lastName\":\n case \"last_name\":\n $this->lastName_ = $val;\n break; \n case \"postalCode\":\n case \"postal_code\":\n $this->postalCode_ = $val;\n break; \n case \"isVerified\":\n case \"is_verified\":\n $this->isVerified_ = (int) $val;\n break; \n case \"privileges\":\n //might be a string of comma-separated numbers, or an array\n if (is_array($val)) {\n $this->privileges_ = $val;\n } else if ($val !== null) {\n //clear array first\n unset($this->privileges_);\n $this->privileges_ = array();\n $tmp = explode(\",\", $val);\n foreach($tmp as $v){\n if (is_numeric($v)) {\n //$this->privileges_[(int) $v] = 1;\n $this->privileges_[] = (int) $v;\n }\n }\n \n }\n break;\n\n default:\n //ignore any others\n }\n }\n }", "public function UpdateRelatedData($Ref_Data,$TableName){\n //echo \"<br>test: updating reference data to tablename={$TableName}<br>\";\n set_time_limit(0); \n include_once 'db_conn.php';\n include_once 'cls_codes.php';\n if(is_array($Ref_Data)){\n for($i=0;$i < count($Ref_Data);$i++){\n $LedgerTableName=cls_misc::ConvertToTableName($Ref_Data[$i]);\n $SQL_UpdateRelatedData=\"SELECT sum(pen_fee) as pen_fee,OR_num,OR_date,sum(bill_amnt) as bill_amnt,sum(total) as total,sum(loans_MLP) as loans_MLP,sum(loans_MF) as loans_MF,sum(misc) as misc_fee FROM {$LedgerTableName} where (OR_date is not null and OR_date <> '' and OR_date <> '0000-00-00') or (OR_num <> '' and OR_num is not null and OR_num <> '00000000') group by OR_num order by OR_num asc\";\n $e=new Exception();\n $QRY_UpdateRelatedData=mysql_query($SQL_UpdateRelatedData) or die(mysql_error().\"-\".$e->getFile().\"-\".$e->getLine());\n while($row_UpdateRelatedData=mysql_fetch_array($QRY_UpdateRelatedData)){\n $payee=$Ref_Data[$i];\n $or_date=$row_UpdateRelatedData['OR_date'];\n $or_num=$row_UpdateRelatedData['OR_num'];\n $pen_fee=$row_UpdateRelatedData['pen_fee'];\n $bill_amnt=$row_UpdateRelatedData['bill_amnt'];\n $loans_MLP=$row_UpdateRelatedData['loans_MLP'];\n $loans_MF=$row_UpdateRelatedData['loans_MF'];\n $misc_fee=$row_UpdateRelatedData['misc'];\n $total=$row_UpdateRelatedData['total'];\n $address_brgy=cls_user_get::ProfileValue('acct_no',$Ref_Data[$i],'address_brgy');\n //insert here to get OR duplication before entry\n $SQL_strCheckEntry=\"select * from {$TableName} where OR_num='{$or_num}'\";\n $e=new Exception();\n $QRY_strCheckEntry=mysql_query($SQL_strCheckEntry) or die(mysql_error());\n if(mysql_numrows($QRY_strCheckEntry)==0){\n //insert the data if no duplication\n $SQL_InsUpdateRelatedData=\"insert into {$TableName}(Payee,address_brgy,OR_date,OR_num,meter_fee,MLP,water_bill,penalty_fee,misc_fee,total)values('{$payee}','{$address_brgy}','{$or_date}','{$or_num}','{$loans_MF}','{$loans_MLP}','{$bill_amnt}','{$pen_fee}','{$misc_fee}','{$total}')\";\n $QRY_InsUpdateRelatedData=mysql_query($SQL_InsUpdateRelatedData) or die(\"Error:\".mysql_error().\"__Source File:\".$e->getFile().\"__Line:\".$e->getLine());\n }\n }\n //unset($QRY_UpdateRelatedData);\n //unset($QRY_InsUpdateRelatedData);\n }\n }\n}", "public function update_old_list_values($product_id,$list_val_arr,$old_product_details=''){\r\n\t\tif ($old_product_details == '' || count($old_product_details)==0){\r\n\t\t\t$old_product_details = $this->product_model->get_all_details(PRODUCT,array('id'=>$product_id));\r\n\t\t}\r\n\t\t$old_product_list_values = array_filter(explode(',', $old_product_details->row()->list_value));\r\n\t\tif (count($old_product_list_values)>0){\r\n\t\t\tif (!is_array($list_val_arr)){\r\n\t\t\t\t$list_val_arr = array();\r\n\t\t\t}\r\n\t\t\tforeach ($old_product_list_values as $old_product_list_values_row){\r\n\t\t\t\tif (!in_array($old_product_list_values_row, $list_val_arr)){\r\n\t\t\t\t\t$list_val_details = $this->product_model->get_all_details(LIST_VALUES,array('id'=>$old_product_list_values_row));\r\n\t\t\t\t\tif ($list_val_details->num_rows()==1){\r\n\t\t\t\t\t\t$product_count = $list_val_details->row()->product_count;\r\n\t\t\t\t\t\t$products_in_this_list = $list_val_details->row()->products;\r\n\t\t\t\t\t\t$products_in_this_list_arr = array_filter(explode(',', $products_in_this_list));\r\n\t\t\t\t\t\tif (in_array($product_id, $products_in_this_list_arr)){\r\n\t\t\t\t\t\t\tif (($key = array_search($product_id, $products_in_this_list_arr))!==false){\r\n\t\t\t\t\t\t\t\tunset($products_in_this_list_arr[$key]);\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t$product_count--;\r\n\t\t\t\t\t\t\t$list_update_values = array(\r\n\t\t\t\t\t\t\t\t'products'=>implode(',', $products_in_this_list_arr),\r\n\t\t\t\t\t\t\t\t'product_count'=>$product_count\r\n\t\t\t\t\t\t\t);\r\n\t\t\t\t\t\t\t$list_update_condition = array('id'=>$old_product_list_values_row);\r\n\t\t\t\t\t\t\t$this->product_model->update_details(LIST_VALUES,$list_update_values,$list_update_condition);\r\n\t\t\t\t\t\t}\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 ($old_product_details != '' && count($old_product_details)>0 && $old_product_details->num_rows()==1){\r\n\r\n\t\t\t/*** Delete product id from lists which was created by users ***/\r\n\r\n\t\t\t$user_created_lists = $this->product_model->get_user_created_lists($old_product_details->row()->seller_product_id);\r\n\t\t\tif ($user_created_lists->num_rows()>0){\r\n\t\t\t\tforeach ($user_created_lists->result() as $user_created_lists_row){\r\n\t\t\t\t\t$list_product_ids = array_filter(explode(',', $user_created_lists_row->product_id));\r\n\t\t\t\t\tif (($key=array_search($old_product_details->row()->seller_product_id,$list_product_ids )) !== false){\r\n\t\t\t\t\t\tunset($list_product_ids[$key]);\r\n\t\t\t\t\t\t$update_ids = array('product_id'=>implode(',', $list_product_ids));\r\n\t\t\t\t\t\t$this->product_model->update_details(LISTS_DETAILS,$update_ids,array('id'=>$user_created_lists_row->id));\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\t/*** Delete product id from product likes table and decrease the user likes count ***/\r\n\r\n\t\t\t$like_list = $this->product_model->get_like_user_full_details($old_product_details->row()->seller_product_id);\r\n\t\t\tif ($like_list->num_rows()>0){\r\n\t\t\t\tforeach ($like_list->result() as $like_list_row){\r\n\t\t\t\t\t$likes_count = $like_list_row->likes;\r\n\t\t\t\t\t$likes_count--;\r\n\t\t\t\t\tif ($likes_count<0)$likes_count=0;\r\n\t\t\t\t\t$this->product_model->update_details(USERS,array('likes'=>$likes_count),array('id'=>$like_list_row->id));\r\n\t\t\t\t}\r\n\t\t\t\t$this->product_model->commonDelete(PRODUCT_LIKES,array('product_id'=>$old_product_details->row()->seller_product_id));\r\n\t\t\t}\r\n\r\n\t\t\t/*** Delete product id from activity, notification and product comment tables ***/\r\n\r\n\t\t\t$this->product_model->commonDelete(USER_ACTIVITY,array('activity_id'=>$old_product_details->row()->seller_product_id));\r\n\t\t\t$this->product_model->commonDelete(NOTIFICATIONS,array('activity_id'=>$old_product_details->row()->seller_product_id));\r\n\t\t\t$this->product_model->commonDelete(PRODUCT_COMMENTS,array('product_id'=>$old_product_details->row()->seller_product_id));\r\n\r\n\t\t}\r\n\t}", "private function mapPropsToValues(): array\r\n {\r\n $values = [];\r\n $values['customer_id'] = $this->customer_id;\r\n $values['document_set_id'] = $this->document_set_id;\r\n $values['our_reference'] = $this->our_reference;\r\n $values['your_reference'] = $this->your_reference;\r\n $values['date'] = $this->date;\r\n $values['expiration_date'] = $this->expiration_date;\r\n $values['financial_discount'] = $this->financial_discount;\r\n $values['special_discount'] = $this->special_discount;\r\n $values['salesman_id'] = $this->salesman_id;\r\n $values['salesman_commission'] = $this->salesman_commission;\r\n\r\n $values['notes'] = $this->notes;\r\n $values['status'] = DocumentStatus::DRAFT;\r\n $values['eac_id'] = $this->caeId;\r\n $values['products'] = $this->products;\r\n\r\n if ($this->shouldAddShippingInformation()) {\r\n $values['delivery_datetime'] = $this->delivery_datetime;\r\n $values['delivery_method_id'] = $this->delivery_method_id;\r\n\r\n $values['delivery_departure_address'] = $this->delivery_departure_address;\r\n $values['delivery_departure_city'] = $this->delivery_departure_city;\r\n $values['delivery_departure_zip_code'] = $this->delivery_departure_zip_code;\r\n $values['delivery_departure_country'] = $this->delivery_departure_country;\r\n\r\n $values['delivery_destination_address'] = $this->delivery_destination_address;\r\n $values['delivery_destination_city'] = $this->delivery_destination_city;\r\n $values['delivery_destination_zip_code'] = $this->delivery_destination_zip_code;\r\n $values['delivery_destination_country'] = $this->delivery_destination_country;\r\n }\r\n\r\n if ($this->shouldAddPayment()) {\r\n $values['payments'] = $this->payments;\r\n }\r\n\r\n if (!empty($this->exchange_currency_id)) {\r\n $values['exchange_currency_id'] = $this->exchange_currency_id;\r\n $values['exchange_rate'] = $this->exchange_rate;\r\n }\r\n\r\n if (!empty($this->associatedDocuments)) {\r\n $this->associateDocuments($values);\r\n }\r\n\r\n return $values;\r\n }", "function updateAmazonProductsOfferingConditionNotes($items)\n{\n\tif (sizeof($items) > 0) {\n\t\t$data = array();\n\t\t$data['submitedPrice'] = 0;\n\t\t$caseOfferingConditionNote = \"OfferingConditionNote = CASE\";\n\t\tforeach($items as $key => $item)\n\t\t{\t\n\t\t\tif ($items[$key]['OfferingConditionNote'] != null) {\n\t\t\t\t$caseOfferingConditionNote.= \"\\n WHEN id_product = \" . $items[$key]['id_product'] . \" THEN '\" . $items[$key]['OfferingConditionNote'] . \"'\";\n\t\t\t\t$productsIds[] = $items[$key]['id_product'];\n\t\t\t}\t\t\t\n\t\t}\n\t\tif (count($productsIds) > 0) {\n\t\t\t$caseOfferingConditionNote.= \"\n\t\t\t\tEND\n\t\t\t\tWHERE id_product IN (\" . implode(\", \", $productsIds) . \")\n\t\t\t\";\n\t\t\t$addWhere = $caseOfferingConditionNote;\n\t\t\tSQLUpdate('amazon_products', $data, $addWhere, 'shop', __FILE__, __LINE__);\n\t\t}\n\t}\n}", "function AddUpdateOptionBOMItem($BID, $opId, $arryDetails,$index) {//$option_ID,//\r\n global $Config;\r\n extract($arryDetails);\r\n //print_r($arryDetails);//die;\r\n \r\n if ($opId == '') {\r\n $strUpSQLQuery = \"update inv_bill_of_material set \r\n\t\t\t\ttotal_cost='\" . $TotalValue . \"',\r\n\t\t\t\tUpdatedDate = '\" . $Config['TodayDate'] . \"'\r\n\t\t\t\twhere bomID='\" . $BID.\"'\";\r\n //echo $strUpSQLQuery ;die;\r\n\r\n $this->query($strUpSQLQuery, 0);\r\n }\r\n \r\n \r\n for ($j = 1; $j<=$arryDetails['newNumberLine'.$index.'']; $j++) {\r\n \r\n if (!empty($arryDetails[\"newsku$index-$j\"])) {\r\n \r\n $id = $arryDetails[\"newid$index-$j\"];\r\n //print_r($id);\r\n if ($id > 0) {\r\n $sql = \"update inv_item_bom set orderby = '\".$arryDetails[\"orderby$index-$j\"].\"', item_id='\" . $arryDetails[\"newitem_id$index-$j\"] . \"', sku='\" . addslashes($arryDetails[\"newsku$index-$j\"]) . \"',`Primary`='\" .$arryDetails[\"Primary$index-$j\"] . \"', description='\" . addslashes($arryDetails[\"newdescription$index-$j\"]) . \"', wastageQty='\" . addslashes($arryDetails[\"newWastageqty$index-$j\"]) . \"', bom_qty='\" . addslashes($arryDetails[\"newqty$index-$j\"]) . \"', unit_cost='\" . addslashes($arryDetails[\"newprice$index-$j\"]) . \"', total_bom_cost='\" . addslashes($arryDetails[\"newamount$index-$j\"]) . \"',`Condition`='\" . addslashes($arryDetails[\"newCondition$index-$j\"]) . \"',req_item='\" . addslashes($arryDetails[\"newreq_item$index-$j\"]) . \"' where id='\" . $id.\"'\"; \r\n $this->query($sql, 0);\r\n } \r\n else {\r\n $sql = \"insert into inv_item_bom (bomID,optionID, item_id, sku, description, wastageQty, bom_qty, unit_cost, total_bom_cost,`Condition`,req_item,orderby,`Primary`) values('\" . $BID . \"','\" . $opId . \"','\" . $arryDetails[\"newitem_id$index-$j\"] . \"', '\" . addslashes($arryDetails[\"newsku$index-$j\"]) . \"', '\" . addslashes($arryDetails[\"newdescription$index-$j\"]) . \"', '\" . addslashes($arryDetails[\"newWastageqty$index-$j\"]) . \"', '\" . addslashes($arryDetails[\"newqty$index-$j\"]) . \"', '\" . addslashes($arryDetails[\"newrice$index-$j\"]) . \"','\" . addslashes($arryDetails[\"newamount$index-$j\"]) . \"','\" . addslashes($arryDetails[\"newCondition$index-$j\"]) . \"','\" . addslashes($arryDetails[\"newreq_item$index-$j\"] ). \"', orderby = '\".$arryDetails[\"orderby$index-$j\"].\"','\" . addslashes($arryDetails[\"Primary$index-$j\"]) . \"')\";\r\n $this->query($sql, 0);\r\n \r\n }\r\n \r\n }\r\n \r\n \r\n }\r\n //die;\r\n return true;\r\n }", "function update_any_table ($table_name, $key_arr, $set_arr) {\n\tglobal $cxn;\n\t// Initialize variables\n\t$errArr=init_errArr(__FUNCTION__);\n //\n\t$tmp_error = FALSE;\n\t// Validate Input parameters and return error if validation fail\n\tif (count($set_arr) == 0) { // array with set values is empty\n\t\t$tmp_error = TRUE;\n\t\t$err_code = 1;\n\t\t$err_descr = \"Passed parameter set_arr is empty for the table: \" . $table_name;\n\t\t$err = NULL;\n\t\tset_errArr($err, $err_code, $err_descr, $errArr);\n\t}\n\telseif (trim($table_name) == ZERO_LENGTH_STRING){ // check if table name is not empty string\n\t\t$tmp_error = TRUE;\n\t\t$err_code = 2;\n\t\t$err_descr = \"Passed table name is empty string: \" . $table_name;\n\t\t$err = NULL;\n\t\tset_errArr($err, $err_code, $err_descr, $errArr);\n\t}\n\telse {\n\t\t// Main validation passed, start constracting sql statement\n\t\t$set_string = ZERO_LENGTH_STRING;\n\t\t$where_string = ZERO_LENGTH_STRING;\n\t\t$comma = ZERO_LENGTH_STRING;\n\t\t//\n\t\t$param_types = ZERO_LENGTH_STRING;\n\t\t$param_values = array();\n\t\t//\n\t\tforeach ($set_arr as $key => $value) {\n\t\t\tif (get_column_type($table_name, $key) == NULL) {\n\t\t\t\t$tmp_error = TRUE;\n\t\t\t\t// Set up error: column name is not in the table\n\t\t\t\t$err_code = 3;\n\t\t\t\t$err_descr = \"Column name: \" . $key . \" is not in the table: \" . $table_name;\n\t\t\t\t$err = NULL;\n\t\t\t\tset_errArr($err, $err_code, $err_descr, $errArr);\n\t\t\t}\n\t\t\telse {\n\t\t\t\t$set_string = $set_string . $comma . $key . \"= ? \" ; // update the set_string\n\t\t\t\t$param_types = $param_types . get_bind_parm_type($value); // add parameter type\n\t\t\t\t$param_values [] = $value; // add parameter value\n\t\t\t\t// set up comma to it's value for the next iteration\n\t\t\t\tif ($comma == ZERO_LENGTH_STRING) {\n\t\t\t\t\t$comma = \",\";\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t// Continue, if there is no error\n\t\tif (!$tmp_error) {\n\t\t\t// Add SET to the statement\n\t\t\t$set_string = \" SET \"\n\t\t\t\t\t. $set_string;\n // \n // Build WHERE condition\n //\n\t\t\t$sql_and = \" \";\n\t\t\tforeach ($key_arr as $key => $value) {\n\t\t\t\tif ($value != NULL) {\n\t\t\t\t\t$where_string = $where_string . $sql_and . $key . \"= ? \" ; // update the set_string\n\t\t\t\t\t$param_types = $param_types . get_bind_parm_type($value); // add parameter type\n\t\t\t\t\t$param_values [] = $value; // add parameter value\n\t\t\t\t\t// set up AND value for the next iteration\n\t\t\t\t\t$sql_and = \" AND \";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (trim($where_string) != ZERO_LENGTH_STRING) {\n\t\t\t\t$where_string = \" WHERE \" . $where_string;\n\t\t\t}\n\t\t\t// Check the error and continue\n\t\t\tif (!$tmp_error) {\n\t\t\t\ttry {\n\t\t\t\t\t// create sqlString\n\t\t\t\t\t$sqlString = \"UPDATE \" . $table_name . \" \"\n\t\t\t\t\t\t\t. $set_string\n\t\t\t\t\t\t\t. $where_string;\n\t\t\t\t\t\n\t\t\t\t\t$stmt = $cxn->prepare($sqlString);\n\t\t\t\t\t// Create array of types and their values\n\t\t\t\t\t$params = array_merge(array($param_types), $param_values);\n\t\t\t\t\t// Debug - start\n\t\t\t\t\t// echo \"\\n Params: \" ;\n\t\t\t\t\t// print_r ($params);\n\t\t\t\t\t// echo \"\\n Sql string: \" . $sqlString; \n\t\t\t\t\t// Debug - end\n\t\t\t\t\tif (count($param_values) > 0) {\n\t\t\t\t\t\tcall_user_func_array ( array($stmt, \"bind_param\"), ref_values($params) );\n\t\t\t\t\t}\n\t\t\t\t\t$stmt->execute();\n\t\t\t\t}\n\t\t\t\tcatch (mysqli_sql_exception $err) {\n\t\t\t\t\t// Error settings\n\t\t\t\t\t$err_code = 5;\n\t\t\t\t\t$err_descr = \"Error updating table: \" . $table_name . \" keys: \" . \n\t\t\t\t\t\t\thttp_build_query($key_arr, '', ', ')\n\t\t\t\t\t\t\t. \" values: \"\n\t\t\t\t\t\t\t. http_build_query($set_arr, '', ', ') ;\n\t\t\t\t\tset_errArr($err, $err_code, $err_descr, $errArr);\n\t\t\t\t}\n\t\t\t\t// Return Error code\n\t\t\t\t$errArr[ERR_AFFECTED_ROWS] = $cxn->affected_rows;\n\t\t\t\t$errArr[ERR_SQLSTATE] = $cxn->sqlstate;\n\t\t\t\t$errArr[ERR_SQLSTATE_MSG] = $cxn->error;\n\t\t\t}\n\t\t}\n\t}\n\treturn $errArr;\n}", "public function testMakeOrderAndGetArrayOfValue(){\r\n $sqlToDeleteOrder = \"delete from orders where orderNo=1000\";\r\n $sql = \"INSERT INTO `zqqzsvykt8d5j90x`.`orders` (`orderNo`, `accountNo`, `destination`, `pickUp`, `receiversName`, `receiversContact`, `status`) VALUES ('1000', '2', 'n', 'n', 'n', 'n', 'n');\";\r\n $db = new database;\r\n $db->connectToDatabase();\r\n $deleted = $db->runASqlQuery($sqlToDeleteOrder);\r\n if($deleted){\r\n $success = $db->makeOrder($sql);\r\n $this->assertEquals(true,$success);\r\n $sql = \"select * from orders where orderNo=1000\";\r\n $orderResult = $db->getArrayOfValues($sql);\r\n $this->assertEquals(1,count($orderResult));\r\n }\r\n }", "public function update($table, $data){//,$id\n $q=\"UPDATE `$table` SET \";\n\n $r=\"\";\n foreach($data as $key=>$val){\n $r.=\"`\".$key.\"`\".\"='$val',\";\n }\n $r=rtrim($r,\", \");\n //echo $r;\n $q1 = $q .$r. ' WHERE '.\"1\";\n\n \n if($q1)\n {\n $this->database_query($q1);\n }\n}", "function arr_reform($res)//该函数仅对 goods 表有用\n{\n for($i=0; $i<count($res); $i++)\n {\n $res[$i]['color']=array();//在res1添加一个 color数组字段\n $res[$i]['brand']=array();//在res1添加一个 brand数组字段\n $res[$i]['version']=array();//在res1添加一个version数组字段\n\n $res[$i]['color']['color_name'] = $res[$i]['goods_color'];//color数组中添加color元素\n $res[$i]['color']['color_id'] = $res[$i]['color_id'];\n unset($res[$i]['color_id']);//删除$res数组中color_id元素\n\n $res[$i]['brand']['brand_name'] = $res[$i]['brand_name'];\n $res[$i]['brand']['brand_id'] = $res[$i]['brand_id'];\n unset($res[$i]['brand_id']);\n unset($res[$i]['brand_name']);\n\n $res[$i]['version']['version_name'] = $res[$i]['goods_version'];\n $res[$i]['version']['version_id'] = $res[$i]['version_id'];\n unset($res[$i]['version_id']);\n unset($res[$i]['goods_version']);\n\n $res[$i]['goods_img']=NROOT.'/Guest/'.$res[$i]['goods_img'];//完善图片路径\n\n }\n return $res;\n}", "public function editAttribute($data) {\n// $purchase_id = $data['purchase_id'];\n// $today = date(\"Y-m-d H:i:s\");\n//\n// $data_upd = array();\n// $data_upd['purchase_date'] = date_str_replace($data['purchase_date']);\n// $data_upd['delivery_date'] = !empty($data['delivery_date']) ? date_str_replace($data['delivery_date']) : null;\n// $data_upd['currency'] = $data['currency'];\n// $data_upd['shipping'] = $data['shipping'];\n// $data_upd['payment'] = $data['payment'];\n// $data_upd['carrier'] = $data['carrier'];\n// $data_upd['comment'] = $data['comment'];\n// $data_upd['vendor_id'] = $data['vendor_id'];\n// $data_upd['vendor_delivery_id'] = $data['vendor_delivery_id'];\n// $data_upd['store_id'] = $data['store_id'];\n// $data_upd['store_delivery_id'] = $data['store_delivery_id'];\n// $data_upd['type'] = $data['type'];\n// $data_upd['status'] = Agent::STATUS_MASTER_OPEN;\n// $data_upd['active'] = 1;\n// $data_upd['date_upd'] = $today;\n// $this->db->where('purchase_id', $purchase_id);\n// $this->db->update(DB_PREFIX.'purchase', $data_upd);\n//\n// $detail_id = array();\n// $line_no = 1;\n// foreach ($data['detail'] as $key => $value) {\n// $data_det = array();\n// $data_det['purchase_id'] = $purchase_id;\n// $data_det['product_id'] = $value['product_id'];\n// $data_det['line_no'] = $line_no;\n// $data_det['qty'] = $value['qty'];\n// $data_det['unit'] = $value['unit'];\n// $data_det['unit_cost'] = $value['unit_cost'];\n// $data_det['status'] = Agent::STATUS_DETAIL_OPEN;\n// $data_det['date_upd'] = $today;\n// $line_no = $line_no + 1;\n//\n// if (!empty($value['purchase_detail_id'])) {\n//\t$purchase_detail_id = $value['purchase_detail_id'];\n//\t$this->db->where('purchase_detail_id', $purchase_detail_id); // condition for update.\n//\t$this->db->update(DB_PREFIX.'purchase_detail', $data_det);\n// } else {\n//\t$data_det['date_add'] = $today; // add detail\n//\t$this->db->insert(DB_PREFIX.'purchase_detail', $data_det);\n//\t$purchase_detail_id = $this->db->insert_id();\n// }\n// \n// $detail_id[$key] = $purchase_detail_id; // for not delete or update detail.\n// }\n//\n// if (!empty($detail_id)) {\n// $detail_id = implode(',', $detail_id);\n// $sql = \"DELETE FROM purchase_detail WHERE purchase_id = $purchase_id AND purchase_detail_id NOT IN ($detail_id) \";\n// $this->db->query($sql); // delete not exists.\n// }\n//\n// unset($data_upd);\n// unset($data_det);\n//\n// return $purchase_id;\n }", "public function setAll($values) {\n\t\tif (isset($values[self::$primaryKey[$this->table]])) {\n\t\t\t$this->originalData = $values;\n\t\t}\n\t\telse {\n\t\t\t$this->modifiedData = $values;\n\t\t}\n\t}", "protected function rewriteData()\n\t{\n\t\t$db = $this->getDatabase();\n\n\t\t$fields = array('someval_facebook_valid', 'someval_facebook_type', 'someval_facebook_friends_or_likes',\n\t\t\t\t\t\t'someval_twitter_valid', 'someval_twitter_tweets', 'someval_twitter_followers', 'someval_twitter_following');\n\n\t\tforeach ($this->aData AS &$elm)\n\t\t{\n\t\t\t$query = $db->getQuery(true);\n\n\t\t\t$query->update($db->qn('#__accountdata'))\n\t\t\t\t\t->where('bid = ' . $elm->bid);\n\n\t\t\tforeach ($fields as $f)\n\t\t\t{\n\t\t\t\t$query->set($db->qn($f) . ' = ' . $db->q($elm->$f));\n\t\t\t}\n\n\t\t\t$db->setQuery($query);\n\n\t\t\tif (!$db->execute())\n\t\t\t{\n\t\t\t\tLog::add('Something went wrong for bid=:' . $elm->bid);\n\t\t\t}\n\t\t}\n\t}", "function AddPurchaseReplacementRmaOrder($arryDetails)\r\n\t\t\t{ \r\n\t\t\t\tglobal $Config;\r\n\t\t\t\textract($arryDetails);\r\n\t\r\n\t\t\t\tif(empty($Currency)) $Currency = $Config['Currency'];\r\n\t\t\t\tif(empty($ClosedDate)) $ClosedDate = $Config['TodayDate'];\r\n\t\r\n\t if($OrderType == 'Dropship'){ $CustCode=$CustCode;} else{ $CustCode = ''; }\r\n\t \r\n\t\t\t\t$strSQLQuery = \"insert into p_order(Module, OrderType, OrderDate, PurchaseID, QuoteID, InvoiceID, CreditID, wCode, Approved, Status, DropShip, DeliveryDate, ClosedDate, Comment, SuppCode, SuppCompany, SuppContact, Address, City, State, Country, ZipCode, Currency, SuppCurrency, Mobile, Landline, Fax, Email, wName, wContact, wAddress, wCity, wState, wCountry, wZipCode, wMobile, wLandline, wEmail, TotalAmount, Freight, CreatedBy, AdminID, AdminType, PostedDate, UpdatedDate, ReceivedDate, InvoicePaid, InvoiceComment, PaymentMethod, ShippingMethod, PaymentTerm, AssignedEmpID, AssignedEmp, Taxable, SaleID, taxAmnt , tax_auths, TaxRate,CustCode) values('Order', '\".$OrderType.\"', '\".$OrderDate.\"', '\".$PurchaseID.\"', '\".$QuoteID.\"', '\".$InvoiceID.\"', '\".$CreditID.\"', '\".$wCode.\"', '\".$Approved.\"','\".$Status.\"', '\".$DropShip.\"', '\".$DeliveryDate.\"', '\".$ClosedDate.\"', '\".addslashes(strip_tags($Comment)).\"', '\".addslashes($SuppCode).\"', '\".addslashes($SuppCompany).\"', '\".addslashes($SuppContact).\"', '\".addslashes($Address).\"' , '\".addslashes($City).\"', '\".addslashes($State).\"', '\".addslashes($Country).\"', '\".addslashes($ZipCode).\"', '\".$Currency.\"', '\".addslashes($SuppCurrency).\"', '\".addslashes($Mobile).\"', '\".addslashes($Landline).\"', '\".addslashes($Fax).\"', '\".addslashes($Email).\"' , '\".addslashes($wName).\"', '\".addslashes($wContact).\"', '\".addslashes($wAddress).\"' , '\".addslashes($wCity).\"', '\".addslashes($wState).\"', '\".addslashes($wCountry).\"', '\".addslashes($wZipCode).\"', '\".addslashes($wMobile).\"', '\".addslashes($wLandline).\"', '\".addslashes($wEmail).\"', '\".addslashes($TotalAmount).\"', '\".addslashes($Freight).\"', '\".addslashes($_SESSION['UserName']).\"', '\".$_SESSION['AdminID'].\"', '\".$_SESSION['AdminType'].\"', '\".$Config['TodayDate'].\"', '\".$Config['TodayDate'].\"', '\".$ReceivedDate.\"', '\".$InvoicePaid.\"', '\".addslashes(strip_tags($InvoiceComment)).\"', '\".addslashes($PaymentMethod).\"', '\".addslashes($ShippingMethod).\"', '\".addslashes($PaymentTerm).\"', '\".addslashes($EmpID).\"', '\".addslashes($EmpName).\"', '\".addslashes($Taxable).\"', '\".addslashes($SaleID).\"', '\".addslashes($taxAmnt).\"', '\".addslashes($tax_auths).\"', '\".addslashes($MainTaxRate).\"','\".$CustCode.\"')\";\r\n\t //echo $strSQLQuery;\r\n\t\t\t\t\r\n\t\t\t\t$this->query($strSQLQuery, 0);\r\n\t\t\t\t$OrderID = $this->lastInsertId();\r\n\t\r\n\t\t\t\tif(empty($arryDetails[$ModuleID])){\r\n\t\t\t\t\t$ModuleIDValue = $PrefixPO.'000'.$OrderID;\r\n\t\t\t\t\t$strSQL = \"update p_order set \".$ModuleID.\"='\".$ModuleIDValue.\"' where OrderID='\".$OrderID.\"'\"; \r\n\t\t\t\t\t$this->query($strSQL, 0);\r\n\t\t\t\t}\r\n\t \r\n\t\t\t\treturn $OrderID;\r\n\t\r\n\t\t\t}", "public function dataHook($rows)\n {\n foreach ($rows as &$row)\n {\n $row = (array) $row;\n\n // Change fields' name\n if (isset($row['order_id']))\n {\n $row['virtuemart_order_id'] = $row['order_id']; \n }\n \n if (isset($row['user_id']))\n {\n $row['virtuemart_user_id'] = $row['user_id']; \n }\n \n if (isset($row['vendor_id']))\n {\n $row['virtuemart_vendor_id'] = $row['vendor_id']; \n }\n \n if (isset($row['order_shipping']))\n {\n $row['order_shipment'] = $row['order_shipping']; \n }\n \n if (isset($row['order_shipping_tax']))\n {\n $row['order_shipment_tax'] = $row['order_shipping_tax']; \n }\n \n if (isset($row['cdate']))\n {\n $row['created_on'] = $row['cdate']; \n }\n \n if (isset($row['mdate']))\n {\n $row['modified_on'] = $row['mdate']; \n }\n \n if (isset($row['ship_method_id']))\n {\n $row['virtuemart_shipmentmethod_id'] = $row['ship_method_id']; \n }\n\n\t // Remove fields not exist in destination table\n\t // $this->_removeUnusedFields($row);\n }\n\n return $rows;\n }", "public static function dump_order($order)\n {\n //$order = orm::factory(\"order\")->where(\"order_shopper_id\",$shopper_id)->where(\"id\",$order_id)->find();\n //die(print_r($order->as_array()));\n $data=$order->as_array();\n //$data[\"order_price_discount\"]=$order->order_total_with_vat-$order->order_voucher_discount;\n\n // doplnime nektera data, pripadne je zformatujeme\n $data[\"order_state\"]=$order->order_state->nazev;\n $data[\"order_timestamp\"]=strtotime($data[\"order_date\"]);\n $data[\"order_date\"]=date(\"d.m.Y H:i:s\",$data[\"order_timestamp\"]);\n \n // TODO datum splatnosti\n \n $order_state=orm::factory(\"order_state\",$data[\"order_state_id\"]);\n $data[\"order_status\"]=$order_state->popis;\n\n // doplneni dat o majiteli\n $owner=orm::factory(\"product_setting\",1);//$owner=orm::factory(\"owner\",1);\n $data[\"owner_firma\"]=$owner->billing_data_nazev;\n $data[\"owner_ulice\"]=$owner->billing_data_ulice;\n //$data[\"owner_cp\"]=$owner->cp;\n $data[\"owner_mesto\"]=$owner->billing_data_mesto;\n $data[\"owner_psc\"]=$owner->billing_data_psc;\n $data[\"owner_ic\"]=$owner->billing_data_ic;\n $data[\"owner_dic\"]=$owner->billing_data_dic;\n $data[\"owner_tel\"]=$owner->billing_data_telefon;\n $data[\"owner_fax\"]=$owner->billing_data_fax;\n \n $data[\"owner_email\"]=$owner->billing_data_email;\n $data[\"owner_banka\"]=$owner->billing_data_banka;\n $data[\"owner_iban\"]=$owner->billing_data_iban;\n $data[\"owner_cislo_uctu\"]=$owner->billing_data_cislo_uctu;\n $data[\"owner_konst_s\"]=$owner->billing_data_konst_s;\n $data[\"owner_spec_s\"]=$owner->billing_data_spec_s;\n $data[\"owner_swift\"]=$owner->billing_data_swift;\n $data[\"owner_due_date\"]=$owner->billing_data_due_date;\n $data[\"owner_www\"]=\"\";\n\n if($data[\"order_branch_email\"]){\n $data[\"order_branch_name\"]=$data[\"order_branch_name\"];\n $data[\"order_branch_street\"]=$data[\"order_branch_street\"];\n $data[\"order_branch_city\"]=$data[\"order_branch_city\"];\n $data[\"order_branch_zip\"]=$data[\"order_branch_zip\"];\n $data[\"order_branch_phone\"]=$data[\"order_branch_phone\"];\n $data[\"order_branch_email\"]=$data[\"order_branch_email\"];\n $data[\"no_delivery_address\"]=false;\n }\n else\n {\n // nebyla vyplnena dodaci adresa, vyplnime ji jako fakturacni\n $data[\"no_delivery_address\"]=true;\n }\n\n $shipping=$order->shipping;\n $data[\"order_shipping_id\"]=$shipping->id;\n $data[\"order_shipping_nazev\"]=$shipping->nazev;\n $data[\"order_shipping_descr\"]=$shipping->popis;\n // ceny jsou ulozeny v objednavce\n\n $payment=$order->payment;\n $data[\"order_payment_id\"]=$payment->id;\n $data[\"order_payment_nazev\"]=$payment->nazev;\n $data[\"order_payment_predem\"]=$payment->predem;\n // ceny jsou ulozeny v objednavce\n\n \n // seznam produktu v objednavce\n $order_products = $order->items->find_all();\n $x=0;\n foreach($order_products as $product){\n $data[\"products\"][$x]=$product->as_array();\n\n $x++;\n }\n \n $data[\"order_total_vat\"]=$data[\"order_total_with_vat\"] - $data[\"order_total_without_vat\"];\n \n //die(print_r($data));\n return $data;\n }", "protected function cleanFieldsToUpdate($fieldsToUpdate) {\n\t\t$model = $this->model;\n\t\t$db = $this->db;\n\t\t\n\t\t// Array that will contain \"attribute\" => <new value>\n\t\t$_fieldsToUpdate = [];\n\t\tforeach ($fieldsToUpdate as $field => $value) {\n\t\t\t\n\t\t\t// If it is a TupleValue and not a constant or variable, it\n\t\t\t// references to the current value of the tuple.\n\t\t\tif (is_object($value) and get_class($value)==\"lulo\\query\\TupleValue\") {\n\t\t\t\t$column = $value->f();\n\t\t\t\tif($value->isRaw()){\n\t\t\t\t\t$value = $column;\n\t\t\t\t}\n\t\t\t\t// Check model has $column attribute\n\t\t\t\telseif($model::metaHasAttribute($column)){\n\t\t\t\t\t$escapedColumn = substr($db::qstr($column), 1, -1);\n\t\t\t\t\t$value = \"{$this->table_alias}.{$escapedColumn}\";\n\t\t\t\t}\n\t\t\t\t// Otherwise, throw exception\n\t\t\t\telse{\n\t\t\t\t\tthrow new \\Exception(\"'{$column}' is not an attribute of {$model}\");\n\t\t\t\t}\t\t\t\t\n\t\t\t}\n\t\t\t// If what we pass is a variable and not a reference to a field\n\t\t\t// it has to be escaped\n\t\t\telse {\n\t\t\t\t$value = $db::qstr($value);\n\t\t\t}\n\t\t\t\n\t\t\t// Add the field to the fields to update with its new value\n\t\t\t$_fieldsToUpdate[$field] = $value;\n\t\t}\n\t\t\n\t\t// Updating array\n\t\treturn $_fieldsToUpdate;\n\t}", "function detect_dispensing_changes($order) {\n\n $day_changes = [];\n $qty_changes = [];\n $mysql = new Mysql_Wc();\n\n //Normall would run this in the update_order_items.php but we want to wait for all the items to change so that we don't rerun multiple times\n foreach ($order as $item) {\n\n //! $updated['order_date_dispensed'] otherwise triggered twice, once one stage: Printed/Processed and again on stage:Dispensed\n if ($item['days_dispensed_default'] != $item['days_dispensed_actual'])\n $day_changes[] = \"rx:$item[rx_number] qty:$item[qty_dispensed_default] >>> $item[qty_dispensed_actual] days:$item[days_dispensed_default] >>> $item[days_dispensed_actual] refills:$item[refills_dispensed_default] >>> $item[refills_dispensed_actual] item:\".json_encode($item);\n\n //! $updated['order_date_dispensed'] otherwise triggered twice, once one stage: Printed/Processed and again on stage:Dispensed\n if ($item['qty_dispensed_default'] != $item['qty_dispensed_actual'] OR (( ! is_null($item['refills_dispensed_actual']) AND $item['refills_dispensed_default']+0) != $item['refills_dispensed_actual']))\n $qty_changes[] = \"rx:$item[rx_number] qty:$item[qty_dispensed_default] >>> $item[qty_dispensed_actual] days:$item[days_dispensed_default] >>> $item[days_dispensed_actual] refills:$item[refills_dispensed_default] >>> $item[refills_dispensed_actual] item:\".json_encode($item);\n\n //! $updated['order_date_dispensed'] otherwise triggered twice, once one stage: Printed/Processed and again on stage:Dispensed\n $sig_qty_per_day_actual = $item['days_dispensed_actual'] ? round($item['qty_dispensed_actual']/$item['days_dispensed_actual'], 1) : 'NULL';\n $mysql->run(\"\n UPDATE gp_rxs_single SET sig_qty_per_day_actual = $sig_qty_per_day_actual WHERE rx_number = $item[rx_number]\n \");\n\n if ($item['days_dispensed_actual'] AND $item['refills_dispensed'] AND ! $item['qty_left'] AND ($item['days_dispensed_actual'] > DAYS_MAX OR $item['days_dispensed_actual'] < DAYS_MIN))\n log_error(\"check days dispensed is not within limits and it's not out of refills: \".DAYS_MIN.\" < $item[days_dispensed_actual] < \".DAYS_MAX, $item);\n else if ($sig_qty_per_day_actual != 'NULL' AND $sig_qty_per_day_actual != round($item['sig_qty_per_day_default'], 1) AND $sig_qty_per_day_actual != round($item['sig_qty_per_day_default']*2, 1)) { // *2 is a hack for \"as needed\" being different right now\n log_error(\"sig parsing error Updating to Actual Qty_Per_Day '$item[sig_actual]' $item[sig_qty_per_day_default] (default) != $sig_qty_per_day_actual $item[qty_dispensed_actual]/$item[days_dispensed_actual] (actual)\", $item);\n }\n }\n\n log_notice(\"update_order_cp detect_dispensing_changes\", ['order' => $order, 'day_changes' => $day_changes, 'qty_changes' => $qty_changes]);\n return ['day_changes' => $day_changes, 'qty_changes' => $qty_changes];\n }", "public function attributes($layout = 'table')\n\t{\n\t switch ($layout) {\n\t default:\n \t\t$ret = array(\n \t\t\tarray(\n \t\t\t\t'attribute' => 'year',\n \t\t\t\t'orderclause' => 'invoice.year',\n \t\t\t\t'class' => 'number',\n \t\t\t\t'filter' => array(\n \t\t\t\t 'tag' => 'number'\n \t\t\t\t)\n \t\t\t),\n \t\t\tarray(\n \t\t\t\t'attribute' => 'm',\n \t\t\t\t'orderclause' => 'invoice.m',\n \t\t\t\t'class' => 'number',\n \t\t\t\t'filter' => array(\n \t\t\t\t 'tag' => 'number'\n \t\t\t\t)\n \t\t\t),\n \t\t\tarray(\n \t\t\t\t'attribute' => 'd',\n \t\t\t\t'orderclause' => 'invoice.d',\n \t\t\t\t'class' => 'number',\n \t\t\t\t'filter' => array(\n \t\t\t\t 'tag' => 'number'\n \t\t\t\t)\n \t\t\t),\n array(\n \t\t\t 'attribute' => 'invoicetype_id',\n \t\t\t 'orderclause' => 'invoicetype.name',\n \t\t\t 'class' => 'text',\n \t\t\t 'callback' => array(\n \t\t\t 'name' => 'invoicetypeName'\n \t\t\t ),\n \t\t\t\t'filter' => array(\n \t\t\t\t 'tag' => 'text'\n \t\t\t\t)\n \t\t\t),\n \t\t\tarray(\n \t\t\t\t'attribute' => 'name',\n \t\t\t\t'orderclause' => 'invoice.name',\n \t\t\t\t'class' => 'number',\n \t\t\t\t'filter' => array(\n \t\t\t\t 'tag' => 'number'\n \t\t\t\t),\n \t\t\t\t'callback' => array(\n \t\t\t\t 'name' => 'invoiceName'\n \t\t\t\t)\n \t\t\t),\n \t\t\tarray(\n \t\t\t\t'attribute' => 'deleted',\n \t\t\t\t'orderclause' => 'invoice.deleted',\n \t\t\t\t'class' => 'bool',\n \t\t\t\t'filter' => array(\n \t\t\t\t 'tag' => 'bool'\n \t\t\t\t),\n \t\t\t\t'callback' => array(\n \t\t\t\t 'name' => 'isDeletedHumanReadable'\n \t\t\t\t)\n \t\t\t),\n \t\t\tarray(\n \t\t\t 'attribute' => 'client_id',\n \t\t\t 'orderclause' => 'client.nickname',\n \t\t\t 'class' => 'text',\n \t\t\t 'callback' => array(\n \t\t\t 'name' => 'clientNickname'\n \t\t\t ),\n \t\t\t\t'filter' => array(\n \t\t\t\t 'tag' => 'text'\n \t\t\t\t)\n \t\t\t),\n array(\n \t\t\t 'attribute' => 'clientcode',\n \t\t\t 'orderclause' => 'invoice.clientcode',\n \t\t\t 'class' => 'text',\n \t\t\t\t'filter' => array(\n \t\t\t\t 'tag' => 'text'\n \t\t\t\t)\n \t\t\t),\n \t\t\tarray(\n \t\t\t 'attribute' => 'card_id',\n \t\t\t 'orderclause' => 'card.name',\n \t\t\t 'class' => 'text',\n \t\t\t 'callback' => array(\n \t\t\t 'name' => 'cardName'\n \t\t\t ),\n \t\t\t\t'filter' => array(\n \t\t\t\t 'tag' => 'text'\n \t\t\t\t)\n \t\t\t),\n \t\t\tarray(\n \t\t\t 'attribute' => 'attorney_id',\n \t\t\t 'orderclause' => 'attorney.name',\n \t\t\t 'class' => 'text',\n \t\t\t 'callback' => array(\n \t\t\t 'name' => 'attorneyName'\n \t\t\t ),\n \t\t\t\t'filter' => array(\n \t\t\t\t 'tag' => 'text'\n \t\t\t\t)\n \t\t\t),\n \t\t\tarray(\n \t\t\t 'attribute' => 'user_id',\n \t\t\t 'orderclause' => 'user.name',\n \t\t\t 'class' => 'text',\n \t\t\t 'callback' => array(\n \t\t\t 'name' => 'userName'\n \t\t\t ),\n \t\t\t\t'filter' => array(\n \t\t\t\t 'tag' => 'text'\n \t\t\t\t)\n \t\t\t)\n \t\t);\n }\n return $ret;\n\t}", "private function _mapValuesWithAttributes()\r\n {\r\n \r\n $extraFnclassName = '';\r\n if ($extraFnclassName = $this->_getExtraFunctionModelName()) {\r\n $extraFnModel = Mage::getModel(\"transactionalemail/api_\" . $extraFnclassName);\r\n }\r\n $mapValuesArray = array();\r\n $model = Mage::getModel(\"transactionalemail/transactionalmessages\")->getCollection()\r\n ->addFieldToFilter('name', $this->_emailPostedData['code'])\r\n ->addFieldToFilter('store_id', $this->_emailPostedData['storeId']);\r\n if ($model->getSize() > 0) {\r\n $tmData = $model->getFirstItem()->getData();\r\n $this->_transactionalParams['TransactionalMsgID'] = $tmData['transactional_id'];\r\n $attributeModel = Mage::getModel(\"transactionalemail/attributes\")->getCollection()\r\n ->addFieldToFilter('transactional_message_id', $tmData['id'])\r\n ->getItems();\r\n foreach ($attributeModel as $key => $item) {\r\n $fieldValue = '';\r\n $array = $this->_getInputFieldNClassObject($item->getInputField());\r\n \r\n if (is_object($this->_emailPostedData['templateParams'][$array['object']])) { \r\n $fieldValue = $this->_emailPostedData['templateParams'][$array['object']]->getData($array['input']);\r\n }\r\n elseif (is_array($this->_emailPostedData['templateParams'])) { \r\n $fieldValue = $this->_emailPostedData['templateParams'][$array['input']];\r\n }\r\n\r\n if ($extraFnclassName && $fieldValue == \"\") {\r\n $extraFnModel->setObjects($this->_emailPostedData['templateParams']);\r\n $extraFnModel->setInputElement($array['input']);\r\n $extraFnModel->setObjectOfInput($this->_emailPostedData['templateParams'][$array['object']]);\r\n $fieldValue = $extraFnModel->getValue();\r\n }\r\n $mapValuesArray[] = array('AttributeID' => $item->getAttributeId(), 'Value' => $fieldValue);\r\n }\r\n }\r\n $this->_transactionalParams['ProfileData']['WSProfileAttributeValue'] = $mapValuesArray;\r\n\r\n }", "public function entry_order_update()\n {\n $ids = explode(',', $this->input->post('order'));\n\n // Set the count by the offset for\n // paginated lists\n $order_count = $this->input->post('offset')+1;\n\n foreach ($ids as $id)\n {\n $this->db\n ->where('choice_id', $id)\n ->update('choices', array('ordering_count' => $order_count));\n\n ++$order_count;\n }\n }", "function update($values){\n\n $id = $values['id'];\n unset($values['id']);\n $query = \" UPDATE \" . $this->tableName;\n $separator = \" SET \";\n\n foreach ($values as $key => $value){\n $query .= $separator . $key . \" = '\" . $value . \"'\";\n $separator = \", \";\n\n }\n $query .= \" where id = $id \";\n $query .= \";\";\n return $this->dbh->query($query);\n \n }", "function adv_update($table, array $data, array $where);", "function update_sales_order_version($order)\n{\n foreach ($order as $so_num => $so_ver) {\n $sql= 'UPDATE '.TB_PREF.'sales_orders SET version=version+1 WHERE order_no='. db_escape($so_num).\n\t' AND version='.$so_ver . \" AND trans_type=30\";\n db_query($sql, 'Concurrent editing conflict while sales order update');\n }\n}", "function editAttributes()\n\t{\n\t\t$id=(int)$_GET['prodid'];\n\t\tif(is_int($id))\n\t\t{\n\t\t\t$select='SELECT attrib_value_id FROM product_attrib_values_table where product_id='.$id;\n\t\t\t$jbo=new Bin_Query();\n\t\t\t$jbo->executeQuery($select);\n\t\t\t$arr=$jbo->records;\n\t\t\tfor($i=0;$i<count($arr);$i++)\n\t\t\t{\n\t\t\t\t$value[]=$arr[$i]['attrib_value_id'];\n\t\t\t}\n\t\t\t$sql='select category_id from products_table where product_id='.$id;\n\t\t\t$obj=new Bin_Query();\n\t\t\t$obj->executeQuery($sql);\n\t\t\t$sql='SELECT attrib_id FROM category_attrib_table WHERE subcategory_id='.$obj->records[0]['category_id'];\n\t\t\t$query = new Bin_Query();\n\t\t\t$query->executeQuery($sql);\n\t\t\t$cnt=count($query->records);\n\n\t\t\tfor($i=0;$i<$cnt;$i++)\n\t\t\t{\n\t\t\t \t$sq='SELECT a.attrib_name,b.* FROM attribute_table a,attribute_value_table b WHERE a.attrib_id=b.attrib_id AND a.attrib_id='.$query->records[$i]['attrib_id'];\n\t\t \t $que = new Bin_Query();\n\t\t\t \t if($que->executeQuery($sq))\n\t\t\t\t\t$tmp[]=$que->records;\n\t\t\t}\n\t\t\t\n\t\t\t\t\t\n\t\t\treturn Display_DManageProducts::editAttributes($tmp,$value);\n\t\t}\n\t}", "function updateProduct() \n{\n global $products;\n echo \"<table border='1' cellspacing = '0px' cellpadding \n = '10px'><thead><tr>\n <th>Category</th>th>Subcategory</th>\n <th>ID</th><th>Name</th><th>Brand</th></tr></thead><tbody>\";\n foreach ($products as $category=>$value) {\n foreach ($value as $subcategory=>$x) {\n foreach ($x as $product=>$y) {\n if ($y['id'] == 'PR002') {\n $y['name'] = \"BIG-555\";\n echo \"<tr><td>\".$category.\"</td>\";\n echo \"<td>\".$subcategory.\"</td>\";\n echo \"<td>\".$y['id'].\"</td>\";\n echo \"<td>\".$y['name'].\"</td>\";\n echo \"<td>\".$y['brand'].\"</td></tr>\";\n } else {\n echo \"<tr><td>\".$category.\"</td>\";\n echo \"<td>\".$subcategory.\"</td>\";\n echo \"<td>\".$y['id'].\"</td>\";\n echo \"<td>\".$y['name'].\"</td>\";\n echo \"<td>\".$y['brand'].\"</td></tr>\";\n }\n }\n }\n }\n echo \"</tbody></table>\";\n}", "function update_order() {\r\n\r\n\t\t\tif ( ! is_user_logged_in() || ! current_user_can( 'manage_options' ) )\r\n\t\t\t\tdie( 'Please login as administrator' );\r\n\r\n\t\t\t/**\r\n\t\t\t * @var $form_id\r\n\t\t\t */\r\n\t\t\textract( $_POST );\r\n\r\n\t\t\t$fields = UM()->query()->get_attr( 'custom_fields', $form_id );\r\n\r\n\t\t\t$this->row_data = get_option( 'um_form_rowdata_' . $form_id, array() );\r\n\t\t\t$this->exist_rows = array();\r\n\r\n\t\t\tif ( ! empty( $fields ) ) {\r\n\t\t\t\tforeach ( $fields as $key => $array ) {\r\n\t\t\t\t\tif ( $array['type'] == 'row' ) {\r\n\t\t\t\t\t\t$this->row_data[$key] = $array;\r\n\t\t\t\t\t\tunset( $fields[$key] );\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\t$fields = array();\r\n\t\t\t}\r\n\r\n\t\t\tforeach ( $_POST as $key => $value ) {\r\n\r\n\t\t\t\t// adding rows\r\n\t\t\t\tif ( 0 === strpos( $key, '_um_row_' ) ) {\r\n\r\n\t\t\t\t\t$update_args = null;\r\n\r\n\t\t\t\t\t$row_id = str_replace( '_um_row_', '', $key );\r\n\r\n\t\t\t\t\t$row_array = array(\r\n\t\t\t\t\t\t'type' => 'row',\r\n\t\t\t\t\t\t'id' => $value,\r\n\t\t\t\t\t\t'sub_rows' => $_POST[ '_um_rowsub_'.$row_id .'_rows' ],\r\n\t\t\t\t\t\t'cols' => $_POST[ '_um_rowcols_'.$row_id .'_cols' ],\r\n\t\t\t\t\t\t'origin' => $_POST[ '_um_roworigin_'.$row_id . '_val' ],\r\n\t\t\t\t\t);\r\n\r\n\t\t\t\t\t$row_args = $row_array;\r\n\r\n\t\t\t\t\tif ( isset( $this->row_data[ $row_array['origin'] ] ) ) {\r\n\t\t\t\t\t\tforeach( $this->row_data[ $row_array['origin'] ] as $k => $v ){\r\n\t\t\t\t\t\t\tif ( $k != 'position' && $k != 'metakey' ) {\r\n\t\t\t\t\t\t\t\t$update_args[$k] = $v;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tif ( isset( $update_args ) ) {\r\n\t\t\t\t\t\t\t$row_args = array_merge( $update_args, $row_array );\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\t$this->exist_rows[] = $key;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t$fields[$key] = $row_args;\r\n\r\n\t\t\t\t}\r\n\r\n\t\t\t\t// change field position\r\n\t\t\t\tif ( 0 === strpos( $key, 'um_position_' ) ) {\r\n\t\t\t\t\t$field_key = str_replace('um_position_','',$key);\r\n\t\t\t\t\tif ( isset( $fields[$field_key] ) ) {\r\n\t\t\t\t\t\t$fields[$field_key]['position'] = $value;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\t// change field master row\r\n\t\t\t\tif ( 0 === strpos( $key, 'um_row_' ) ) {\r\n\t\t\t\t\t$field_key = str_replace('um_row_','',$key);\r\n\t\t\t\t\tif ( isset( $fields[$field_key] ) ) {\r\n\t\t\t\t\t\t$fields[$field_key]['in_row'] = $value;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\t// change field sub row\r\n\t\t\t\tif ( 0 === strpos( $key, 'um_subrow_' ) ) {\r\n\t\t\t\t\t$field_key = str_replace('um_subrow_','',$key);\r\n\t\t\t\t\tif ( isset( $fields[$field_key] ) ) {\r\n\t\t\t\t\t\t$fields[$field_key]['in_sub_row'] = $value;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\t// change field column\r\n\t\t\t\tif ( 0 === strpos( $key, 'um_col_' ) ) {\r\n\t\t\t\t\t$field_key = str_replace('um_col_','',$key);\r\n\t\t\t\t\tif ( isset( $fields[$field_key] ) ) {\r\n\t\t\t\t\t\t$fields[$field_key]['in_column'] = $value;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\t// add field to group\r\n\t\t\t\tif ( 0 === strpos( $key, 'um_group_' ) ) {\r\n\t\t\t\t\t$field_key = str_replace('um_group_','',$key);\r\n\t\t\t\t\tif ( isset( $fields[$field_key] ) ) {\r\n\t\t\t\t\t\t$fields[$field_key]['in_group'] = $value;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t}\r\n\r\n\t\t\tforeach ( $this->row_data as $k => $v ) {\r\n\t\t\t\tif ( ! in_array( $k, $this->exist_rows ) )\r\n\t\t\t\t\tunset( $this->row_data[$k] );\r\n\t\t\t}\r\n\r\n\t\t\tupdate_option( 'um_existing_rows_' . $form_id, $this->exist_rows );\r\n\r\n\t\t\tupdate_option( 'um_form_rowdata_' . $form_id , $this->row_data );\r\n\r\n\t\t\tUM()->query()->update_attr( 'custom_fields', $form_id, $fields );\r\n\r\n\t\t}" ]
[ "0.5882825", "0.5827351", "0.57179797", "0.56807566", "0.5626977", "0.5576254", "0.5534835", "0.55264163", "0.552104", "0.5495844", "0.54754657", "0.5475086", "0.5429869", "0.5410633", "0.5405353", "0.5371057", "0.5357028", "0.5328367", "0.5328343", "0.5324135", "0.5322015", "0.532026", "0.5311954", "0.53018266", "0.52316153", "0.52258646", "0.5196553", "0.51959634", "0.5178141", "0.51765656", "0.51634884", "0.5160758", "0.51477855", "0.51473945", "0.51441", "0.5139171", "0.51335424", "0.51252466", "0.51252466", "0.5120939", "0.5120086", "0.51195174", "0.5113131", "0.50993747", "0.509586", "0.50933635", "0.5093278", "0.5092385", "0.50854796", "0.50813854", "0.507241", "0.5070694", "0.5062352", "0.5061853", "0.506043", "0.5056806", "0.50556964", "0.504544", "0.504081", "0.5038069", "0.5036788", "0.50297487", "0.502776", "0.5026518", "0.502357", "0.50187397", "0.5017077", "0.5016211", "0.5013663", "0.50004554", "0.499481", "0.49935952", "0.4989695", "0.49889562", "0.4987422", "0.49852696", "0.49682924", "0.49672025", "0.49649042", "0.49642512", "0.49579915", "0.495178", "0.49507922", "0.49481398", "0.49458498", "0.49442548", "0.493512", "0.4928401", "0.49260226", "0.49226964", "0.49209297", "0.4920208", "0.49189848", "0.4918122", "0.49166867", "0.49133644", "0.49069133", "0.49023858", "0.4902037", "0.4899021" ]
0.49362737
86
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 authorized()\n {\n return $this->accepted && ! $this->test_mode;\n }", "public function authorize()\n {\n return $this->user() && $this->user()->role === Constants::USER_ROLE_ADMIN;\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 isAuth()\n {\n return $this->session->hasAuthorisation();\n }", "public function authorize()\n {\n return $this->user()->rol == 'admin' ? true : false;\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 isAuthorized() {\n\t\t\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 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 {\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 return $this->auth->check();\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\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() : bool\n {\n // TODO check request to xhr in middleware\n return true;\n }", "public function authorize()\n {\n // User system not implemented\n return true;\n }", "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 $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.8399559", "0.8375976", "0.8375976", "0.8342963", "0.825244", "0.824597", "0.82116634", "0.81456405", "0.81095356", "0.80819404", "0.79899764", "0.7988185", "0.79821676", "0.7959435", "0.79494536", "0.79476935", "0.7925", "0.7913219", "0.78985447", "0.7892049", "0.7888783", "0.78885525", "0.7860001", "0.7839742", "0.7839742", "0.7836824", "0.7823007", "0.7810926", "0.7806934", "0.77903354", "0.7786534", "0.7781346", "0.77802587", "0.7761786", "0.7752098", "0.77181315", "0.77181315", "0.77142626", "0.7711265", "0.77023965", "0.76929665", "0.7690725", "0.76904184", "0.76890206", "0.76723206", "0.7665594", "0.7664652", "0.7654854", "0.7648983", "0.76413405", "0.76408315", "0.7639785", "0.763341", "0.76287645", "0.762751", "0.76264757", "0.7619986", "0.7619986", "0.761193", "0.76025206", "0.7601517", "0.7601157", "0.7601157", "0.7600066", "0.75978255", "0.75942534", "0.7586907", "0.7584423", "0.7578891", "0.75615716", "0.75516856", "0.75510263", "0.7550412", "0.7542515", "0.75408965", "0.7537727", "0.75362265", "0.7527483", "0.7514947", "0.75127167", "0.7498631", "0.749526", "0.7493661", "0.7490471", "0.74865395", "0.7486299", "0.7478914", "0.74754286", "0.74708784", "0.7470241", "0.7463862", "0.74629074", "0.74623996", "0.74613595", "0.74610263", "0.7447454", "0.74386954", "0.7435271", "0.7432479", "0.7431103", "0.742201" ]
0.0
-1
Get the validator for the request.
public function validator() { $validator = validator($this->all(), [ 'name' => 'required|max:255', 'server_provider_id' => ['required', Rule::exists('server_providers', 'id')->where(function ($query) { $query->where('user_id', $this->user()->id); })], 'region' => 'required|string', 'source_provider_id' => ['required', Rule::exists('source_providers', 'id')->where(function ($query) { $query->where('user_id', $this->user()->id); })], 'repository' => [ 'required', 'string', new ValidRepository(SourceProvider::find($this->source_provider_id)) ], 'database' => 'string|alpha_dash|max:255', 'database_size' => 'string', ]); return $this->validateRegionAndSize($validator); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getValidator()\n {\n return $this->validator;\n }", "public function getValidator()\n {\n return $this->validator;\n }", "public function getValidator()\n {\n return $this->validator;\n }", "public function getValidator() {\n return $this->__validator;\n }", "public function getValidator() {}", "public function getValidator()\n\t{\n\t\treturn $this->validation->validator->validator;\n\t}", "public function getValidator() \n {//--------------->> getValidator()\n return $this->_validator;\n }", "public function getValidator();", "public function getValidator();", "public function validator()\n {\n return $this->validator;\n }", "private function getValidator()\n {\n return Validation::createValidatorBuilder()->enableAnnotationMapping()->getValidator();\n }", "public function getValidator()\n\t{\n\t\tif (!is_object($this->_validator)) {\n\t\t\t$validatorClass = $this->xpdo->loadClass('validation.xPDOValidator', XPDO_CORE_PATH, true, true);\n\t\t\tif ($derivedClass = $this->getOption(xPDO::OPT_VALIDATOR_CLASS, null, '')) {\n\t\t\t\tif ($derivedClass = $this->xpdo->loadClass($derivedClass, '', false, true)) {\n\t\t\t\t\t$validatorClass = $derivedClass;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ($profitClass = $this->getOption('mlmsystem_handler_class_profit_validator', null, '')) {\n\t\t\t\tif ($profitClass = $this->xpdo->loadClass($profitClass, $this->getOption('mlmsystem_core_path', null, MODX_CORE_PATH . 'components/mlmsystem/') . 'handlers/validations/', false, true)) {\n\t\t\t\t\t$validatorClass = $profitClass;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ($validatorClass) {\n\t\t\t\t$this->_validator = new $validatorClass($this);\n\t\t\t}\n\t\t}\n\t\treturn $this->_validator;\n\t}", "public static function getValidatorInstance()\n {\n if (static::$validator === null)\n {\n static::$validator = new Validator();\n }\n\n return static::$validator;\n }", "protected function getValidator()\n {\n if ($form = $this->owner->getForm()) {\n \n if (($validator = $form->getValidator()) && $validator instanceof Validator) {\n return $validator;\n }\n \n }\n }", "public function getValidator()\n {\n if ($this->_validator === null) {\n\n if (class_exists('\\Atezate\\\\Validator\\Cubos')) {\n\n $this->setValidator(new \\Atezate\\Validator\\Cubos);\n }\n }\n\n return $this->_validator;\n }", "protected function createValidator() {\n return $this->validator;\n }", "function getCMSValidator()\n {\n return $this->getValidator();\n }", "public function getValidatorService()\n {\n return $this->validatorService;\n }", "public function getValidator()\n {\n if ($this->_validator === null) {\n\n if (class_exists('\\Klikasi\\\\Validator\\Newsletter')) {\n\n $this->setValidator(new \\Klikasi\\Validator\\Newsletter);\n }\n }\n\n return $this->_validator;\n }", "public function getValidator()\n {\n if ($this->_validator === null) {\n\n if (class_exists('\\Klikasi\\\\Validator\\Kanpaina')) {\n\n $this->setValidator(new \\Klikasi\\Validator\\Kanpaina);\n }\n }\n\n return $this->_validator;\n }", "private function getValidator()\n {\n $v = new Validator();\n $v->addRules([\n ['label', 'Label', 'required'],\n ['num_value', 'Number', 'exists type=number'],\n ['comment', 'Comment', 'exists'],\n ]);\n return $v;\n }", "protected function getValidator($request)\n {\n $rules = [\n 'page_title' => 'required',\n 'status' => 'required|integer|between:0,1'\n ];\n \n $customMessages = [\n 'page_title.required' => __('admin.pages.field_validation.title_field_required_msg'),\n 'status.required' => __('admin.pages.field_validation.status_field_required_msg')\n ];\n\n return Validator::make($request->all(), $rules, $customMessages);\n }", "protected function getValidatorInstance()\n {\n // cause comes json, we need to change it to array to validate it\n $this->request->set('postHashtag', json_decode($this->input()['postHashtag'], true));\n $this->request->set('activeLocales', json_decode($this->input()['activeLocales'], true));\n // clean alias from unnecessary symbols\n $this->request->set('postAlias', Helpers::cleanToOnlyLettersNumbers($this->input()['postAlias']));\n\n\n return parent::getValidatorInstance();\n }", "protected function getValidatorService()\n {\n return $this->services['validator'] = $this->get('validator.builder')->getValidator();\n }", "protected function getValidatorInstance()\n {\n return app(ValidationFactory::class);\n }", "function getValidator() {\n\t\tif ( !$this->_Validator instanceof utilityValidator ) {\n\t\t\t$this->_Validator = new utilityValidator();\n\t\t}\n\t\treturn $this->_Validator;\n\t}", "function getValidator() {\n\t\tif ( !$this->_Validator instanceof utilityValidator ) {\n\t\t\t$this->_Validator = new utilityValidator();\n\t\t}\n\t\treturn $this->_Validator;\n\t}", "function getValidator() {\n\t\tif ( !$this->_Validator instanceof utilityValidator ) {\n\t\t\t$this->_Validator = new utilityValidator();\n\t\t}\n\t\treturn $this->_Validator;\n\t}", "public function getValidator()\n {\n if ($this->_validator === null) {\n\n if (class_exists('\\Atezate\\\\Validator\\Mensajes')) {\n\n $this->setValidator(new \\Atezate\\Validator\\Mensajes);\n }\n }\n\n return $this->_validator;\n }", "public function getDelegatedValidator()\n {\n return $this->validator;\n }", "protected function getValidatorInstance()\n {\n $factory = $this->container->make('Illuminate\\Validation\\Factory');\n if (method_exists($this, 'validator')) {\n return $this->container->call([$this, 'validator'], compact('factory'));\n }\n\n $rules = $this->container->call([$this, 'rules']);\n $attributes = $this->attributes();\n $messages = [];\n\n $translationsAttributesKey = $this->getTranslationsAttributesKey();\n\n foreach ($this->requiredLocales() as $localeKey => $locale) {\n $this->localeKey = $localeKey;\n foreach ($this->container->call([$this, 'translationRules']) as $attribute => $rule) {\n $key = $localeKey . '.' . $attribute;\n $rules[$key] = $rule;\n $attributes[$key] = trans($translationsAttributesKey . $attribute);\n }\n\n foreach ($this->container->call([$this, 'translationMessages']) as $attributeAndRule => $message) {\n $messages[$localeKey . '.' . $attributeAndRule] = $message;\n }\n }\n\n return $factory->make(\n $this->all(),\n $rules,\n array_merge($this->messages(), $messages),\n $attributes\n );\n }", "protected function get9c2345652e8ae3f87ba009d0f8fedee27bb751398014908e9ab2fb6d5bf1300f(): \\Viserio\\Component\\Validation\\Validator\n {\n return $this->services[\\Viserio\\Contract\\Validation\\Validator::class] = new \\Viserio\\Component\\Validation\\Validator();\n }", "public function getValidatorService();", "function validator() {\n if ($this->validator) return $this->validator;\n $options = array();\n foreach ($this->fields_options as $field => $field_options) {\n if (!@$field_options['validation']) continue;\n $options[$field] = $field_options['validation'];\n }\n return $this->validator = new xValidatorStore($options, $_REQUEST);\n }", "public function createValidator()\n {\n $validator = Validation::createValidatorBuilder()\n ->setMetadataFactory(new ClassMetadataFactory(new StaticMethodLoader()))\n ->setConstraintValidatorFactory(new ConstraintValidatorFactory($this->app))\n ->setTranslator($this->getTranslator())\n ->setApiVersion(Validation::API_VERSION_2_5)\n ->getValidator();\n\n return $validator;\n }", "public function getValidator()\n {\n if ($this->_validator === null) {\n\n if (class_exists('\\Atezate\\\\Validator\\Tipos')) {\n\n $this->setValidator(new \\Atezate\\Validator\\Tipos);\n }\n }\n\n return $this->_validator;\n }", "public function getValidator($name = 'default') {\n\t\t\t//\n\t\t\tif ($name == 'default') { return new Validator();}\n\t\t\trequire (VALIDATORS . $name . '_validator.php');\n\t\t\t$name = $name . '_Validator';\n\t\t\treturn new $name();\n\t\t}", "protected static function validator() {\n\t\tif (empty(self::$validate)) {\n\t\t\tself::$validate = new MpoValidator();\n\t\t}\n\t\treturn self::$validate;\n\t}", "public function getValidator(){\n \treturn $this->model->rules;\n }", "public function getContractValidator(): ?ContractValidator {\n\n return $this->contractValidator;\n\n }", "public function getValidator()\n {\n if (!isset($this->customValidator)) {\n throw new CertaintyException('Custom class not defined');\n }\n return $this->customValidator;\n }", "protected function parseRulesFromValidator()\n {\n // First we call needed method with needed container\n $factory = app()->make(ValidationFactory::class);\n $validator = app()->call([$this->getFormRequestInstance(), 'validator'], [$factory]);\n\n // After that we get initialRules property (since plain `rules` prop doesn't contain array rules)\n // and make it public so that later we can get it's value\n $property = (new ReflectionClass($validator))->getProperty('initialRules');\n $property->setAccessible(true);\n\n return $property->getValue($validator);\n }", "public function getValidatorInstance()\n {\n $validator = parent::getValidatorInstance();\n\n\n $validator->after(\n function () use ($validator) {\n $input = $this->all();\n }\n );\n\n return $validator;\n }", "protected function getValidationFactory()\n {\n return app('validator');\n }", "protected function getValidator(): void\n {\n // TODO: Implement getValidator() method.\n }", "public function initValidator()\n {\n if (!is_null($this->_validator)) {\n return $this->_validator;\n }\n $this->_validator = new SurveyManager_Entity_Validator_Survey($this);\n \n return $this->_validator;\n }", "public function validator()\n {\n return LeaveRequestValidator::class;\n }", "public function validator()\n {\n\n return UserValidator::class;\n }", "public function validator()\n {\n\n return UserValidator::class;\n }", "public function validator()\n {\n\n return UserValidator::class;\n }", "public function validator()\n {\n\n return UserValidator::class;\n }", "public function validator()\n {\n\n return UserValidator::class;\n }", "protected function getValidatorInstance()\n {\n // cause comes json, we need to change it to array to validate it\n $this->request->set('categories_names', json_decode($this->input()['categories_names'], true));\n // clean alias from unnecessary symbols\n $this->request->set('category_alias', Helpers::cleanToOnlyLettersNumbers($this->input()['category_alias']));\n\n return parent::getValidatorInstance();\n }", "public function validator()\n {\n return UserValidator::class;\n }", "public function validator()\n {\n\n return ConfigValidator::class;\n }", "protected function getValidation()\n {\n return $this->validation;\n }", "public function validators()\n {\n if (is_null($this->validatorRequests)) {\n $this->validatorRequests = new ValidatorRequests($this->client);\n }\n\n return $this->validatorRequests;\n }", "public function getValidator($validator)\n {\n $instance = null;\n\n if (strpos($validator, 'iPhorm_Validator_') === false) {\n $validator = 'iPhorm_Validator_' . ucfirst($validator);\n }\n\n $validators = $this->getValidators();\n if (array_key_exists($validator, $validators)) {\n $instance = $validators[$validator];\n }\n\n return $instance;\n }", "protected function getValidatorInstance()\n {\n $validator = parent::getValidatorInstance();\n $validator->setAttributeNames(trans('mconsole::personal.form'));\n\n return $validator;\n }", "protected function validator(Request $request)\n\t{\n\t\treturn Validator::make($request->all(), [\n\t\t\t'title' => 'required',\n\t\t\t]);\n\t}", "public function validator()\n {\n\n return FormInfoValidator::class;\n }", "protected function getValidatorInstance()\n {\n $validator = parent::getValidatorInstance();\n\n $validator->sometimes('family_member_id.*', 'distinct', function($input)\n {\n return $input->family_member == 1;\n });\n\n $validator->sometimes('family_member_id.*', 'not_in:'. $this->request->get('patriarch'), function($input)\n {\n return $input->family_member == 1;\n });\n\n return $validator;\n }", "public function getCreateTaskValidator()\n : Validators\\ValidatorInterface\n {\n return $this->app->make(\n Validators\\CreateTaskValidator::class\n );\n }", "public function validator()\n {\n\n return EmpreValidator::class;\n }", "protected function getValidatorInstance()\n {\n $validator = parent::getValidatorInstance();\n // $validator->sometimes();\n\n $validator->after(function ($validator) {\n $this->request->remove('is_post');\n $this->request->remove('is_update');\n $this->request->remove('is_editing');\n $this->request->remove('is_delete');\n });\n return $validator;\n }", "public function getValidator(): ?ValidatorInterface\n {\n return new CompoundValidator(\n new CzechIbanValidator($this->accountNumber, $this->bankCode),\n new GenericIbanValidator($this)\n );\n }", "public function validator()\n {\n\n return ProvidersValidator::class;\n }", "public function validator()\n {\n\n return ProducerValidator::class;\n }", "public function validator()\n {\n return ZhuanTiValidator::class;\n }", "protected function getValidateRequestListenerService()\n {\n return $this->services['validate_request_listener'] = new \\Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener();\n }", "protected function getValidateRequestListenerService()\n {\n return $this->services['validate_request_listener'] = new \\Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener();\n }", "protected function validator(Request $request)\n {\n return Validator::make($request->all(), [\n 'userid' => 'required|max:11',\n 'page' => ''\n ]);\n }", "public function validator()\n {\n return LanguageValidator::class;\n }", "public function validator()\n {\n\n return PescariaValidator::class;\n }", "public function validator()\n {\n $validator = $this->baseValidator([\n 'stripe_token' => 'required',\n 'vat_id' => 'nullable|max:50|vat_id',\n ]);\n\n if (Spark::collectsBillingAddress()) {\n $this->validateBillingAddress($validator);\n }\n\n return $validator;\n }", "public function getValidation()\n {\n return $this->_objValidation;\n }", "public function validator()\n {\n\n return AnggotaKeluargaValidator::class;\n }", "public function validator()\n {\n\n return AvaliacoeValidator::class;\n }", "public function validator()\n {\n // Return empty is to close the validator about create and update on the repository.\n return OperateValidator::class;\n }", "public static function getRequestValidators()\n {\n if (isset(static::$validators)) {\n return static::$validators;\n }\n\n // To match the route, we will use a chain of responsibility pattern with the\n // validator implementations. We will spin through each one making sure it\n // passes and then we will know if the route as a whole matches request.\n return static::$validators = [\n new ValidateAgainstUri(),\n new ValidateAgainstHost(),\n new ValidateAgainstScheme(),\n new ValidateAgainstMethod()\n ];\n }", "protected function getAjaxValidationFactory()\n {\n return app()->make('validator');\n }", "protected function makeValidator()\n {\n $rules = $this->expandUniqueRules($this->rules);\n\n $validator = static::$validator->make($this->getAttributes(), $rules);\n\n event(new ModelValidator($this, $validator));\n\n return $validator;\n }", "protected function makeValidator($request, $model = null)\n {\n return Validator::make(\n $this->getRequestData($request, $model),\n $this->validationRules($request, $model),\n $this->validationMessages($request, $model)\n );\n }", "private function createValidator()\n {\n // add custom validation rules\n \\Validator::extend('contains_caps',\n function($field, $value, $params)\n {\n return preg_match('#[A-Z]#', $value);\n }\n );\n\n \\Validator::extend('contains_digit',\n function($field, $value, $params)\n {\n return preg_match('#[0-9]#', $value);\n }\n );\n\n // set array of messages for custom rules\n $messages = array(\n 'contains_caps' => ':attribute must contain at least one capital letter.',\n 'contains_digit' => ':attribute must contain at least one numeric digit.'\n );\n\n // set array of rules to use for validation (many are Laravel's built-ins)\n $rules = array(\n 'email' => 'required|email|max:255',\n 'password' => 'required|between:8,50|contains_caps|contains_digit', // password has some \"strength\" requirements\n 'first_name' => 'required|max:50',\n 'last_name' => 'required|max:50',\n 'city' => 'required|max:100',\n 'state' => 'required|max:2',\n 'zip' => 'required|max:20',\n 'biography' => 'required',\n );\n\n $validator = \\Validator::make(\\Input::all(), $rules, $messages);\n\n return $validator;\n }", "public function validator()\n {\n\n return OccupationValidator::class;\n }", "public function validator()\n {\n\n return GrupoServicosValidator::class;\n }", "public function validator()\n {\n\n return OrderItemValidator::class;\n }", "public function validator()\n {\n\n return ScheduleValidator::class;\n }", "public static function getValidator($name, array $options = []);", "public function validator()\n {\n\n return PermissionValidator::class;\n }", "public function validator()\n {\n\n return NetworkValidator::class;\n }", "private function getHttpRequestVerifier()\n {\n return $this->get('payum.security.http_request_verifier');\n }", "protected function validator(Request $request)\n {\n return Validator::make($request->all(), [\n 'userid' => 'required|max:11',\n 'password' => 'required'\n ]);\n }", "public function validator()\n {\n\n return ProfessorResponsavelCursoValidator::class;\n }", "protected function validator(array $data)\n {\n return self::getValidator($data);\n }", "protected function validator(Request $request)\n {\n return Validator::make($request, [\n 'first_name' => 'required',\n 'last_name' => 'required',\n 'suburb' => 'required',\n 'zipcode' => 'required',\n\t\t\t\n ]);\n }", "public function validator()\n {\n\n return BabyInfoValidator::class;\n }", "public function getValidatorInstance() {\n $validator = parent::getValidatorInstance();\n\n $validator->after(function() use ($validator) {\n\n // Does the event exist?\n if( !$this->checkEventExists()){\n $validator->errors()->add('event.Exists', 'This event does not longer exist.');\n } else {\n\n // Does the booker is not the creator?\n if( !$this->checkEventNotBookedByCreator()){\n $validator->errors()->add('event.BookedCreator', 'You can\\'t unbook this event because since you are the owner.'); \n }\n\n // Does the event is not already finished/has begun?\n if( !$this->checkEventDateNotDue()){\n $validator->errors()->add('event.DateDue', 'You can\\'t unbook this event because it\\'s already begun or is terminated.'); \n }\n }\n\n });\n\n return $validator;\n }", "public function getValidators() {}", "public function validator()\n {\n\n return DateValidator::class;\n }" ]
[ "0.826964", "0.826964", "0.826964", "0.80724704", "0.7961794", "0.7877677", "0.78191733", "0.77342093", "0.77342093", "0.769483", "0.75947446", "0.75829065", "0.7540853", "0.7513404", "0.7444067", "0.7301614", "0.7284197", "0.72810364", "0.7264537", "0.72551924", "0.7168994", "0.7153721", "0.70713234", "0.7061395", "0.70576465", "0.70432216", "0.70432216", "0.70432216", "0.7039538", "0.70360285", "0.698128", "0.69537735", "0.69040483", "0.68785155", "0.6848857", "0.6833153", "0.67554915", "0.66841954", "0.6683324", "0.66191834", "0.6608128", "0.6500038", "0.6461225", "0.6439444", "0.64252865", "0.6420637", "0.6409691", "0.6405974", "0.6405974", "0.6405974", "0.6405974", "0.6405974", "0.638821", "0.6350801", "0.6318891", "0.63143134", "0.63105595", "0.63037956", "0.62778705", "0.62589955", "0.62527466", "0.62187016", "0.6207803", "0.619851", "0.6198116", "0.61820275", "0.61529964", "0.6135598", "0.6135561", "0.6127687", "0.6127687", "0.60960597", "0.6054247", "0.6038667", "0.6037279", "0.6035887", "0.6012406", "0.60115427", "0.60052735", "0.59951854", "0.59944826", "0.5989942", "0.5970735", "0.59614295", "0.5952957", "0.5950587", "0.5938409", "0.5938158", "0.5918904", "0.59187526", "0.5914583", "0.5913881", "0.59131116", "0.59084356", "0.59050745", "0.5893411", "0.58883715", "0.58775127", "0.5874355", "0.5873535" ]
0.5898993
95
Validate the region and size for the provider.
protected function validateRegionAndSize($validator) { return $validator->after(function ($validator) { $provider = $this->user()->serverProviders()->find($this->server_provider_id); if (! $provider->validRegion($this->region)) { $validator->errors()->add('region', 'Invalid region for provider.'); } if ($this->database && ! $provider->validSize($this->database_size)) { $validator->errors()->add('database_size', 'Invalid size for database.'); } }); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function test_address_region_validation()\n {\n /*\n * Valid\n */\n $validRegionLocation = Location::factory()->make([\n 'addressRegion' => 'Greater Manchester',\n ]);\n $validRegionData = $validRegionLocation->toArray();\n $this->post($this->route(), $validRegionData)->assertStatus(201);\n\n /**\n * Invalid: not a string\n */\n $nonStringLocation = Location::factory()->make([\n 'addressRegion' => ['invalid'],\n ]);\n $nonStringData = $nonStringLocation->toArray();\n\n $response = $this->post($this->route(), $nonStringData);\n $response->assertStatus(400);\n $response->assertJsonPath('meta.field_errors.addressRegion', 'The address region must be a string.');\n }", "public function validate() {\n $error = $this->error;\n switch ($error) {\n case UPLOAD_ERR_PARTIAL :\n case UPLOAD_ERR_NO_TMP_DIR :\n case UPLOAD_ERR_CANT_WRITE :\n $errCode = $this->getConfig(\"UPLOAD_ERROR_SYSTEM\");\n $errMessage = $this->getErrorMessage($errCode);\n throw new TMUploadException($errMessage);\n }\n\n $maxSize = (int) TMConfig::get(\"upload\", \"file_max_size\");\n if ($this->size > $maxSize * 1024) {\n $errCode = $this->getConfig(\"UPLOAD_ERROR_SIZE\");\n $errMessage = $this->getErrorMessage($errCode);\n throw new TMUploadException($errMessage);\n }\n\n $pix = TMUtil::getSuffix($this->name);\n if (!in_array($pix, $this->getValidatedTypes($this->configTypes))) {\n $errCode = $this->getConfig(\"UPLOAD_ERROR_PIX\");\n $errMessage = $this->getErrorMessage($errCode);\n throw new TMUploadException($errMessage);\n }\n }", "private static function GridRegionValidator(){\n\t\t\treturn array('object' => array(array(\n\t\t\t\t'uuid' => array('string' => array()),\n\t\t\t\t'locX' => array('integer' => array()),\n\t\t\t\t'locY' => array('integer' => array()),\n\t\t\t\t'locZ' => array('integer' => array()),\n\t\t\t\t'regionName' => array('string' => array()),\n\t\t\t\t'regionType' => array('string' => array()),\n\t\t\t\t'serverIP' => array('string' => array()),\n\t\t\t\t'serverHttpPort' => array('integer' => array()),\n\t\t\t\t'serverURI' => array('string' => array()),\n\t\t\t\t'serverPort' => array('integer' => array()),\n\t\t\t\t'regionMapTexture' => array('string' => array()),\n\t\t\t\t'regionTerrainTexture' => array('string' => array()),\n\t\t\t\t'access' => array('integer' => array()),\n\t\t\t\t'owner_uuid' => array('string' => array()),\n\t\t\t\t'AuthToken' => array('string' => array()),\n\t\t\t\t'sizeX' => array('integer' => array()),\n\t\t\t\t'sizeY' => array('integer' => array()),\n\t\t\t\t'sizeZ' => array('integer' => array()),\n\t\t\t\t'LastSeen' => array('integer' => array()),\n\t\t\t\t'SessionID' => array('string' => array()),\n\t\t\t\t'Flags' => array('integer' => array()),\n\t\t\t\t'GenericMap' => array('object' => array()),\n\t\t\t\t'EstateOwner' => array('string' => array()),\n\t\t\t\t'EstateID' => array('integer' => array()),\n\t\t\t\t'remoteEndPointIP' => array('array' => array()),\n\t\t\t\t'remoteEndPointPort' => array('integer' => array()),\n\t\t\t)));\n\t\t}", "public function validator()\n {\n $validator = validator($this->all(), [\n 'name' => 'required|max:255',\n 'server_provider_id' => ['required', Rule::exists('server_providers', 'id')->where(function ($query) {\n $query->where('user_id', $this->user()->id);\n })],\n 'region' => 'required|string',\n 'source_provider_id' => ['required', Rule::exists('source_providers', 'id')->where(function ($query) {\n $query->where('user_id', $this->user()->id);\n })],\n 'repository' => [\n 'required',\n 'string',\n new ValidRepository(SourceProvider::find($this->source_provider_id))\n ],\n 'database' => 'string|alpha_dash|max:255',\n 'database_size' => 'string',\n ]);\n\n return $this->validateRegionAndSize($validator);\n }", "public function validate()\n {\n if ($this->crop || $this->width || $this->height) {\n return;\n }\n\n throw new \\Exception(\n 'Slideshow expects a width or a height to be provided if crop is set to false.'\n );\n }", "protected function _validate() {\n\t}", "private function validate_regions(){\n\n for ($row = 0; $row < 9; $row += 3) {\n for ($col = 0; $col < 9; $col += 3) {\n\n // validate each 3x3 region\n if (!$this->validate_region($row, $col)) {\n return false;\n }\n }\n }\n return true;\n }", "public function validate()\n {\n $helper = Mage::helper('checkout');\n $quote = $this->getQuote();\n if ($quote->getIsMultiShipping()) {\n Mage::throwException($helper->__('Invalid checkout type.'));\n }\n\n if ($quote->getCheckoutMethod() == self::METHOD_GUEST && !Mage::helper('firecheckout')->isAllowedGuestCheckout()) {\n Mage::throwException($this->_helper->__('Sorry, guest checkout is not enabled. Please try again or contact store owner.'));\n }\n }", "public function validate(){\n\n if(!$this->convert_and_validate_rows()){\n return 0;\n }\n\n if(!$this->validate_columns()){\n return 0;\n }\n\n if(!$this->validate_regions()){\n return 0;\n }\n\n return 1;\n }", "public static function validate() {}", "public function valid()\n {\n if ($this->container['phone_region_id'] === null) {\n return false;\n }\n if ($this->container['phone_region_name'] === null) {\n return false;\n }\n if ($this->container['phone_region_code'] === null) {\n return false;\n }\n if ($this->container['phone_count'] === null) {\n return false;\n }\n if ($this->container['phone_price'] === null) {\n return false;\n }\n if ($this->container['phone_installation_price'] === null) {\n return false;\n }\n if ($this->container['phone_period'] === null) {\n return false;\n }\n return true;\n }", "public function valid()\n {\n\n if (strlen($this->container['addressType']) > 255) {\n return false;\n }\n if (strlen($this->container['applicableRegion']) > 255) {\n return false;\n }\n if (strlen($this->container['errorCode']) > 255) {\n return false;\n }\n if (strlen($this->container['statusCode']) > 255) {\n return false;\n }\n if (strlen($this->container['careOf']) > 255) {\n return false;\n }\n return true;\n }", "public function validate()\n {\n $paymentInfo = $this->getInfoInstance();\n if ($paymentInfo instanceof Mage_Sales_Model_Order_Payment) {\n $billingCountry = $paymentInfo->getOrder()->getBillingAddress()->getCountryId();\n } else {\n $billingCountry = $paymentInfo->getQuote()->getBillingAddress()->getCountryId();\n }\n if (!$this->canUseForCountry($billingCountry)) {\n Mage::throwException(Mage::helper('payment')->__('Selected payment type is not allowed for billing country.'));\n }\n return $this;\n }", "protected function validate()\n {\n }", "function validateFileDimensions(&$model, $fieldData, $fieldName, $dimensions) {\n if (empty($fieldData[$fieldName]['tmp_name'])) return true;\n \n if (!empty($dimensions)) {\n $info = array();\n \n if (list($info['w'], $info['h'], $info['t']) = getimagesize($fieldData[$fieldName]['tmp_name'])) {\n $tmpGeometry = $dimensions;\n $tmpGeometry = str_replace('<', '', $tmpGeometry);\n $tmpGeometry = str_replace('>', '', $tmpGeometry);\n \n list($geometry['w'], $geometry['h']) = explode('x', $tmpGeometry);\n \n foreach ($geometry as $k => $v) {\n $geometry[$k] = str_replace('*', '', $geometry[$k]);\n if ($geometry[$k] == '') unset($geometry[$k]);\n }\n \n $geometry['gtlt'] = 'equal';\n \n if (strpos($dimensions, '>') > 0) {\n $geometry['gtlt'] = 'greater';\n } elseif (strpos($dimensions, '<') > 0) {\n $geometry['gtlt'] = 'less';\n }\n \n if (!empty($geometry['w']) && !assetCheckDimensions($info['w'], $geometry['w'], $geometry['gtlt'])) return false;\n if (!empty($geometry['h']) && !assetCheckDimensions($info['h'], $geometry['h'], $geometry['gtlt'])) return false;\n } else {\n return false;\n }\n }\n \n return true;\n }", "public function validate()\n {\n $quote = $this->getQuote();\n if ($quote->getIsMultiShipping()) {\n Mage::throwException($this->_helper->__('Invalid checkout type.'));\n }\n\n if ($quote->getCheckoutMethod() == self::METHOD_GUEST && !$quote->isAllowedGuestCheckout()) {\n Mage::throwException(\n $this->_helper\n ->__('Sorry, guest checkout is not enabled. Please try again or contact store owner.')\n );\n }\n }", "public function hasSizes() {\n if (!empty($this->cropBox['width'])) {\n return TRUE;\n }\n\n if (!empty($this->cropBox['height'])) {\n return TRUE;\n }\n\n return FALSE;\n }", "abstract public function validate();", "abstract public function validate();", "public function testInvalidRegion()\n {\n $error = '';\n try {\n $this->mockEndpoint('Invalid Region supplied');\n $test = new Product(\n 'ACCESS_KEY',\n 'SECRET_KEY',\n 1\n );\n $test->addData(['SKU' => 'test123']);\n $test->send();\n } catch (Exception $e) {\n $error = $e->getMessage();\n }\n\n $this->assertEquals(\n 'Invalid Region supplied',\n $error\n );\n }", "abstract public function validateData();", "public function validate()\n {\n if ($this->taxableAmount === null) {\n throw new InvalidArgumentException('Missing taxable amount');\n }\n if ($this->taxAmount === null) {\n throw new InvalidArgumentException('Missing tax amount');\n }\n if ($this->taxCategory === null) {\n throw new InvalidArgumentException('Missing tax category');\n }\n }", "public function isValid()\n {\n $docType = get_class($this->source);\n if (isset($this->options['required'][$docType])) {\n $this->validateTags($docType);\n } else if (isset($this->options['required']['__ALL__'])) {\n $this->validateTags('__ALL__');\n }\n }", "public function validate() {\n\n if (empty($this->config['default_pool_read'])) {\n throw new neoform\\config\\exception('\"default_pool_read\" must be set');\n }\n\n if (empty($this->config['default_pool_write'])) {\n throw new neoform\\config\\exception('\"default_pool_write\" must be set');\n }\n\n if (empty($this->config['pools']) || ! is_array($this->config['pools']) || ! $this->config['pools']) {\n throw new neoform\\config\\exception('\"pools\" must contain at least one server');\n }\n }", "function __checkImgParams() {\n\t\t/* check file type */\n\t\t$this->__checkType($this->request->data['Upload']['file']['type']);\n\t\t\n\t\n\t\t\n\t\t/* check file size */\n\t\t$this->__checkSize($this->request->data['Upload']['file']['size']);\n\t\t\n\t\t\n\t\t\n\t\t/* check image dimensions */\n\t\t$this->__checkDimensions($this->request->data['Upload']['file']['tmp_name']);\n\t\t\n\t\t\t\n\t}", "public function validate(){\n\t\tif($this->address instanceof AddressObject){\n\t\t\t$this->validate1();\n\t\t}else{\n\t\t\t$this->exception = new InvalidParameterException('Address',\"Address Object\");\n\t\t}\n\t\treturn $this->exception;\n\t}", "public function filesizeValid()\n\t{\n\t\tif ($this->files['size'] > $this->max_filesize) {\n\t\t\tthrow new Exception(\"File is too big\",7);\n\t\t}\n\n\t\t//Check that the file is not too less\n\t\tif ($this->files['size'] < $this->min_filesize) {\n\t\t throw new Exception(\"File is too less than\",8);\n\t\t}\n\t\n\t}", "public function formatSizeDataProvider() {}", "public function validate_fields() {\n\n\t\t$this->validate_refund_address_field();\n\t}", "protected function validate() {\n if ($valid = isset($this->options['store_key']) && isset($this->options['store_secret']) && isset($this->options['store_container'])) {\n $valid = FALSE;\n print_msg(sprintf('Validating Azure connection using --store_key %s, --store_container %s', $this->options['store_key'], $this->options['store_container']), isset($this->options['verbose']), __FILE__, __LINE__); \n $curl = ch_curl($this->getUrl(NULL, array('restype' => 'container')), 'HEAD', $this->getHeaders(), NULL, NULL, '200,404');\n if ($curl === 200) {\n $valid = TRUE;\n print_msg(sprintf('Azure authentication and bucket validation successful'), isset($this->options['verbose']), __FILE__, __LINE__);\n }\n else if ($curl === 404) print_msg(sprintf('Azure authentication successful but bucket %s does not exist', $this->options['store_container']), isset($this->options['verbose']), __FILE__, __LINE__, TRUE);\n else print_msg(sprintf('Azure authentication failed'), isset($this->options['verbose']), __FILE__, __LINE__, TRUE);\n }\n else print_msg(sprintf('--store_key, --store_secret and --store_container are required'), isset($this->options['verbose']), isset($this->options['verbose']), __FILE__, __LINE__, TRUE);\n\n return $valid;\n }", "public function validate()\n {\n if ($this->amount <= 0) {\n $this->errors[0] = 'Wpisz poprawną kwotę!';\n }\n \n if (!isset($this->payment)) {\n $this->errors[1] = 'Wybierz sposób płatności!';\n }\n \n if (!isset($this->category)) {\n $this->errors[2] = 'Wybierz kategorię!';\n }\n }", "public function validate() {\n }", "public function validate() {\n }", "private function validateLicenseData()\n {\n\n // error_log('LicenseEmail : '.print_r($this->getLicenseEmail(), 1));\n // error_log('LicenseProduct : '.print_r($this->getLicenseProduct(), 1));\n // error_log('LicenseSecretKey : '.print_r($this->getLicenseSecretKey(), 1));\n }", "public function validate();", "public function validate();", "public function validate();", "public function validate();", "public function validate();", "public function validate();", "public function validate();", "public function validate();", "public function validate();", "public function validate();", "public function validate();", "public function validate();", "private function setRegion()\n {\n if ( ! isset( $this->data['country'] ) ) {\n return;\n }\n \n if ( ! isset( $_POST['region'] ) ) {\n $this->data['error']['region'] = \"Please provide your province or state.\";\n $this->error = true;\n return;\n }\n \n $r = trim( $_POST['region'] );\n \n if ( $this->data['country'] == 'CA' ) {\n $regions = $this->regions->get('provinces');\n if ( ! array_key_exists($r, $regions ) ) {\n $this->data['error']['region'] = \"Please select your province.\";\n $this->error = true;\n return;\n }\n }\n elseif ( $this->data['country'] == 'US' ) {\n $regions = $this->regions->get('states');\n if ( ! array_key_exists($r, $regions ) ) {\n $this->data['error']['region'] = \"Please select your state.\";\n $this->error = true;\n return;\n }\n }\n \n $this->data['region'] = $r;\n }", "public function validate()\n\t{\n\t\t$this->errors = [];\n\n\t\t$this->validateConfig();\n\n\t\t// there is no point to continue if config is not valid against the schema\n\t\tif($this->isValid()) {\n\t\t\t$this->validateRepetitions();\n\t\t\t$this->validateMode();\n\t\t\t$this->validateClasses();\n\t\t\t$this->validateTestData();\n\t\t}\n\t}", "function getAllInstitutionsValidate(){\n\t\tif($this->country != \"\"){\n\t\t\t\n\t\t\t$this->basics->getAllInstitutions();\n\t\t\t\n\t\t}\n\t}", "public function validDimensions() {\n\t\tlist($width, $height) = getimagesize($this->file['tmp_name']);\n\t\n\t\tif($height <= $this->max_height && $width <= $this->max_width) {\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\t\t\t\t\t\n\t}", "function validSize($size)\n {\n return $size > 1;\n }", "public function assertValidImageRegion($region) {\n $regionObj = $this->getRegion($region);\n $elements = $regionObj->findAll('css', 'img');\n if (empty($elements)) {\n throw new \\Exception(sprintf('No image was not found in the \"%s\" region on the page %s', $region, $this->getSession()->getCurrentUrl()));\n }\n\n if ($src = $elements[0]->getAttribute('src')) {\n $params = array('http' => array('method' => 'HEAD'));\n $context = stream_context_create($params);\n $fp = @fopen($src, 'rb', FALSE, $context);\n if (!$fp) {\n throw new \\Exception(sprintf('Unable to download <img src=\"%s\"> in the \"%s\" region on the page %s', $src, $region, $this->getSession()->getCurrentUrl()));\n }\n\n $meta = stream_get_meta_data($fp);\n fclose($fp);\n if ($meta === FALSE) {\n throw new \\Exception(sprintf('Error reading from <img src=\"%s\"> in the \"%s\" region on the page %s', $src, $region, $this->getSession()->getCurrentUrl()));\n }\n\n $wrapper_data = $meta['wrapper_data'];\n $found = FALSE;\n if (is_array($wrapper_data)) {\n foreach ($wrapper_data as $header) {\n if (substr(strtolower($header), 0, 19) == 'content-type: image') {\n $found = TRUE;\n }\n }\n }\n\n if (!$found) {\n throw new \\Exception(sprintf('Not a valid image <img src=\"%s\"> in the \"%s\" region on the page %s', $src, $region, $this->getSession()->getCurrentUrl()));\n }\n }\n else {\n throw new \\Exception(sprintf('No image had no src=\"...\" attribute in the \"%s\" region on the page %s', $region, $this->getSession()->getCurrentUrl()));\n }\n }", "private function checkSize()\n {\n $allowedSize = intval($this->getSetting('allowed_upload_size', true));\n if ($allowedSize) {\n if ($this->file->getSize() > $allowedSize) {\n throw new FileException(\"File cannot be bigger than $allowedSize bytes\");\n }\n }\n }", "public function validate()\n {\n // TODO implement this\n }", "protected function isValidConfiguration(/**\n * Checks to perform:\n * - width and/or height given, integer values?\n */\narray $configuration) {}", "public function differentSizesDataProvider() {}", "public function validate()\n {\n }", "public function validate()\n {\n }", "public function valid()\n {\n\n if ($this->container['height'] === null) {\n return false;\n }\n if ($this->container['width'] === null) {\n return false;\n }\n if ($this->container['bits_per_pixel'] === null) {\n return false;\n }\n if ($this->container['horizontal_resolution'] === null) {\n return false;\n }\n if ($this->container['vertical_resolution'] === null) {\n return false;\n }\n if ($this->container['is_cached'] === null) {\n return false;\n }\n return true;\n }", "protected function validate() {\r\n if ($this->getBaseAmount() <= 0)\r\n $this->errors->add(\"The base amount of alicuota must be greater than 0.\");\r\n// \t\t\telse\r\n// \t\t\t{\r\n// \t\t\t\t$relativeError = (($this->getTaxAmount() / $this->getBaseAmount() * 100) - $this->getTaxPercent());\r\n// \t\t\t\t$relativeError = $relativeError / $this->getTaxPercent();\r\n// \t\t\t\t$relativeError = NumberDataTypeHelper::truncate($relativeError, 2);\r\n// \t\t\t\tif (abs($relativeError) > 0.01)\r\n// \t\t\t\t\t$this->errors->add(\"The base and tax amount do not match with the alicuota ({$this->getName()}). Diference: $relativeError\");\r\n// \t\t\t}\r\n }", "abstract public function calculateCropBoxSize();", "function __checkDimensions($filePath) {\n\t\t$size = getimagesize($filePath);\n\t\t\t\t\n\t\tif(!$size) {\n\t\t\t$this->Session->setFlash('We could not check that image\\'s size, so we can\\'t upload it.');\n\t\t\t$this->redirect(Controller::referer('/'));\n\t\t}\n\n\t\tif($size[0] > 800 || $size[1] > 800) {\n\t\t\t$this->Session->setFlash('Images cannot be any larger than 800 by 800 pixels.');\n\t\t\t$this->redirect(Controller::referer('/'));\n\t\t}\n\t\t\n\t}", "public function valid()\n {\n\n if ($this->container['salutation'] === null) {\n return false;\n }\n $allowedValues = $this->getSalutationAllowableValues();\n if (!in_array($this->container['salutation'], $allowedValues)) {\n return false;\n }\n if ($this->container['givenName'] === null) {\n return false;\n }\n if ($this->container['familyName'] === null) {\n return false;\n }\n if ($this->container['email'] === null) {\n return false;\n }\n if ($this->container['phoneNumber'] === null) {\n return false;\n }\n if (!preg_match(\"/[0-9 \\/-]/\", $this->container['phoneNumber'])) {\n return false;\n }\n if (!preg_match(\"/[0-9 \\/-]/\", $this->container['phoneNumber2'])) {\n return false;\n }\n if ($this->container['zip'] === null) {\n return false;\n }\n if (strlen($this->container['zip']) > 5) {\n return false;\n }\n if (strlen($this->container['zip']) < 4) {\n return false;\n }\n if (!preg_match(\"/[0-9]{4,5}/\", $this->container['zip'])) {\n return false;\n }\n if ($this->container['city'] === null) {\n return false;\n }\n if ($this->container['liftType'] === null) {\n return false;\n }\n $allowedValues = $this->getLiftTypeAllowableValues();\n if (!in_array($this->container['liftType'], $allowedValues)) {\n return false;\n }\n if ($this->container['mountingLocation'] === null) {\n return false;\n }\n $allowedValues = $this->getMountingLocationAllowableValues();\n if (!in_array($this->container['mountingLocation'], $allowedValues)) {\n return false;\n }\n if ($this->container['obstacle'] === null) {\n return false;\n }\n $allowedValues = $this->getObstacleAllowableValues();\n if (!in_array($this->container['obstacle'], $allowedValues)) {\n return false;\n }\n if ($this->container['floor'] === null) {\n return false;\n }\n $allowedValues = $this->getFloorAllowableValues();\n if (!in_array($this->container['floor'], $allowedValues)) {\n return false;\n }\n if ($this->container['livingSituation'] === null) {\n return false;\n }\n $allowedValues = $this->getLivingSituationAllowableValues();\n if (!in_array($this->container['livingSituation'], $allowedValues)) {\n return false;\n }\n if ($this->container['careLevelState'] === null) {\n return false;\n }\n $allowedValues = $this->getCareLevelStateAllowableValues();\n if (!in_array($this->container['careLevelState'], $allowedValues)) {\n return false;\n }\n if ($this->container['carePersonWeight'] === null) {\n return false;\n }\n $allowedValues = $this->getCarePersonWeightAllowableValues();\n if (!in_array($this->container['carePersonWeight'], $allowedValues)) {\n return false;\n }\n if ($this->container['targetPerson'] === null) {\n return false;\n }\n $allowedValues = $this->getTargetPersonAllowableValues();\n if (!in_array($this->container['targetPerson'], $allowedValues)) {\n return false;\n }\n if ($this->container['pageUrl'] === null) {\n return false;\n }\n return true;\n }", "public static function validateDimensions($element, FormStateInterface $form_state) {\n $values = $form_state->getValue($element['#parents']);\n\n if (!($values['width'] || $values['height'])) {\n $form_state\n ->setError($element['width'], t('Width or height must be set.'))\n ->setError($element['height'], t('Width or height must be set.'));\n }\n }", "public function valid()\n {\n\n if ($this->container['warehouse_id'] === null) {\n return false;\n }\n if ($this->container['lob_id'] === null) {\n return false;\n }\n if ($this->container['sku'] === null) {\n return false;\n }\n if ($this->container['location_id'] === null) {\n return false;\n }\n if ($this->container['quantity'] === null) {\n return false;\n }\n if ($this->container['weight_per_wrap'] === null) {\n return false;\n }\n return true;\n }", "public function ajax_check_banner_image_size() {\n \n $path = $_FILES['banner_image']['name'];\n $ext = pathinfo($path, PATHINFO_EXTENSION); \n \n $allowTypes = array('jpg','jpeg','gif','png');\n if(in_array(strtolower($ext),$allowTypes)){\n list($w, $h) = getimagesize($_FILES[\"banner_image\"][\"tmp_name\"]);\n if ($w == 1346 && $h == 660) echo 'Success'; else echo 'Error';\n } else {\n echo 'File_Ext_Err';\n }\n }", "protected function checkThumbSizeSettings()\n {\n\n if ($this->gc_size_albumlisting == \"\")\n {\n $this->gc_size_albumlisting = serialize(array(\"110\", \"110\", \"crop\"));\n }\n if ($this->gc_size_detailview == \"\")\n {\n $this->gc_size_detailview = serialize(array(\"110\", \"110\", \"crop\"));\n }\n }", "public function validateBillingAgreement($requestParameters = array());", "public function isValid(): bool {\n\t\treturn $this->getGlobeObj()->coordinatesAreValid( $this->lat, $this->lon );\n\t}", "protected function validate_data_fields(){\n\t\tif(empty($this->RESPONSE)){throw new Exception(\"Response field not found\", 5);}\n\t\t\n\t\t// The remote IP address is also required\n\t\tif($this->validate_ip($this->REMOTE_ADDRESS)){throw new Exception(\"Renote IP address not set correctly\", 6);}\n\t}", "public abstract function validation();", "public function isValid( $size, $ext=null ){ return $this->isValidType($ext) && $this->isValidSize($size); }", "public function testSizeServiceWithConfiguration()\n {\n $size = self::createContainer(array('environment' => 'test'))->get('ivory_google_map.size');\n\n $this->assertEquals($size->getWidth(), 100.1);\n $this->assertEquals($size->getHeight(), 200.2);\n\n $this->assertEquals($size->getWidthUnit(), 'px');\n $this->assertEquals($size->getHeightUnit(), 'pt');\n }", "public function validate($configData);", "public function validate()\n {\n if (empty($this->schemeID)) {\n ISO6523ICD::verify($this->schemeID);\n }\n\n if ($this->address === null) {\n throw new \\InvalidArgumentException(\"Element 'cac:Address' MUST be provided\");\n }\n }", "private function validate() {\n $this->valid = (1 === count($this->marriages));\n }", "public function rules()\n {\n return [\n 'name' => 'required|string|min:1',\n 'region_id' => 'required|exists:App\\Entities\\References\\Region,id',\n ];\n }", "public function validSize() {\n\t\tif($this->file['size'] <= $this->max_bytes) {\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}", "public function is_valid()\n {\n }", "public function is_valid()\n {\n }", "public function size_validation($size,$req_size){\t\n\t\tif($size > $req_size){\n\t\t\treturn true;\n\t\t}\t\n\t}", "public function size_validation($size,$req_size){\t\n\t\tif($size > $req_size){\n\t\t\treturn true;\n\t\t}\t\n\t}", "function check_size() {\r\n\t\t$product_id = $this->uri->rsegment('3');\r\n\t\t$product_id = intval($product_id);\r\n\t\t$size = $this->input->post('num_size');\r\n\t\t$where = array('size' => $size, 'product_id' => $product_id);\r\n\t\tif($this->product_detail_model->check_exists($where)) {\r\n\t\t\t$this->form_validation->set_message(__FUNCTION__, '* Size vừa nhập đã tồn tại');\r\n\t\t\treturn false;\r\n\t\t}\r\n\t\treturn true;\r\n\t}", "public static function post_image_validation($type,$size){\n\t\t\t$check_type = Posts_image::get_image_type($type);\n\t\t\t$check_size = $size;\n\t\t\t$check_ext = Posts_image::get_image_ext($type);\n\t\t\t\n\t\t\tif($check_type !== \"image\"){\n\t\t\t\tself::$_errors['imagetype'] = \"Your file must be image.\";\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t\n\t\t\tif($check_ext !== \".jpg\" && $check_ext !== \".png\" && $check_ext !== \".gif\"){\n\t\t\t\tself::$_errors['imageext'] = \"Only <b>JPG, PNG and GIF</b> format are allowed.\";\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t\n\t\t\tif($check_size > 4000000){\n\t\t\t\tself::$_errors['imagesize'] = \"Image can't be larger then 4MB.\";\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t\n\t\t\tif(empty(self::$_errors)){return true;}else{return false;}\n\t\t\t\n\t\t}", "public function valid() {}", "public function valid() {}", "public function valid() {}", "public function valid() {}", "public function valid() {}", "public function valid() {}", "public function valid() {}", "public function valid() {}", "public function validProvider()\n {\n return array(\n // always valid all ones\n array('11111111111111111', true),\n // valid X check digit\n array('1M8GDM9AXKP042788', true),\n // typical valid vin\n array('5GZCZ43D13S812715', true),\n // invalid char in model year\n array('5GZCZ43D1US812715', false),\n // uses invalid I, O, Q\n array('IGZOZ43Q13S812715', false)\n );\n }", "private function checkValid()\n\t{\n\t\tif(!$this->isValid()) {\n\t\t\tthrow new \\RuntimeException(\"TypeStruct Error: '\".get_called_class().\"' not validated to perform further operations\");\t\n\t\t}\n\t}", "private function validatePaymentFields(){\n }", "public function valid()\n {\n if (!parent::valid()) {\n return false;\n }\n\n $allowedValues = $this->getRelativeHorizontalPositionAllowableValues();\n if (!in_array($this->container['relative_horizontal_position'], $allowedValues)) {\n return false;\n }\n\n $allowedValues = $this->getRelativeVerticalPositionAllowableValues();\n if (!in_array($this->container['relative_vertical_position'], $allowedValues)) {\n return false;\n }\n\n $allowedValues = $this->getWrapTypeAllowableValues();\n if (!in_array($this->container['wrap_type'], $allowedValues)) {\n return false;\n }\n\n\n return true;\n }", "protected function checkStructure()\n {\n $structure = $this->getStructure();\n\n foreach ($structure as $field => $opt) {\n if (!array_key_exists($field, $this->data)) {\n continue;\n }\n\n $value = Arr::get($this->data, $field);\n if (is_array($value)) {\n $this->errors[$field][] = Translate::get('validate_wrong_type_data');\n continue;\n }\n\n $value = trim($value);\n $length = (int)$opt->length;\n\n if (!empty($length)) {\n $len = mb_strlen($value);\n if ($len > $length) {\n $this->errors[$field][] = Translate::getSprintf('validate_max_length', $length);\n continue;\n }\n }\n\n if (!$opt->autoIncrement && $opt->default === NULL && !$opt->allowNull && $this->isEmpty($value)) {\n $this->errors[$field][] = Translate::get('validate_not_empty');\n continue;\n }\n\n switch ($opt->dataType) {\n case 'int':\n case 'bigint':\n if (!$this->isEmpty($value) && (filter_var($value, FILTER_VALIDATE_INT) === false)) {\n $this->errors[$field][] = Translate::get('validate_int');\n continue 2;\n }\n break;\n\n case 'double':\n if (!is_float($value) && !$this->isEmpty($value)) {\n $this->errors[$field][] = Translate::get('validate_double');\n continue 2;\n }\n break;\n\n case 'float':\n if (!is_numeric($value) && !$this->isEmpty($value)) {\n $this->errors[$field][] = Translate::get('validate_float');\n continue 2;\n }\n break;\n\n case 'date':\n case 'datetime':\n case 'timestamp':\n if (!$this->isEmpty($value) && !Validate::dateSql($value)) {\n $this->errors[$field][] = Translate::get('validate_sql_date');\n continue 2;\n }\n break;\n\n default:\n continue 2;\n break;\n\n }\n }\n }", "public function valid()\n {\n if ($this->container['name'] === null) {\n return false;\n }\n if (strlen($this->container['name']) > 50) {\n return false;\n }\n if ($this->container['location_id'] === null) {\n return false;\n }\n if ($this->container['business_unit_id'] === null) {\n return false;\n }\n return true;\n }", "public function validate(): void\n {\n }", "public function validate(): void\n {\n }" ]
[ "0.6237249", "0.6020606", "0.5937368", "0.58531606", "0.5779245", "0.56240654", "0.5615938", "0.5496873", "0.54818183", "0.5407805", "0.53663135", "0.53590274", "0.53555", "0.53158534", "0.53125143", "0.53083193", "0.52982783", "0.52719414", "0.52719414", "0.52690953", "0.52084506", "0.5204689", "0.5204041", "0.51644284", "0.51592684", "0.5158033", "0.5157809", "0.5137919", "0.5137045", "0.5125188", "0.51083803", "0.50912315", "0.50912315", "0.5081531", "0.5077519", "0.5077519", "0.5077519", "0.5077519", "0.5077519", "0.5077519", "0.5077519", "0.5077519", "0.5077519", "0.5077519", "0.5077519", "0.5077519", "0.507525", "0.5069458", "0.5067831", "0.5058846", "0.50423384", "0.50416404", "0.50279", "0.50222796", "0.50154614", "0.50104225", "0.49975634", "0.49975634", "0.49883482", "0.49863455", "0.4970393", "0.49628824", "0.49616513", "0.49547127", "0.49544984", "0.4953101", "0.49512583", "0.4949731", "0.49486127", "0.49475396", "0.4946503", "0.4940389", "0.49385685", "0.49352708", "0.49262393", "0.4924654", "0.49243104", "0.49237043", "0.4922278", "0.49219498", "0.4915169", "0.4915169", "0.49079016", "0.4906089", "0.4896596", "0.4896596", "0.4896596", "0.4896596", "0.4896596", "0.4896596", "0.4896596", "0.4896596", "0.48963255", "0.48898742", "0.48886257", "0.48871952", "0.48839238", "0.48807347", "0.48749298", "0.48749298" ]
0.6622462
0
set the response resource
public function setResource($notification) { return new NotificationResource($notification); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function setResponse() {\n }", "public function setResponse(Response $response) {}", "public function setResponse( $response ){\n \n $this->response = $response;\n \n }", "public function setResource($resource);", "public function setResponse($response)\n\t{\n\t\t$this->response = $response;\n\t}", "abstract protected function setResource(): String;", "private function setResource()\n {\n $path = $_SERVER['PATH_INFO'];\n $params = explode('/', $path);\n $this->_requestResource = $params[2];\n if (!in_array($this->_requestResource, $this->_allowResource)) {\n throw new Exception(\"Request resource not allowed!\", 405);\n }\n\n $this->_version = $params[1];\n\n if (!$this->notValid($params[3])) {\n $this->_requestUri = $params[3];\n }\n }", "public function setResponse(Response $response): void;", "protected abstract function sendResource(Response $response);", "public function setResource($resource) {\n\n $this->resource = $resource;\n }", "public function setResponse(Response $response)\n {\n $this->_response = $response;\n }", "public function setResponse(namespace\\Response $response)\n {\n $this->response = $response;\n }", "public function setResource(Resource $res)\n {\n $this->setResourceId($res->getResourceId());\n $this->setResourceClass($res->getResourceClass());\n }", "public function setResponse(Response $response)\n\t{\n\t\t$this->_output = $output = new Output;\n\t\t$response->setBodyGenerator(function() use($output)\n\t\t{\n\t\t\t$output->sendBody();\n\t\t});\n\t}", "public function setResponse(Response $response) {\n $this->response = $response;\n }", "public function setToResource()\n {\n $this->type = \"resource\";\n }", "public function setResponseObject($obj)\n {\n $this->responseObject = $obj;\n }", "public function setResponseObject($obj)\n {\n $this->responseObject = $obj;\n }", "public function setResponseObject($obj)\n {\n $this->responseObject = $obj;\n }", "public function setResponse(ResponseInterface $request);", "public function setResponse(Response $response)\n {\n $this->response = $response;\n }", "public function setResponse(Response $response)\n {\n $this->response = $response;\n }", "public function handleResourceRequest(ResourceTypeInterface $resourceType, HttpResponseInterface $response = null) /* : HttpResponse */ { \n\n \t $this->response = is_null($response) ? new HttpResponse() : $response;\n \t // $this->response = $response ?? new HttpResponse();\n\n /**\n * We re-validate. \n */\n if (!$this->validateResourceRequest($resourceType, $response)) {\n return;\n }\n \n $this->resourceType = $resourceType;\n\n /* TO DO\n \n Build the ResponseType\n \n Get response type parameters from the requested resource type\n \n $responseType = $this->responseTypes[$this->response_type]->getResponseTypeParameters($this->resourceType);\n\n list($parameter1, $parameter2) = $responseType;\n\n Control parameters (headers, content-type, etc...)\n \n Pass the pararmeters to HttpResponse object\n \n */\n\n\n /**\n * Cache controller factory. \n * TempFile or No Cache\n */\n\t $this->cacheController = CacheFactory::factory(\n\t\t\t\t\t $this->config['cache_info']['cache_type'], \n\t\t\t\t\t $this->route, // Use to build the key of the request\n\t\t\t\t\t $this->config['cache_info']\n\t\t\t\t\t );\n\n\t\t\t\t// try retrieving $resourceData from cache\n\t\t\t\t\n\n\t\t\t\tif ( !$resourceData = $this->cacheController->get() ) {\n\t\t\t\t\t\n\t\t\t\t // $data is not found in cache, get it from the database\n\t\t\t\t $resourceData = $this->resourceType->{'_'.$this->route['verb']}($this->route);\n //echo \"From database\\n\";\t\t\n \n // Remove the previous cached file\n $this->cacheController->clear();\n \n\t\t\t\t // Store $resourceData in cache so that it can be retrieved next time (within $this->config['cache_timeout'] seconds)\n\t\t\t\t $this->cacheController->set($resourceData);\n\t\t\t\t}\n \n\t\t\t\t// $resourceData is now available here\n\n /**\n * Build the response\n *\n *\n */ \n \n $response->setStatusCode(200);\n \n //$response->addParameters(array(\"c'est\" => \"super\"));\n //$response->addParameters(array(\"ça\" => \"marche\"));\n\n $response->addParameters( $resourceData );\n \n $response->addHttpHeaders(array(\n 'Cache-Control' => 'no-store',\n 'Pragma' => 'no-cache',\n 'Content-Type' => 'application/json',\n 'Content-Length', strlen(json_encode($resourceData, JSON_UNESCAPED_UNICODE))\n ));\n \n /**\n * Send back the response\n *\n *\n */ \n \n return $response;\n\n\t\t}", "public function setResponse(Response $response) {\n $this->_response = $response;\n $this->_isHandled = true;\n }", "public function setResponse($response)\r\n {\r\n $this->response = $response;\r\n\r\n return $this;\r\n }", "protected function _response() {}", "public function setResponse($response)\n {\n $this->_response = $response;\n return $this;\n }", "private function setResource()\n {\n try {\n $this->setContext();\n $this->resource = stream_socket_client(\n self::$host . \":\" . self::$port,\n $errno,\n $errstr,\n self::TIMEOUT,\n STREAM_CLIENT_CONNECT,\n $this->context\n );\n $this->serverInfo = stream_get_meta_data($this->resource);\n $this->SMTPResponses[\"initial\"] = fgets($this->resource, 4096);\n } catch (\\Exception $e) {\n $this->error = $e->getMessage();\n $this->errorNumber = $e->getCode();\n }\n $this->connected = is_resource($this->resource);\n }", "public function Response($response) {\n\t\t\n\t}", "#[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 setResponse(Response $response)\n {\n $this->response = $response;\n \n $this->stopPropagation();\n }", "public function setResponse($response)\n {\n $this->response = $response;\n return $this;\n }", "public function setHttpResponse($httpResponse);", "public function setResponse( Response $response )\n {\n $this->response = $response;\n \n # Return object to preserve method-chaining:\n return $this;\n }", "public function setResponse(Response $response)\n\t{\n\t\t$this->response = $response;\n\t\treturn $this;\n\t}", "public function setResponse(Response $response)\n\t{\n\t\t$this->response = $response;\n\t\treturn $this;\n\t}", "public function setResource( $uri ) {\n\t\tif ( self::validateResource($uri) ) {\n\t\t\t$this->resource = TRUE;\n\t\t\t$this->setParameter( \"info\", htmlentities( $uri ) );\n\t\t}\n\t}", "public function setResponse($data)\n {\n $this->data = $data;\n return $this;\n }", "protected function setResponse(Response $value)\n {\n $this->response = $value;\n }", "public function __construct()\n {\n $this->response = new Response();\n }", "public function setHeaders() {\r\n\t\t$this->resource->setHeaders();\r\n\t}", "public function set_response($response) : self\n {\n if (!isset($this->reponse)) {\n $this->response = $response;\n }\n return $this;\n }", "public function setResponse($response)\n {\n $this->response = $response;\n\n return $this;\n }", "public function setResponse($response)\n {\n $this->response = $response;\n\n return $this;\n }", "public function setResponseCode($code) {}", "abstract protected function initResource();", "public function setJsonResponse()\n {\n $this->view->disable();\n\n $this->_isJsonResponse = true;\n $this->response->setContentType('application/json', 'UTF-8');\n }", "public function init()\n {\n $this->getResponse()->setHeader('Content-Type', 'application/json');\n $this->getResponse()->setHeader('Access-Control-Allow-Origin', '*');\n $this->getResponse()->setHeader('Access-Control-Expose-Headers', 'Link');\n }", "function response($code){\n $this->response_code = $code;\n }", "private function resetReponse()\n {\n $this->app->singleton(\"response\", function () {\n return new Response();\n });\n }", "public function setHttpResponse(ResponseInterface $response)\n {\n // assign the http response instance itself.\n $this->responseInstance = $response;\n\n // assign the http response status code.\n $this->responseStatusCode = $response->getStatusCode();\n\n // assign the http response status message.\n $this->responseStatusMessage = $response->getReasonPhrase();\n\n // assign the http response headers.\n $this->responseHeaders = collect($response->getHeaders());\n\n // assign the parsed http response body.\n $this->responseBody = $this->decodeResponseBody($response->getBody());\n\n }", "public function setResponseCode($code);", "public function setResponse(array $response)\n {\n $this->response = $response;\n }", "public function setResponse(\\Pop\\Http\\Response $response)\n {\n $this->response = $response;\n return $this;\n }", "public function get_response_object()\n {\n }", "public function setResource(string $resource): self\n {\n $this->resource = $resource;\n\n return $this;\n }", "public function setResource($resource)\n {\n $this->resource = $resource;\n\n return $this;\n }", "public function set ($var, $val = null) {\n $this->response->set($var, $val);\n return $this;\n }", "public function rest_api_init( $response ) {\n\t\tparent::rest_api_init( $response );\n\n\t\t// Get domain for requested site.\n\t\t$this->domain = ( new Status() )->get_site_suffix();\n\n\t\treturn $response;\n\t}", "public function setResponseStatus($status) {}", "private function setResponse($response)\n {\n if (!is_array($response) && !is_object($response)) {\n\n $this->response = json_decode((string) $response, true);\n }\n }", "function hook_restapi_response($path, ResourceConfiguration $resource, JsonRequest $request, ResponseInterface $response) {\n\n // Set a friendly message in outgoing headers.\n return $response->withHeader('X-Daily-Message', t('Have a great day!'));\n}", "public function setResource($resource)\n {\n if($this->getWorker($resource) === $this->getWorker($this->resource))\n {\n $this->resource = $resource;\n }\n\n $this->tmpImage[] = $tmpImage = tempnam(sys_get_temp_dir(), 'picture');\n\n if($this->getWorker($resource) === $this::WORKER_GD)\n {\n imagepng($resource, $tmpImage, 0);\n }\n else\n {\n $resource->writeImage($tmpImage);\n }\n\n if($this->isGd())\n {\n $this->resource = $this->getGdResource($tmpImage);\n }\n else\n {\n $this->resource = $this->createImagick($tmpImage);\n }\n }", "private function setResponseObject($aResponse)\n {\n $this->aRepsonse = (array)$aResponse;\n }", "abstract public function responseProvider();", "protected function construct_response()\n {\n $this->feedback['ok'] = $this->ok;\n $this->feedback['code'] = $this->code;\n $this->feedback['resource'] = $this->resource;\n }", "protected function setUp() {\n $this->response = new Response();\n }", "public function Response($response);", "public static function setResponse(ResponseInterface $response)\n {\n $coroutineId = self::getCoroutineId();\n self::$context[$coroutineId][self::RESPONSE_KEY] = $response;\n }", "private function setResponse($key, $value)\n {\n $this->response[$key] = $value;\n }", "public function __construct()\n {\n parent::__construct();\n $this->response->type('application/json; charset=UTF-8');\n }", "protected function _setUpJsonResponse() {\n\t\t$this->autoRender = false;\n\t\t$this->layout = 'ajax';\n\t\t$this->RequestHandler->respondAs('json');\n\t}", "public function setResponse(Zend_Controller_Response_Abstract $response = null)\n {\n $this->_response = $response;\n return $this;\n }", "function setResponseCode($code) {\n $this->responseCode = $code;\n }", "private function response() {\n if ($this->responseStatus !== 200) {\n $this->request['format'] = self::DEFAULT_RESPONSE_FORMAT;\n }\n $method = $this->request['format'] . 'Response';\n $this->response = array('status' => $this->responseStatus, 'body' => $this->$method());\n return $this;\n }", "private function processOptions()\r\n {\r\n $this->response = new Response(null, 200);\r\n }", "public function setResponseCode($responseCode);", "public function setResponse(ResponseInterface $response)\n {\n $this->response = $response;\n return $this;\n }", "public function setResource($type, $name, $object, ?\\SetaPDF_Core_Document $document = null) {}", "public function __construct($resource)\n {\n $this->resource = $resource;\n }", "public function __construct($resource)\n {\n $this->resource = $resource;\n }", "public function __construct($resource)\n {\n $this->resource = $resource;\n }", "public function __construct($resource)\n {\n $this->resource = $resource;\n }", "public function __construct($resource)\n {\n $this->resource = $resource;\n }", "public function setContent(string $content): ResponseInterface;", "private function assignDefaultResponses(): void\n {\n if ($this->operation->hasSuccessResponseCode()) {\n return;\n }\n\n if (strtolower($this->route->getAction()) == 'delete') {\n $this->operation->pushResponse(\n (new Response())\n ->setCode('204')\n ->setDescription('Resource deleted')\n );\n\n return;\n }\n\n $response = (new Response())->setCode('200');\n\n if (in_array($this->operation->getHttpMethod(), ['OPTIONS','HEAD'])) {\n $this->operation->pushResponse($response);\n\n return;\n }\n\n foreach ($this->config->getResponseContentTypes() as $mimeType) {\n $schema = (new Schema())->setDescription('');\n\n if ($mimeType == 'application/xml') {\n $schema->setXml((new Xml())->setName('response'));\n }\n\n $response->pushContent(\n (new Content())->setMimeType($mimeType)->setSchema($schema)\n );\n }\n\n $this->operation->pushResponse($response);\n }", "private function setResult($res) {\n\t\t$this->result = $res;\n\t\t$this->statusCode = $this->result['FbiMsgsRs']['@attributes']['statusCode'];\n\t\t//$this->statusMsg = $this->result['FbiMsgsRs']['@attributes']['statusMessage'];\n\t}", "public function setResponse($target,$responsetype,$data) {\n\n\n switch($responsetype) {\n\n case SabreAMF_Const::R_RESULT :\n $target = $target.='/onResult';\n break;\n case SabreAMF_Const::R_STATUS :\n $target = $target.='/onStatus';\n break;\n case SabreAMF_Const::R_DEBUG :\n $target = '/onDebugEvents';\n break;\n }\n return $this->amfResponse->addBody(array('target'=>$target,'response'=>'','data'=>$data));\n\n }", "public function prepareResponse();", "public function set_response(\\Venus\\src\\Helium\\Entity\\question $response)\n\t{\n\t\t$this->response = $response;\n\t\treturn $this;\n\t}", "public function set_response($response_data)\n\t{\n\t\t$this->response = (is_array($response_data))\n\t\t\t? json_encode($response_data)\n\t\t\t: $response_data;\n\t}", "private function setResponse($widget, Response $response)\n {\n $this->responses['widget'][$widget->getId()] = $response;\n }", "public function set($id, Response $response)\n {\n $this->_engine->write($id, serialize($response));\n $this->_engine->write($id . '.etag', $response->getHeader('ETag'));\n $this->_engine->write($id . '.time', time());\n }", "public function setResource($value)\n {\n if (!is_string($value) || empty($value))\n throw new CException(Yii::t('EWebFeed', 'resource must be a non-empty string'));\n EWebFeed::validateURI($value);\n $this->resource = $value;\n }", "public function setResponse($log)\n {\n $this->log = $log;\n\n return $this;\n }", "public function rest_api_init( $response ) {\n\t\t$this->is_api_request = true;\n\n\t\treturn $response;\n\t}", "protected function setUp()\n\t{\n\t\t$this->object = new Response;\n\t}", "public function __construct($response)\n {\n $this->response = $response;\n }", "public function __construct($response)\n {\n $this->response = $response;\n }", "public function __construct($response)\n {\n $this->response = $response;\n }", "public function __construct($response)\n {\n $this->response = $response;\n }" ]
[ "0.7366341", "0.7241258", "0.6936779", "0.68586135", "0.6783314", "0.67789346", "0.67054677", "0.66625524", "0.66080683", "0.6583307", "0.6517648", "0.6466848", "0.64376146", "0.64329284", "0.6432387", "0.6419342", "0.64143044", "0.64143044", "0.64143044", "0.63834614", "0.6373517", "0.6373517", "0.6358157", "0.6264431", "0.6188778", "0.6186697", "0.6175737", "0.6167404", "0.6143422", "0.6142193", "0.61393046", "0.6100043", "0.6057744", "0.6048705", "0.6003691", "0.6003691", "0.5991483", "0.59831107", "0.5974338", "0.5972951", "0.59666556", "0.59209967", "0.59203994", "0.59203994", "0.5905333", "0.5890274", "0.5888151", "0.583271", "0.58237827", "0.5815396", "0.5815205", "0.5808457", "0.57970583", "0.5758706", "0.5744923", "0.57442254", "0.5720803", "0.57124925", "0.5699709", "0.56996405", "0.56909114", "0.5689313", "0.56670964", "0.5663755", "0.5661546", "0.5655541", "0.5646664", "0.56442153", "0.5634373", "0.5633093", "0.56296754", "0.56283057", "0.56070316", "0.5606594", "0.5601296", "0.55981094", "0.55966645", "0.5578545", "0.55697197", "0.55560464", "0.55560464", "0.55560464", "0.55560464", "0.55560464", "0.55549425", "0.55440855", "0.5536653", "0.5533091", "0.5520646", "0.55174917", "0.55159944", "0.55124557", "0.5505547", "0.5499226", "0.5498985", "0.54986286", "0.5489645", "0.5486458", "0.5486458", "0.5486458", "0.5486458" ]
0.0
-1
route us to the appropriate class method for this action
public function route($action) { switch($action) { case 'view': $id = $_GET['id']; $this->view($id); break; case 'index': $this->index(); break; case 'add': $this->add(); break; case 'addProcess': $this->addProcess(); break; case 'addLifeEventProcess': $id = $_GET['id']; $this->addLifeEventProcess($id); break; case 'deleteProcess': $id = $_GET['id']; $this->deleteProcess($id); break; case 'edit': $id = $_GET['id']; $this->edit($id); break; case 'editProcess': $id = $_GET['id']; $this->editProcess($id); break; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function route() {\n\t\t$action = $this->validateAction();\n\t\tif (method_exists($this, str_replace('-', '', $action))) {\n\t\t\t$this->$action();\n\t\t} else {\n\t\t\t$this->error($action);\n\t\t}\n\t}", "function callControllerAction() {\n $santitizedUrl = ''; \n if (!empty($_GET['route'])) {\n $santitizedUrl = trim($_GET['route']);\n }\n\n $route = $this->getMatchingRoute($santitizedUrl);\n if ($route != null) {\n $actionValues = explode('/', ltrim(str_replace($route->getUrl(), '', $santitizedUrl), '/'));\n $controllerName = $route->getControllerName();\n $controllerName = $controllerName . 'Controller'; \n $controller = new $controllerName;\n $action = $route->getActionName();\n $controller->$action($actionValues);\n } else {\n // If we've entered this else section, we've effectively been unable to match\n // the specified url to a registered route. Normally we would throw a 404\n // error and return a user friendly message stating so, however, I'm leaving\n // that as an exersize for the reader\n }\n \n }", "private function route() {\n if (class_exists($this->controllerName . $this->postfix)) {\n $fullName = $this->controllerName . $this->postfix;\n $this->controllerClass = new $fullName;\n $this->controllerClass->setUp();\n if (count($this->args > 1)) { // Pass args that are not controller class\n $this->controllerClass->setArgs($this->args);\n }\n\n // Second arg in url is our \"action\", try that as a method-call\n $method = strtolower($this->args[0]); // method names are case-insensitive. Might as well take advantage of it.\n if (isset($method) && method_exists($this->controllerClass, $method)) {\n $this->controllerClass->{$this->args[0]}();\n }\n \n } else { // No such class. Use our default\n $this->defaultRoute();\n }\n }", "public function route() {\n\n try {\n \n $obj = APIFactory::init($this->parsed_path[0]);\n echo $this->getAction($obj, $this->parsed_path);\n \n } catch(UndefinedActionException $e) { \n\n echo $e->getMessage();\n\n } catch(Exception $e) {\n\n echo $e->getMessage();\n\n }\n }", "protected function callActionMethod() {}", "function goToRoute() {\n\t\tinclude(CONTROLLERPATH.$this->routes[$this->route]);\n\n\t\t// Load\n\t\t$controller = $this->route.\"controller\";\n\t\t$controller = new $controller;\n\n\t\t$action = $this->action;\n\t\tif(is_null($this->action))\n\t\t\t$controller->index();\n\t\telse\n\t\t\t$controller->$action();\n\t}", "protected function getAction() {}", "abstract public function getControllerAction();", "protected function indexAction() {}", "public function route() {\n\t\t$file = $this->app_directory . '/controllers/' . $this->controller . '.php';\n\t\tif(\\mfw\\helpers\\FileHelper::fileExists($file)) {\n\t\t\tinclude $this->app_directory . '/controllers/' . $this->controller . '.php';\n\t\t\t$controller = new $this->controller($this->controller, $this->app_directory);\n\t\t\tcall_user_func_array(array($controller, $this->method), $this->arguments);\n\t\t} else {\n\t\t\tif(defined('DOC_ROOT')) {\n\t\t\t\tinclude DOC_ROOT . '/404.php';\n\t\t\t} else {\n\t\t\t\tthrow new \\Exception(\"404 Page not found\");\n\t\t\t}\n\t\t}\n\t}", "public function dispatch()\n {\n $data = $this->router->getData();;\n $c = $data->controller;\n $ref = new $c($data->params);\n $a = $data->action;\n if (!is_null($a) && !empty($a)) call_user_func(array($ref, $a));\n return;\n }", "public function submit()\n {\n $uriParam = isset($_SERVER[\"REQUEST_URI\"]) ? $_SERVER[\"REQUEST_URI\"] : '/';\n // loop through each uri and find the one that matches the route\n foreach($this->_uri as $key => $value)\n {\n if(preg_match(\"#^$value$#\", $uriParam))\n {\n $useMethod = $this->_method[$key];\n new $useMethod();\n }\n }\n }", "public function requestAction()\n {\n }", "public function action() {\n\t\tif( ! $this->request_method )\n\t\t\treturn false;\n\t\tswitch ($this->request_method) {\n\t\t\tcase 'read':\n\t\t\t\t$this->read();\t\t\t\t\t\n\t\t\tbreak;\t\t\t\t\n\t\t\tcase 'create':\t\n\t\t\t\t$this->create();\t\t\t\t\t\n\t\t\tbreak;\n\t\t\tcase 'update':\n\t\t\t\t$this->update();\t\t\t\t\t\n\t\t\tbreak;\n\t\t\tcase 'delete':\n\t\t\t\t$this->delete();\t\t\t\t\t\n\t\t\tbreak;\n\t\t}\n\t}", "protected function viewAction()\n {\n }", "public function dispatch()\n {\n $this->parseRoute();\n\n $controller = new BaseController();\n\n $controllerName = '\\\\Shopreview\\\\Mvc\\\\Controller\\\\' . $this->controller . self::CONTROLLER_POSTFIX;\n\n // controller test, if not found redirect to the homepage\n if (class_exists($controllerName)) {\n $controller = new $controllerName();\n } elseif(!empty($this->controller)) {\n header('Location: /');\n exit();\n }\n\n // finalizing method name\n $methodName = $this->action . self::ACTION_POSTFIX;\n if (!$this->action || !method_exists($controller, $methodName)) {\n $methodName = self::DEFAULT_ACTION . self::ACTION_POSTFIX;\n }\n\n // calling the proper class and method\n call_user_func_array(array($controller, $methodName), array());\n }", "public function call()\n {\n $controllerClass = self::toClass( $this->controller );\n $actionMethod = self::toMethod( $this->action );\n \n $controllerClass::$actionMethod( $this, $this->params );\n }", "private function run()\n {\n $dispatcher = $this->getDispatcher(self::getConfigSection('routes'));\n\n $routeInfo = $dispatcher->dispatch(self::getRequest('method'), self::getRequest('path'));\n\n switch ($routeInfo[0]) {\n case \\FastRoute\\Dispatcher::NOT_FOUND:\n $this->errorNotFound();\n break;\n case \\FastRoute\\Dispatcher::METHOD_NOT_ALLOWED:\n $this->error405();\n break;\n case \\FastRoute\\Dispatcher::FOUND:\n $this->actionParams = $routeInfo[2];\n $handler = explode('.', $routeInfo[1]);\n $this->controllerName = 'app\\controllers\\\\' . ucfirst($handler[0]) . 'Controller';\n $controllerFile = ucfirst($handler[0]) . 'Controller.php';\n $this->actionName = 'action' . ucfirst($handler[1]);\n $this->actionSlug = $handler[0] . '.' . $handler[1];\n if (!file_exists(self::$request['root_path'] . '/app/controllers/' . $controllerFile) ||\n !method_exists($this->controllerName, $this->actionName)) {\n //there is not a controller file or action name == index\n if (App::getConfig('app.debug')) {\n echo 'There is not a controller file \"' . $controllerFile . '\" or action name == index';\n }\n $this->errorNotFound();\n }\n if (isset($handler[2])) {\n //part of hangler for checking permissions\n if ($handler[2] == 'auth') {\n //need login and not logged\n if (App::isGuest()) {\n $this->redirect(App::getConfig('app.login_url'));\n }\n } else {\n //check permission for $handler[2]\n $auth = self::getComponent('auth');\n $user = self::getUser();\n $checkUser = $user ? $auth->hasAccessTo($user->email, $handler[2]) : false;\n if (!$checkUser) {\n //user does not exists or user does not have a permission\n $this->error405();\n }\n }\n }\n break;\n }\n $this->startAction();\n }", "public function Route() {\n\t\tif(isset($_GET['m']))\n\t\t\tif($_GET['m'] == 'ajax')\n\t\t\t\tinclude __SITE_PATH . '/controller/ajax_controller.class.php';\n\t\t// Load controller\n\t\t$controller_name = $this->getController();\n\t\t$this->loadController($controller_name);\n\t\t// Instantiate controller\n\t\t$class_name = $this->getControllerClassName($controller_name);\n\t\t$controller = new $class_name();\n\t\t// Is controller access restricted?\n\t\tif($controller->authNeeded() && !Session::isAuthenticated()) {\n\t\t\t// Route to login screen if there is no authed session\n\t\t\t$this->loadController(\"login\");\n\t\t\t$controller = new LoginController();\n\t\t}\n\t\t// Execute controller action\n\t\t$action = $this->getAction();\n\t\t$this->executeAction($controller, $action);\n\t}", "public function run()\n {\n if ($this->match()) {\n $path = 'AlDente\\controllers\\\\' . ucfirst($this->params['controller']) . 'Controller';\n if (class_exists($path)) {\n $action = $this->params['action'] . 'Action';\n if (method_exists($path, $action)) {\n $controller = new $path($this->params);\n $controller->$action();\n } else {\n View::errorCode(404);\n }\n } else {\n View::errorCode(404);\n }\n } else {\n View::errorCode(404);\n }\n }", "protected function indexAction()\n {\n }", "public function process() {\r\n if(!in_array($this->getRouter()->getAction(), $this->getAllowActions()) || $this->getRouter()->getAction() == null) {\r\n $this->defaultAction();\r\n } else {\r\n $customAction = $this->getRouter()->getAction().Globals::getConfig()->action->suffix;\r\n $this->$customAction();\r\n }\r\n }", "public function getControllerAction() {}", "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 }", "public function indexAction() {\r\n \r\n }", "public function index()\n {\n # Get all the methods in this class\n $actionsMethods = get_class_methods($this);\n # Loop through all the methods\n foreach ($actionsMethods as $actionMethod) {\n # Only if the method includes the word \"example\"...\n if (strstr($actionMethod, 'example')) {\n # Display a link to that method's route\n echo '<a target=\"_blank\" href=\"/practice/' . str_replace('example', '', $actionMethod) . '\">' . $actionMethod . '</a>';\n }\n }\n }", "protected function executeAction() {}", "protected function executeAction() {}", "protected function executeAction() {}", "protected function executeAction() {}", "public function indexAction() {}", "public function indexAction() {}", "public function indexAction() {}", "public function indexAction() {}", "public function indexAction() {}", "public function indexAction() {}", "public function indexAction() {}", "public function indexAction() {}", "public function indexAction() {}", "public function indexAction() {}", "public function indexAction() {}", "public function indexAction() {\r\n }", "public function indexAction ()\r\n {\r\n\r\n }", "public function indexAction(){\r\n\t\t\t\r\n\t\t}", "public function postAction() {}", "public function routeController()\n { }", "public function run() {\r\n\t\tif (isset($_GET['action'])) {\r\n\t\t\t$action = strtolower($_GET['action']);\r\n\t\t} else {\r\n\t\t\t$action = 'index';\r\n\t\t}\r\n\t\t\r\n\t\tif ($this->checkAccess($action)) {\r\n\t\t\t$action = \"action\" . ucwords($action);\r\n\t\t} else {\r\n\t\t\t$action = \"actionNotAllowed\";\r\n\t\t}\r\n\t\t\r\n\t\tif (method_exists($this, $action)) {\r\n\t\t\t$this->$action();\r\n\t\t} else {\r\n\t\t\t$this->invalidAction($action);\r\n\t\t}\r\n\t}", "public function run()\n {\n $route = $this->route->mapRoute();\n\n $className = $this->controllerNamespace.$route[0];\n\n $action = $route[1];\n\n $controller = call_user_func([$className, 'getInstance']);\n\n $controller->$action();\n }", "public function route()\n {\n $this->dashboardRouting($this->relativeCmsUri);\n $this->logOffRouting($this->request, $this->relativeCmsUri);\n $this->apiRouting($this->relativeCmsUri);\n $this->documentRouting($this->userRights, $this->relativeCmsUri);\n $this->valuelistsRouting($this->userRights, $this->relativeCmsUri);\n $this->sitemapRouting($this->userRights, $this->relativeCmsUri);\n $this->redirectRouting($this->userRights, $this->relativeCmsUri);\n $this->imageRouting($this->userRights, $this->relativeCmsUri);\n $this->filesRouting($this->userRights, $this->relativeCmsUri);\n $this->configurationRouting($this->userRights, $this->relativeCmsUri);\n $this->searchRouting($this->relativeCmsUri);\n }", "public function actionView() {}", "public function actionView() {}", "public function indexAction() \n {\n \t\n }", "public function run()\n {\n $this->get('/', array($this, 'dispatchController'));\n $this->map('(/:module(/:controller(/:action(/:params+))))', array($this, 'dispatchController'))\n ->via('GET', 'POST')\n ->name('default');\n parent::run();\n }", "public function indexAction(){}", "protected function action()\n {\n switch($this->action)\n {\n case 'load':\n $this->load();\n break;\n }\n }", "protected function resolveActionMethodName() {}", "public function singleIndexAction() {}", "abstract function indexAction();", "public function indexAction() {\n }", "public function indexAction() {\n }", "public function indexAction()\n {\n\n }", "public function objectRouteClass();", "public static function handler()\n\t{\n\t\t$instance = self::get_instance() ;\n\n\t\t$type = LiteSpeed_Cache_Router::verify_type() ;\n\n\t\tswitch ( $type ) {\n\n\t\t\tdefault:\n\t\t\t\tbreak ;\n\t\t}\n\n\t\tLiteSpeed_Cache_Admin::redirect() ;\n\t}", "public function indexAction()\n {\n }", "public function indexAction()\n {\n }", "public function indexAction()\n {\n }", "public function indexAction()\n {\n }", "public function indexAction()\n {\n }", "public function indexAction()\n {\n }", "protected function executeAction() {\n \n }", "public function indexAction(){\n\n}", "function redirect()\n\t {\n\t\t$this->ifExists();\n\t\trequire CTRL.DS.$this->url[0].'.php';\n\t\t$class= ucfirst($this->url[0]);\n\t\t$controller=new $class();\n\t\t$method=\"\";\n\t\tif(isset($this->url[3]))\n\t\t{\n\t\t\t\t$method=$this->url[1];\n\t\t if (method_exists($controller, $this->url[1])) {\n\t\t\t $controller->{$this->url[1]}($this->url[2], $this->url[3]);\n\t\t\t\n\t\t\t $method=new ReflectionMethod($controller,$this->url[1] );\n\n $paramsize= sizeof($method->getParameters());\n\t\t\t \n\t\t\t if($paramsize<1)\n\t\t\t {\n\t\t\t\t \n\t\t\t\t $this->error('Invalid Url');\n\t\t\t\t exit;\n\t\t\t }\n\t\t\t} \n\t\t\telse\n\t\t\t {\n\t\t\t\t$this->error('Invalid methods');\n\t\t\t}\n\t\t}\n\t\telse if(isset($this->url[2]))\n\t\t{\n\t\t\t$method=$this->url[1];\n\t\t if (method_exists($controller, $this->url[1])) {\n\t\t\t $controller->{$this->url[1]}($this->url[2]);\n\t\t\t $method=new ReflectionMethod($controller,$this->url[1] );\n\n $paramsize= sizeof($method->getParameters());\n\t\t\t if($paramsize<1)\n\t\t\t {\n\t\t\t\t \n\t\t\t\t $this->error('Invalid Url');\n\t\t\t\t exit;\n\t\t\t }\n\t\t\t} \n\t\t\telse\n\t\t\t {\n\t\t\t\t$this->error('Invalid methods');\n\t\t\t}\n\t\t}\n\t\telse if(isset($this->url[1]))\n\t\t{\n\t\t\t$method=$this->url[1];\n\t\t\tif(method_exists($class, $method))\n\t\t\t{\n\t\t\t\t$controller->$method();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$this->error(\"METHOD DOES NOT EXIST\");\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$controller->Index();\n\t }\n\t \n\t\n }", "public function run ()\n\t\t{\n\t\t\t$uri = $this->getURI ();\n\t\t\t\n\t\t\tforeach ($this->routes as $uriPattern => $path) \n\t\t\t{\n\n\t\t\t\tif ( preg_match ( \"~$uriPattern~\", $uri) )\n\t\t\t\t{\n\t\t\t\t\t\n\t\t\t\t\t$internalRoute = preg_replace(\"~$uriPattern~\", $path, $uri);\n\n\t\t\t\t\t//Определяем контроллер, action(действие), параметры\n\t\t\t\t\t$segments = explode ( '/', $internalRoute );\n\n\t\t\t\t\t$controllerName = array_shift ( $segments ) . 'Controller';\n\t\t\t\t\t$controllerName = ucfirst ( $controllerName );\n\n\t\t\t\t\t$actionName = 'action' . ucfirst ( array_shift ( $segments ) );\n\n\t\t\t\t\t$parameters = $segments;\n\t\t\t\t\t\n\n\t\t\t\t\t$controllerFile = ROOT . '/controllers/' . \n\t\t\t\t\t\t$controllerName . '.php';\n\n\t\t\t\t\t\n\t\t\t\t\tif ( file_exists ( $controllerFile ) )\n\t\t\t\t\t{\n\t\t\t\t\t\tinclude_once ( $controllerFile );\n\t\t\t\t\t}\n\n\t\t\t\t\t//Create new obj, that is call need method (that is action)\n\n\t\t\t\t\t$controllerObject = new $controllerName;\n\n\t\t\t\t\t// echo $controllerName.\" \".$actionName;\n\t\t\t\t\t/**\n\t\t\t\t\t * Calling need method ($actionName) a certain class ($contollerObject)\n\t\t\t\t\t * with given ($paramets) параметрами\n\t\t\t\t\t */\n\t\t\t\t\tif(method_exists($controllerObject, $actionName)) {\n\t\t\t\t\t\t$result = call_user_func_array (\n\t\t\t\t\t\t\t array ( $controllerObject, $actionName ), \n\t\t\t\t\t\t\t $parameters \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\trequire_once ROOT . '/views/error/error404.html';\n\t\t\t\t\t}\t\n\t\t\t\n\n\t\t\t\t\t//if method of controller is successeful, finish working router\n\t\t\t\t\tif ( $result != null )\n\t\t\t\t\t{\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\n\t\t\t\t} \n\n\t\t\t}\n\n\t\t}", "public function indexAction() {\n \n }", "public function indexAction() {\n\n }", "public function indexAction() {\n\n }", "private function Dispatch()\n {\n /*\n * for the security of the admin portal we will check every time here before any class get called if\n * this user is logged in or not, if not logged in then we will take him to the login,\n * else let him continue to the admin dashboard.\n * and same goes for the users. by this we ensure that no one will be able to access\n * any portal unless he is logged in with the right credentials.\n * also if the user tries to go to the login page and he's already logged in then we will\n * take him to the homepage, no logged in user should be able to go to the login page.\n * */\n// if ($this->_controller == 'admin') {\n// if (Session::Exists('logged_in') !== true || Session::Get('logged_in')->role !== 'admin') {\n// $this->_controller = 'login';\n// $this->_action = 'default';\n//// Redirect::To('login/login', true);\n// }\n// } elseif ($this->_controller == 'user') {\n// if (Session::Exists('logged_in') !== true || Session::Get('logged_in')->role !== 'user') {\n// $this->_controller = 'login';\n// $this->_action = 'default';\n//// Redirect::To('login/default', true);\n// }\n// } elseif ($this->_controller == 'login') {\n// if (Session::Exists('logged_in') == true) {\n// Redirect::Home();\n// }\n// }\n\n /*\n * first we make the controller name we got from the url full, which means add to it the namespace first,\n * then make the first litter of the class capital case (which is what we will do in all our classes),\n * then at the end add the work 'Controller'.\n * so now for example the work index we got from the URL will become: Qiggs\\Controllers\\IndexController\n * in this case, the autoload class will be able to know which class is this.\n * */\n $controllerClassName = 'Framework\\Controllers\\\\' . ucfirst($this->_controller) . 'Controller';\n\n /*\n * for the frontcontroller to be able to call a function at the controller automatically just by splitting the url,\n * we have to add Action after the function/action name, it's like a secret code between us so it can be able to\n * identify an action method and call it.\n * the DefaultAction get called if the url is: www.x.com/index/default ->\n * index: the controller class name,\n * default: the action/function's name\n */\n $actionName = ucfirst($this->_action) . 'Action';\n\n // check first if this controller class exists, if not then take him to the not found class\n if (!class_exists($controllerClassName)) {\n $controllerClassName = self::NOT_FOUND_CONTROLLER;\n }\n\n // if everything is ok so far then initiate the class\n $controller = new $controllerClassName();\n\n // check if the function (action) exists in that initiated class, if not then display 404 not found (not found action).\n if (!method_exists($controller, $actionName)) {\n $this->_action = $actionName = self::NOT_FOUND_ACTION;\n }\n\n // inside of the class that got initiated (in their parent class to be specific, inside Abstract Controller)\n // set these variables (the name of the controller and action and parameters)\n // in case of we needed to use them there and of course inside the controller class we don't have access\n // to this class so this is the perfect way to parse these values there.\n $controller->SetContActParam($this->_controller, $this->_action, $this->_params);\n\n // finally call the function (action) at the class (controller) that got initiated.\n $controller->$actionName();\n\n // now we called a class and also called an action/function in that class so this file will now go to the\n // called class and action.\n }", "public function indexAction() {\n\n\n\n\n }", "public function indexAction()\n {\n\n }", "public function indexAction()\n {\n\n }", "public function indexAction()\n {\n\n }", "public function indexAction()\n {\n\n }", "public function indexAction()\n {\n\n }", "public function indexAction()\n {\n\n }", "public function indexAction(){\t\t\n\t}", "public function getAction()\n {\n Extra_ErrorREST::setInvalidHTTPMethod($this->getResponse());\n }", "public function dispatch($url){\n\n /*\n Before checking for a match we must get only the first GET Param,\n if others were added to the URL (?key=value), we must remove them\n */\n if($url != ''){\n $parts = explode('&', $url, 2);\n if( strpos($parts[0], '=') === false ){\n //if no '=' was not found, no extra GET params passed in, url is valid\n $url = $parts[0];\n }else {\n //only get vars were passed in, empty URL to send to Home Page\n $url = '';\n }\n }\n\n // Handle a match\n if( $this->match($url) ){\n // Filter Controller\n //route params are now inside object instance $this->params\n $controller = $this->params['controller'];\n //convert to StudlyCaps as this is how the actual Controller class should be defined\n $controller = $this->convertToStudlyCaps($controller);\n //Check if a namespace has been specified for the conroller in the route's params\n $controller = $this->getNamespace() . $controller;\n\n // Make sure that the controller class exists before we instantiate it\n if( !class_exists($controller) ){\n throw new \\Exception(\"Controller class: $controller not found\");\n }\n //class exists...create the object\n $controllerObj = new $controller($this->params);\n\n // Filter Action...default to index\n $action = (isset($this->params['action'])) ? $this->params['action'] : 'index';\n\n //convert action string to camelCase, as this is how the class method should be defined\n $action = $this->convertToCamelCase($action);\n //the actual method will have 'Action' appended to the end,\n //this is done to force execution of the __call function, this can be bypassed however,\n //if the user inputted URL has 'Action' explicitly appended to\n //...check that the action does not have action appeded to it\n if( preg_match( '/action$/i', $action) ){\n throw new \\Exception(\"Method $action in controller $controller cannot be called directly - remove the Action suffix to call this method\");\n }\n //Finally, call Action on controller\n //THE CONTROLLER METHOD WILL NOT EXIST, THIS WILL FORCE THE EXECUTION OF THE\n // __call METHOD THAT SHOULD BE DEFINED IN THE CONTAINING CLASS\n $controllerObj->$action();\n }else {\n //No route matched\n throw new \\Exception(\"No route matched for $url\", 404);\n }\n\n }", "public function run()\n\t{\n\t\t$_controller = $this->getController();\n\t\t\n\t\tif ( ! ( $_controller instanceof IXLRest ) )\n\t\t{\n\t\t\t$_controller->missingAction( $this->getId() );\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t//\tCall the controllers dispatch method...\n\t\t$_controller->dispatchRequest( $this );\n\t}", "public function indexAction()\n {\n\t\t\t\n\t\t\tif ($this->getRequest()->getMethod() === 'POST') {\n\t\t \t\treturn $this->_forward('post');\n\t\t \t}\n\t\t \t\n\t\t}", "public function showRoute()\n {\n }", "public function getAction() {}", "public function getAction() {}", "public function getAction() {}", "public function getAction() {}", "public function indexAction() {\n\t}", "public function indexAction() {\n\t}", "public function routeController()\n\t{\n\t\t$action = \"actionIndex\";\n\n\t\tif (isset($_GET[\"p\"]))\n\t\t{\n\t\t\t$params = array();\n\t\t\t$params = array_filter(explode(\"/\", $_GET[\"p\"]));\n\n\t\t\tif (count($params) != 1)\n\t\t\t{\n\t\t\t\t$action = \"action\";\n\n\t\t\t\tfor ($i = 1; $i < count($params); $i++)\n\t\t\t\t{\n\t\t\t\t\t$action .= ucwords($params[$i]);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$controller = \"Controller_\" . ucwords($params[0]);\n\t\t}\n\t\telse\n\t\t{\n\t\t\tcall_user_func(array(new Controller_Index(), $action));\n\t\t\texit();\n\t\t}\n\n\t\tif (isset($controller) && class_exists($controller))\n\t\t{\n\t\t\tif (method_exists(new $controller(), $action))\n\t\t\t{\n\t\t\t\tcall_user_func(array(new $controller(), $action));\n\t\t\t\texit();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t//call_user_func(array(new Controller_Error(), \"actionIndex\"));\n\t\t\t\tcall_user_func(array(new Controller_Index(), \"actionIndex\"));\n\t\t\t\texit();\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\t//call_user_func(array(new Controller_Error(), \"actionIndex\"));\n\t\t\tcall_user_func(array(new Controller_Index(), \"actionIndex\"));\n\t\t\texit();\n\t\t}\n\t}", "public function action(){\n\t\t\t$this->__switchboard('action');\n\t\t}", "public function executeRoute() {\n \n $className = $this->controller;\n $methodName = $this->method;\n \n $instance = new $className;\n \n $fullClassInstanceWithMethod = $instance->$methodName($this->args);\n\n return $fullClassInstanceWithMethod;\n }", "public function indexAction()\n {\n //for real application\n }" ]
[ "0.7153952", "0.704043", "0.7003092", "0.69577265", "0.69089025", "0.6725158", "0.67071885", "0.6582769", "0.65166855", "0.64730865", "0.64631844", "0.64298207", "0.64212924", "0.6411989", "0.64050937", "0.63902515", "0.63571143", "0.63514686", "0.635037", "0.6328827", "0.63243526", "0.63137037", "0.6291324", "0.6279531", "0.62713504", "0.62506413", "0.62351036", "0.6234583", "0.6234583", "0.6234583", "0.6223344", "0.6223344", "0.6223344", "0.6223344", "0.6223344", "0.6223344", "0.6223344", "0.6223344", "0.6223344", "0.62223405", "0.6221921", "0.6174811", "0.61742216", "0.61573076", "0.61536", "0.6148502", "0.6147125", "0.6146848", "0.6141206", "0.61273056", "0.61273056", "0.6104048", "0.6101705", "0.61015064", "0.6098719", "0.6097072", "0.6094018", "0.6085636", "0.6076472", "0.6076472", "0.606517", "0.6064261", "0.6062629", "0.605695", "0.605695", "0.605695", "0.605695", "0.605695", "0.605695", "0.6056353", "0.6046968", "0.6046278", "0.6045506", "0.60412425", "0.6038847", "0.6038847", "0.6036164", "0.60349435", "0.6034136", "0.6034136", "0.6034136", "0.6034136", "0.6034136", "0.6034136", "0.60262823", "0.60260075", "0.60237634", "0.6020887", "0.60201716", "0.60189205", "0.60155463", "0.60155463", "0.60155463", "0.60155463", "0.6014346", "0.6014346", "0.6012795", "0.6004691", "0.60030824", "0.59979254" ]
0.6290338
23
A lightweight method of the symlink method in Symfony\Filesystem Creates a symbolic link or copy a directory.
private function symlink($originDir, $targetDir) { @mkdir(dirname($targetDir), 0777, true); $ok = false; if (is_link($targetDir)) { if (readlink($targetDir) != $originDir) { $this->filesystem->remove($targetDir); } else { $ok = true; } } if (!$ok) { if (true !== @symlink($originDir, $targetDir)) { $report = error_get_last(); if (is_array($report)) { if (defined('PHP_WINDOWS_VERSION_MAJOR') && false !== strpos($report['message'], 'error code(1314)')) { throw new \Exception('Unable to create symlink due to error code 1314: \'A required privilege is not held by the client\'. Do you have the required Administrator-rights?'); } } throw new \Exception(sprintf('Failed to create symbolic link from %s to %s', $originDir, $targetDir)); } } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function createSymlink()\n {\n if (!File::exists(public_path('theme'))) {\n $folder = $this->active()->get('namespace');\n\n if (File::exists(theme_path(\"{$folder}/public\"))) {\n // Delete existing symlink if present\n File::delete(public_path('theme'));\n\n // Create new theme symlink\n File::link(\n theme_path(\"{$folder}/public\"),\n public_path('theme')\n );\n }\n }\n }", "public function symlink(string $target, string $link): Promise;", "private function generateSymlinks()\n {\n $fs = new Filesystem();\n $uploadPath = $this->getContainer()->getParameter('contao.upload_path');\n\n // Remove the base folders in the document root\n $fs->remove($this->rootDir . '/web/' . $uploadPath);\n $fs->remove($this->rootDir . '/web/system/modules');\n $fs->remove($this->rootDir . '/web/vendor');\n\n $this->symlinkFiles($uploadPath);\n $this->symlinkModules();\n $this->symlinkThemes();\n\n // Symlink the assets and themes directory\n $this->symlink('assets', 'web/assets');\n $this->symlink('system/themes', 'web/system/themes');\n $this->symlink('app/logs', 'system/logs');\n }", "public static function symlink(string $original, string $new)\n {\n return Console::run('ln -s \"' . $original . '\" \"' . $new . '\"');\n }", "public static function link($target, $link)\n\t{\n\t\tif (!windows_os()) {\n\t\t\treturn symlink($target, $link);\n\t\t}\n\n\t\t$mode = is_dir($target) ? 'J' : 'H';\n\n\t\texec(\"mklink /{$mode} \" . escapeshellarg($link) . ' ' . escapeshellarg($target));\n\t}", "public function createSoftLink()\n {\n if (stripos(__DIR__, 'vendor/adamasantares/migra-php') !== false) {\n shell_exec('ln -s ' . __FILE__ . ' ' . __DIR__ . '/../../../migra');\n shell_exec('chmod +x ' . __DIR__ . '/../../../migra');\n if (is_file(__DIR__ . '/../../../migra')) {\n ech(\" Soft link ./migra created\\n\", 'cyan');\n ech(\" Now you can use './migra' command from project's root folder\\n\", 'cyan');\n } else {\n ech(\" Some problem on soft link creation.\\n\", 'red');\n }\n } else {\n ech(\" No need to create soft link, you don't use Composer installation.\\n\", 'cyan');\n }\n }", "public function CreatePublicSymLink()\n {\n $filemanager = $this->getFileManager();\n\n $fullPath = PATH_OUTBOX.'/public/'.$this->sqlData['cms_document_tree_id'].'/';\n if (!is_dir($fullPath)) {\n $filemanager->mkdir($fullPath, 0777, true);\n }\n $targetFile = $this->GetRealPath();\n\n $sSEOTargetFileName = $this->GetTargetFileName();\n if (!$this->localFileExists()) {\n // trigger error only in live mode because sometimes files are missing in the development environment\n trigger_error('Error: Download source ['.$targetFile.'] does not exist, or is not readable!', E_USER_NOTICE);\n } else {\n $filemanager->unlink($fullPath.'/'.$sSEOTargetFileName);\n if (!file_exists($fullPath.'/'.$sSEOTargetFileName)) {\n if ($filemanager->symlink($targetFile, $fullPath.'/'.$sSEOTargetFileName)) {\n $this->fileURL = URL_OUTBOX.'/public/'.$this->sqlData['cms_document_tree_id'].'/'.$sSEOTargetFileName;\n } else {\n trigger_error('Error: Unable to create SymLink ['.$targetFile.'] -> ['.$fullPath.'/'.$sSEOTargetFileName.']', E_USER_WARNING);\n }\n }\n }\n }", "private function symlink($source, $target)\n {\n $this->validateSymlink($source, $target);\n\n $fs = new Filesystem();\n\n try {\n $fs->symlink(\n rtrim($fs->makePathRelative($source, dirname($target)), '/'),\n $this->rootDir . '/' . $target\n );\n } catch (IOException $e) {\n $fs->symlink($this->rootDir . '/' . $source, $this->rootDir . '/' . $target);\n }\n\n $this->fixSymlinkPermissions($target);\n\n $this->output->writeln(\n sprintf('Added <comment>%s</comment> as symlink to <comment>%s</comment>.', $target, $source)\n );\n }", "public function testSymlinkFail()\n {\n Warning::$enabled = false;\n\n $this->createRootPackage();\n $staticPackage = $this->createStaticPackage();\n $this->localRepository->addPackage($staticPackage);\n\n // Change perms to force symlink error\n $themeDir = $this->projectRoot . '/htdocs/app/design/frontend/Package/theme/web';\n mkdir($themeDir, 0755, true);\n chmod($themeDir, 0400);\n\n $message = 'Failed to symlink';\n\n $this->io\n ->expects($this->once())\n ->method('write')\n ->with($this->stringContains($message));\n\n $event = new Event('event', $this->composer, $this->io);\n $this->activatePlugin();\n $this->plugin->symlinkStatics($event);\n\n chmod($themeDir, 0755);\n\n // Turn exception converting back on\n Warning::$enabled = true;\n }", "public function createSymlink($destination = '', $unlinkIfExists = false)\n {\n if (\\file_exists($destination)) {\n if ($unlinkIfExists) {\n \\unlink($destination);\n } else {\n throw new FilesystemException('Destination already exists.');\n }\n }\n return \\symlink($this->filePath, $destination);\n }", "function realPath($path, $relative_to = NULL, $resolve_symlink = TRUE);", "public function symlink(string $link, int $parent_ino, string $name): int {\n\n $r = $this->replica;\n $ops = [];\n\n // 1. find parent_id (uuid of fs_inode_entry) from parent_ino.\n $parent_id = $this->ino_to_tree_id($parent_ino);\n\n // 2. find parent dir (under /root/)\n $inode_entry = $this->tree_find($parent_id);\n\n // 3. create tree node under /root/../parent_id\n $fim = new fs_inode_meta($name, inode_kind::symlink);\n $fim->link = $link; // we are setting a non-existent property, gross! but in PHP we can roll like that.\n $ops[] = new op_move($r->tick(), $parent_id, $fim, $new_inode_id = new_id() );\n\n // 4. create/add fs_inode_local\n $ino = $this->add_fs_inode_local($new_inode_id, $fim->kind);\n\n $r->apply_ops($ops);\n\n return $ino;\n }", "private function symlinkModules()\n {\n $filter = function (SplFileInfo $file) {\n return HtaccessAnalyzer::create($file)->grantsAccess();\n };\n\n $this->createSymlinksFromFinder(\n $this->findIn($this->rootDir . '/system/modules')->files()->filter($filter)->name('.htaccess'),\n 'system/modules'\n );\n }", "public function testDeleteDirectoryWithLinksAndSymlinks()\n {\n if ( !function_exists( 'link' ) || !function_exists( 'symlink' ) )\n {\n $this->markTestSkipped( 'Missing \"link\" or \"symlink\" function.' );\n return;\n }\n\n $this->createTestDirectories( array( '/logs/foo/12345' ) );\n $this->createTestFile( '/logs/foo/12345/bar.txt' );\n\n $file = PHPUC_TEST_DIR . '/logs/foo/12345/bar.txt';\n\n link( $file, PHPUC_TEST_DIR . '/logs/bar.txt' );\n symlink( $file, PHPUC_TEST_DIR . '/logs/foo/bar.txt' );\n\n phpucFileUtil::deleteDirectory( PHPUC_TEST_DIR . '/logs' );\n\n $this->assertFileNotExists( PHPUC_TEST_DIR . '/logs' );\n }", "public function testSymlinks()\n {\n\n $this->composer->setConfig(new Config(false, __DIR__ . '/ExcludeFolders/Symlinks'));\n\n $expectedTerminalOutput = '<info>Added \"vendor/sample/package\" to PhpStorm config at \"'\n . getcwd() . '/tests/ExcludeFolders/Symlinks/.idea/valid.iml\".</info>';\n\n $this->io\n ->expects($this->exactly(1))\n ->method('write')\n ->withConsecutive(\n [$expectedTerminalOutput]\n );\n\n $this->package->setExtra([\n \"symlinks\" => [\n \"vendor/sample/package\" => \"symlink\"\n ]\n ]);\n\n $fileToWrite = getcwd() . '/tests/ExcludeFolders/Symlinks/.idea/valid.iml';\n $expectedFileOutput = file_get_contents(getcwd() . '/tests/ExcludeFolders/Symlinks/expected.iml');\n\n $this->filesystem->expects($this->once())\n ->method('dumpFile')\n ->with($fileToWrite, $expectedFileOutput);\n\n ExcludeFolders::update($this->event, $this->filesystem);\n }", "public static function make($src, $tgt, $dir = null)\r\n {\r\n // are we on a windows system prior to NT6?\r\n $is_win = strtolower(substr(PHP_OS, 0, 3)) == 'win';\r\n /* update by Roy Gu 2010-11-13\r\n * even we are on windows system prior to NT6, i also want to use solar command\r\n if ($is_win && php_uname('r') < 6) {\r\n throw Solar_Symlink::_exception('ERR_WINDOWS_VERSION');\r\n }\r\n */\r\n\r\n // massage the change-dir a bit\r\n $dir = trim($dir);\r\n if ($dir) {\r\n $dir = Solar_Dir::fix($dir);\r\n }\r\n // update by Roy Gu 2010-11-11\r\n // win-like slash\r\n $src = str_replace('/', DIRECTORY_SEPARATOR, $src);\r\n\r\n // is the source a directory or a file?\r\n $path = $dir . $src;\r\n $is_dir = Solar_Dir::exists($path);\r\n $is_file = Solar_File::exists($path);\r\n if (! $is_dir && ! $is_file) {\r\n // no source found\r\n throw Solar_Symlink::_exception('ERR_SOURCE_NOT_FOUND', array(\r\n 'src' => $src,\r\n 'tgt' => $tgt,\r\n 'dir' => $dir,\r\n 'path' => $path,\r\n ));\r\n }\r\n\r\n // update by Roy Gu 2010-11-11\r\n // win-like slash\r\n $tgt = str_replace('/', DIRECTORY_SEPARATOR, $tgt);\r\n // find any existing path to the target\r\n if ($is_dir) {\r\n $path = Solar_Dir::exists($dir . $tgt);\r\n } else {\r\n $path = Solar_File::exists($dir . $tgt);\r\n }\r\n\r\n // does the target exist already?\r\n if (('sync' != self::$op) && $path) {\r\n throw Solar_Symlink::_exception('ERR_TARGET_EXISTS', array(\r\n 'src' => $src,\r\n 'tgt' => $tgt,\r\n 'dir' => $dir,\r\n 'path' => $path,\r\n ));\r\n }\r\n\r\n // escape arguments for the command\r\n $src = escapeshellarg($src);\r\n $tgt = escapeshellarg($tgt);\r\n $dir = escapeshellarg($dir);\r\n\r\n if (Solar::supportSymlink()) {\r\n if ($is_win && $is_dir) {\r\n // windows directory\r\n return Solar_Symlink::_makeWinDir($src, $tgt, $dir);\r\n } elseif ($is_win && $is_file) {\r\n // windows file\r\n return Solar_Symlink::_makeWinFile($src, $tgt, $dir);\r\n } else {\r\n // non-windows\r\n return Solar_Symlink::_make($src, $tgt, $dir);\r\n }\r\n } else {\r\n if ($is_dir) {\r\n // windows xp, 2000 and 2003 directory\r\n return Solar_Symlink::_makeXPDir($src, $tgt, $dir);\r\n } elseif ($is_file) {\r\n // windows xp, 2000 and 2003 file\r\n return Solar_Symlink::_makeXP($src, $tgt, $dir);\r\n }\r\n }\r\n }", "public function checkIsSymlink($path);", "public function ln($target, $name)\n\t{\n\t\t$abs_target = PathUtils::resolve($this->root, $target);\n\t\t$abs_destination = PathUtils::resolve($this->root, $name);\n\n\t\t$this->assert($abs_target);\n\t\t$this->assertDoesNotExists($abs_destination);\n\n\t\t\\symlink($abs_target, $abs_destination);\n\n\t\treturn $this;\n\t}", "public function symlink($old_path, $new_path): bool\n {\n return ssh2_sftp_symlink($this->_getSFTPResource(), $this->_getPath($old_path), $this->_getPath($new_path));\n }", "protected static function _make($src, $tgt, $dir)\r\n {\r\n // the command\r\n $cmd = '';\r\n\r\n // change directories?\r\n if ($dir) {\r\n $cmd = \"cd $dir;\";\r\n }\r\n\r\n // make the link. redirect stderr to stdout so we can capture the\r\n // last line, in case of errors.\r\n $cmd .= \"ln -s $src $tgt 2>&1\";\r\n\r\n // done!\r\n return exec($cmd);\r\n }", "public function mirrorFileSymLinksTheGivenFileIfTheSettingSaysSo()\n {\n $sourcePathAndFilename = tempnam('FlowFileSystemPublishingTargetTestSource', '');\n $targetPathAndFilename = tempnam('FlowFileSystemPublishingTargetTestTarget', '');\n\n file_put_contents($sourcePathAndFilename, 'some data');\n touch($sourcePathAndFilename, time() - 5);\n\n $settings = array('resource' => array('publishing' => array('fileSystem' => array('mirrorMode' => 'link'))));\n\n $publishingTarget = $this->getAccessibleMock('TYPO3\\Flow\\Resource\\Publishing\\FileSystemPublishingTarget', array('dummy'));\n $publishingTarget->_set('settings', $settings);\n\n $publishingTarget->_call('mirrorFile', $sourcePathAndFilename, $targetPathAndFilename, true);\n $this->assertFileEquals($sourcePathAndFilename, $targetPathAndFilename);\n $this->assertTrue(Files::is_link($targetPathAndFilename));\n\n unlink($sourcePathAndFilename);\n unlink($targetPathAndFilename);\n }", "public function getMethod()\n {\n return 'deleteSymlink';\n }", "function rsd_link()\n {\n }", "function create($path, $name, $next);", "protected function createLink($output)\n {\n $link = new Process(sprintf('ln -f %s %s', $this->toFile, $this->link));\n $link->run();\n if ($link->isSuccessful()) {\n $output->writeln(sprintf('<info>Link %s created succesfully</info>', $this->link));\n return true;\n }\n $this->failingProcess = $link;\n return false;\n }", "public function mkdirDeepCreatesDirectoryWithAndWithoutDoubleSlashesDataProvider() {}", "protected function enableSymlinkTargetStorage(bool $dereferenceSymlinks): void\n\t{\n\t\tif ($dereferenceSymlinks)\n\t\t{\n\t\t\treturn;\n\t\t}\n\n\t\t// We are told not to dereference symlinks. Are we on Windows?\n\t\tif (function_exists('php_uname'))\n\t\t{\n\t\t\t$isWindows = stristr(php_uname(), 'windows');\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$isWindows = (DIRECTORY_SEPARATOR == '\\\\');\n\t\t}\n\n\t\t// If we are not on Windows, enable symlink target storage\n\t\t$this->storeSymlinkTarget = !$isWindows;\n\t}", "public function symlinkLatestBackup($path);", "private function createSymlinksFromFinder(Finder $finder, $prepend)\n {\n /** @var SplFileInfo $file */\n foreach ($finder as $file) {\n $path = rtrim($prepend . '/' . $file->getRelativePath(), '/');\n $this->symlink($path, 'web/' . $path);\n }\n }", "public static function createMirror($symlinkTarget, $symlinkName)\n {\n $filesystem = new Filesystem();\n $filesystem->mkdir($symlinkName);\n $filesystem->mirror(\n realpath($symlinkName . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . $symlinkTarget),\n $symlinkName,\n null,\n array('copy_on_windows' => true, 'delete' => true, 'override' => true)\n );\n }", "private function symlinkThemes()\n {\n /** @var SplFileInfo[] $themes */\n $themes = $this->getContainer()->get('contao.resource_finder')->findIn('themes')->depth(0)->directories();\n\n foreach ($themes as $theme) {\n $path = str_replace($this->rootDir . DIRECTORY_SEPARATOR, '', $theme->getPathname());\n\n if (0 === strpos(strtr($path, '\\\\', '/'), 'system/modules/')) {\n continue;\n }\n\n $this->symlink($path, 'system/themes/' . basename($path));\n }\n }", "public function create_res_link($disk, $resDir)\n {\n\n $resRoot = public_path(config(\"app.res_path\"));\n $ret = file_exists($resRoot);\n\n if (!$ret) {\n\n logger(\"make res root\" . $resRoot);\n mkdir($resRoot);\n }\n\n $linkPath = public_path(config(\"app.res_path\") . DIRECTORY_SEPARATOR . $resDir);\n\n $ret = file_exists($linkPath);\n\n if ($ret) {\n return true;\n }\n\n $diskRoot = $disk->getDriver()->getAdapter()->getPathPrefix();\n\n $this->create_symbol($diskRoot,$linkPath);\n//\n// $linkCmd = \"ln -s '\" . $diskRoot . \"' '\" . $linkPath . \"'\";\n// logger(\"create resource symbol link \");\n// $ret = system($linkCmd);\n return true;\n }", "private function symlinkFiles($uploadPath)\n {\n $this->createSymlinksFromFinder(\n $this->findIn($this->rootDir . '/' . $uploadPath)->files()->name('.public'),\n $uploadPath\n );\n }", "public function testCopy() {\n $sourceDirName = self::TEST_DIR . '/testCopyDirectorySource';\n $targetDirName = self::TEST_DIR . '/testCopyDirectoryTarget';\n\n mkdir($sourceDirName);\n\n $directoryHandle = new Directory($sourceDirName);\n\n $directoryHandle->copy(new Directory($targetDirName));\n\n $this->assertDirectoryExists($targetDirName);\n $this->assertDirectoryExists($sourceDirName);\n }", "protected function createDirectory() {}", "public function link(){\n\t\tif( $this->link ) {\n\t\t\treturn $this->link;\n\t\t}//end if\n\n\t\t$this->link = @file_get_contents( $this->base_dir.'/'.$this->dir . $this->filename . '.link');\n\t\treturn $this->link;\n\t}", "function fs_is_link($filename) {\n\treturn @is_link($filename);\n}", "public function link(string $target, string $link): Promise;", "public function link();", "public function publish(string $name, bool $symlink = true, bool $relative = false): static\n {\n $theme = collect(theme_system()->findThemes())->where('name', $name)->first();\n throw_if($theme === null, ThemeNotExistsException::class, $name);\n\n $themeAssetPath = $theme->directory . '/' . theme_system()->getPublicDirectory();\n $targetAssetPath = public_path() . '/' . $theme->publicName;\n\n if (! is_dir($themeAssetPath)) {\n return $this;\n }\n\n if ($symlink) {\n if (file_exists($targetAssetPath)) {\n return $this;\n }\n\n if ($relative) {\n File::relativeLink($targetAssetPath, $themeAssetPath);\n } else {\n File::link($themeAssetPath, $targetAssetPath);\n }\n } else {\n throw_if(is_link($targetAssetPath), 'RuntimeException', \"The [$targetAssetPath] link already exists.\");\n\n if (is_dir($targetAssetPath)) {\n File::deleteDirectory($targetAssetPath);\n }\n\n File::copyDirectory($themeAssetPath, $targetAssetPath);\n }\n\n return $this;\n }", "public function handle($symlink)\n {\n $symlink = $this->filesystem->getAdapter()->applyPathPrefix($symlink);\n\n if (!is_link($symlink)) {\n return false;\n }\n\n return unlink($symlink);\n }", "function isSymlink($id) {\n\t\tif(isset($this->myelements[$id]['symlink']) && $this->myelements[$id]['symlink'] != \"\" && $this->myelements[$id]['symlink'] != \"0\") {\n\t\t\treturn $this->myelements[$id]['symlink'];\n\t\t}\n\n\t\treturn 0;\n\t}", "public function createDirectory(DirectoryInterface $directory, DirectoryInterface $parent): DirectoryInterface;", "public function createFromRealDirectory($realPath);", "protected function checkAssetsSymlink()\n {\n if (is_null($this->assetsPath)) {\n return;\n }\n if (!\\File::exists($this->assetsPath)) {\n return;\n }\n\n $dir_name = \\File::basename($this->assetsPath);\n $symlink_target = public_path('themes/' . $dir_name);\n if (!\\File::exists(public_path('themes/'))) {\n \\File::makeDirectory(public_path('themes/'));\n }\n if ((!\\File::exists($symlink_target)) && (\\File::exists($this->assetsPath))) {\n symlink($this->assetsPath, $symlink_target);\n }\n }", "function readlink($path)\n{\n}", "function create_link($linkName, $linkTarget='#')\n {\n return $this->createLink($linkName, $linkTarget);\n }", "abstract function mirror($locpath, $rempath);", "function link($label, $url = '/', $options = array()) {\n\t\t//\tIf no title specified, we use the label\n\t\tif (!isset($options['title'])) {\n\t\t\t$options['title'] = $this->attribute($label);\n\t\t}\n\n\t\t// If an icon is specified, we prepend it\n\t\tif (!empty($options['icon'])) {\n\t\t\t$label = $this->Fastcode->icon($options['icon']).$label;\n\t\t\t$options['escape'] = false;\n\t\t\tunset($options['icon']);\n\t\t}\n\n\t\t// If a wrapper is set, we wrap the label inside it\n\t\tif (!empty($options['wrap'])) {\n\t\t\t$label = $this->Html->tag($options['wrap'], $label);\n\t\t\t$options['escape'] = false;\n\t\t\tunset($options['wrap']);\n\t\t}\n\n\t\t// We return the link\n\t\treturn $this->Html->link($label, $url, $options);\n\t}", "public function mkDir($path);", "public function testCreateSharedLink()\n {\n }", "public function link() : Link;", "function df_store_url_link($s = null) {return df_store_url($s, S::URL_TYPE_LINK);}", "protected function createPathIfNeeded() {}", "public function makePath($a, $b, $ds = DIRECTORY_SEPARATOR) {\n\t\treturn $this->cleanPath($a . $ds . $b, $ds);\n\t}", "protected function _initFilesystem() {\n $this->_createWriteableDir($this->getTargetDir());\n $this->_createWriteableDir($this->getQuoteTargetDir());\n\n // Directory listing and hotlink secure\n $io = new Varien_Io_File();\n $io->cd($this->getTargetDir());\n if (!$io->fileExists($this->getTargetDir() . DS . '.htaccess')) {\n $io->streamOpen($this->getTargetDir() . DS . '.htaccess');\n $io->streamLock(true);\n $io->streamWrite(\"Order deny,allow\\nAllow from all\");\n $io->streamUnlock();\n $io->streamClose();\n }\n }", "function addLink($label, $link) \n {\n $xmlObject = new XMLObject( XMLObject_Menu::NODE_ITEM );\n $xmlObject->addElement( XMLObject_Menu::ITEM_TYPE, XMLObject_Menu::ITEM_TYPE_LINK);\n $xmlObject->addElement(XMLObject_Menu::ITEM_TYPE_LINK_LABEL, $label);\n $xmlObject->addElement(XMLObject_Menu::ITEM_TYPE_LINK_LINK, $link);\n \n $this->addXmlObject( $xmlObject );\n \n }", "public function testCreate()\n {\n $container = $this->buildContainer(\n $this->resolveOptions([\n 'base_dir' => __DIR__,\n 'symlink' => true,\n ])\n );\n\n $this->assertInstanceOf(FilesystemRepository::class, $container->get('repository'));\n $repository = $container->get('repository');\n $resource = $repository->get('/'.basename(__FILE__));\n\n $this->assertEquals(__FILE__, $resource->getFilesystemPath());\n }", "public function mkdir($path)\n {\n \n }", "function copyr($source, $dest, $overwrite = false)\n{\n // Simple copy for a file\n if (is_file($source)) {\n return copy($source, $dest);\n }\n\n // Make destination directory\n if (!is_dir($dest)) {\n mkdir($dest);\n }\n\n // If the source is a symlink\n if (is_link($source)) {\n $link_dest = readlink($source);\n return symlink($link_dest, $dest);\n }\n\n // Loop through the folder\n $dir = dir($source);\n while (false !== $entry = $dir->read()) {\n // Skip pointers\n if ($entry == '.' || $entry == '..') {\n continue;\n }\n\n // Deep copy directories\n if ($dest !== \"$source/$entry\") {\n if ($overwrite || !is_file(\"$dest/$entry\")) {\n copyr(\"$source/$entry\", \"$dest/$entry\");\n } else {\n return false;\n }\n }\n }\n\n // Clean up\n $dir->close();\n return true;\n}", "public function addLink(string $name, array $attributes);", "static public function copy($src, $dst) \n {\n if (is_file($src)) {\n if (!file_exists($f = dirname($dst))) {\n mkdir($f, 0775, true);\n @chmod($f, 0775); // let @, if www-data is not owner but allowed to write\n }\n copy($src, $dst);\n return;\n }\n if (is_dir($src)) {\n $src = rtrim($src, '/');\n $dst = rtrim($dst, '/');\n if (!file_exists($dst)) {\n mkdir($dst, 0775, true);\n @chmod($dst, 0775); // let @, if www-data is not owner but allowed to write\n }\n $handle = opendir($src);\n while (false !== ($entry = readdir($handle))) {\n if ($entry[0] == '.') continue;\n self::copy($src . '/' . $entry, $dst . '/' . $entry);\n }\n closedir($handle);\n }\n }", "abstract public function copyLocalDir($from, $to);", "public function isLink(): bool\n {\n return is_link($this->directory->getPath().'/'.$this->filename);\n }", "function smartCopy($source, $dest, $options=array('folderPermission'=>0755, 'filePermission'=>0755)) \r\n{ \r\n\t$result=false; \r\n\t \r\n\tif (is_file($source)) \r\n\t{ \r\n\t\tif ($dest[strlen($dest)-1]=='/') \r\n\t\t{ \r\n\t\t\tif (!file_exists($dest)) \r\n\t\t\t{ \r\n\t\t\t\t cmfcDirectory::makeAll($dest,$options['folderPermission'],true); \r\n\t\t\t} \r\n\t\t\t\r\n\t\t\t$__dest = $dest . \"/\" . basename($source); \r\n\t\t}\r\n\t\telse \r\n\t\t{ \r\n\t\t\t$__dest=$dest; \r\n\t\t}\r\n\t\t\r\n\t\t$result=copy($source, $__dest); \r\n\t\t\r\n\t\tchmod($__dest,$options['filePermission']); \r\n\t\t \r\n\t } elseif(is_dir($source)) { \r\n\t\tif ($dest[strlen($dest)-1]=='/') { \r\n\t\t\tif ($source[strlen($source)-1]=='/') { \r\n\t\t\t\t//Copy only contents \r\n\t\t\t} else { \r\n\t\t\t\t//Change parent itself and its contents \r\n\t\t\t\t$dest=$dest.basename($source); \r\n\t\t\t\t@mkdir($dest); \r\n\t\t\t\tchmod($dest,$options['filePermission']); \r\n\t\t\t} \r\n\t\t} else { \r\n\t\t\tif ($source[strlen($source)-1]=='/') { \r\n\t\t\t\t//Copy parent directory with new name and all its content \r\n\t\t\t\t@mkdir($dest,$options['folderPermission']); \r\n\t\t\t\tchmod($dest,$options['filePermission']); \r\n\t\t\t} else { \r\n\t\t\t\t//Copy parent directory with new name and all its content \r\n\t\t\t\t@mkdir($dest,$options['folderPermission']); \r\n\t\t\t\tchmod($dest,$options['filePermission']); \r\n\t\t\t} \r\n\t\t}\r\n\r\n\t\t$dirHandle=opendir($source); \r\n\t\twhile($file=readdir($dirHandle)) \r\n\t\t{ \r\n\t\t\tif($file!=\".\" && $file!=\"..\") \r\n\t\t\t{ \r\n\t\t\t\tif(!is_dir($source.\"/\".$file)) { \r\n\t\t\t\t\t$__dest=$dest.\"/\".$file; \r\n\t\t\t\t} else { \r\n\t\t\t\t\t$__dest=$dest.\"/\".$file; \r\n\t\t\t\t} \r\n\t\t\t\t//echo \"$source/$file ||| $__dest<br />\"; \r\n\t\t\t\t$result=smartCopy($source.\"/\".$file, $__dest, $options); \r\n\t\t\t} \r\n\t\t} \r\n\t\tclosedir($dirHandle); \r\n\t\t \r\n\t} else { \r\n\t\t$result=false; \r\n\t} \r\n\treturn $result; \r\n}", "public static function add_link($link, $id)\n {\n try {\n $id2 = self::get_storage_id_by_link($link, false, true);\n if ($id2 != $id) {\n throw new Utils_FileStorage_LinkDuplicate($link);\n }\n } catch (Utils_FileStorage_LinkNotFound $e) {\n DB::Execute('UPDATE utils_filestorage SET link=%s WHERE id=%d', array($link, $id));\n }\n }", "function copy() {\r\n\t\t\t$cloneLink = new LinkNode($this->getDOMDocument());\r\n\t\t\t$cloneLink->setAttribute('href',$this->getAttribute('href'));\r\n\t\t\t$cloneLink->setAttribute('target',$this->getAttribute('target'));\r\n\t\t\t\r\n\t\t\treturn $cloneLink;\r\n\t\t}", "public function link(int $target_ino, int $parent_ino, string $name): int {\n\n $r = $this->replica;\n $ops = [];\n\n // 1. find parent_id (uuid of fs_inode_entry) from parent_ino.\n $parent_id = $this->ino_to_tree_id($parent_ino);\n\n // 2. find target id.\n $target_local_inode = $this->ino_to_local_entry($target_ino);\n $target_id = $target_local_inode->tree_id;\n\n // 5. create tree entry under /root/../parent_id\n $frm = new fs_ref_meta();\n $frm->name = $name;\n $frm->inode_id = $target_id;\n $ops[] = new op_move($r->tick(), $parent_id, $frm, new_id() );\n\n $r->apply_ops($ops);\n\n // 6. increment links count\n $target_local_inode->links ++;\n\n return $target_ino;\n }", "public function copy($path, $target)\n {\n \n }", "public function createDirectory(Directory $directory): void;", "function copyr($source, $dest) {\n\tif (is_link($source)) {\n\t\treturn symlink(readlink($source), $dest);\n\t}\n\n\tif (is_file($source)) {\n\t\treturn copy($source, $dest);\n\t}\n\n\tif (!is_dir($dest)) {\n\t\tmkdir($dest);\n\t}\n\n\t$dir = dir($source);\n\twhile (false !== $entry = $dir->read()) {\n\t\tif ($entry == '.' || $entry == '..') {\n\t\t\tcontinue;\n\t\t}\n\t\tcopyr(\"$source/$entry\", \"$dest/$entry\");\n\t}\n\n\t// Clean up\n\t$dir->close();\n\treturn true;\n}", "private static function links()\n {\n $files = ['Link'];\n $folder = static::$root.'Http/Links'.'/';\n\n self::call($files, $folder);\n\n $files = ['LinkKeyNotFoundException'];\n $folder = static::$root.'Http/Links/Exceptions'.'/';\n\n self::call($files, $folder);\n }", "function smartCopy($source, $dest, $options=array('folderPermission'=>0777,'filePermission'=>0777)) \n{ \n $result=false; \n \n if (is_file($source)) { \n if ($dest[strlen($dest)-1]=='/') { \n if (!file_exists($dest)) { \n cmfcDirectory::makeAll($dest,$options['folderPermission'],true); \n } \n $__dest=$dest.\"/\".basename($source); \n } else { \n $__dest=$dest; \n } \n $result=copy($source, $__dest); \n chmod($__dest,$options['filePermission']); \n \n } elseif(is_dir($source)) { \n if ($dest[strlen($dest)-1]=='/') { \n if ($source[strlen($source)-1]=='/') { \n //Copy only contents \n } else { \n //Change parent itself and its contents \n $dest=$dest.basename($source); \n @mkdir($dest); \n chmod($dest,$options['filePermission']); \n } \n } else { \n if ($source[strlen($source)-1]=='/') { \n //Copy parent directory with new name and all its content \n @mkdir($dest,$options['folderPermission']); \n chmod($dest,$options['filePermission']); \n } else { \n //Copy parent directory with new name and all its content \n @mkdir($dest,$options['folderPermission']); \n /*\n * modify by Zoe\n * dunno why this will generate warning message\n * tune this warning temporally \n */\n @chmod($dest,$options['filePermission']); \n } \n } \n\n $dirHandle=opendir($source); \n while($file=readdir($dirHandle)) \n { \n if($file!=\".\" && $file!=\"..\") \n { \n if(!is_dir($source.\"/\".$file)) { \n $__dest=$dest.\"/\".$file; \n } else { \n $__dest=$dest.\"/\".$file; \n } \n //echo \"$source/$file ||| $__dest<br />\"; \n $result=smartCopy($source.\"/\".$file, $__dest, $options); \n } \n } \n closedir($dirHandle); \n \n } else { \n $result=false; \n } \n return $result; \n}", "function create_folder($name)\n{\n $location = Path::get_repository_path() . 'lib/content_object/';\n Filesystem::create_dir($location . $name);\n}", "public function make($filename, $destination);", "function createDocmanLink($sessionKey, $group_id, $parent_id, $title, $description, $ordering, $status, $obsolescence_date, $content, $permissions, $metadata, $owner, $create_date, $update_date) {\n $extraParams['item']['link_url'] = $content;\n return _createDocmanDocument($sessionKey, $group_id, $parent_id, $title, $description, $ordering, $status, $obsolescence_date, PLUGIN_DOCMAN_ITEM_TYPE_LINK, $permissions, $metadata, $owner, $create_date, $update_date, $extraParams);\n}", "public static function link($destination, $args = [])\n {\n $presenter = self::instance()->application->getPresenter();\n if ($presenter) {\n return $presenter->link($destination, $args);\n }\n\n $linkGenerator = self::getService('application.linkGenerator');\n if (strpos($destination, '//') === 0) {\n // LinkGenerator nepracuje s // a vse vraci automaticky absolutne\n $destination = substr($destination, 2);\n }\n return $linkGenerator->link($destination, $args);\n }", "function new_file_receiver_link($idfile, $idreceiver) {\n file_receiver_link($idfile, $idreceiver);\n}", "public function testCreateLinkShouldReturnNativeLink( ) {\n $db = $this->_createDb($this->_cut->createLink());\n }", "private function createDirectories(string $projectHomedir, string $symlinkTarget) : bool\n {\n return $this->fileManager->createDir($projectHomedir)\n && $this->fileManager->createDir($symlinkTarget);\n }", "public function mkdir($name, $chmod = 755);", "public function create($mode=0777, $flags=0)\n \t{\n \t\tif ($this->exists()) {\n \t\t\tif ($flags & Fs::PRESERVE) return;\n \t\t\tthrow new Fs_Exception(\"Unable to create directory '{$this->_path}': File already exists\");\n \t\t}\n \t\t\n \t\t$path = (string)$this->realpath();\n \t\tif (!@mkdir($path, $mode, $flags & Fs::RECURSIVE)) throw new Fs_Exception(\"Failed to create directory '$path'\", error_get_last());\n \t\t$this->clearStatCache();\n \t}", "function self_link()\n {\n }", "function wp_mkdir_p($target)\n {\n }", "public function term_link( $termlink, $term, $taxonomy ) {\n\t\tif( get_option('no_taxonomy_structure') ) {\n\t\t\treturn $termlink;\n\t\t}\n\n\t\t$taxonomy = get_taxonomy($taxonomy);\n\t\tif( $taxonomy->_builtin )\n\t\t\treturn $termlink;\n\n\t\tif( empty($taxonomy) )\n\t\t\treturn $termlink;\n\n\t\t$wp_home = rtrim( home_url(), '/' );\n\n\t\t$post_type = $taxonomy->object_type[0];\n\t\t$slug = get_post_type_object($post_type)->rewrite['slug'];\n\t\t$with_front = get_post_type_object($post_type)->rewrite['with_front'];\n\n\t\t//$termlink = str_replace( $term->slug.'/', $this->get_taxonomy_parents( $term->term_id,$taxonomy->name, false, '/', true ), $termlink );\n\t\t$str = rtrim( preg_replace( \"/%[a-z_]*%/\", \"\" ,get_option(\"permalink_structure\")) ,'/' );//remove with front\n\t\t$termlink = str_replace($str.\"/\", \"/\", $termlink );\n\n\t\tif( $with_front === false ) {\n\t\t\t$str = \"\";\n\t\t}\n\t\t$slug = $str.\"/\".$slug;\n\n\t\t$termlink = str_replace( $wp_home, $wp_home.$slug, $termlink );\n\t\t$termlink = str_replace( $term->slug.'/', $this->get_taxonomy_parents( $term->term_id,$taxonomy->name, false, '/', true ), $termlink );\n\t\treturn $termlink;\n\t}", "function link_database()\n{\n\t$sql=\"CREATE TABLE IF NOT EXISTS `link` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n `link` varchar(100) COLLATE utf8_unicode_ci NOT NULL,\n `url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,\n PRIMARY KEY (`id`)\n) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\";\n\tlz::h('db')->install($sql);\n}", "function link_to(string $url, ?string $title = null, array $attributes = [], ?bool $secure = null, bool $escape = true): Htmlable\n {\n return \\app('html')->link($url, $title, $attributes, $secure, $escape);\n }", "public function touch($path, $modificationTime = null, $accessTime = null);", "public function symlink($theme)\n {\n $trace = debug_backtrace();\n\n if (! isset($trace[1])) return;\n\n $link = str_replace($this->getThemeName(), $theme, array_get($trace[1], 'file'));\n\n extract($this->arguments);\n extract($this->view->getShared());\n\n return require($link);\n }", "public function createDirectory()\n\t{\n\t\tif(is_dir($this->storagePath) and is_writable($this->storagePath)===false)\n\t\t{\n\t\t\tchmod($this->storagePath,$this->permissions);\n\t\t}\n\t\t\n\t\tif(is_dir($this->storagePath) and is_writable($this->storagePath))\n\t\t{\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\tif(!is_dir($this->storagePath) and $this->createDir===true and mkdir($this->storagePath,$this->permissions,true))\n\t\t{\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\tthrow new \\RuntimeException(\"Cannot to create the storage path:\".$this->storagePath);\n\t}", "public function createLocalLink($target, $name)\r\n\t\t{\r\n\t\t\treturn '<a href=\"' . $GLOBALS['PAGE']['root_dir'] . $target . '\">' . $name . '</a>';\r\n\t\t}", "function is_writable($orgdest)\n {\n if ($orgdest{0} == '/')\n {\n if (count($orgdest) == 1)\n $testdest = $orgdest;\n else\n $testdest= substr($orgdest, 0, strpos($orgdest, '/', 1));\n }\n else\n {\n if ($orgdest{strlen($orgdest)-1} != '/' && !is_file($orgdest))\n $orgdest .= '/';\n\n $testdest = $orgdest;\n\n if (!is_dir($orgdest))\n {\n $orgdestArray = explode('/', $orgdest);\n\n $testdest = $orgdestArray[0].'/';\n }\n }\n\n atkdebug(\"Checking with: \".$testdest);\n\n return is_writable($testdest);\n }\n\n /**\n * This function creates recursively a destination. This fuction accepts\n * a full path ../dir/subdir/subdir2/subdir3 etc. It checks if the path is writeable\n * and replace mis typed slashes with forward slashes.\n *\n * @static\n * @param string $dir the fullpath\n * @param octal $privileges octal number for the rights of the written\n * @param bool $recursive \n * @return bool returns true if the destination is written.\n */\n function mkdirRecursive($dir, $privileges=0777, $recursive=true)\n {\n $dir = preg_replace('/(\\/){2,}|(\\\\\\){1,}/','/',$dir); //only forward-slash\n\n if (!atkFileUtils::is_writable($dir))\n {\n atkdebug(\"Error no write permission!\");\n return false;\n }\n\n atkdebug(\"Permission granted to write.\");\n\n if( is_null($dir) || $dir === \"\" ){\n return FALSE;\n }\n if( is_dir($dir) || $dir === \"/\" ){\n return TRUE;\n }\n if( atkFileUtils::mkdirRecursive(dirname($dir), $privileges, $recursive) ){\n return mkdir($dir, $privileges);\n }\n return FALSE;\n }\n\n /**\n * This function parse a templatestring with the data and returns\n * a string with the data parsed in the template.\n *\n * @static\n * @param string $template the template to parse\n * @param array $data array which contains the data for the template\n * @return string returns the parsed string\n */\n function parseDirectoryName($template, $data)\n {\n atkimport(\"atk.utils.atkstringparser\");\n $stringparser = new atkStringParser($template);\n return $stringparser->parse($data);\n }\n\n\n /**\n * Returns mimetype for the given filename, based on fileextension.\n * This function is different from mime_content_type because it\n * does not access the file but just looks at the fileextension and\n * returns the right mimetype.\n *\n * @static\n * @param string $filename Filename (or just the extention) we want\n * to know the mime type for.\n * @return string The mimetype for this file extension.\n */\n function atkGetMimeTypeFromFileExtension($filename)\n {\n $ext = strtolower(end(explode('.',$filename )));\n\n $mimetypes = array(\n 'ai' =>'application/postscript',\n 'aif' =>'audio/x-aiff',\n 'aifc' =>'audio/x-aiff',\n 'aiff' =>'audio/x-aiff',\n 'asc' =>'text/plain',\n 'atom' =>'application/atom+xml',\n 'avi' =>'video/x-msvideo',\n 'bcpio' =>'application/x-bcpio',\n 'bmp' =>'image/bmp',\n 'cdf' =>'application/x-netcdf',\n 'cgm' =>'image/cgm',\n 'cpio' =>'application/x-cpio',\n 'cpt' =>'application/mac-compactpro',\n 'crl' =>'application/x-pkcs7-crl',\n 'crt' =>'application/x-x509-ca-cert',\n 'csh' =>'application/x-csh',\n 'css' =>'text/css',\n 'dcr' =>'application/x-director',\n 'dir' =>'application/x-director',\n 'djv' =>'image/vnd.djvu',\n 'djvu' =>'image/vnd.djvu',\n 'doc' =>'application/msword',\n 'dtd' =>'application/xml-dtd',\n 'dvi' =>'application/x-dvi',\n 'dxr' =>'application/x-director',\n 'eps' =>'application/postscript',\n 'etx' =>'text/x-setext',\n 'ez' =>'application/andrew-inset',\n 'gif' =>'image/gif',\n 'gram' =>'application/srgs',\n 'grxml' =>'application/srgs+xml',\n 'gtar' =>'application/x-gtar',\n 'hdf' =>'application/x-hdf',\n 'hqx' =>'application/mac-binhex40',\n 'html' =>'text/html',\n 'html' =>'text/html',\n 'ice' =>'x-conference/x-cooltalk',\n 'ico' =>'image/x-icon',\n 'ics' =>'text/calendar',\n 'ief' =>'image/ief',\n 'ifb' =>'text/calendar',\n 'iges' =>'model/iges',\n 'igs' =>'model/iges',\n 'jpe' =>'image/jpeg',\n 'jpeg' =>'image/jpeg',\n 'jpg' =>'image/jpeg',\n 'js' =>'application/x-javascript',\n 'kar' =>'audio/midi',\n 'latex' =>'application/x-latex',\n 'm3u' =>'audio/x-mpegurl',\n 'man' =>'application/x-troff-man',\n 'mathml' =>'application/mathml+xml',\n 'me' =>'application/x-troff-me',\n 'mesh' =>'model/mesh',\n 'mid' =>'audio/midi',\n 'midi' =>'audio/midi',\n 'mif' =>'application/vnd.mif',\n 'mov' =>'video/quicktime',\n 'movie' =>'video/x-sgi-movie',\n 'mp2' =>'audio/mpeg',\n 'mp3' =>'audio/mpeg',\n 'mpe' =>'video/mpeg',\n 'mpeg' =>'video/mpeg',\n 'mpg' =>'video/mpeg',\n 'mpga' =>'audio/mpeg',\n 'ms' =>'application/x-troff-ms',\n 'msh' =>'model/mesh',\n 'mxu m4u' =>'video/vnd.mpegurl',\n 'nc' =>'application/x-netcdf',\n 'oda' =>'application/oda',\n 'ogg' =>'application/ogg',\n 'pbm' =>'image/x-portable-bitmap',\n 'pdb' =>'chemical/x-pdb',\n 'pdf' =>'application/pdf',\n 'pgm' =>'image/x-portable-graymap',\n 'pgn' =>'application/x-chess-pgn',\n 'php' =>'application/x-httpd-php',\n 'php4' =>'application/x-httpd-php',\n 'php3' =>'application/x-httpd-php',\n 'phtml' =>'application/x-httpd-php',\n 'phps' =>'application/x-httpd-php-source',\n 'png' =>'image/png',\n 'pnm' =>'image/x-portable-anymap',\n 'ppm' =>'image/x-portable-pixmap',\n 'ppt' =>'application/vnd.ms-powerpoint',\n 'ps' =>'application/postscript',\n 'qt' =>'video/quicktime',\n 'ra' =>'audio/x-pn-realaudio',\n 'ram' =>'audio/x-pn-realaudio',\n 'ras' =>'image/x-cmu-raster',\n 'rdf' =>'application/rdf+xml',\n 'rgb' =>'image/x-rgb',\n 'rm' =>'application/vnd.rn-realmedia',\n 'roff' =>'application/x-troff',\n 'rtf' =>'text/rtf',\n 'rtx' =>'text/richtext',\n 'sgm' =>'text/sgml',\n 'sgml' =>'text/sgml',\n 'sh' =>'application/x-sh',\n 'shar' =>'application/x-shar',\n 'shtml' =>'text/html',\n 'silo' =>'model/mesh',\n 'sit' =>'application/x-stuffit',\n 'skd' =>'application/x-koan',\n 'skm' =>'application/x-koan',\n 'skp' =>'application/x-koan',\n 'skt' =>'application/x-koan',\n 'smi' =>'application/smil',\n 'smil' =>'application/smil',\n 'snd' =>'audio/basic',\n 'spl' =>'application/x-futuresplash',\n 'src' =>'application/x-wais-source',\n 'sv4cpio' =>'application/x-sv4cpio',\n 'sv4crc' =>'application/x-sv4crc',\n 'svg' =>'image/svg+xml',\n 'swf' =>'application/x-shockwave-flash',\n 't' =>'application/x-troff',\n 'tar' =>'application/x-tar',\n 'tcl' =>'application/x-tcl',\n 'tex' =>'application/x-tex',\n 'texi' =>'application/x-texinfo',\n 'texinfo' =>'application/x-texinfo',\n 'tgz' =>'application/x-tar',\n 'tif' =>'image/tiff',\n 'tiff' =>'image/tiff',\n 'tr' =>'application/x-troff',\n 'tsv' =>'text/tab-separated-values',\n 'txt' =>'text/plain',\n 'ustar' =>'application/x-ustar',\n 'vcd' =>'application/x-cdlink',\n 'vrml' =>'model/vrml',\n 'vxml' =>'application/voicexml+xml',\n 'wav' =>'audio/x-wav',\n 'wbmp' =>'image/vnd.wap.wbmp',\n 'wbxml' =>'application/vnd.wap.wbxml',\n 'wml' =>'text/vnd.wap.wml',\n 'wmlc' =>'application/vnd.wap.wmlc',\n 'wmlc' =>'application/vnd.wap.wmlc',\n 'wmls' =>'text/vnd.wap.wmlscript',\n 'wmlsc' =>'application/vnd.wap.wmlscriptc',\n 'wmlsc' =>'application/vnd.wap.wmlscriptc',\n 'wrl' =>'model/vrml',\n 'xbm' =>'image/x-xbitmap',\n 'xht' =>'application/xhtml+xml',\n 'xhtml' =>'application/xhtml+xml',\n 'xls' =>'application/vnd.ms-excel',\n 'xml xsl' =>'application/xml',\n 'xpm' =>'image/x-xpixmap',\n 'xslt' =>'application/xslt+xml',\n 'xul' =>'application/vnd.mozilla.xul+xml',\n 'xwd' =>'image/x-xwindowdump',\n 'xyz' =>'chemical/x-xyz',\n 'zip' =>'application/zip'\n );\n\n $ext = trim(strtolower($ext));\n if (array_key_exists($ext,$mimetypes))\n {\n atkdebug(\"Filetype for $filename is {$mimetypes[$ext]}\");\n return $mimetypes[$ext];\n }\n else\n {\n atkdebug(\"Filetype for $filename could not be found. Returning application/octet-stream.\");\n return \"application/octet-stream\";\n }\n }\n\n /**\n * Get the Mimetype for a file the proper way.\n *\n * @link http://en.wikipedia.org/wiki/MIME_type\n *\n * @param string $file_path Path to the file\n * @return string Mimetype\n */\n public static function getFileMimetype($file_path)\n {\n // First try with fileinfo functions\n if (function_exists('finfo_open'))\n {\n $finfo = finfo_open(FILEINFO_MIME_TYPE);\n $type = finfo_file($finfo, $file_path);\n finfo_close($finfo);\n }\n elseif (function_exists('mime_content_type'))\n {\n $type = mime_content_type($file);\n }\n else\n {\n // Unable to get the file mimetype!\n $type = '';\n }\n return $type;\n }\n\n /**\n * Delete complete directory and all of its contents.\n *\n * @todo If one of the subdirs/files cannot be removed, you end up with\n * a half deleted directory structure.\n * @param string $dir The directory to remove\n * @return True if succesful, false if not\n */\n function rmdirRecursive( $dir )\n {\n if ( !is_writable( $dir ) )\n {\n if ( !@chmod( $dir, 0777 ) )\n {\n return FALSE;\n }\n }\n\n $d = dir( $dir );\n while ( FALSE !== ( $entry = $d->read() ) )\n {\n if ( $entry == '.' || $entry == '..' )\n {\n continue;\n }\n $entry = $dir . '/' . $entry;\n if ( is_dir( $entry ) )\n {\n if ( !atkFileUtils::rmdirRecursive( $entry ) )\n {\n return FALSE;\n }\n continue;\n }\n if ( !@unlink( $entry ) )\n {\n $d->close();\n return FALSE;\n }\n }\n\n $d->close();\n\n rmdir( $dir );\n\n return TRUE;\n }\n}", "function path_dir ($path) {\r\n\t$path = PATH_PROGRAM.$path.'/';\r\n\tmk_dir($path);\r\n\treturn $path;\r\n}", "protected function makeIndexLink($file, $index)\n {\n //This is here for forward-compatibility\n //For now, just copy the content here again.\n copy($file, $index);\n }", "function wp_make_link_relative($link)\n {\n }", "public function create(array $config): FilesystemInterface;", "private final function commandLinkDup() {\n\t\t$storageDir = $this->storage->getStorageDirectory();\n\t\t\n\t\t// create recursive iterator, so we can walk all files\n\t\t// unfortunately we can't pass flags to only get pathname here as RecursiveIteratorIterator doesn't work anymore then\n\t\t$storageDirIterator = new RecursiveDirectoryIterator( $storageDir, FilesystemIterator::FOLLOW_SYMLINKS | RecursiveDirectoryIterator::SKIP_DOTS ); \n\t\t\n\t\t// filter storageDirIterator\n\t\t$filteredStorageDirIterator = new RecursiveCallbackFilterIterator( $storageDirIterator, function( $current, $key, $iterator ) {\n\t\t\t$currentFilename = $current->getFilename();\n\t\t\t\n\t\t\t// skip hidden files and directories\n\t\t\tif ( ( $currentFilename[0] === '.' ) || ( ( $currentFilename === \"lost+found\" ) && $current->isDir() ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t\n\t\t\treturn true;\n\t\t});\n\t\t\n\t\t// used to store file sizes so we have a rough filter for files first\n\t\t$fileSizes = array();\n\t\t$numFiles = 0;\n\t\t$numFilesUnduped = 0;\n\t\t$startTime = microtime(true);\n\t\t\t\t\n\t\t$spaceSaved = 0;\n\t\t\n\t\t// report\n\t\tprintf(\"Starting iteration through %s\\n\", $storageDir);\n\t\t\n\t\t// iterate through directories and compare files as we go\n\t\tforeach ( new RecursiveIteratorIterator( $filteredStorageDirIterator, RecursiveIteratorIterator::CHILD_FIRST ) as $splFileObject ) {\n\t\t\t// skip directories\n\t\t\tif ( $splFileObject->isDir() ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t\n\t\t\ttry {\n\t\t\t\t// SPLFileObject does not expose a method to read an \n\t\t\t\t// arbitrary number of bytes, so we need to get\n\t\t\t\t// the full Pathname to use a regular filehandle\n\t\t\t\t$fullFileName = $splFileObject->getPathname();\n\t\t\t\t\n\t\t\t\tif ( ( $fileHandle = fopen($fullFileName, 'rb') ) === false ) {\n\t\t\t\t\t// in case we can't open the file, we report and continue\n\t\t\t\t\t$this->notifyError( \"Unable to read file $fullFileName\\n\" );\n\t\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\n\t\t\t\t// according to php manual, this function does not fail\n\t\t\t\t$stats = fstat($fileHandle);\n\t\t\t\t\n\t\t\t\t$fileSize = $stats['size'];\n\t\t\t\t\n\t\t\t\t$fileIno = $stats['ino'];\n\t\t\t\t$fileDev = $stats['dev'];\n\t\t\t\t\t\t\t\n\t\t\t\t// !isset? -> no files with that size yet\n\t\t\t\tif (!isset($fileSizes[$fileSize])) {\n\t\t\t\t\t$fileSizes[$fileSize] = array();\n\t\t\t\t} \t\t\n\t\t\t\t\n\t\t\t\t// read first 32k of data to use as base for hash comparison\n\t\t\t\t// by limiting to fixed length at start of file we stay time-constant in theory\n\t\t\t\tif ( ( $data = fread($fileHandle, 32768) ) === false ) {\n\t\t\t\t\t// in case of error, we report and continue\n\t\t\t\t\t\n\t\t\t\t\tfclose( $fileHandle );\n\t\t\t\t\t\n\t\t\t\t\t$this->notifyError( \"Unable to read 32k from $fullFileName\\n\" );\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t// crc is less compute intensive than e.g. md5 and should be sufficient for our case\n\t\t\t\t// according to php manual, this function does not fail\n\t\t\t\t$crc = crc32($data);\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif (isset($fileSizes[$fileSize][$crc])) {\n\t\t\t\t\t// as we've already read 32k, we need to first \n\t\t\t\t\t// rewind the pointer to make sure to read everything\n\t\t\t\t\t// it would also be possible to prepend $data, but we\n\t\t\t\t\t// would then risk to not have mmap\n\t\t\t\t\trewind( $fileHandle );\n\t\t\t\t\t\n\t\t\t\t\t// hopefully php will mmap this\n\t\t\t\t\t$fileContents = stream_get_contents($fileHandle);\n\t\t\t\t\tfclose($fileHandle);\n\t\t\t\t\t\n\t\t\t\t\tforeach ($fileSizes[$fileSize][$crc] as $fullFileNameOther ) {\n\t\t\t\t\t\t// first check that this isn't already linking to the same \n\t\t\t\t\t\t// if so, we can completely skip this file\n\t\t\t\t\t\t$statsOther = stat( $fullFileNameOther );\n\t\t\t\t\t\t\n\t\t\t\t\t\tif ( ( $fileDev === $statsOther['dev'] ) && ( $fileIno === $statsOther['ino'] ) ) {\n\t\t\t\t\t\t\tcontinue 2;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t\t// exact comparison - if match found: hardlink (and count for report)\n\t\t\t\t\t\t// file_get_contents & stream_get_contents should use mmap \n\t\t\t\t\t\t// and thus be more efficient than fread \n\t\t\t\t\t\t// unfortunately we can't really save anything into variables without \n\t\t\t\t\t\t// possibly loosing optimizations, which makes error handling bad\n\t\t\t\t\t\tif ($fileContents === file_get_contents($fullFileNameOther)) {\n\t\t\t\t\t\t\t// create link on different filename and then rename it\n\t\t\t\t\t\t\t// to original filename - this way we achieve atomic operation\n\t\t\n\t\t\t\t\t\t\t$linkName = $fullFileNameOther . '_LINK';\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t// check for file with $linkName already existing\n\t\t\t\t\t\t\tif ( file_exists( $linkName ) ) {\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t// if so, it was probably left from a previous iteration\n\t\t\t\t\t\t\t\t// but we can't just delete, so we report and skip\n\t\t\t\t\t\t\t\t$this->notifyError( \"$linkName already exists\\n\" );\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tcontinue 2;\n\t\t\t\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\t\ttry {\n\t\t\t\t\t\t\t\t// hard link file to already existing one so we can remove doubled contents\n\t\t\t\t\t\t\t\tif ( link( $fullFileNameOther, $linkName ) === false ) {\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t$this->notifyError( \"Unable to create link $linkName pointing to $fullFileNameOther\\n\" );\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t// in case of error creating link, we can just \n\t\t\t\t\t\t\t\t\t// continue to next file after reporting\n\t\t\t\t\t\t\t\t\tcontinue 2;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} catch( Exception $linkException ) {\n\t\t\t\t\t\t\t\t// may encounter exception in case of permission problem\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$this->notifyError( \"Exception trying to link $linkName pointing to $fullFileNameOther\\n\" );\n\t\t\t\t\t\t\t\t$this->notifyError( $linkException->getMessage() );\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tcontinue 2;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t// attempt to rename link to original filename ;\n\t\t\t\t\t\t\t// unfortunately there's no way to make sure that\n\t\t\t\t\t\t\t// this is the original file we've been dealing\n\t\t\t\t\t\t\t// with / make the operation atomic\n\t\t\t\t\t\t\tif ( rename( $linkName, $fullFileName ) === false ) {\n\t\t\t\t\t\t\t\t$this->notifyError( \"Unable to rename link from $linkName to $fullFileName\\n\" );\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t// if we err on rename, we need to remove link again before proceeding\n\t\t\t\t\t\t\t\tif ( unlink( $linkName ) === false ) {\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t// something went really wrong if we're unable to remove \n\t\t\t\t\t\t\t\t\t// the link we just created again\n\t\t\t\t\t\t\t\t\tthrow new Exception( \"Unable to remove the link at $linkName after creating it\" );\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\t// in case of error creating link, we can just \n\t\t\t\t\t\t\t\t// continue to next file after reporting\n\t\t\t\t\t\t\t\tcontinue 2;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t$numFilesUnduped++;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t$spaceSaved += $fileSize;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t// jump to next file\n\t\t\t\t\t\t\tcontinue 2;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t// if no match found, add to array\n\t\t\t\t\t$fileSizes[$fileSize][$crc][] = $fullFileName;\n\t\t\t\t} else {\n\t\t\t\t\tfclose($fileHandle);\n\t\t\t\t\t\n\t\t\t\t\t$fileSizes[$fileSize][$crc] = array( $fullFileName );\n\t\t\t\t}\n\n\t\t\t} catch(Exception $e) {\n\t\t\t\tif (isset($fileHandle) && is_resource($fileHandle)) {\n\t\t\t\t\tfclose($fileHandle);\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tthrow $e;\n\t\t\t}\n\t\t\t\n\t\t\t// count number of files, so we can display something in the meantime\n\t\t\t$numFiles ++;\n\t\t\t\n\t\t\t// progress report\n\t\t\tprintf(\"\\rFiles scanned: %d - Files unduped: %d - Space saved: %s\", $numFiles, $numFilesUnduped, StringFilter::formatFileSize($spaceSaved) );\n\t\t}\n\t\t\n\t\tprint(\"\\n\");\n\t\t\n\t\t\n\t\techo \"Finished unduping.\\n\";\t\t\n\t}", "public static function mknod($path, $mode) {\n\n Log::in(\"passthru - mknod\");\n \n $retarray = array();\n\n\t\t/* First create the directory path needed for the file\n\t\t * or directory creation.\n\t\t */\n\t\tPassThru::_makePath($path, $mode);\n\t\t\n /* Check for a file or directory */\n if ( is_dir($path)) {\n\n if ( mkdir($path, $mode)=== false ) {\n\n Log::out(\"passthru - mknod - failed to create directory\");\n return -FUSE_ENOENT;\n }\n } else {\n\n /* Just 'touch' the file and chmod it */\n if ( touch($path) === false ) {\n\n Log::out(\"passthru - mknod - failed to create file\");\n return -FUSE_ENOENT;\n\n }\n\n if ( chmod($path, $mode) === false ) {\n\n Log::out(\"passthru - mknod - failed to chmod file\");\n return -FUSE_ENOENT;\n\n }\n }\n\n Log::out(\"passthru - mknod\");\n return 0;\n\n }", "protected function publishDirectory($sourcePath, $relativeTargetPathAndFilename)\n {\n $targetPathAndFilename = $this->path . $relativeTargetPathAndFilename;\n\n if (@stat($sourcePath) === false) {\n throw new TargetException(sprintf('Could not publish directory \"%s\" into resource publishing target \"%s\" because the source is not accessible (file stat failed).', $sourcePath, $this->name), 1416244512);\n }\n\n if (!file_exists(dirname($targetPathAndFilename))) {\n Files::createDirectoryRecursively(dirname($targetPathAndFilename));\n }\n\n try {\n if (Files::is_link($targetPathAndFilename)) {\n Files::unlink($targetPathAndFilename);\n }\n if ($this->relativeSymlinks) {\n $result = Files::createRelativeSymlink($sourcePath, $targetPathAndFilename);\n } else {\n $temporaryTargetPathAndFilename = $targetPathAndFilename . '.' . Algorithms::generateRandomString(13) . '.tmp';\n symlink($sourcePath, $temporaryTargetPathAndFilename);\n $result = rename($temporaryTargetPathAndFilename, $targetPathAndFilename);\n }\n } catch (\\Exception $exception) {\n $result = false;\n }\n if ($result === false) {\n throw new TargetException(sprintf('Could not publish \"%s\" into resource publishing target \"%s\" because the source directory could not be symlinked at target location.', $sourcePath, $this->name), 1416244515, (isset($exception) ? $exception : null));\n }\n\n $this->systemLogger->log(sprintf('FileSystemSymlinkTarget: Published directory. (target: %s, file: %s)', $this->name, $relativeTargetPathAndFilename), LOG_DEBUG);\n }", "public function maybe_make_link($url)\n {\n }" ]
[ "0.68053097", "0.6767772", "0.6657984", "0.6308622", "0.6242999", "0.61739856", "0.61524177", "0.60927993", "0.57706857", "0.56998384", "0.5665688", "0.5636316", "0.56214124", "0.5576142", "0.5559281", "0.5550684", "0.55261123", "0.5525235", "0.53828186", "0.53544694", "0.5349634", "0.5334855", "0.52961427", "0.5244574", "0.5241807", "0.5231191", "0.52265924", "0.5222373", "0.51626927", "0.51556265", "0.51271075", "0.5125742", "0.50950044", "0.50866103", "0.50729185", "0.5032027", "0.49627575", "0.49463165", "0.4936356", "0.49171633", "0.49130854", "0.49085346", "0.4894337", "0.4878075", "0.4845164", "0.48213792", "0.48171726", "0.47643992", "0.4759626", "0.4758667", "0.4755156", "0.47047818", "0.4701687", "0.46960887", "0.4694501", "0.4672133", "0.4669859", "0.46668842", "0.46646565", "0.4658571", "0.46452287", "0.46374506", "0.4635039", "0.46201196", "0.4607076", "0.46014336", "0.45934823", "0.45933777", "0.45910743", "0.45880646", "0.45771596", "0.45692658", "0.4567981", "0.45666835", "0.45666313", "0.4564914", "0.45611876", "0.45497704", "0.45444474", "0.45439216", "0.45429528", "0.45393127", "0.45177203", "0.45106727", "0.45091805", "0.4500993", "0.4497827", "0.44967225", "0.44784376", "0.44763204", "0.4474935", "0.44669178", "0.4466144", "0.44593596", "0.4451989", "0.44511998", "0.4448554", "0.44450575", "0.44406745", "0.44403604" ]
0.5600209
13