* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php'; /** * Class ProductAttributeValue * Used to represent a product attribute value */ class ProductAttributeValue extends CommonObject { /** * Database handler * @var DoliDB */ public $db; /** * Attribute value id * @var int */ public $id; /** * Product attribute id * @var int */ public $fk_product_attribute; /** * Attribute value ref * @var string */ public $ref; /** * Attribute value value * @var string */ public $value; /** * Constructor * * @param DoliDB $db Database handler */ public function __construct(DoliDB $db) { global $conf; $this->db = $db; $this->entity = $conf->entity; } /** * Gets a product attribute value * * @param int $valueid Product attribute value id * @return int <0 KO, >0 OK */ public function fetch($valueid) { $sql = "SELECT rowid, fk_product_attribute, ref, value FROM ".MAIN_DB_PREFIX."product_attribute_value WHERE rowid = ".(int) $valueid." AND entity IN (".getEntity('product').")"; $query = $this->db->query($sql); if (!$query) { return -1; } if (!$this->db->num_rows($query)) { return -1; } $obj = $this->db->fetch_object($query); $this->id = $obj->rowid; $this->fk_product_attribute = $obj->fk_product_attribute; $this->ref = $obj->ref; $this->value = $obj->value; return 1; } /** * Returns all product attribute values of a product attribute * * @param int $prodattr_id Product attribute id * @param bool $only_used Fetch only used attribute values * @return ProductAttributeValue[] */ public function fetchAllByProductAttribute($prodattr_id, $only_used = false) { $return = array(); $sql = 'SELECT '; if ($only_used) { $sql .= 'DISTINCT '; } $sql .= 'v.fk_product_attribute, v.rowid, v.ref, v.value FROM '.MAIN_DB_PREFIX.'product_attribute_value v '; if ($only_used) { $sql .= 'LEFT JOIN '.MAIN_DB_PREFIX.'product_attribute_combination2val c2v ON c2v.fk_prod_attr_val = v.rowid '; $sql .= 'LEFT JOIN '.MAIN_DB_PREFIX.'product_attribute_combination c ON c.rowid = c2v.fk_prod_combination '; $sql .= 'LEFT JOIN '.MAIN_DB_PREFIX.'product p ON p.rowid = c.fk_product_child '; } $sql .= 'WHERE v.fk_product_attribute = '.(int) $prodattr_id; if ($only_used) { $sql .= ' AND c2v.rowid IS NOT NULL AND p.tosell = 1'; } $query = $this->db->query($sql); while ($result = $this->db->fetch_object($query)) { $tmp = new ProductAttributeValue($this->db); $tmp->fk_product_attribute = $result->fk_product_attribute; $tmp->id = $result->rowid; $tmp->ref = $result->ref; $tmp->value = $result->value; $return[] = $tmp; } return $return; } /** * Creates a value for a product attribute * * @param User $user Object user * @param int $notrigger Do not execute trigger * @return int <0 KO >0 OK */ public function create(User $user, $notrigger = 0) { if (!$this->fk_product_attribute) { return -1; } // Ref must be uppercase $this->ref = strtoupper($this->ref); $this->value = $this->db->escape($this->value); $sql = "INSERT INTO ".MAIN_DB_PREFIX."product_attribute_value (fk_product_attribute, ref, value, entity) VALUES (".(int) $this->fk_product_attribute.", '".$this->db->escape($this->ref)."', '".$this->db->escape($this->value)."', ".(int) $this->entity.")"; $query = $this->db->query($sql); if ($query) { $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX.'product_attribute_value'); if (empty($notrigger)) { // Call trigger $result = $this->call_trigger('PRODUCT_ATTRIBUTE_VALUE_CREATE', $user); if ($result < 0) { return -1; } // End call triggers } return 1; } return -1; } /** * Updates a product attribute value * * @param User $user Object user * @param int $notrigger Do not execute trigger * @return int <0 if KO, >0 if OK */ public function update(User $user, $notrigger = 0) { if (empty($notrigger)) { // Call trigger $result = $this->call_trigger('PRODUCT_ATTRIBUTE_VALUE_MODIFY', $user); if ($result < 0) { return -1; } // End call triggers } //Ref must be uppercase $this->ref = trim(strtoupper($this->ref)); $this->value = trim($this->value); $sql = "UPDATE ".MAIN_DB_PREFIX."product_attribute_value SET fk_product_attribute = '".(int) $this->fk_product_attribute."', ref = '".$this->db->escape($this->ref)."', value = '".$this->db->escape($this->value)."' WHERE rowid = ".(int) $this->id; if ($this->db->query($sql)) { return 1; } return -1; } /** * Deletes a product attribute value * * @param User $user Object user * @param int $notrigger Do not execute trigger * @return int <0 KO, >0 OK */ public function delete(User $user, $notrigger = 0) { if (empty($notrigger)) { // Call trigger $result = $this->call_trigger('PRODUCT_ATTRIBUTE_VALUE_DELETE', $user); if ($result < 0) { return -1; } // End call triggers } $sql = "DELETE FROM ".MAIN_DB_PREFIX."product_attribute_value WHERE rowid = ".(int) $this->id; if ($this->db->query($sql)) { return 1; } return -1; } /** * Deletes all product attribute values by a product attribute id * * @param int $fk_attribute Product attribute id * @param User $user Object user * @return int <0 KO, >0 OK */ public function deleteByFkAttribute($fk_attribute, User $user) { $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."product_attribute_value WHERE fk_product_attribute = ".(int) $fk_attribute; $query = $this->db->query($sql); if (!$query) { return -1; } if (!$this->db->num_rows($query)) { return 1; } while ($obj = $this->db->fetch_object($query)) { $tmp = new ProductAttributeValue($this->db); if ($tmp->fetch($obj->rowid) > 0) { $result = $tmp->delete($user); if ($result < 0) { return -1; } } else { return -1; } } return 1; } }