You are here

function config_perms_install in Custom Permissions 6.2

Same name and namespace in other branches
  1. 7.2 config_perms.install \config_perms_install()

Implementation of hook_install().

File

./config_perms.install, line 11
Installation file

Code

function config_perms_install() {

  // Create tables.
  drupal_install_schema('config_perms');
  _config_perms_install_data();
  cache_clear_all('config_perms', 'cache');
  menu_rebuild();
}