You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lychee/php/modules/Module.php

29 lines
508 B

<?php
namespace Lychee\Modules;
abstract class Module {
protected function plugins($name, $location, $args) {
self::dependencies(isset($name, $location, $args));
# Parse
$location = ($location===0 ? 'before' : 'after');
# Call plugins
Plugins::get()->activate($name . ":" . $location, $args);
return true;
}
final public static function dependencies($available = false) {
if ($available===false) exit('Error: Can not execute function. Missing parameters or variables.');
}
}
?>