summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/views/views.install
blob: 2f61cda6032354dd23fc25782610c7a68b2a977c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

/**
 * @file
 * Contains install and update functions for Views.
 */

/**
 * Implements hook_install().
 */
function views_install(): void {
  module_set_weight('views', 10);
}

/**
 * Implements hook_update_last_removed().
 */
function views_update_last_removed(): int {
  return 8500;
}