You are here

datex.install in Datex 7

Same filename and directory in other branches
  1. 7.3 datex.install
  2. 7.2 datex.install

datex install file, To check for PHP-Intl availability.

File

datex.install
View 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

Namesort descending Description
datex_install Implements hook_install().