You are here

public static function DatexFormatter::hasINTL in Datex 7

Determines wether PECL package php-intl is available or not.

1 call to DatexFormatter::hasINTL()
DatexFormatter::format in datex_api/datex_api_classes.inc
Similar to php date_format.

File

datex_api/datex_api_classes.inc, line 442
API and helper functions used by other datex modules.

Class

DatexFormatter
Date tools for Jalali Dates.

Code

public static function hasINTL() {
  return class_exists('IntlDateFormatter');
}