. // }}} namespace App\Core\Modules; use App\Util\Common; use EventResult; /** * Base class for all GNU social modules (plugins and components) */ abstract class Module { public const MODULE_TYPE = 'module'; /** * Load values from the config and set them as properties on each module object */ public function loadConfig() { // Load Module settings foreach (Common::config(static::MODULE_TYPE . 's') as $module => $values) { if ($module == $this->name()) { foreach ($values as $property => $value) { $this->{$property} = $value; } } } } public static function name() { return mb_strtolower(explode('\\', static::class)[2]); } /** * Serialize the class to store in the cache */ public static function __set_state(array $state) { $obj = new (static::class); foreach ($state as $k => $v) { $obj->{$k} = $v; } return $obj; } // ------- Module initialize and cleanup ---------- private function defer(string $cycle): EventResult { $type = ucfirst(static::MODULE_TYPE); if (method_exists($this, $method = "on{$cycle}{$type}")) { $this->{$method}(); } return EventResult::next; } // Can't use __call or it won't be found by our event function finder public function onInitializeModule(): EventResult { return $this->defer('Initialize'); } public function onCleanupModule(): EventResult { return $this->defer('Cleanup'); } }