You are here

seeds_toolbar.install in Seeds Toolbar 8

Contains install and update functions for seeds_toolbar module.

File

seeds_toolbar.install
View source
<?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();
}

Functions

Namesort descending Description
seeds_toolbar_install Implements hook_install().