我想在页面--node--17.tpl.php中打印一段代码来检查登录用户的角色,然后确定应该显示什么,所以基本上一个用户必须同时具有角色A和C,如果他们让我打印 xxx 如果他们有角色 A 和 B 我写 yyy 如果他们有角色 B 和 C 我打印 zzz
因此下面的代码可以检查一个角色,但我该如何同时执行这两个角色..重要的是两个角色都需要存在,仅具有其中一个角色的用户将不符合资格。
谢谢你
<?php
global $user;
// Check to see if $user has the administrator user role.
if (in_array('administrator', array_values($user->roles))) {
// Do something.
}
?>
我也有这段代码,但我认为这只是检查其中一个角色,所以它检查 A 或 B
<?php
global $user;
$check = array_intersect(array('moderator', 'administrator'), array_values($user->roles));
if (empty($check) ? FALSE : TRUE) {
// is admin
} else {
// is not admin
}
?>
创建可重用的函数
<?php
function _mytheme_check_for_all_roles_present($roles) {
global $user;
foreach($roles as $key => $role) {
if (in_array($role, array_values($user->roles))) {
unset($roles[$key]);
}
}
return empty($roles);
}
用它来检查用户是否具有角色。
<?php
$roles = array('role_1_to_be_checked', 'role_2_to_be_checked');
if(_mytheme_check_for_all_roles_present($roles) {
echo "the thing you want to show";
}
你也可以做,
<?php
if(_mytheme_check_for_all_roles_present(array('role_1_to_be_checked', 'role_2_to_be_checked')) {
echo "the thing you want to show";
}
要检查两个条件是否为真,您需要一个 AND (&&) 运算符。
在你的例子中我会这样做:
<?php
//Load the current user
global $user;
// Check to see if $user has the A, B or C user role.
$as_A_role = in_array('A', array_values($user->roles));
$as_B_role = in_array('B', array_values($user->roles));
$as_C_role = in_array('C', array_values($user->roles));
?>
<?php if ($as_A_role && $as_B_role): ?>
// Do something.
<?php elseif ($as_A_role && $as_C_role): ?>
// Do something else
<?php endif; ?>