在我的实体中,我用回调定义了一个字段颜色。颜色只能在颜色列表中选择(const
在此class
)
/**
* @ORM\Entity(repositoryClass="App\Repository\EventTagRepository")
*/
class EventTag
{
const COLORS = [
"primary"=>"primary",
"secondary"=>"secondary",
"success"=> "success",
"danger"=>"danger",
"warning"=>"warning",
"info"=>"info",
"light"=>"light",
"dark"=>"dark"
];
/**
* @ORM\Column(type="string", length=255)
* @Assert\Choice(callback="getColors")
*/
private $color;
public function getColors()
{
return $this::COLORS;
}
当我在 easy-admin 中创建表单时,我想在choice
类型选项中访问此回调,以防止用户选择错误的颜色。
EventTag:
class: App\Entity\EventTag
list:
actions: ['-delete']
form:
fields:
- { type: 'group', label: 'Content', icon: 'pencil-alt', columns: 8 }
- 'name'
- { property: 'color', type: 'choice', type_options: { expanded: false, multiple: false, choices: 'colors'} }
不幸的是,在type_options
我没有找到访问实体属性的方法,而不是搜索getColors()
, IsColors()
,hasColors()
方法,它只读取字符串。
是否有可能以另一种方式做到这一点?