API15:JController/setMessage
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Sets the internal message that is passed with a redirect
Description:JController/setMessage
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; }
[Edit See Also] SeeAlso:JController/setMessage
Examples
<CodeExamplesForm />
