function __construct()
 {
     // Choose DB from config
     parent::__construct();
     $this->addPath('template', BASE . 'templates/');
     // Hardwire SQLite
     $plugin = new PapyrinePlugin(BASE . 'plugins/database-sqlite/');
     $this->database = $plugin->getInstance();
 }