Skip to content

Commit

Permalink
Initial commit with menu options
Browse files Browse the repository at this point in the history
  • Loading branch information
robbanl committed Jan 24, 2018
0 parents commit 88cab5b
Show file tree
Hide file tree
Showing 7 changed files with 668 additions and 0 deletions.
619 changes: 619 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Codepeak_Core

Core package used by other Magento 2 packages developed by Codepeak AB.

## Todo

- Implement a custom logger
21 changes: 21 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "codepeak/magento2-core",
"description": "",
"license": "GPL-3.0",
"authors": [
{
"email": "robert@codepeak.se",
"name": "Robert Lord, Codepeak AB"
}
],
"minimum-stability": "dev",
"require": {},
"autoload": {
"psr-4": {
"Codepeak\\Core\\": ""
},
"files": [
"registration.php"
]
}
}
8 changes: 8 additions & 0 deletions etc/adminhtml/system.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?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>
<tab id="codepeak" sortOrder="999" translate="label">
<label>Codepeak</label>
</tab>
</system>
</config>
3 changes: 3 additions & 0 deletions etc/config.xml
Original file line number Diff line number Diff line change
@@ -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>
4 changes: 4 additions & 0 deletions etc/module.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?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="Codepeak_Core" setup_version="1.0.0"/>
</config>
6 changes: 6 additions & 0 deletions registration.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'Codepeak_Core',
__DIR__
);

0 comments on commit 88cab5b

Please sign in to comment.