File "occolorswatches.php"
Full path: /home/cakedeco/retaildirectonline.co.uk/catalog/model/catalog/occolorswatches.php
File
size: 467 B (467 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
class ModelCatalogOccolorswatches extends Model
{
public function getOptionIdByProductOptionValueId($product_option_value_id) {
$sql = "SELECT * FROM `" . DB_PREFIX . "product_option_value` WHERE product_option_value_id = '" . (int) $product_option_value_id . "'";
$query = $this->db->query($sql);
if($query->row) {
return $query->row['option_id'];
} else {
return false;
}
}
}