2017-08-07 07:33:08 +02:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace cgoIT\aeo\ContaoManager;
|
|
|
|
|
|
|
|
|
|
use Contao\ManagerPlugin\Bundle\Config\BundleConfig;
|
|
|
|
|
use Contao\ManagerPlugin\Bundle\BundlePluginInterface;
|
|
|
|
|
use Contao\ManagerPlugin\Bundle\Parser\ParserInterface;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Plugin for the Contao Manager.
|
|
|
|
|
*
|
|
|
|
|
* @author Carsten G<EFBFBD>tzinger
|
|
|
|
|
*/
|
|
|
|
|
class Plugin implements BundlePluginInterface
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* {@inheritdoc}
|
|
|
|
|
*/
|
|
|
|
|
public function getBundles(ParserInterface $parser)
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
BundleConfig::create('cgoIT\aeo\CgoITAeoBundle')
|
|
|
|
|
->setLoadAfter(['Contao\CoreBundle\ContaoCoreBundle'])
|
|
|
|
|
->setLoadAfter(['*'])
|
2018-02-13 09:02:09 +01:00
|
|
|
|
->setReplace(['aeo']),
|
2017-08-07 07:33:08 +02:00
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|