Plugins.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. ###
  3. # @name Plugins Module
  4. # @copyright 2015 by Tobias Reich
  5. ###
  6. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  7. final class Plugins implements \SplSubject {
  8. private static $instance = null;
  9. private $observers = array();
  10. public $action = null;
  11. public $args = null;
  12. public static function get() {
  13. if (!self::$instance) {
  14. $files = Settings::get()['plugins'];
  15. self::$instance = new self($files);
  16. }
  17. return self::$instance;
  18. }
  19. private function __construct(array $plugins) {
  20. # Load plugins
  21. foreach ($plugins as $plugin) {
  22. if ($plugin==='') continue;
  23. $this->attach(new $plugin);
  24. }
  25. return true;
  26. }
  27. public function attach(\SplObserver $observer) {
  28. if (!isset($observer)) return false;
  29. # Add observer
  30. $this->observers[] = $observer;
  31. return true;
  32. }
  33. public function detach(\SplObserver $observer) {
  34. if (!isset($observer)) return false;
  35. # Remove observer
  36. $key = array_search($observer, $this->observers, true);
  37. if ($key) unset($this->observers[$key]);
  38. return true;
  39. }
  40. public function notify() {
  41. # Notify each observer
  42. foreach ($this->observers as $value) $value->update($this);
  43. return true;
  44. }
  45. public function activate($action, $args) {
  46. if (!isset($action, $args)) return false;
  47. # Save vars
  48. $this->action = $action;
  49. $this->args = $args;
  50. # Notify observers
  51. $this->notify();
  52. return true;
  53. }
  54. }
  55. ?>