From 8593244797795856b2367d2ba7af3451ed9ac38b Mon Sep 17 00:00:00 2001
From: Bruno Massa <brmassa@67164.no-reply.drupal.org>
Date: Fri, 5 Jun 2009 19:08:12 +0000
Subject: [PATCH] Improvements: * A warning on hook_requirements when the PHP
 version is below 5.2

---
 charts.install | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/charts.install b/charts.install
index 27b5950..6493359 100644
--- a/charts.install
+++ b/charts.install
@@ -6,6 +6,8 @@
  * Install and unistall functions for this module
  */
 
+DEFINE(CHARTS_MINIMUM_PHP, '5.2.0');
+
 /**
  * Implementation of hook_uninstall().
  */
@@ -17,20 +19,29 @@ function charts_uninstall() {
  * Implementation of hook_requirements().
  */
 function charts_requirements($phase) {
+  // Test PHP version
+  if (version_compare(phpversion(), CHARTS_MINIMUM_PHP) < 0) {
+    $requirements['charts_php']['title']        = t('PHP Charts');
+    $requirements['charts_php']['value']        = ($phase == 'runtime') ? l(phpversion(), 'admin/logs/status/php') : phpversion();
+    $requirements['charts_php']['description']  = t('Your PHP installation is too old. Charts requires at least PHP %version.',
+      array('%version' => CHARTS_MINIMUM_PHP));
+    $requirements['charts_php']['severity']     = REQUIREMENT_ERROR;
+  }
+
   if ($phase == 'runtime' and !$modules = module_invoke_all('charts_info', 'list')) {
     $requirements['charts']['title']        = t('Charts');
     $requirements['charts']['value']        = t('No Charts provider installed');
     $requirements['charts']['severity']     = REQUIREMENT_ERROR;
     $requirements['charts']['description']  = t('Charts core module only provides a a common set of functions. You must install a Charts provider module to create charts.');
-
-    return $requirements;
   }
   elseif ($phase == 'runtime' and !$settings = variable_get('charts_settings', array())) {
     $requirements['charts']['title']        = t('Charts');
     $requirements['charts']['value']        = t('Charts module not yet configured');
     $requirements['charts']['severity']     = REQUIREMENT_ERROR;
     $requirements['charts']['description']  = t('Charts core module needs to get some default options in order to operate. You must go to <a href="!link">settings page</a> and configure it.', array('!link' => url('admin/settings/charts')));
+  }
 
+  if (isset($requirements)) {
     return $requirements;
   }
 }
-- 
GitLab