Initial commit from Magerun generated module

This commit is contained in:
Pierre Martin 2022-03-19 00:11:50 +01:00
commit 7bed08d199
8 changed files with 116 additions and 0 deletions

24
composer.json Normal file
View File

@ -0,0 +1,24 @@
{
"name": "opengento/module-commandbar",
"description": "Add your description here",
"type": "magento2-module",
"license": [
"proprietary"
],
"authors":[
{
"name":"Opengento",
"email":"Add your email address here"
}
],
"require": {
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Opengento\\Commandbar\\": ""
}
}
}

3
etc/config.xml Normal file
View File

@ -0,0 +1,3 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
</config>

5
etc/crontab.xml Normal file
View File

@ -0,0 +1,5 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Cron:etc/crontab.xsd">
<group id="default">
</group>
</config>

3
etc/di.xml Normal file
View File

@ -0,0 +1,3 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
</config>

3
etc/events.xml Normal file
View File

@ -0,0 +1,3 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
</config>

7
etc/module.xml Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Opengento_Commandbar" setup_version="1.0.0">
<sequence>
</sequence>
</module>
</config>

60
readme.md Normal file
View File

@ -0,0 +1,60 @@
Opengento Commandbar Extension
=====================
Add your description here
Facts
-----
- version: 1.0.0
- extension key: Opengento_Commandbar
- [extension on Magento Connect](http://www.magentocommerce.com/magento-connect/opengento)-commandbar-1234.html)
- Magento Connect 1.0 extension key: magento-community/Opengento_Commandbar
- Magento Connect 2.0 extension key: http://connect20.magentocommerce.com/community/Opengento_Commandbar
- [extension on GitHub](https://github.com/opengento/Opengento_Commandbar)
- [direct download link](http://connect.magentocommerce.com/community/get/Opengento_Commandbar-1.0.0.tgz)
Description
-----------
This paragraph describes what the extension does.
Requirements
------------
- PHP >= 5.6.0
- Mage_Core
- ...
Compatibility
-------------
- Magento >= 2.0
Installation Instructions
-------------------------
1. Install the extension via Magento Connect with the key shown above or copy all the files into your document root.
2. Clear the cache, logout from the admin panel and then login again.
3. Configure and activate the extension under System - Configuration - Company - Example Extension.
4. ...
Uninstallation
--------------
1. Remove all extension files from your Magento installation
2. ...
Support
-------
If you have any issues with this extension, open an issue on [GitHub](https://github.com/opengento/Opengento_Commandbar/issues).
Contribution
------------
Any contribution is highly appreciated. The best way to contribute code is to open a [pull request on GitHub](https://help.github.com/articles/using-pull-requests).
Developer
---------
Opengento
[http://www.firstname-lastname.com](http://www.firstname-lastname.com)
[@FirstNameLastName](https://twitter.com/FirstNameLastName)
Licence
-------
[OSL - Open Software Licence 3.0](http://opensource.org/licenses/osl-3.0.php)
Copyright
---------
(c) 2022 Opengento

11
registration.php Normal file
View File

@ -0,0 +1,11 @@
<?php
declare(strict_types=1);
use Magento\Framework\Component\ComponentRegistrar;
ComponentRegistrar::register(
ComponentRegistrar::MODULE,
'Opengento_Commandbar',
__DIR__
);