igdr/resource-bundle

关于此包的最新版本(v2.0)没有可用的许可证信息。

资源包

安装次数: 1,056

依赖项: 0

建议者: 0

安全: 0

星标: 0

关注者: 2

分支: 1

开放问题: 0

类型:symfony-bundle

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

This package is not auto-updated.

Last update: 2024-09-24 04:06:55 UTC


README

安装

将包添加到您的 composer.json

composer require igdr/resource-bundle

并运行

php composer.phar update

然后向您的应用内核添加 ResourceBundle

// app/IgdrKernel.php
public function registerBundles()
{
    return array(
        // ...
        new Igdr\Bundle\ResourceBundle\IgdrResourceBundle(),
        // ...
    );
}

向 config.yml 添加配置

igdr_resource:
    controller:
        index:
            template: "@AppBase/Admin/Abstract/index.html.twig"           
        edit:
            template: "@AppBase/Admin/Abstract/edit.html.twig"