feat(ws_faqAccordion): Add installer; create entity & db table

This commit is contained in:
2026-02-09 13:53:35 +01:00
parent 644f55dcc0
commit b9cf7e04e1
9 changed files with 294 additions and 2 deletions

16
src/Module/adminHooks.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
namespace Module\WsFaqAccordion\Module;
trait adminHooks
{
// This function is for the configuraion page on the back office. When you click "configure" this is called.
public function getContent()
{
return $this->renderForm();
}
public function renderForm(){
return("Hello! This is the configuration page in the back office.");
}
}