. // }}} namespace App\Core\Modules; use App\Util\Common; use App\Util\Formatting; /** * Base class for all GNU social modules (plugins and components) */ abstract class 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 * * @param mixed $state */ public static function __set_state($state) { $class = get_called_class(); $obj = new $class(); foreach ($state as $k => $v) { $obj->{$k} = $v; } return $obj; } // ------- Module initialize and cleanup ---------- private function defer(string $cycle) { $type = ucfirst(static::MODULE_TYPE); if (method_exists($this, $method = "on{$cycle}{$type}")) { $this->{$method}(); } } // Can't use __call or it won't be found by our event function finder public function onInitializeModule() { $this->defer('Initialize'); } public function onCleanupModule() { $this->defer('Cleanup'); } }