mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-11 10:58:48 +00:00
[openstreetmaps] Add addon config
- Update mentions of .htconfig.php
This commit is contained in:
parent
88278dbe19
commit
d9808fecdf
3 changed files with 44 additions and 12 deletions
|
@ -15,13 +15,14 @@ use Friendica\Core\L10n;
|
|||
use Friendica\Core\System;
|
||||
use Friendica\Util\Network;
|
||||
|
||||
const OSM_TMS = 'http://www.openstreetmap.org';
|
||||
const OSM_NOM = 'http://nominatim.openstreetmap.org/search.php';
|
||||
const OSM_TMS = 'https://www.openstreetmap.org';
|
||||
const OSM_NOM = 'https://nominatim.openstreetmap.org/search.php';
|
||||
const OSM_ZOOM = 16;
|
||||
const OSM_MARKER = 0;
|
||||
|
||||
function openstreetmap_install()
|
||||
{
|
||||
Addon::registerHook('load_config', 'addon/openstreetmap/openstreetmap.php', 'openstreetmap_load_config');
|
||||
Addon::registerHook('render_location', 'addon/openstreetmap/openstreetmap.php', 'openstreetmap_location');
|
||||
Addon::registerHook('generate_map', 'addon/openstreetmap/openstreetmap.php', 'openstreetmap_generate_map');
|
||||
Addon::registerHook('generate_named_map', 'addon/openstreetmap/openstreetmap.php', 'openstreetmap_generate_named_map');
|
||||
|
@ -33,6 +34,7 @@ function openstreetmap_install()
|
|||
|
||||
function openstreetmap_uninstall()
|
||||
{
|
||||
Addon::unregisterHook('load_config', 'addon/openstreetmap/openstreetmap.php', 'openstreetmap_load_config');
|
||||
Addon::unregisterHook('render_location', 'addon/openstreetmap/openstreetmap.php', 'openstreetmap_location');
|
||||
Addon::unregisterHook('generate_map', 'addon/openstreetmap/openstreetmap.php', 'openstreetmap_generate_map');
|
||||
Addon::unregisterHook('generate_named_map', 'addon/openstreetmap/openstreetmap.php', 'openstreetmap_generate_named_map');
|
||||
|
@ -42,6 +44,11 @@ function openstreetmap_uninstall()
|
|||
logger("removed openstreetmap");
|
||||
}
|
||||
|
||||
function openstreetmap_load_config(\Friendica\App $a)
|
||||
{
|
||||
$a->loadConfigFile(__DIR__. '/config/openstreetmap.ini.php');
|
||||
}
|
||||
|
||||
function openstreetmap_alterheader($a, &$navHtml)
|
||||
{
|
||||
$addScriptTag = '<script type="text/javascript" src="' . $a->get_baseurl() . '/addon/openstreetmap/openstreetmap.js"></script>' . "\r\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue