You are here

bigmenu.post_update.php in Big Menu 8

Same filename and directory in other branches
  1. 2.x bigmenu.post_update.php

The bigmenu post update hook file.

File

bigmenu.post_update.php
View source
<?php

/**
 * @file
 * The bigmenu post update hook file.
 */

/**
 * Install new bigmenu settings.
 */
function bigmenu_post_update_update_settings() {
  $config = \Drupal::configFactory()
    ->getEditable('bigmenu.settings');
  if ($config
    ->get('max_depth') === NULL) {
    $config
      ->set('max_depth', 1)
      ->save(TRUE);
  }
}

Functions

Namesort descending Description
bigmenu_post_update_update_settings Install new bigmenu settings.