You are here

function diff_install in Diff 5.2

Same name and namespace in other branches
  1. 8 diff.install \diff_install()
  2. 5 diff.install \diff_install()
  3. 7.3 diff.install \diff_install()

Implementation of hook_install().

Makes sure that diff.module has a higher weight than node.module immediately, without requiring that the administrator vist /admin.

File

./diff.install, line 9

Code

function diff_install() {
  $ret = array();
  $ret[] = diff_set_weight();
  return $ret;
}