* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\AttributeGroup; /** * Defines contract for services that provides attribute group view action data */ interface AttributeGroupViewDataProviderInterface { /** * @param int $attributeGroupId * * @return bool */ public function isColorGroup($attributeGroupId); /** * Provides the name of attribute group by its id * * @param int $attributeGroupId * * @return string */ public function getAttributeGroupNameById($attributeGroupId); }