team23 / module-core
The Core extension adds a TEAM23 tab with logo to adminhtml system settings.
Installs: 1 315
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:magento2-module
Requires
- php: ^8.1
- magento/framework: ^103.0
- magento/module-backend: ^102.0
- magento/module-config: ^101.2
This package is auto-updated.
Last update: 2025-02-17 16:52:44 UTC
README
TEAM23 Core extension for Magento 2
The Core extension adds a TEAM23 tab with logo to adminhtml system settings. This allows grouping of all TEAM23 extensions that provide settings.
Usage
In your custom Magento 2 Extension, add the tab with id team23
to your settings.
For example:
<?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd"> <system> <section id="your_configuration_id" translate="label" sortOrder="1" showInDefault="1" showInWebsite="1" showInStore="1"> <label>TEAM23 YOUR EXTENSION</label> <tab>team23</tab> ... </section> </system> </config>
Please make sure your component will be loaded after the Team23_Core
extension, by adding a sequence in your
module.xml
. Example:
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> <module name="Team23_YourExtension"> <sequence> <module name="Team23_Core"/> </sequence> </module> </config>
Installation via Composer
composer require team23/module-core
Now register the module with bin/magento setup:upgrade
.