dataset/seed/piwigo/manual/image/postinstall/osmmap.php

14 lines
622 B
PHP
Raw Normal View History

2022-04-28 21:48:16 +02:00
<?php
define('PHPWG_ROOT_PATH','./');
if (isset($_GET['v']) and $_GET['v'] == 1)
include_once( PHPWG_ROOT_PATH. 'plugins/piwigo-openstreetmap/osmmap.php');
else if (isset($_GET['v']) and $_GET['v'] == 2)
include_once( PHPWG_ROOT_PATH. 'plugins/piwigo-openstreetmap/osmmap2.php');
else if (isset($_GET['v']) and $_GET['v'] == 3)
include_once( PHPWG_ROOT_PATH. 'plugins/piwigo-openstreetmap/osmmap3.php');
else if (isset($_GET['v']) and $_GET['v'] == 4)
include_once( PHPWG_ROOT_PATH. 'plugins/piwigo-openstreetmap/osmmap4.php');
else
include_once( PHPWG_ROOT_PATH. 'plugins/piwigo-openstreetmap/osmmap3.php');
?>