contributions/lib.identifrac/install/check_preconditions.php
Go to the documentation of this file.00001 <?php 00002 function lib_identifrac_check_preconditions() { 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 }