igdr/resource-bundle

There is no license information available for the latest version (v2.0) of this package.

Resource Bundle

Installs: 1 056

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 1

Open Issues: 0

Type:symfony-bundle

v2.0 2016-01-08 13:27 UTC

This package is not auto-updated.

Last update: 2024-04-23 01:45:21 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"