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, 0 insertions, 26 deletions
diff --git a/vendor/sabre/dav/examples/basicauth.php b/vendor/sabre/dav/examples/basicauth.php
deleted file mode 100644
index 743c07ce2..000000000
--- a/vendor/sabre/dav/examples/basicauth.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?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();
-
-}