const ALIAS_SETTINGS = 'settings'; | const ALIAS_SETTINGS = 'settings'; | ||||
const ALIAS_SHOP_SUPPORT = 'shop_support'; | const ALIAS_SHOP_SUPPORT = 'shop_support'; | ||||
const ALIAS_SHARED_POINT_SALE = 'shared_point_sale'; | const ALIAS_SHARED_POINT_SALE = 'shared_point_sale'; | ||||
const ALIAS_SUMUP_SYNCHRONIZATION = 'sumup_synchronization'; | |||||
/** | /** | ||||
* @inheritdoc | * @inheritdoc |
Feature::ALIAS_SETTINGS => 'Système de paramètres', | Feature::ALIAS_SETTINGS => 'Système de paramètres', | ||||
Feature::ALIAS_SHOP_SUPPORT => 'Support boutique', | Feature::ALIAS_SHOP_SUPPORT => 'Support boutique', | ||||
Feature::ALIAS_SHARED_POINT_SALE => 'Points de vente partagés', | Feature::ALIAS_SHARED_POINT_SALE => 'Points de vente partagés', | ||||
Feature::ALIAS_SUMUP_SYNCHRONIZATION => "Synchronisation de commandes avec Sumup / Tiller" | |||||
]; | ]; | ||||
} | } | ||||
} | } |
public function findPaidFeatures(): array | public function findPaidFeatures(): array | ||||
{ | { | ||||
return $this->createQuery() | |||||
return $this->createDefaultQuery() | |||||
->filterIsPaidFeature() | ->filterIsPaidFeature() | ||||
->find(); | ->find(); | ||||
} | } |