Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以抑制 drupal_set_messages() 为某些角色设置的状态消息?一个客户不希望某些角色(匿名)看到这些消息。
(未经测试)
全局$用户;
<?php if (!in_array('anonymous', array_values($user->roles)) && $show_messages && $messages): ?> <?php print $messages; ?> <?php endif; ?>