views.install in Drupal 10
Same filename and directory in other branches
Contains install and update functions for Views.
File
core/modules/views/views.installView source
<?php
/**
* @file
* Contains install and update functions for Views.
*/
/**
* Implements hook_install().
*/
function views_install() {
module_set_weight('views', 10);
}
/**
* Implements hook_update_last_removed().
*/
function views_update_last_removed() {
return 8500;
}
Functions
Name | Description |
---|---|
views_install | Implements hook_install(). |
views_update_last_removed | Implements hook_update_last_removed(). |