mirror of
https://github.com/Mibew/geo-ip-plugin.git
synced 2025-04-03 11:27:09 +03:00
parent
079b9e8686
commit
001cb3598f
15
Plugin.php
15
Plugin.php
@ -139,6 +139,21 @@ class Plugin extends \Mibew\Plugin\AbstractPlugin implements \Mibew\Plugin\Plugi
|
|||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns plugin's system requirements
|
||||||
|
*
|
||||||
|
* @return type
|
||||||
|
*/
|
||||||
|
public static function getSystemRequirements()
|
||||||
|
{
|
||||||
|
if (extension_loaded('gmp')) {
|
||||||
|
return array('ext-gmp' => '*');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return array('ext-bcmath' => '*');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Format locale name using "xx-XX" format.
|
* Format locale name using "xx-XX" format.
|
||||||
*
|
*
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
Provides Geo IP information for other plugins.
|
Provides Geo IP information for other plugins.
|
||||||
|
|
||||||
|
*Requires either [GMP (GNU Multiple Precision)](http://php.net/manual/en/book.gmp.php) or [BC Math (BCMath Arbitrary Precision Mathematics)](http://php.net/manual/en/book.bc.php) PHP extension.*
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user