You are here

alternative_frontpage.install in Open Social 8.2

Installation code for the alternative_frontpage module.

File

modules/custom/alternative_frontpage/alternative_frontpage.install
View 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

Namesort descending Description
alternative_frontpage_install Implements hook_install().