├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── Api ├── Data │ ├── ProductLabelInterface.php │ └── ProductLabelSearchResultsInterface.php └── ProductLabelRepositoryInterface.php ├── Block ├── Adminhtml │ └── ProductLabel │ │ └── Edit │ │ ├── AbstractButton.php │ │ ├── BackButton.php │ │ ├── DeleteButton.php │ │ ├── ResetButton.php │ │ ├── SaveAndContinueButton.php │ │ └── SaveButton.php ├── Product │ └── ImageFactory.php └── ProductLabel │ └── ProductLabel.php ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Controller └── Adminhtml │ ├── ImageLabel │ ├── AbstractUpload.php │ └── Image.php │ └── ProductLabel │ ├── AbstractAction.php │ ├── Delete.php │ ├── Edit.php │ ├── Index.php │ ├── MassDelete.php │ ├── MassStatus.php │ ├── Reload.php │ └── Save.php ├── Helper └── Data.php ├── LICENCE.md ├── Model ├── Api │ └── SearchCriteria │ │ └── CollectionProcessor │ │ └── FilterProcessor │ │ └── ProductLabelStoreFilter.php ├── ImageLabel │ ├── FileInfo.php │ └── Image.php ├── ProductLabel.php ├── ProductLabel │ ├── Locator │ │ ├── LocatorInterface.php │ │ └── RegistryLocator.php │ └── ReadHandler.php ├── Repository │ ├── Manager.php │ └── ProductLabel.php └── ResourceModel │ ├── ProductLabel.php │ └── ProductLabel │ ├── Attributes │ └── Collection.php │ ├── Collection.php │ ├── Grid │ └── Collection.php │ └── Store │ ├── ReadHandler.php │ └── SaveHandler.php ├── Plugin └── Catalog │ ├── Model │ └── Config.php │ └── Ui │ └── DataProvider │ └── Product │ └── Form │ └── Modifier │ └── EavPlugin.php ├── README.md ├── Setup └── Patch │ └── Data │ └── UpdateExistingLabelsStoreView.php ├── Ui └── Component │ ├── Listing │ └── Column │ │ ├── AttributeActions.php │ │ └── Thumbnail.php │ ├── ProductLabel │ └── Form │ │ ├── DataProvider.php │ │ └── Modifier │ │ ├── Attribute.php │ │ ├── AttributeOptions.php │ │ ├── Stores.php │ │ └── System.php │ └── Source │ ├── Attribute │ └── Options.php │ ├── Location │ ├── Options.php │ └── View.php │ └── Store │ └── Options.php ├── composer.json ├── doc └── static │ ├── product_label_create.png │ ├── product_label_list.png │ ├── product_label_product_details.png │ ├── product_label_product_listing.png │ └── smile.png ├── etc ├── acl.xml ├── adminhtml │ ├── di.xml │ ├── menu.xml │ └── routes.xml ├── config.xml ├── db_schema.xml ├── db_schema_whitelist.json ├── di.xml ├── events.xml ├── extension_attributes.xml ├── frontend │ └── di.xml └── module.xml ├── i18n ├── en_US.csv └── fr_FR.csv ├── phpcs.xml.dist ├── phpmd.xml.dist ├── phpstan.neon.dist ├── registration.php └── view ├── adminhtml ├── layout │ ├── smile_productlabel_productlabel_edit.xml │ ├── smile_productlabel_productlabel_index.xml │ └── smile_productlabel_productlabel_reload.xml ├── ui_component │ ├── smile_productlabel_productlabel_form.xml │ └── smile_productlabel_productlabel_listing.xml └── web │ ├── css │ └── source │ │ └── _module.less │ └── template │ └── form │ └── element │ └── helper │ └── tooltip.html └── frontend ├── layout └── catalog_product_view.xml ├── templates └── product │ ├── image_with_pictos.phtml │ └── label.phtml └── web └── css └── source └── _module.less /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/.gitignore -------------------------------------------------------------------------------- /Api/Data/ProductLabelInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Api/Data/ProductLabelInterface.php -------------------------------------------------------------------------------- /Api/Data/ProductLabelSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Api/Data/ProductLabelSearchResultsInterface.php -------------------------------------------------------------------------------- /Api/ProductLabelRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Api/ProductLabelRepositoryInterface.php -------------------------------------------------------------------------------- /Block/Adminhtml/ProductLabel/Edit/AbstractButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Block/Adminhtml/ProductLabel/Edit/AbstractButton.php -------------------------------------------------------------------------------- /Block/Adminhtml/ProductLabel/Edit/BackButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Block/Adminhtml/ProductLabel/Edit/BackButton.php -------------------------------------------------------------------------------- /Block/Adminhtml/ProductLabel/Edit/DeleteButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Block/Adminhtml/ProductLabel/Edit/DeleteButton.php -------------------------------------------------------------------------------- /Block/Adminhtml/ProductLabel/Edit/ResetButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Block/Adminhtml/ProductLabel/Edit/ResetButton.php -------------------------------------------------------------------------------- /Block/Adminhtml/ProductLabel/Edit/SaveAndContinueButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Block/Adminhtml/ProductLabel/Edit/SaveAndContinueButton.php -------------------------------------------------------------------------------- /Block/Adminhtml/ProductLabel/Edit/SaveButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Block/Adminhtml/ProductLabel/Edit/SaveButton.php -------------------------------------------------------------------------------- /Block/Product/ImageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Block/Product/ImageFactory.php -------------------------------------------------------------------------------- /Block/ProductLabel/ProductLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Block/ProductLabel/ProductLabel.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Controller/Adminhtml/ImageLabel/AbstractUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Controller/Adminhtml/ImageLabel/AbstractUpload.php -------------------------------------------------------------------------------- /Controller/Adminhtml/ImageLabel/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Controller/Adminhtml/ImageLabel/Image.php -------------------------------------------------------------------------------- /Controller/Adminhtml/ProductLabel/AbstractAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Controller/Adminhtml/ProductLabel/AbstractAction.php -------------------------------------------------------------------------------- /Controller/Adminhtml/ProductLabel/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Controller/Adminhtml/ProductLabel/Delete.php -------------------------------------------------------------------------------- /Controller/Adminhtml/ProductLabel/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Controller/Adminhtml/ProductLabel/Edit.php -------------------------------------------------------------------------------- /Controller/Adminhtml/ProductLabel/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Controller/Adminhtml/ProductLabel/Index.php -------------------------------------------------------------------------------- /Controller/Adminhtml/ProductLabel/MassDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Controller/Adminhtml/ProductLabel/MassDelete.php -------------------------------------------------------------------------------- /Controller/Adminhtml/ProductLabel/MassStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Controller/Adminhtml/ProductLabel/MassStatus.php -------------------------------------------------------------------------------- /Controller/Adminhtml/ProductLabel/Reload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Controller/Adminhtml/ProductLabel/Reload.php -------------------------------------------------------------------------------- /Controller/Adminhtml/ProductLabel/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Controller/Adminhtml/ProductLabel/Save.php -------------------------------------------------------------------------------- /Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Helper/Data.php -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/LICENCE.md -------------------------------------------------------------------------------- /Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductLabelStoreFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductLabelStoreFilter.php -------------------------------------------------------------------------------- /Model/ImageLabel/FileInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/ImageLabel/FileInfo.php -------------------------------------------------------------------------------- /Model/ImageLabel/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/ImageLabel/Image.php -------------------------------------------------------------------------------- /Model/ProductLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/ProductLabel.php -------------------------------------------------------------------------------- /Model/ProductLabel/Locator/LocatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/ProductLabel/Locator/LocatorInterface.php -------------------------------------------------------------------------------- /Model/ProductLabel/Locator/RegistryLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/ProductLabel/Locator/RegistryLocator.php -------------------------------------------------------------------------------- /Model/ProductLabel/ReadHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/ProductLabel/ReadHandler.php -------------------------------------------------------------------------------- /Model/Repository/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/Repository/Manager.php -------------------------------------------------------------------------------- /Model/Repository/ProductLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/Repository/ProductLabel.php -------------------------------------------------------------------------------- /Model/ResourceModel/ProductLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/ResourceModel/ProductLabel.php -------------------------------------------------------------------------------- /Model/ResourceModel/ProductLabel/Attributes/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/ResourceModel/ProductLabel/Attributes/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/ProductLabel/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/ResourceModel/ProductLabel/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/ProductLabel/Grid/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/ResourceModel/ProductLabel/Grid/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/ProductLabel/Store/ReadHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/ResourceModel/ProductLabel/Store/ReadHandler.php -------------------------------------------------------------------------------- /Model/ResourceModel/ProductLabel/Store/SaveHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Model/ResourceModel/ProductLabel/Store/SaveHandler.php -------------------------------------------------------------------------------- /Plugin/Catalog/Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Plugin/Catalog/Model/Config.php -------------------------------------------------------------------------------- /Plugin/Catalog/Ui/DataProvider/Product/Form/Modifier/EavPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Plugin/Catalog/Ui/DataProvider/Product/Form/Modifier/EavPlugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/README.md -------------------------------------------------------------------------------- /Setup/Patch/Data/UpdateExistingLabelsStoreView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Setup/Patch/Data/UpdateExistingLabelsStoreView.php -------------------------------------------------------------------------------- /Ui/Component/Listing/Column/AttributeActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Ui/Component/Listing/Column/AttributeActions.php -------------------------------------------------------------------------------- /Ui/Component/Listing/Column/Thumbnail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Ui/Component/Listing/Column/Thumbnail.php -------------------------------------------------------------------------------- /Ui/Component/ProductLabel/Form/DataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Ui/Component/ProductLabel/Form/DataProvider.php -------------------------------------------------------------------------------- /Ui/Component/ProductLabel/Form/Modifier/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Ui/Component/ProductLabel/Form/Modifier/Attribute.php -------------------------------------------------------------------------------- /Ui/Component/ProductLabel/Form/Modifier/AttributeOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Ui/Component/ProductLabel/Form/Modifier/AttributeOptions.php -------------------------------------------------------------------------------- /Ui/Component/ProductLabel/Form/Modifier/Stores.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Ui/Component/ProductLabel/Form/Modifier/Stores.php -------------------------------------------------------------------------------- /Ui/Component/ProductLabel/Form/Modifier/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Ui/Component/ProductLabel/Form/Modifier/System.php -------------------------------------------------------------------------------- /Ui/Component/Source/Attribute/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Ui/Component/Source/Attribute/Options.php -------------------------------------------------------------------------------- /Ui/Component/Source/Location/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Ui/Component/Source/Location/Options.php -------------------------------------------------------------------------------- /Ui/Component/Source/Location/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Ui/Component/Source/Location/View.php -------------------------------------------------------------------------------- /Ui/Component/Source/Store/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/Ui/Component/Source/Store/Options.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/composer.json -------------------------------------------------------------------------------- /doc/static/product_label_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/doc/static/product_label_create.png -------------------------------------------------------------------------------- /doc/static/product_label_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/doc/static/product_label_list.png -------------------------------------------------------------------------------- /doc/static/product_label_product_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/doc/static/product_label_product_details.png -------------------------------------------------------------------------------- /doc/static/product_label_product_listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/doc/static/product_label_product_listing.png -------------------------------------------------------------------------------- /doc/static/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/doc/static/smile.png -------------------------------------------------------------------------------- /etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/etc/acl.xml -------------------------------------------------------------------------------- /etc/adminhtml/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/etc/adminhtml/di.xml -------------------------------------------------------------------------------- /etc/adminhtml/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/etc/adminhtml/menu.xml -------------------------------------------------------------------------------- /etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/db_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/etc/db_schema.xml -------------------------------------------------------------------------------- /etc/db_schema_whitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/etc/db_schema_whitelist.json -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/etc/events.xml -------------------------------------------------------------------------------- /etc/extension_attributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/etc/extension_attributes.xml -------------------------------------------------------------------------------- /etc/frontend/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/etc/frontend/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/etc/module.xml -------------------------------------------------------------------------------- /i18n/en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/i18n/en_US.csv -------------------------------------------------------------------------------- /i18n/fr_FR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/i18n/fr_FR.csv -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpmd.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/phpmd.xml.dist -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/registration.php -------------------------------------------------------------------------------- /view/adminhtml/layout/smile_productlabel_productlabel_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/view/adminhtml/layout/smile_productlabel_productlabel_edit.xml -------------------------------------------------------------------------------- /view/adminhtml/layout/smile_productlabel_productlabel_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/view/adminhtml/layout/smile_productlabel_productlabel_index.xml -------------------------------------------------------------------------------- /view/adminhtml/layout/smile_productlabel_productlabel_reload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/view/adminhtml/layout/smile_productlabel_productlabel_reload.xml -------------------------------------------------------------------------------- /view/adminhtml/ui_component/smile_productlabel_productlabel_form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/view/adminhtml/ui_component/smile_productlabel_productlabel_form.xml -------------------------------------------------------------------------------- /view/adminhtml/ui_component/smile_productlabel_productlabel_listing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/view/adminhtml/ui_component/smile_productlabel_productlabel_listing.xml -------------------------------------------------------------------------------- /view/adminhtml/web/css/source/_module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/view/adminhtml/web/css/source/_module.less -------------------------------------------------------------------------------- /view/adminhtml/web/template/form/element/helper/tooltip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/view/adminhtml/web/template/form/element/helper/tooltip.html -------------------------------------------------------------------------------- /view/frontend/layout/catalog_product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/view/frontend/layout/catalog_product_view.xml -------------------------------------------------------------------------------- /view/frontend/templates/product/image_with_pictos.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/view/frontend/templates/product/image_with_pictos.phtml -------------------------------------------------------------------------------- /view/frontend/templates/product/label.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/view/frontend/templates/product/label.phtml -------------------------------------------------------------------------------- /view/frontend/web/css/source/_module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smile-SA/magento2-module-product-label/HEAD/view/frontend/web/css/source/_module.less --------------------------------------------------------------------------------