Files
DrupalTutorial/core/modules/views/views.install
2024-07-15 12:33:27 +02:00

21 lines
285 B
PHP
Executable File

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