aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/examples/basicauth.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sabre/dav/examples/basicauth.php')
-rw-r--r--vendor/sabre/dav/examples/basicauth.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/vendor/sabre/dav/examples/basicauth.php b/vendor/sabre/dav/examples/basicauth.php
new file mode 100644
index 000000000..743c07ce2
--- /dev/null
+++ b/vendor/sabre/dav/examples/basicauth.php
@@ -0,0 +1,26 @@
+<?php
+
+// !!!! Make sure the Sabre directory is in the include_path !!!
+// example:
+// set_include_path('lib/' . PATH_SEPARATOR . get_include_path());
+
+// settings
+date_default_timezone_set('Canada/Eastern');
+
+// Files we need
+require_once 'vendor/autoload.php';
+
+$u = 'admin';
+$p = '1234';
+
+$auth = new \Sabre\HTTP\BasicAuth();
+
+$result = $auth->getUserPass();
+
+if (!$result || $result[0]!=$u || $result[1]!=$p) {
+
+ $auth->requireLogin();
+ echo "Authentication required\n";
+ die();
+
+}