seeds_toolbar-8.x-1.11/seeds_toolbar.install
seeds_toolbar.install
<?php
/**
* @file
* Contains install and update functions for seeds_toolbar module.
*/
/**
* Implements hook_install().
*/
function seeds_toolbar_install() {
// Set module weight bigger than core toolbar.
module_set_weight('seeds_toolbar', 100);
// Clear all caches to properly set the libraries.
drupal_flush_all_caches();
}
/**
* Enable search input inside 'seeds-add' toolbar tray.
*/
function seeds_toolbar_update_8118(&$sandbox) {
$config = \Drupal::configFactory()->getEditable('seeds_toolbar.settings');
$config->set('search', TRUE)->save();
}
