diff options
author | Evan Prodromou <evan@status.net> | 2009-11-19 12:35:19 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-11-19 12:35:19 -0500 |
commit | ea561b88d1364cf6408355fa2843758f5bd3c950 (patch) | |
tree | 0d53551bccf13b2de3a076b5e2113ae4d004eb57 /plugins | |
parent | 2daa31f142862265f80cdf52d2aa02e40fc303d7 (diff) | |
parent | ee22b2ccf9819cefba54ef38c6a57829c7d3fa73 (diff) |
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/GeonamesPlugin.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/plugins/GeonamesPlugin.php b/plugins/GeonamesPlugin.php index 1d7381a80..59232c1c5 100644 --- a/plugins/GeonamesPlugin.php +++ b/plugins/GeonamesPlugin.php @@ -302,4 +302,28 @@ class GeonamesPlugin extends Plugin // it's been filled, so don't process further. return false; } + + /** + * Machine-readable name for a location + * + * Given a location, we try to retrieve a geonames.org URL. + * + * @param Location $location Location to get the url for + * @param string &$url Place to put the url + * + * @return boolean whether to continue + */ + + function onLocationRdfUrl($location, &$url) + { + if ($location->location_ns != self::LOCATION_NS) { + // It's not one of our IDs... keep processing + return true; + } + + $url = 'http://sw.geonames.org/' . $location->location_id . '/'; + + // it's been filled, so don't process further. + return false; + } } |