You are here

function theme_quicktabs_tab_access_denied in Quick Tabs 7.3

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.2 quicktabs.module \theme_quicktabs_tab_access_denied()

Theme function to display the access denied tab.

4 theme calls to theme_quicktabs_tab_access_denied()
QuickBlockContent::render in plugins/QuickBlockContent.inc
Renders the content.
QuickCallbackContent::render in plugins/QuickCallbackContent.inc
Renders the content.
QuickNodeContent::render in plugins/QuickNodeContent.inc
Renders the content.
QuickViewContent::render in plugins/QuickViewContent.inc
Renders the content.

File

./quicktabs.module, line 546

Code

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