.

contributions/lib.identifrac/install/check_preconditions.php File Reference

Go to the source code of this file.

Functions

  lib_identifrac_check_preconditions ()

Function Documentation

lib_identifrac_check_preconditions (  ) 

Definition at line 2 of file check_preconditions.php.

00002                                               {
00003         $ret = new Status();
00004         if (!function_exists('imagecreatetruecolor')) {
00005                 $ret->append('Please enable the gd extension: http://php.net/manual/en/book.image.php');
00006         }       
00007         return $ret;
00008 }