Automatically exported from code.google.com/p/planningalerts
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

40 wiersze
1.2 KiB

  1. <?php
  2. //Includes
  3. require_once('config.php');
  4. require_once('application.php');
  5. //build date url
  6. $current_date = getdate();
  7. $day = $current_date['mday'] -5;
  8. $month = $current_date['mon'];
  9. $year = $current_date['year'];
  10. //if any get params were passed, overwrite the default date
  11. if (isset($_GET['day'])){
  12. $day = $_GET['day'];
  13. }
  14. if (isset($_GET['month'])){
  15. $month = $_GET['month'];
  16. }
  17. if (isset($_GET['year'])){
  18. $year = $_GET['year'];
  19. }
  20. //search url
  21. $search_url = "https://www.islington.gov.uk/onlineplanning/apas/run/Wphappcriteria.showApplications?regfromdate=#daterange&regtodate=#daterange";
  22. $date_range = "{$day}-{$month}-{$year}";
  23. $search_url = str_replace("#daterange", $date_range, $search_url);
  24. //comment and info urls
  25. $info_url_base = "https://www.islington.gov.uk/onlineplanning/apas/run/WPHAPPDETAIL.DisplayUrl?theApnID=";
  26. $comment_url_base = "https://www.islington.gov.uk/onlineplanning/apas/run/wphmakerep.displayURL?ApnID=";
  27. //grab urls
  28. $applications = scrape_applications_islington($search_url, $info_url_base, $comment_url_base);
  29. //Display applications
  30. display_applications($applications, "London Borough of Islington", "Islington");
  31. ?>