30 lines
460 B
PHP
30 lines
460 B
PHP
<?php
|
|
|
|
###
|
|
# @name Access
|
|
# @author Tobias Reich
|
|
# @copyright 2014 by Tobias Reich
|
|
###
|
|
|
|
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
|
|
|
|
class Access {
|
|
|
|
protected $database = null;
|
|
protected $plugins = null;
|
|
protected $settings = null;
|
|
|
|
public function __construct($database, $plugins, $settings) {
|
|
|
|
# Init vars
|
|
$this->database = $database;
|
|
$this->plugins = $plugins;
|
|
$this->settings = $settings;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|