summaryrefslogtreecommitdiff
path: root/lib/omb.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-02 13:57:25 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-02 13:57:25 -0400
commit326def19652fc6946a53989f80dd88be940d0f8e (patch)
tree384429c5ef9028c13569587ea6827397ec455cbc /lib/omb.php
parent03677f1a81bcde5541bda6322e0dd0b0fb847ecd (diff)
move service-matching callbacks to library
darcs-hash:20080602175725-84dde-c8b3abaedcb8667130da2a080a09630d91969b5c.gz
Diffstat (limited to 'lib/omb.php')
-rw-r--r--lib/omb.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/omb.php b/lib/omb.php
index 91c1906e3..9efdaff62 100644
--- a/lib/omb.php
+++ b/lib/omb.php
@@ -61,6 +61,19 @@ function omb_hmac_sha1() {
return $hmac_method;
}
+function omb_service_filter($type) {
+ return create_function('$s',
+ 'return omb_match_service($s, \''.$type.'\'');
+}
+
+function omb_match_service($service, $type) {
+ if ($service && $service->matchTypes(array($type))) {
+ return TRUE;
+ } else {
+ return FALSE;
+ }
+}
+
function omb_service_uri($service) {
$uris = $service->getURIs();
if (!$uris) {