_translation_tab_access

6 translation.module _translation_tab_access($node)
7 translation.module _translation_tab_access($node)
8 translation.module _translation_tab_access($node)

Access callback: Checks that the user has permission to 'translate content'.

Only displays the translation tab for nodes that are not language-neutral of types that have translation enabled.

Parameters

$node: A node entity.

Return value

TRUE if the translation tab should be displayed, FALSE otherwise.

See also

translation_menu()

1 string reference to '_translation_tab_access'

File

core/modules/translation/translation.module, line 88
Manages content translations.

Code

function _translation_tab_access($node) {
  if ($node->langcode != LANGUAGE_NOT_SPECIFIED && translation_supported_type($node->type) && node_access('view', $node)) {
    return user_access('translate content');
  }
  return FALSE;
}
Login or register to post comments