Access.php 460 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. ###
  3. # @name Access
  4. # @author Tobias Reich
  5. # @copyright 2014 by Tobias Reich
  6. ###
  7. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  8. class Access {
  9. protected $database = null;
  10. protected $plugins = null;
  11. protected $settings = null;
  12. public function __construct($database, $plugins, $settings) {
  13. # Init vars
  14. $this->database = $database;
  15. $this->plugins = $plugins;
  16. $this->settings = $settings;
  17. return true;
  18. }
  19. }
  20. ?>