奏鸣曲管理员:user_block不显示
Sonata admin: user_block is not displayed
我正在使用 SonataAdmin,但我看不到模板中显示的用户块(在右上角),尽管我已将其替换为此处配置中提到的自定义模板 https://sonata-project.org/bundles/admin/3-x/doc/reference/templates.html
我正在使用 SonataUserBundle,这是我的配置:
sonata_admin:
templates:
user_block: ApplicationSonataUserBundle:Default:user_block.html.twig
这些是我使用的版本:
"require": {
"php": ">=5.5.9",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/orm": "^2.5",
"incenteev/composer-parameter-handler": "^2.0",
"sensio/distribution-bundle": "^5.0.19",
"sensio/framework-extra-bundle": "^5.0.0",
"sonata-project/admin-bundle": "^3.43",
"sonata-project/doctrine-orm-admin-bundle": "^3.7",
"sonata-project/user-bundle": "4.0.0",
"symfony/monolog-bundle": "^3.1.0",
"symfony/polyfill-apcu": "^1.0",
"symfony/swiftmailer-bundle": "^2.6.4",
"symfony/symfony": "3.4.*",
"twig/twig": "^1.0||^2.0"
},
我没有收到任何错误,但是右上角的用户图标没有显示!
我在这里错过了什么?
好的,所以我发现奏鸣曲正在测试用户是否有 role_admin
来显示此处提到的 user_block
https://github.com/sonata-project/SonataAdminBundle/blob/3.x/src/Resources/views/standard_layout.html.twig#L194
寻找这个条件:
{% if app.user and is_granted(sonata_admin.adminPool.getOption('role_admin')) %}
并且由于所有用户都有角色ROLE_USER
我只需要将此信息提供给奏鸣曲,在config.yml文件中,所以它会显示user_block
给所有连接的用户,像这样:
sonata_admin:
security:
role_admin: ROLE_USER
sonata_admin:
security:
role_admin: foobar_token
class UserBlockVoter extends Voter
{
protected function supports($attribute, $subject)
{
return 'foobar_token' == $attribute;
}
protected function voteOnAttribute($attribute, $subject, TokenInterface $token)
{
return true;
}
}
如果更改角色不是这种情况 - 为自定义命名的“role_admin”属性创建投票器,因为 showing/hiding 的决定是基于安全检查器。
此外,您可以使用比“ROLE_ADMIN”
更复杂的规则来检查 voter 中的“用户”实例
我正在使用 SonataAdmin,但我看不到模板中显示的用户块(在右上角),尽管我已将其替换为此处配置中提到的自定义模板 https://sonata-project.org/bundles/admin/3-x/doc/reference/templates.html
我正在使用 SonataUserBundle,这是我的配置:
sonata_admin:
templates:
user_block: ApplicationSonataUserBundle:Default:user_block.html.twig
这些是我使用的版本:
"require": {
"php": ">=5.5.9",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/orm": "^2.5",
"incenteev/composer-parameter-handler": "^2.0",
"sensio/distribution-bundle": "^5.0.19",
"sensio/framework-extra-bundle": "^5.0.0",
"sonata-project/admin-bundle": "^3.43",
"sonata-project/doctrine-orm-admin-bundle": "^3.7",
"sonata-project/user-bundle": "4.0.0",
"symfony/monolog-bundle": "^3.1.0",
"symfony/polyfill-apcu": "^1.0",
"symfony/swiftmailer-bundle": "^2.6.4",
"symfony/symfony": "3.4.*",
"twig/twig": "^1.0||^2.0"
},
我没有收到任何错误,但是右上角的用户图标没有显示!
我在这里错过了什么?
好的,所以我发现奏鸣曲正在测试用户是否有 role_admin
来显示此处提到的 user_block
https://github.com/sonata-project/SonataAdminBundle/blob/3.x/src/Resources/views/standard_layout.html.twig#L194
寻找这个条件:
{% if app.user and is_granted(sonata_admin.adminPool.getOption('role_admin')) %}
并且由于所有用户都有角色ROLE_USER
我只需要将此信息提供给奏鸣曲,在config.yml文件中,所以它会显示user_block
给所有连接的用户,像这样:
sonata_admin:
security:
role_admin: ROLE_USER
sonata_admin:
security:
role_admin: foobar_token
class UserBlockVoter extends Voter
{
protected function supports($attribute, $subject)
{
return 'foobar_token' == $attribute;
}
protected function voteOnAttribute($attribute, $subject, TokenInterface $token)
{
return true;
}
}
如果更改角色不是这种情况 - 为自定义命名的“role_admin”属性创建投票器,因为 showing/hiding 的决定是基于安全检查器。
此外,您可以使用比“ROLE_ADMIN”
更复杂的规则来检查 voter 中的“用户”实例