Module.php 612 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. ###
  3. # @name Module
  4. # @copyright 2015 by Tobias Reich
  5. ###
  6. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  7. abstract class Module {
  8. protected function plugins($name, $location, $args) {
  9. self::dependencies(isset($name, $location, $args));
  10. # Parse
  11. $location = ($location===0 ? 'before' : 'after');
  12. # Call plugins
  13. Plugins::get()->activate($name . ":" . $location, $args);
  14. return true;
  15. }
  16. final public static function dependencies($available = false) {
  17. if ($available===false) exit('Error: Can not execute function. Missing parameters or variables.');
  18. }
  19. }
  20. ?>