how to create a new page in prestashop admin panel? I tried using creating a new admin controller file and in that set the template path and i created a menu using admin pan
class AdminPageController extends AdminController
{
public function __construct()
{
parent::__construct();
}
public function initContent()
{
parent::initContent();
$this->setTemplate(_PS_THEME_DIR_.'mypage.tpl');
}
}