Files
drupal11-ddev/web/core/modules/views/views.install
2025-10-08 11:39:17 -04:00

21 lines
296 B
PHP

<?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;
}