You are here

function wikitools_move_protection in Wikitools 7

Same name and namespace in other branches
  1. 5 wikitools.module \wikitools_move_protection()
  2. 6.2 wikitools.module \wikitools_move_protection()
  3. 6 wikitools.module \wikitools_move_protection()

Is move protection activated?

1 call to wikitools_move_protection()
wikitools_form_node_form_alter in ./wikitools.module
Implements hook_form_FORM_ID_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']);
}