You are here

function fb_tab_custom_theme in Drupal for Facebook 7.3

File

./fb_tab.module, line 85
This module provides support for "Profile Tabs" that can be added to facebook pages (no longer allowed for user profiles).

Code

function fb_tab_custom_theme() {
  if (fb_is_tab()) {

    // Get our configuration settings.
    $config = _fb_tab_get_app_config($GLOBALS['_fb_app']);
    if ($custom_theme = $config['custom_theme']) {
      return $custom_theme;
    }
  }
}