. // }}} namespace App\Core\Modules; use App\Util\Common; /** * Base class for all GNU social modules (plugins and components) */ abstract class Module { /** * TODO Handle configuration * * @codeCoverageIgnore */ public function __construct() { // Load Module settings foreach (Common::config(static::class) as $aname => $avalue) { $this->{$aname} = $avalue; } } /** * 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; } }