Hi, I want to create a quite complex backend page (my first module so far) in PS 1.7.8.0. I've created a ModuleAdminController and want to show the content without using a tpl file. It's there any way to do so ? if not what I've to do to show the content on the backend page ?
class AdminXXSupplierOrdersController extends ModuleAdminController
{
public function __construct()
{
parent::__construct();
$this->display = 'Hello World';
But I get no Hello World in page.
I found tutorials on how to build a frontend module with a config admin, but not an admin page where I can manage datas in PS fields the way I want to show it
Thank you for your help.