You are here

function iek_init in Image effect kit 7

Implements hook_init().

File

./iek.module, line 11
Primarily Drupal hooks and global API functions to manipulate image styles.

Code

function iek_init() {

  // Checks which image toolkit we are using.
  if (variable_get('image_toolkit', 'gd') == 'gd') {
    module_load_include('inc', 'iek', 'iek.gd');
  }
}