tutto/datagrid-bundle

此捆绑包提供构建数据网格的功能

安装: 19

依赖者: 0

建议者: 0

安全: 0

星星: 0

关注者: 2

分支: 0

开放问题: 0

类型:symfony-bundle

dev-master / 1.0.x-dev 2014-11-25 16:36 UTC

This package is not auto-updated.

Last update: 2024-09-24 02:47:22 UTC


README

安装

TuttoDataGridBundle可以通过Composer方便地安装。只需将以下内容添加到您的composer.json文件中

// composer.json
{
    // ...
    require: {
        // ...
        "tutto/xhtml-bundle": "1.0.*@dev"
    }
}

在AppKernel.php文件中添加以下内容

<?php
// in AppKernel::registerBundles()
$bundles = array(
    // ...
    new Tutto\Bundle\DataGridBundle\TuttoDataGridBundle(),
    new Tutto\Bundle\XhtmlBundle\TuttoXhtmlBundle(),
    new \Tutto\Bundle\UtilBundle\TuttoUtilBundle()
    // ...
);