* @copyright 2022 WebAppick * @license GPL 2.0+ * @link http://domain.tld */ namespace Disco\Engine; /** * Base skeleton of the plugin */ class Base { /** * @var array The settings of the plugin. */ public $settings = array(); /** * Initialize the class and get the plugin settings * * @return bool */ public function initialize() { return true; } }