baks-dev / field-country
国家下拉列表包
v7.1.6
2024-09-15 22:17 UTC
Requires
- php: >=8.3
- baks-dev/core: ^7.1
Requires (Dev)
- roave/security-advisories: dev-latest
README
国家下拉列表包
安装
$ composer require baks-dev/field-country
配置
为了在下拉列表字段中显示,请将服务配置添加到配置文件中
config/packages/field.php
<?php namespace Symfony\Component\DependencyInjection\Loader\Configurator; use BaksDev\Field\Country\Choice\CountryFieldChoice; return static function (ContainerConfigurator $configurator) { $services = $configurator->services() ->defaults() ->autowire(true) ->autoconfigure(true) ; /** Страны */ $services->set(CountryFieldChoice::class) ->tag('baks.fields.choice') ; };
模板覆盖
模板在 templates 目录中以文本表示(content.html.twig)和模板(template.html.twig)的形式进行覆盖
- /templates/field-country/content.html.twig
- /templates/field-country/template.html.twig
许可证 
MIT 许可证 (MIT)。有关更多信息,请参阅 许可证文件。