summaryrefslogtreecommitdiff
path: root/classes/iauthmodule.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-12-27 15:14:44 +0400
committerAndrew Dolgov <[email protected]>2012-12-27 15:14:44 +0400
commit0f28f81f8911e432ae4bf50da7ed2c334618fd95 (patch)
treec5684bedb1ad6b62840c30c730b868934a44b48e /classes/iauthmodule.php
parent61261e45b90f6d0582cd338a1a3c9cf0c8a599ce (diff)
move authentication modules to plugins/
Diffstat (limited to 'classes/iauthmodule.php')
-rw-r--r--classes/iauthmodule.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/classes/iauthmodule.php b/classes/iauthmodule.php
new file mode 100644
index 000000000..d47dbacfb
--- /dev/null
+++ b/classes/iauthmodule.php
@@ -0,0 +1,5 @@
+<?php
+interface IAuthModule {
+ function authenticate($login, $password);
+}
+?>