first commit

This commit is contained in:
DESKTOP-GBA0BK8\Admin
2023-04-08 12:19:53 -04:00
commit 7c8c8b1c76
4586 changed files with 2050693 additions and 0 deletions
@@ -0,0 +1,23 @@
<?php
/**
* @deprecated If you really need to do that manually, use the AutoDataSource-Class instead.
*/
function geoip_detect_update() {
_doing_it_wrong('GeoIP Detection: geoip_detect_update', ' If you really need to do that manually, use the AutoDataSource-Class instead.', '2.4.0');
$s = new \YellowTree\GeoipDetect\DataSources\Auto\AutoDataSource();
return $s->maxmindUpdate();
}
/**
* @deprecated since 2.4.0
* @return string
*/
function geoip_detect_get_abs_db_filename()
{
_doing_it_wrong('GeoIP Detection: geoip_detect_get_abs_db_filename', 'geoip_detect_get_abs_db_filename should not be called directly', '2.4.0');
$source = \YellowTree\GeoipDetect\DataSources\DataSourceRegistry::getInstance()->getCurrentSource();
if (method_exists($source, 'maxmindGetFilename'))
return $source->maxmindGetFilename();
return '';
}