43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
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;
|
|
use Contao\ManagerPlugin\Routing\RoutingPluginInterface;
|
|
use Symfony\Component\Config\Loader\LoaderResolverInterface;
|
|
use Symfony\Component\HttpKernel\KernelInterface;
|
|
|
|
/**
|
|
* Plugin for the Contao Manager.
|
|
*
|
|
* @author Carsten Götzinger
|
|
*/
|
|
class ContaoManagerPlugin implements BundlePluginInterface, RoutingPluginInterface
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getBundles(ParserInterface $parser)
|
|
{
|
|
return [
|
|
BundleConfig::create(CgoITRateItBundle::class)
|
|
->setLoadAfter([ContaoCoreBundle::class])
|
|
->setReplace(['rate-it']),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getRouteCollection(LoaderResolverInterface $resolver, KernelInterface $kernel)
|
|
{
|
|
return $resolver
|
|
->resolve(__DIR__.'/Resources/config/routing.yml')
|
|
->load(__DIR__.'/Resources/config/routing.yml')
|
|
;
|
|
}
|
|
}
|