Re : Com. Perso: Problème de Toolbar dans l'administration
j'ai trouvée l'endroit dans le natif! C'est dans le controllerForm dans la fonction save:
j'ai trouvée l'endroit dans le natif! C'est dans le controllerForm dans la fonction save:
Code PHP:
// Attempt to save the data.
if (!$model->save($validData))
{
// Save the data in the session.
$app->setUserState($context . '.data', $validData);
// Redirect back to the edit screen.
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_SAVE_FAILED', $model->getError()));
$this->setMessage($this->getError(), 'error');
$this->setRedirect(
JRoute::_(
'index.php?option=' . $this->option . '&view=' . $this->view_item
. $this->getRedirectToItemAppend($recordId, $urlVar), false
)
);
return false;
}
Commentaire