You are here

function wikitools_requirements in Wikitools 5

Implementation of hook_requirements().

File

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

Code

function wikitools_requirements($phase) {

  // Don't check when installing
  if ($phase == 'install') {
    return;
  }
  if (wikitools_hijack_freelinking()) {
    wikitools_autoadjust();
  }
}