You are here

function theme_quicktabs_tab_access_denied in Quick Tabs 7.2

Same name and namespace in other branches
  1. 6.3 quicktabs.module \theme_quicktabs_tab_access_denied()
  2. 6.2 quicktabs.module \theme_quicktabs_tab_access_denied()
  3. 7.3 quicktabs.module \theme_quicktabs_tab_access_denied()

Theme function to display the access denied tab.

3 theme calls to theme_quicktabs_tab_access_denied()
_quicktabs_build_content_block in ./quicktabs.module
_quicktabs_build_content_node in ./quicktabs.module
_quicktabs_build_content_view in ./quicktabs.module

File

./quicktabs.module, line 490

Code

function theme_quicktabs_tab_access_denied($variables) {
  $tab = $variables['tab'];
  return t('You are not authorized to access this content.');
}