You are here

function wikitools_delete_protection in Wikitools 6.2

Same name and namespace in other branches
  1. 5 wikitools.module \wikitools_delete_protection()

Is delete protection activated?

2 calls to wikitools_delete_protection()
wikitools_form_alter in ./wikitools.module
Implementation of hook_form_alter().
wikitools_menu_alter in ./wikitools.module
Implementation of hook_menu_alter().

File

./wikitools.module, line 188
A non-intrusive module to have some wiki-like behaviour.

Code

function wikitools_delete_protection() {
  $options = wikitools_options();
  return $options['delete protection'];
}