Plugins.php 1.3 KB

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