index.php 452 B

1234567891011121314151617181920
  1. <?php
  2. define('SITE_NAME', 'Umeå Fritidsplatser');
  3. require_once('classes/Facilities.php');
  4. $facilities = new Facilities('facilities/markers.tsv');
  5. $current = $facilities->get_id($_REQUEST['id']);
  6. $btype = array();
  7. if ($current) {
  8. $btype[] = $current->Buildingtype;
  9. }
  10. if (isset($_REQUEST['btype']) && is_array($_REQUEST['btype'])) {
  11. $btype = array_merge($btype, $_REQUEST['btype']);
  12. }
  13. $btype = array_unique($btype);
  14. require_once('inc/html.php');