getCurrentProvider() публичный статический Метод

This function should not be called by the Tracker.
public static getCurrentProvider ( ) : LocationProvider | null
Результат LocationProvider | null
Пример #1
0
 /**
  * Returns true if a GeoIP provider is installed & working, false if otherwise.
  *
  * @return bool
  */
 public function isGeoIPWorking()
 {
     $provider = LocationProvider::getCurrentProvider();
     return $provider instanceof GeoIp && $provider->isAvailable() === true && $provider->isWorking() === true;
 }