-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle akeneo attributes of the type
pim_catalog_text
- Loading branch information
1 parent
7a8705d
commit b82e8b8
Showing
4 changed files
with
38 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace WeDevelop\Akeneo\Enums; | ||
|
||
enum ProductAttributeType: string | ||
{ | ||
case BOOLEAN = 'pim_catalog_boolean'; | ||
case DATE = 'pim_catalog_date'; | ||
case FILE = 'pim_catalog_file'; | ||
case IMAGE = 'pim_catalog_image'; | ||
case METRIC = 'pim_catalog_metric'; | ||
case MULTISELECT = 'pim_catalog_multiselect'; | ||
case PRICE_COLLECTION = 'pim_catalog_price_collection'; | ||
case SIMPLESELECT = 'pim_catalog_simpleselect'; | ||
case TEXT = 'pim_catalog_text'; | ||
case TEXTAREA = 'pim_catalog_textarea'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters