Browse Source

only show checkin if it was less than 6 hours ago

main
Aaron Parecki 1 year ago
parent
commit
f4fa5e58f9
1 changed files with 12 additions and 5 deletions
  1. +12
    -5
      lib/helpers.php

+ 12
- 5
lib/helpers.php View File

@ -206,11 +206,18 @@ function get_micropub_checkin(&$user) {
if($r['data'] && is_array($r['data'])) {
if(isset($r['data']['items'][0]['properties']['checkin'][0]) &&
isset($r['data']['items'][0]['properties']['checkin'][0]['properties']['name'][0])) {
$checkin = $r['data']['items'][0]['properties']['checkin'][0];
$url = $r['data']['items'][0]['properties']['url'][0];
$name = $checkin['properties']['name'][0];
$lat = $checkin['properties']['latitude'][0];
$lng = $checkin['properties']['longitude'][0];
$item = $r['data']['items'][0];
$checkin = $item['properties']['checkin'][0];
if(isset($item['properties']['published'][0])
&& strtotime($item['properties']['published'][0]) > time() - 60*60*6) {
$url = $r['data']['items'][0]['properties']['url'][0];
$name = $checkin['properties']['name'][0];
$lat = $checkin['properties']['latitude'][0];
$lng = $checkin['properties']['longitude'][0];
}
}
}

Loading…
Cancel
Save