Same name and namespace in other branches
  1. 4.6.x includes/image.inc \image_get_toolkit()
  2. 5.x includes/image.inc \image_get_toolkit()
  3. 6.x includes/image.inc \image_get_toolkit()
  4. 7.x includes/image.inc \image_get_toolkit()

Retrieve the name of the currently used toolkit.

Return value

String containing the name of the toolkit.

1 call to image_get_toolkit()
system_view_general in modules/system.module

File

includes/image.inc, line 29

Code

function image_get_toolkit() {
  static $toolkit;
  if (!$toolkit) {
    $toolkit = variable_get('image_toolkit', 'gd');
    $toolkit_file = './includes/image.' . $toolkit . '.inc';
    if ($toolkit != 'gd' && file_exists($toolkit_file)) {
      include_once $toolkit_file;
    }
    elseif (!image_gd_check_settings()) {
      $toolkit = false;
    }
  }
  return $toolkit;
}