You are here

function money_init in Money field 7

Same name and namespace in other branches
  1. 6 money.module \money_init()

Implements hook_init().

File

./money.module, line 11
This module defines the Money field.

Code

function money_init() {
  if (module_exists('diff')) {
    module_load_include('inc', 'money', 'includes/money.diff');
  }
  if (module_exists('feeds')) {
    module_load_include('inc', 'money', 'includes/money.feeds');
  }
}