You are here

function commerce_paypal_wpp_requirements in Commerce PayPal 7

Same name and namespace in other branches
  1. 7.2 modules/wpp/commerce_paypal_wpp.install \commerce_paypal_wpp_requirements()

Implementation of hook_requirements().

File

modules/wpp/commerce_paypal_wpp.install, line 11
Ensures users have cURL enabled prior to installation.

Code

function commerce_paypal_wpp_requirements($phase) {

  // Skip the requirements check if SimpleTest is installed to avoid multiple
  // cURL rows.
  if (module_exists('simpletest')) {
    return;
  }
  $t = get_t();
  $has_curl = function_exists('curl_init');
  $requirements['commerce_paypal_wpp_curl'] = array(
    'title' => $t('cURL'),
    'value' => $has_curl ? $t('Enabled') : $t('Not found'),
  );
  if (!$has_curl) {
    $requirements['commerce_paypal_wpp_curl'] += array(
      'severity' => REQUIREMENT_ERROR,
      'description' => $t("PayPal WPP requires the PHP <a href='!curl_url'>cURL</a> library.", array(
        '!curl_url' => 'http://php.net/manual/en/curl.setup.php',
      )),
    );
  }
  return $requirements;
}