You are here

function htaccess_install in Htaccess 7.2

Same name and namespace in other branches
  1. 8.2 htaccess.install \htaccess_install()

Implements hook_install(). Store the Drupal default htaccess into database.

File

./htaccess.install, line 66
Htaccess module install file.

Code

function htaccess_install() {
  $generate = htaccess_generate_default();
  return;
}