Một cách bạn có thể làm là tạo một mô-đun tùy chỉnh, in thông tin truy cập trên mọi trang, mọi nút, mọi khối. 
Hàm menu_get_item () trả về một mục bộ định tuyến có thuộc tính access_argument cho trang hiện tại. 
/**
 * Show access permission of current page.
 */
function yourmodule_get_page_access() {
  $router_item = menu_get_item();
  if ($router_item) {
    $access_arguments = unserialize($router_item['access_arguments']);
    $arguments = array();
    foreach ($access_arguments as $access_argument) {
      $arguments[] = $access_argument;
    }
    if ($arguments) {
      $output  = '<p>';
      $output .= t('This page needs user to have %p permission(s) to access', array(
        '%p' => implode(', ', $arguments),
      ));
      $output .= '</p>';
    }
    else {
      $output = '<p>' . t('This page needs no user permissions') . ' </p>';
    }
    return $output;
  }
}
Sau đó, bạn có thể hook_page_alter, để hiển thị thông tin truy cập trên đầu mỗi trang.
/**
 * Implements hook_page_alter().
 *
 * Display access information on top of every page.
 */
function yourmodule_page_alter(&$page) {
  // Make a new area on top of the page for displaying access information.
  $page['content']['theverytop']['#markup'] = yourmodule_get_page_access();
  $page['content']['theverytop']['#weight'] = -10;
  $page['content']['#sorted'] = FALSE;
}
Tiếp theo, bạn có thể hiển thị thông tin cấp phép khối như thế này:
/**
 * Implement hook_block_alter
 *
 * To display block permission information to the block title.
 */
function yourmodule_block_view_alter(&$data, $block) {
  $delta = $block->delta;
  $output = '';
  $rid = db_query("SELECT rid FROM {block_role} WHERE delta = :delta", array(':delta' => $delta))->fetchCol();
  if (empty($rid)) {
      $output = ' This block does not have any role permission restriction.';
  } else {
      $output = ' This block is viewable for users have role(s): ';
      foreach ($rid as $role_id) {
          $rolename = db_query("SELECT name from {role} where rid = :rid", array(':rid' => $role_id))->fetchField();
          $output .= $rolename . ' ';
      }
  }
  // append the permission info to block title for every block
  $block->title .= $output;
}
Và như vậy, về cơ bản cùng một khái niệm, bạn có thể làm tương tự với nút, biểu mẫu, dạng xem. Hi vọng điêu nay co ich.