mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 11:42:54 +00:00
34 lines
779 B
PHP
34 lines
779 B
PHP
<?php
|
|
|
|
// Create an __autoload function
|
|
// (can conflicts other autoloaders)
|
|
// http://php.net/manual/en/language.oop5.autoload.php
|
|
|
|
// Load composer vendor folder if any
|
|
if (file_exists(__DIR__ . '/vendor/autoload.php')) {
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
}
|
|
|
|
/*
|
|
// Load xmlseclibs
|
|
|
|
$xmlseclibsSrcDir = '';
|
|
|
|
include_once $xmlseclibsSrcDir.'/XMLSecEnc.php';
|
|
include_once $xmlseclibsSrcDir.'/XMLSecurityDSig.php';
|
|
include_once $xmlseclibsSrcDir.'/XMLSecurityKey.php';
|
|
include_once $xmlseclibsSrcDir.'/Utils/XPath.php';
|
|
*/
|
|
|
|
|
|
// Load php-saml
|
|
$libDir = __DIR__ . '/src/Saml2/';
|
|
|
|
$folderInfo = scandir($libDir);
|
|
|
|
foreach ($folderInfo as $element) {
|
|
if (is_file($libDir.$element) && (substr($element, -4) === '.php')) {
|
|
include_once $libDir.$element;
|
|
}
|
|
}
|
|
|