begin work on call detaillers (load name from ldap, load location from opengeodb)
[auerswald-callnotifier.git] / src / callnotifier / CallMonitor / Detailler.php
diff --git a/src/callnotifier/CallMonitor/Detailler.php b/src/callnotifier/CallMonitor/Detailler.php
new file mode 100644 (file)
index 0000000..188e765
--- /dev/null
@@ -0,0 +1,16 @@
+<?php
+namespace callnotifier;
+
+interface CallMonitor_Detailler
+{
+    /**
+     * Loads additional data into the call, e.g. name of the caller
+     *
+     * @param CallMonitor_Call $call Call to update
+     *
+     * @return void
+     */
+    public function loadCallDetails(CallMonitor_Call $call);
+}
+
+?>