1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 03:54:10 +01:00

Merge pull request #3353 from nickvergessen/ticket/13553

[ticket/13553] Add a method to the controller helper to display a message
This commit is contained in:
Dhruv Goel 2015-01-30 13:09:14 +05:30
commit c130165bfa

View File

@ -188,10 +188,25 @@ class helper
* @deprecated 3.1.3 (To be removed: 3.3.0) Use exceptions instead.
*/
public function error($message, $code = 500)
{
return $this->message($message, false, $code);
}
/**
* Output a message
*
* In case of an error, please throw an exception instead
*
* @param string $message The message to display
* @param string|false $title Title for the message
* @param int $code The HTTP status code (e.g. 404, 500, 503, etc.)
* @return Response A Response instance
*/
public function message($message, $title = false, $code = 200)
{
$this->template->assign_vars(array(
'MESSAGE_TEXT' => $message,
'MESSAGE_TITLE' => $this->user->lang('INFORMATION'),
'MESSAGE_TITLE' => ($title === false) ? $this->user->lang('INFORMATION') : $title,
));
return $this->render('message_body.html', $this->user->lang('INFORMATION'), $code);