forked from friendica/friendica-addons
[geonames] Update config file style/name
This commit is contained in:
parent
48616e1db0
commit
b87b840db5
|
@ -7,9 +7,10 @@ Use Geonames service to resolve nearest populated location for given latitude, l
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
Pre-requisite: Register a username at geonames.org and set in config/addon.ini.php
|
Pre-requisite: Register a username at geonames.org and set in `config/addon.config.php`
|
||||||
|
|
||||||
[geonames]
|
'geonames' => [
|
||||||
username = your_username
|
'username' => 'your_username'
|
||||||
|
],
|
||||||
|
|
||||||
Also visit http://geonames.org/manageaccount and enable access to the free web services.
|
Also visit http://geonames.org/manageaccount and enable access to the free web services.
|
12
geonames/config/geonames.config.php
Normal file
12
geonames/config/geonames.config.php
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
// Warning: Don't change this file! It only holds the default config values for this addon.
|
||||||
|
// Instead overwrite these config values in config/addon.config.php in your Friendica directory
|
||||||
|
|
||||||
|
return [
|
||||||
|
'geonames' => [
|
||||||
|
//username (String)
|
||||||
|
//The geonames.org API username
|
||||||
|
'username' => '',
|
||||||
|
],
|
||||||
|
];
|
|
@ -1,12 +0,0 @@
|
||||||
<?php return <<<INI
|
|
||||||
|
|
||||||
; Warning: Don't change this file! It only holds the default config values for this addon.
|
|
||||||
; Instead overwrite these config values in config/addon.ini.php in your Friendica directory
|
|
||||||
|
|
||||||
[geonames]
|
|
||||||
; username (String)
|
|
||||||
; The geonames.org API username
|
|
||||||
username =
|
|
||||||
|
|
||||||
INI;
|
|
||||||
//Keep this line
|
|
|
@ -7,7 +7,7 @@
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* Pre-requisite: Register a username at geonames.org
|
* Pre-requisite: Register a username at geonames.org
|
||||||
* and set in config/addon.ini.php
|
* and set in config/addon.config.php
|
||||||
*
|
*
|
||||||
* [geonames]
|
* [geonames]
|
||||||
* username = your_username
|
* username = your_username
|
||||||
|
@ -78,7 +78,7 @@ function geonames_uninstall() {
|
||||||
|
|
||||||
function geonames_load_config(\Friendica\App $a)
|
function geonames_load_config(\Friendica\App $a)
|
||||||
{
|
{
|
||||||
$a->loadConfigFile(__DIR__. '/config/geonames.ini.php');
|
$a->loadConfigFile(__DIR__. '/config/geonames.config.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
function geonames_post_hook($a, &$item) {
|
function geonames_post_hook($a, &$item) {
|
||||||
|
|
Loading…
Reference in a new issue