function _semantic_panels_can_use_fences in Semantic Panels 7
Same name and namespace in other branches
- 7.2 semantic_panels.module \_semantic_panels_can_use_fences()
Check if fences is enabled.
Return value
bool TRUE if fences can be used.
2 calls to _semantic_panels_can_use_fences()
- semantic_panels_enable in ./
semantic_panels.install - Implements hook_enable().
- _semantic_panels_get_elements in ./
semantic_panels.module - Returns elements.
File
- ./
semantic_panels.module, line 213 - Semantic Panels.
Code
function _semantic_panels_can_use_fences() {
return module_exists('fences') && function_exists('fences_get_fences_options');
}