From 1e27bbd41fbce52fc9a82e61516e6846f856c664 Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Sun, 29 Oct 2006 15:56:25 +0000 Subject: color.install missing --- modules/color/color.install | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 modules/color/color.install (limited to 'modules') diff --git a/modules/color/color.install b/modules/color/color.install new file mode 100644 index 000000000..f028afab7 --- /dev/null +++ b/modules/color/color.install @@ -0,0 +1,35 @@ + $info['GD Version'], + ); + + // Check PNG support + if (function_exists('imagecreatefrompng')) { + $requirements['gd']['severity'] = REQUIREMENT_OK; + } + else { + $requirements['gd']['severity'] = REQUIREMENT_ERROR; + $requirements['gd']['description'] = t('The GD library for PHP is enabled, but was compiled without PNG support. Please check the PHP image documentation for information on how to correct this.', array('@url' => 'http://be.php.net/manual/en/ref.image.php')); + } + } + else { + $requirements['gd'] = array( + 'value' => t('Not installed'), + 'severity' => REQUIREMENT_ERROR, + 'description' => t('The GD library for PHP is missing or outdated. Please check the PHP image documentation for information on how to correct this.', array('@url' => 'http://be.php.net/manual/en/ref.image.php')), + ); + } + $requirements['gd']['title'] = t('GD Library'); + } + + return $requirements; +} -- cgit v1.2.3