datex.install in Datex 7
Same filename and directory in other branches
datex install file, To check for PHP-Intl availability.
File
datex.installView source
<?php
/**
* @file
* datex install file, To check for PHP-Intl availability.
*/
/**
* Implements hook_install().
*/
function datex_install() {
// To run before schedule module.
db_update('system')
->fields(array(
'weight' => 100,
))
->condition('name', 'datex', '=')
->execute();
}
Functions
Name | Description |
---|---|
datex_install | Implements hook_install(). |