dextervip/extra-generator-bundle

自定义的 Symfony Generator Bundle

dev-master 2015-08-02 22:42 UTC

This package is auto-updated.

Last update: 2024-09-06 09:53:13 UTC


README

简介

此包自定义了默认的 symfony 生成器以适应 Bootstrap 样式。它还添加了 knp 分页器和 font awesome 图标。

特性

  • 分页
  • 图标
  • Bootstrap 样式

安装

添加 composer

在 composer.json 中添加依赖

    "require": {
        ...
	    "dextervip/extra-generator-bundle" : "dev-master"
	}

在 kernel 中添加 bundle 类

在 AppKernel.php 中注册 bundle 类及其依赖

    public function registerBundles()
    {
        $bundles = array(
        ...
        new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(),
        new Citrax\Bundle\ExtraGeneratorBundle\CitraxExtraGeneratorBundle(),
        ...
        );
    }

完成!

额外配置

??

许可证

MIT