[ticket/13553] Add a method to the controller helper to display a message

PHPBB3-13553
This commit is contained in:
Joas Schilling 2015-01-29 19:08:32 +01:00
parent b2b5addd09
commit afe99f9050

View file

@ -188,10 +188,25 @@ class helper
* @deprecated 3.1.3 (To be removed: 3.3.0) Use exceptions instead. * @deprecated 3.1.3 (To be removed: 3.3.0) Use exceptions instead.
*/ */
public function error($message, $code = 500) 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( $this->template->assign_vars(array(
'MESSAGE_TEXT' => $message, '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); return $this->render('message_body.html', $this->user->lang('INFORMATION'), $code);