alternative_frontpage.install in Open Social 8
Same filename and directory in other branches
- 8.9 modules/custom/alternative_frontpage/alternative_frontpage.install
- 8.2 modules/custom/alternative_frontpage/alternative_frontpage.install
- 8.3 modules/custom/alternative_frontpage/alternative_frontpage.install
- 8.4 modules/custom/alternative_frontpage/alternative_frontpage.install
- 8.5 modules/custom/alternative_frontpage/alternative_frontpage.install
- 8.6 modules/custom/alternative_frontpage/alternative_frontpage.install
- 8.7 modules/custom/alternative_frontpage/alternative_frontpage.install
- 8.8 modules/custom/alternative_frontpage/alternative_frontpage.install
- 10.3.x modules/custom/alternative_frontpage/alternative_frontpage.install
- 10.0.x modules/custom/alternative_frontpage/alternative_frontpage.install
- 10.1.x modules/custom/alternative_frontpage/alternative_frontpage.install
- 10.2.x modules/custom/alternative_frontpage/alternative_frontpage.install
Installation code for the alternative_frontpage module.
File
modules/custom/alternative_frontpage/alternative_frontpage.installView source
<?php
/**
 * @file
 * Installation code for the alternative_frontpage module.
 */
/**
 * Implements hook_install().
 *
 * Perform actions related to the installation of Alternative Frontpage.
 */
function alternative_frontpage_install() {
  // Set some default permissions for the site_manager and administrator.
  $permissions = [
    'administer alternative frontpage settings',
  ];
  user_role_grant_permissions('administrator', $permissions);
  user_role_grant_permissions('sitemanager', $permissions);
}Functions
| Name   | Description | 
|---|---|
| alternative_frontpage_install | Implements hook_install(). | 
