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() によって設定されたステータス メッセージを抑制することは可能ですか? あるクライアントは、特定のロール (匿名) がこれらのメッセージを表示することを望んでいません。
(未テスト)
グローバル $user;
<?php if (!in_array('anonymous', array_values($user->roles)) && $show_messages && $messages): ?> <?php print $messages; ?> <?php endif; ?>