29 lines
668 B
PHP
29 lines
668 B
PHP
|
<?php
|
||
|
|
||
|
namespace cgoIT\rateit;
|
||
|
|
||
|
use Contao\CoreBundle\ContaoCoreBundle;
|
||
|
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ötzinger
|
||
|
*/
|
||
|
class ContaoManagerPlugin implements BundlePluginInterface
|
||
|
{
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
public function getBundles(ParserInterface $parser)
|
||
|
{
|
||
|
return [
|
||
|
BundleConfig::create(CgoITRateItBundle::class)
|
||
|
->setLoadAfter([ContaoCoreBundle::class])
|
||
|
->setReplace(['rate-it']),
|
||
|
];
|
||
|
}
|
||
|
}
|