forked from straup/php-lib-enplacify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
61 lines (52 loc) · 1.14 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
$GLOBALS['cfg']['enplacify'] = array(
'chowhound' => array(
'uris' => array(
"/chow\.com\/restaurants\/([^\/]+)/",
),
),
'dopplr' => array(
'uris' => array(
"/dplr\.it\/(eat|stay|explore)\/([^\/]+)/",
"/dopplr\:(eat|stay|explore)=(.+)$/",
),
),
'flickr' => array(
'uris' => array(
"/flickr\.com\/photos\/(?:[^\/]+)\/(\d+)/",
# flickr short Uris
),
'machinetags' => array(
'dopplr' => array('eat', 'explore', 'stay'),
'foodspotting' => array('place'),
'foursquare' => array('venue'),
'osm' => array('node', 'way'),
'yelp' => array('biz'),
),
),
'foodspotting' => array(
'uris' => array(
"/foodspotting\.com\/places\/(\d+)/",
"/foodspotting\:place=(.+)$/",
),
),
'foursquare' => array(
'uris' => array(
"/foursquare\.com\/venue\/(\d+)/",
"/foursquare\:venue=(\d+)$/",
),
),
'openstreetmap' => array(
'uris' => array(
"/openstreetmap.org\/browse\/(node|way)\/(\d+)/",
"/osm\:(node|way)=(\d+)$/",
),
),
'yelp' => array(
'uris' => array(
"/yelp\.com\/biz\/([^\/]+)/",
"/yelp\:biz=([^\/]+)/",
),
),
);
?>