我正在做一个 eZ publish 5 项目。这个 CMS 基于 symfony 2。我已经构建了一个没有类的表单,如 tge 页面中所述:http ://symfony.com/doc/current/book/forms.html#using-a-form-without-a-class
在 eZ 发布 5 文档(https://confluence.ez.no/display/EZP/Legacy+configuration+injection)上,我读到我需要将 CSRF 意图参数设置为“旧版”。我不知道该怎么做。我尝试在我的 formBuilder 上使用 add 方法:
$this->createFormBuilder()->add('_token', 'csrf', array('intention'=>'legacy');
但我收到一个错误“无法加载类型 csrf”。
有人可以帮我吗?
谢谢。