image_toolkit_validate

Versions
4.7
image_toolkit_validate($formelement, $fieldname)

Validates toolkit selection.

Code

includes/image.inc, line 48

<?php
function image_toolkit_validate($formelement, $fieldname) {
  if ($formelement['#value'] == 'gd' && image_gd_check_settings() == false) {
    form_set_error('image_toolkit', t("The built-in GD image toolkit requires that the GD module for PHP be installed and configured properly. For more information see %url.", array('%url' => '<a href="http://php.net/image">http://php.net/image</a>')));
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.