You are here

public static function PHPExcel_CachedObjectStorage_SQLite3::cacheMethodIsAvailable in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite3.php \PHPExcel_CachedObjectStorage_SQLite3::cacheMethodIsAvailable()

* Identify whether the caching method is currently available * Some methods are dependent on the availability of certain extensions being enabled in the PHP build * *

Return value

boolean

Overrides PHPExcel_CachedObjectStorage_CacheBase::cacheMethodIsAvailable

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite3.php, line 337

Class

PHPExcel_CachedObjectStorage_SQLite3
PHPExcel_CachedObjectStorage_SQLite3

Code

public static function cacheMethodIsAvailable() {
  if (!class_exists('SQLite3', FALSE)) {
    return false;
  }
  return true;
}