You are here

function wikitools_move_protection in Wikitools 6

Same name and namespace in other branches
  1. 5 wikitools.module \wikitools_move_protection()
  2. 6.2 wikitools.module \wikitools_move_protection()
  3. 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']);
}