You are here

function path_breadcrumbs_install in Path Breadcrumbs 7.3

Implements hook_install().

File

./path_breadcrumbs.install, line 11
Provides database structure for PATH BREADCRUMBS module.

Code

function path_breadcrumbs_install() {
  db_update('system')
    ->fields(array(
    'weight' => 1000,
  ))
    ->condition('name', 'path_breadcrumbs')
    ->condition('type', 'module')
    ->execute();
}