Source for file access.php
Documentation is available at access.php
* @author Simon Georget <simon@linea21.com>
* @license http://opensource.org/licenses/gpl-3.0.html
include('../config/define.php');
include('../languages/'. U_L. '/lang_library.'. CHARSET. '.php');
//////////// Check Inclusion de pages ////////////
if (!isset ($_SESSION['authenticated'])) {
include_once("../lib/lib_common.php");
if(defined('CKFINDER_ENABLED') && CKFINDER_ENABLED == true) {
require_once('../lib/vendor/ckfinder/ckfinder.php');
$finder = new CKFinder();
$finder->BasePath = '../lib/vendor/ckfinder/';
$finder->SelectFunction = 'ShowFileInfo';
$finder->Height = '100%';
// we include the default basic shared Library
require_once('default_access.php');
|