API16:JController/setMessage
From Joomla! Documentation
Description
Sets the internal message that is passed with a redirect
<! removed transcluded page call, red link never existed >
Syntax
setMessage($text)
| Parameter Name | Default Value | Description |
|---|---|---|
| $text | The message |
Returns
string Previous message
Defined in
libraries/joomla/application/component/controller.php
Importing
jimport( 'joomla.application.component.controller' );
Source Body
function setMessage($text)
{
$previous = $this->_message;
$this->_message = $text;
return $previous;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples