function scrollreveal_check_theme in Scroll Reveal 7
Same name and namespace in other branches
- 7.2 scrollreveal.module \scrollreveal_check_theme()
1 call to scrollreveal_check_theme()
- scrollreveal_init in ./
scrollreveal.module - Implements hook_init().
File
- ./
scrollreveal.module, line 43 - Basic Module file.
Code
function scrollreveal_check_theme() {
global $theme_key;
$settings = variable_get('scrollreveal_settings');
$visibility = $settings['theme']['visibility'];
$theme_match = in_array($theme_key, $settings['theme']['themes']);
$theme_match = !($visibility xor $theme_match);
return $theme_match;
}