You are here

public function PurgeDependCurl::check_depend in Purge 7.2

Checks if the curl library is installed.

File

includes/purge.class.inc, line 262
Contains all class and interface definitions for Purge.

Class

PurgeDependCurl
Checks if the curl library is installed.

Code

public function check_depend() {
  $pass = extension_loaded('curl');
  return $pass;
}