Jump to content

problème création module backoffice


Recommended Posts

bonjour,

 

J'essaye de créé un module en backoffice,

 

Mais le display s'affiche dans une nouvelle page , pas dans prestashop

quelqu'un peux t il m'aidé

 

class AdminTarifSoldeController extends AdminController{
 
protected $_group_id;
 
public function __construct() {
 
$this->className = 'AdminTarifSolde';
$this->name = "tarifsolde";
 
$this->_lang = (!isset($cookie) || !is_object($cookie)) ? intval(Configuration::get('PS_LANG_DEFAULT')) : intval($cookie->id_lang);
 
if (Tools::isSubmit('group_id'))
$this->_group_id = (array_key_exists('group_id', $_POST)) ? intval($_POST['group_id']) : intval($_GET['group_id']);
else
$this->_group_id = 10;
 
parent::__construct();
}
 
 
 
public function display($token = NULL)
{
 
echo $this->l('This is my tab');
}
 
 
 
}
 

 

Link to comment
Share on other sites

oui , 

je veux ajouter un onglet dans le backoffice, ( ce que j 'ai fait , j ai un nouvelle onglet dans le menu commande)

et l'onglet s affiche bien , mais quand je clique sur l'onglet il m'ouvre une page blanche avec mon test , 

Je voudrais qu'il m'ouvre cette page mais en gardant les menu du backoffice,

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...