Bonjour,
Comment récupérer le niveau de privilège dans le controller : JFactory::getUser()->authorise ne fonctionne pas.
merci pour votre aide.
Comment récupérer le niveau de privilège dans le controller : JFactory::getUser()->authorise ne fonctionne pas.
public function save() {
if (JFactory::getUser()->authorise('comment.edit','com_nglibrary')) : //si l'utilisateur est connecté en admin
parent::save();
else :
$sendcomment = new \Nglibrary\Admin\Controller\Comment($this->container);
$sendcomment->sendComment(); parent::save();
endif; }
if (JFactory::getUser()->authorise('comment.edit','com_nglibrary')) : //si l'utilisateur est connecté en admin
parent::save();
else :
$sendcomment = new \Nglibrary\Admin\Controller\Comment($this->container);
$sendcomment->sendComment(); parent::save();
endif; }
Commentaire