function wikitools_move_protection in Wikitools 6
Same name and namespace in other branches
- 5 wikitools.module \wikitools_move_protection()
 - 6.2 wikitools.module \wikitools_move_protection()
 - 7 wikitools.module \wikitools_move_protection()
 
Is move protection activated?
1 call to wikitools_move_protection()
- wikitools_form_alter in ./
wikitools.module  - Implementation of hook_form_alter().
 
File
- ./
wikitools.module, line 181  - A non-intrusive module to have some wiki-like behaviour.
 
Code
function wikitools_move_protection() {
  $options = wikitools_options();
  return !empty($options['move protection']);
}