force the domframework path in require

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3752 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2017-06-12 11:56:25 +00:00
parent 89461c1cb2
commit 235e980250
4 changed files with 7 additions and 0 deletions

View File

@@ -3,6 +3,8 @@
@package domframework
@author Dominique Fournier <dominique@fournier38.fr> */
require_once ("domframework/auth.php");
/** User authentication against .htpasswd file
A .htpasswd can be created by the 'htpasswd' command for Apache, and contain
toto@toto.com:$2y$05$uHCUNqicE7Pku3MK1qZaDuJxP/pocqCcEAnacZBjsfWgW9EcuG5y2

View File

@@ -3,6 +3,8 @@
@package domframework
@author Dominique Fournier <dominique@fournier38.fr> */
require_once ("domframework/auth.php");
/** User authentication against LDAP server */
class authldap extends auth
{

View File

@@ -3,6 +3,8 @@
@package domframework
@author Dominique Fournier <dominique@fournier38.fr> */
require_once ("domframework/auth.php");
/** User authentication against Shibboleth */
class authshibboleth extends auth
{

View File

@@ -4,6 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */
require_once ("domframework/dblayer.php");
require_once ("domframework/auth.php");
/** User authentication against SQL database */
class authsql extends auth