function blocktheme_get in Block Theme 5
Same name and namespace in other branches
- 8 blocktheme.module \blocktheme_get()
- 6 blocktheme.module \blocktheme_get()
- 7 blocktheme.module \blocktheme_get()
3 calls to blocktheme_get()
File
- ./
blocktheme.module, line 73
Code
function blocktheme_get() {
static $blocktheme;
if (empty($blocktheme)) {
$blocktheme = variable_get('blocktheme', array());
}
return $blocktheme;
}