* @copyright 2007-2012 PrestaShop SA * @version Release: $Revision$ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ /** * @since 1.5.0 */ class ShopGroupCore extends ObjectModel { public $name; public $active; public $share_customer; public $share_stock; public $share_order; public $deleted; /** * @see ObjectModel::$definition */ public static $definition = array( 'table' => 'shop_group', 'primary' => 'id_shop_group', 'fields' => array( 'name' => array('type' => self::TYPE_STRING, 'validate' => 'isGenericName', 'required' => true, 'size' => 64), 'share_customer' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'), 'share_order' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'), 'share_stock' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'), 'active' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'), 'deleted' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'), ), ); /** * @see ObjectModel::getFields() * @return array */ public function getFields() { if (!$this->share_customer || !$this->share_stock) $this->share_order = false; return parent::getFields(); } public static function getShopGroups($active = true) { $groups = new Collection('ShopGroup'); $groups->where('deleted', '=', false); if ($active) $groups->where('active', '=', true); return $groups; } /** * @return int Total of shop groups */ public static function getTotalShopGroup($active = true) { return count(ShopGroup::getShopGroups($active)); } public function haveShops() { return (bool)$this->getTotalShops(); } public function getTotalShops() { $sql = 'SELECT COUNT(*) FROM '._DB_PREFIX_.'shop s WHERE id_shop_group='.(int)$this->id; return (int)Db::getInstance()->getValue($sql); } /** * Return a group shop ID from group shop name * * @param string $name * @return int */ public static function getIdByName($name) { $sql = 'SELECT id_shop_group FROM '._DB_PREFIX_.'shop_group WHERE name = \''.pSQL($name).'\''; return (int)Db::getInstance()->getValue($sql); } }