napas/form-extra-bundle

Symfony2 扩展表单字段类型

安装次数: 5,858

依赖者: 0

建议者: 0

安全性: 0

星标: 0

关注者: 2

分支: 0

公开问题: 0

类型:symfony-bundle

v0.1.4 2014-06-28 17:26 UTC

This package is not auto-updated.

Last update: 2024-09-24 08:14:41 UTC


README

Symfony2 表单的额外字段。

安装

将此包添加到您的 composer.json 文件中

    {
        "require": {
            "napas/form-extra-bundle": "~0.1"
        }
    }

app/AppKernel.php 中注册该包

    // app/AppKernel.php
    public function registerBundles()
    {
        return array(
            // ...
            new Napas\FormExtraBundle\NapasFormExtraBundle(),
        );
    }

完成!

字段类型

##美国州选择字段

使用方法

$builder->add('State', 'us_states');