答案 0 :(得分:0)
您可以使用setSecurityConfiguration执行此操作,例如:
$security = $this->getSecurityConfiguration();
$actionName = strtolower($this->getActionName());
// here you check the groups associated to the user
if ($this->getUser()->hasGroups('foo'))
{
$security[$actionName]['is_secure'] = true; // or false
$this->setSecurityConfiguration($security);
}
您可以通过将其放入config/security.yml
文件来为任何模块(包括插件)提供安全性:
all:
is_secure: true
但请提供有关页的更多信息?