You are here

function _acl_format_username in ACL 7

Helper function to format a user name.

3 calls to _acl_format_username()
acl_node_access_explain in ./acl.module
Implements hook_node_access_explain().
_acl_edit_form_after_build in ./acl.admin.inc
Process a form that had our buttons on it.
_acl_get_usernames in ./acl.admin.inc
Implementation of acl_get_usernames().

File

./acl.module, line 399
An API module providing by-user access control lists.

Code

function _acl_format_username($account) {
  return check_plain(format_username($account));
}