Skip to content

Instantly share code, notes, and snippets.

@esedic
Last active February 28, 2023 17:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save esedic/46d5467718058a43d3f3b44a9fd2baa1 to your computer and use it in GitHub Desktop.
Save esedic/46d5467718058a43d3f3b44a9fd2baa1 to your computer and use it in GitHub Desktop.
Joomla system message after redirect
<?php
use Joomla\CMS\Factory;
use Joomla\CMS\Router\Route;
$app = Factory::getApplication();
$app->enqueueMessage('Redirect to another page was successful', 'success');
$app->redirect(Route::_('index.php'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment