Welcome to UAP Docs - ErrorHelper
ErrorHelper Helper
The ErrorHelper Helper is designed to work site wide in UAP.
It is already included in the header file of UAP.
use Helpers\ErrorHelper;
echo ErrorHelper::display();
echo ErrorHelper::display_raw($error);
You can use this helper on current page, or automaticly redirect to selected page.
To use it on current page just add the following to your Controller:
$data['error'] = "You had an error!"
To use it with a redirect to a new page just add the following to your Controller:
ErrorHelper::push('You Must Login To Do That!', 'Login');
It can also be used to refresh current page.
ErrorHelper::push('Ooops! You had an Error!', '');
- Can't find what your looking for? Please use
Forum.