* @copyright 2007-2014 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class StBrandsSliderClass { public static function deleteByShop($id_shop) { return Db::getInstance()->execute('DELETE FROM '._DB_PREFIX_.'st_brands_slider WHERE `id_shop`='.(int)$id_shop); } public static function getByShop($id_shop) { return Db::getInstance()->executeS('SELECT * FROM '._DB_PREFIX_.'st_brands_slider WHERE `id_shop`='.(int)$id_shop); } }