igdr / resource-bundle
There is no license information available for the latest version (v2.0) of this package.
Resource Bundle
v2.0
2016-01-08 13:27 UTC
Requires
- php: >=5.3.3
- igdr/manager-bundle: dev-master
- symfony/symfony: >=2.4
This package is not auto-updated.
Last update: 2026-03-10 11:58:39 UTC
README
Installation
Add the bundle to your composer.json:
composer require igdr/resource-bundle
and run:
php composer.phar update
Then add the ResourceBundle to your application kernel:
// app/IgdrKernel.php
public function registerBundles()
{
return array(
// ...
new Igdr\Bundle\ResourceBundle\IgdrResourceBundle(),
// ...
);
}
Add configuration to config.yml
igdr_resource:
controller:
index:
template: "@AppBase/Admin/Abstract/index.html.twig"
edit:
template: "@AppBase/Admin/Abstract/edit.html.twig"