14 lines
178 B
Plaintext
14 lines
178 B
Plaintext
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Contains install and update functions for Views.
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_install().
|
|
*/
|
|
function views_install() {
|
|
module_set_weight('views', 10);
|
|
}
|