Access.php 436 B

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