16 lines
380 B
PHP
16 lines
380 B
PHP
<?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.");
|
|
}
|
|
} |