yireo / magento2-hyva-theme-auto-registration
Automatically include modules in the Hyvä Theme registration
Installs: 83
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Type:magento2-module
Requires
- php: ^8.1
- magento/framework: ^102.0|^103.0
This package is auto-updated.
Last update: 2024-10-08 08:49:43 UTC
README
Magento 2 module to make it easier to register a custom tailwind.config.js
file of your own module in the global Hyvä Themes Tailwind configuration
Background
Hyvä Themes offers a Magento 2 CLI command hyva:config:generate
to allow building a file app/etc/hyva-themes.json
that again is used in modern-day Tailwind configuration of Hyvä-based themes. However, to extend this, one must add a custom observer to the module, which leads to a lot of code duplication across your modules. This module aims to simplify this. It offers an observer following the official Hyvä documentation.
However, this observer automatically registers any module that has a prefix Yireo_
or YireoTraining_
(it works for me). And it allows for extending things with a DI plugin.
Usage
Add this module as a dependency to your composer.json
file and etc/module.xml
file.
Next, add the following DI configuration to your module its etc/di.xml
file (assuming here that Foo_Bar
is the name of your own module):
<?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <type name="Yireo\HyvaThemeAutoRegistration\Observer\RegisterModuleForHyvaConfig"> <arguments> <argument name="moduleNames" xsi:type="array"> <item name="Foo_Bar" xsi:type="string">Foo_Bar</item> </argument> </arguments> </type> </config>
Alternatively, you can include all your modules by configuring a module prefix:
<?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <type name="Yireo\HyvaThemeAutoRegistration\Observer\RegisterModuleForHyvaConfig"> <arguments> <argument name="modulePrefixes" xsi:type="array"> <item name="Foo_" xsi:type="string">Foo_</item> </argument> </arguments> </type> </config>