Plugins.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. private function __clone() {
  28. # Magic method clone is empty to prevent duplication of plugins
  29. }
  30. public function attach(\SplObserver $observer) {
  31. if (!isset($observer)) return false;
  32. # Add observer
  33. $this->observers[] = $observer;
  34. return true;
  35. }
  36. public function detach(\SplObserver $observer) {
  37. if (!isset($observer)) return false;
  38. # Remove observer
  39. $key = array_search($observer, $this->observers, true);
  40. if ($key) unset($this->observers[$key]);
  41. return true;
  42. }
  43. public function notify() {
  44. # Notify each observer
  45. foreach ($this->observers as $value) $value->update($this);
  46. return true;
  47. }
  48. public function activate($action, $args) {
  49. if (!isset($action, $args)) return false;
  50. # Save vars
  51. $this->action = $action;
  52. $this->args = $args;
  53. # Notify observers
  54. $this->notify();
  55. return true;
  56. }
  57. }
  58. ?>