You are here

function purge_install in Purge 7.2

Implements hook_install().

File

./purge.install, line 17
Purge install code. Installs and uninstalls the configuration variables and converts from 1.x settings

Code

function purge_install() {

  // Add the default  configurations
  $bundle = new PurgePurgerBundleDefault();

  // Reconfigure to load Depend and API bundles.
  // $bundle->configure();
  $bundle
    ->save();
}