grossum/extended-form-type
最新稳定版本:v0.1.2
Composer 安装命令:
composer require grossum/extended-form-type
包简介
Extended form type bundle
README 文档
README
Installation
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require grossum/extended-form-type
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the Bundle
Then, enable the bundle by adding the following line in the app/AppKernel.php
file of your project:
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new Grossum\ExtendedFormTypeBundle\GrossumExtendedFormTypeBundle(), ); // ... } // ... }
Step 3: Configure the Bundle
Add routing to your project in app/config/routing.yml:
// app/config/routing.yml
# Routing Configuration Example
grossum_extended_form_type:
resource: "@GrossumExtendedFormTypeBundle/Resources/config/routing.yml"
prefix: /
Register twig form template in app/config/config.yml
// app/config/config.yml
# Twig Configuration Example
twig:
// ...
form:
resources:
// ...
- 'GrossumExtendedFormTypeBundle::dependent_filtered_entity.html.twig'
Enable bundle for your entity in app/config/config.yml:
// app/config/config.yml
# Entity Configuration Example
grossum_extended_form_type:
dependent_filtered_entities:
test_type:
class: Your\Bundle\Entity\EntityName
parent_property: test
property: name
no_result_msg: 'No type found'
order_property: name
order_direction: ASC
Step 4: Usage
<?php // ... class TestAdmin extends Admin { /** * Fields to be shown on create/edit forms * * @param FormMapper $formMapper */ protected function configureFormFields(FormMapper $formMapper) { $formMapper // ... ->add( 'yourType', 'grossum_dependent_filtered_entity', [ 'entity_alias' => 'your_alias', 'empty_value' => 'Select some value', 'parent_field' => 'test', 'label' => 'Your label', ] ) // ... ->end(); } // ... }
统计信息
- 总下载量: 2.41k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-09-25