Initial Drupal 11 with DDEV setup
This commit is contained in:
20
web/core/modules/views/views.install
Normal file
20
web/core/modules/views/views.install
Normal file
@ -0,0 +1,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;
|
||||
}
|
||||
Reference in New Issue
Block a user