2014-04-28 09:23:18 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
###
|
|
|
|
# @name Access
|
2015-02-01 21:08:37 +00:00
|
|
|
# @copyright 2015 by Tobias Reich
|
2014-04-28 09:23:18 +00:00
|
|
|
###
|
|
|
|
|
|
|
|
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
|
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
abstract class Access {
|
2014-04-28 09:23:18 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
abstract protected function check($fn);
|
2014-04-28 09:23:18 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|