API17:JController::setRedirect
From Joomla! Documentation
(Difference between revisions)
(Bulk upload by Doxiki2) |
(Updated to r1448:247ba8d88526) |
||
| (One intermediate revision by one user not shown) | |||
| Line 8: | Line 8: | ||
<nowiki>[</nowiki>[[Description:JController::setRedirect|Edit Descripton]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[Description:JController::setRedirect|Edit Descripton]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | |||
| − | |||
| − | |||
<source lang="php"> | <source lang="php"> | ||
| − | public | + | public function setRedirect ( |
| + | $url | ||
| + | $msg=null | ||
| + | $type=null | ||
| + | ) | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 37: | Line 38: | ||
|- | |- | ||
|} | |} | ||
| − | + | * '''Returns''' This object to support chaining. | |
| − | This object to support chaining. | + | * '''Defined''' on line 972 of libraries/joomla/application/component/controller.php |
| − | + | * '''Since''' {{JVer|11.1 }} | |
| − | libraries/joomla/application/component/controller.php | + | |
| − | + | ||
===See also=== | ===See also=== | ||
| + | * {{JVer|11.1}} '''JController::setRedirect source code''' on [[jplatform:application/component/controller.php#cl-964|BitBucket]] | ||
| + | * {{JVer|11.1}} Class [[JController/11.1|JController]] | ||
| + | * {{JVer|11.1}} Subpackage [[Subpackage_Application/11.1|Application]] | ||
| + | * [[JController::setRedirect|Other versions of JController::setRedirect]] | ||
| + | {{SeeAlso:JController::setRedirect}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[SeeAlso:JController::setRedirect|Edit See Also]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[SeeAlso:JController::setRedirect|Edit See Also]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | + | ===User contributed notes=== | |
| − | + | ||
| − | + | ||
| − | === | + | |
<CodeExamplesForm /> | <CodeExamplesForm /> | ||
<dpl> | <dpl> | ||
| Line 57: | Line 58: | ||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
| + | namespace=CodeExample | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category:JController]][[Category:JController::setRedirect]]</noinclude> | <noinclude>[[Category:JController]][[Category:JController::setRedirect]]</noinclude> | ||
Revision as of 20:23, 27 April 2011
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.
JController::setRedirect
Description
Set a URL for browser redirection.
Description:JController::setRedirect [Edit Descripton]
public function setRedirect ( $url $msg=null $type=null )
| Parameter | Type | Default | Description |
|---|---|---|---|
| $url | string | URL to redirect to. | |
| $msg | string | null | Message to display on redirect. Optional, defaults to value set internally by controller, if any. |
| $type | string | null | Message type. Optional, defaults to 'message' or the type set by a previous call to setMessage. |
- Returns This object to support chaining.
- Defined on line 972 of libraries/joomla/application/component/controller.php
- Since
See also
-
JController::setRedirect source code on BitBucket
-
Class JController
-
Subpackage Application
- Other versions of JController::setRedirect
SeeAlso:JController::setRedirect [Edit See Also]
User contributed notes
<CodeExamplesForm />
