igdr / resource-bundle
关于此包的最新版本(v2.0)没有可用的许可证信息。
资源包
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: 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"