KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.4.62
System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64
User : www ( 80)
PHP Version : 8.3.8
Disable Function : NONE
Directory :  /domains/afglcweb/ny/modules/color/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /domains/afglcweb/ny/modules/color/color.install
<?php
/* $Id: color.install,v 1.2 2006/12/05 05:49:50 dries Exp $ */

function color_requirements($phase) {
  $requirements = array();

  if ($phase == 'runtime') {
    // Check GD library
    if (function_exists('imagegd2')) {
      $info = gd_info();
      $requirements['gd'] = array(
        'value' => $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 <a href="@url">PHP image documentation</a> for information on how to correct this.', array('@url' => 'http://www.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 <a href="@url">PHP image documentation</a> for information on how to correct this.', array('@url' => 'http://www.php.net/manual/en/ref.image.php')),
      );
    }
    $requirements['gd']['title'] = t('GD library');
  }

  return $requirements;
}

Anon7 - 2021