Skip to content

Commit

Permalink
Merge pull request #40 from mothership-gmbh/develop
Browse files Browse the repository at this point in the history
add Magerun extension configuration and fix Roles management for Mage…
  • Loading branch information
Maurizio Brioschi authored Oct 28, 2016
2 parents 3476424 + b65352f commit 8869d34
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/app/code/local/Mothership/Magerun/Helper/Data.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php
/**
* This file is part of the Mothership GmbH code.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

/**
* Class Mage_Mothership_Magerun_Helper_Data
*/
class Mothership_Magerun_Helper_Data extends Mage_Core_Helper_Abstract
{

}
45 changes: 45 additions & 0 deletions src/app/code/local/Mothership/Magerun/etc/config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?xml version="1.0"?>
<!--
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mothership
* @package Mothership_Magerun
* @author Maurizio Brioschi<[email protected]>
* @copyright Copyright (c) 2016 Mothership GmbH
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link http://www.mothership.de/
*/
-->
<config>
<modules>
<Mothership_Magerun>
<version>1.0.0</version>
</Mothership_Magerun>
</modules>

<global>
<composer_vendor_path><![CDATA[{{root_dir}}/../vendor]]></composer_vendor_path>
<helpers>
<mothership_magerun>
<class>Mothership_Magerun_Helper</class>
</mothership_magerun>
</helpers>
</global>
</config>
37 changes: 37 additions & 0 deletions src/app/etc/modules/Mothership_Magerun.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?xml version="1.0"?>
<!--
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mothership
* @package Mothership_Addons
* @author Maurizio Brioschi<[email protected]>
* @copyright Copyright (c) 2016 Mothership GmbH
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link http://www.mothership.de/
*/
-->
<config>
<modules>
<Mothership_Magerun>
<active>true</active>
<codePool>local</codePool>
</Mothership_Magerun>
</modules>
</config>

0 comments on commit 8869d34

Please sign in to comment.