* @copyright 2007-2011 PrestaShop SA * @version Release: $Revision: 6594 $ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class CustomerThreadCore extends ObjectModel { public $id; public $id_lang; public $id_contact; public $id_customer; public $id_order; public $id_product; public $status; public $email; public $token; public $date_add; public $date_upd; protected $table = 'customer_thread'; protected $identifier = 'id_customer_thread'; protected $fieldsRequired = array('id_lang', 'id_contact', 'token'); protected $fieldsSize = array('email' => 254); protected $fieldsValidate = array('id_lang' => 'isUnsignedId', 'id_contact' => 'isUnsignedId', 'id_customer' => 'isUnsignedId', 'id_order' => 'isUnsignedId', 'id_product' => 'isUnsignedId', 'email' => 'isEmail', 'token' => 'isGenericName'); public function getFields() { parent::validateFields(); $fields['id_lang'] = (int)($this->id_lang); $fields['id_contact'] = (int)($this->id_contact); $fields['id_customer'] = (int)($this->id_customer); $fields['id_order'] = (int)($this->id_order); $fields['id_product'] = (int)($this->id_product); $fields['status'] = pSQL($this->status); $fields['email'] = pSQL($this->email); $fields['token'] = pSQL($this->token); $fields['date_add'] = pSQL($this->date_add); $fields['date_upd'] = pSQL($this->date_upd); return $fields; } public function delete() { if (!Validate::isUnsignedId($this->id)) return false; Db::getInstance()->Execute('DELETE FROM `'._DB_PREFIX_.'customer_message` WHERE `id_customer_thread` = '.(int)($this->id)); return (parent::delete()); } public static function getCustomerMessages($id_customer) { return Db::getInstance()->ExecuteS(' SELECT * FROM '._DB_PREFIX_.'customer_thread ct LEFT JOIN '._DB_PREFIX_.'customer_message cm ON ct.id_customer_thread = cm.id_customer_thread WHERE id_customer = '.(int)($id_customer)); } }