JControllerForm::getRedirectToItemAppend: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 4: | Line 4: | ||
Gets the URL arguments to append to an item redirect. | Gets the URL arguments to append to an item redirect. | ||
<source lang="php"> | <source lang="php"> | ||
| Line 38: | Line 38: | ||
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Application|Application]] | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Application|Application]] | ||
* [[API17:JControllerForm::getRedirectToItemAppend|Other versions of JControllerForm::getRedirectToItemAppend]] | * [[API17:JControllerForm::getRedirectToItemAppend|Other versions of JControllerForm::getRedirectToItemAppend]] | ||
===User contributed notes=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JControllerForm::getRedirectToItemAppend | category=JControllerForm::getRedirectToItemAppend | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 02:32, 25 March 2017
JControllerForm::getRedirectToItemAppend
Description
Gets the URL arguments to append to an item redirect.
protected function getRedirectToItemAppend (
$recordId=null
$urlVar= 'id'
)
| Parameter | Type | Default | Description |
|---|---|---|---|
| $recordId | int | null | The primary key id for the item. |
| $urlVar | string | 'id' | The name of the URL variable for the id. |
- Returns string The arguments to append to the redirect URL.
- Defined on line 358 of libraries/joomla/application/component/controllerform.php
- Since

See also
JControllerForm::getRedirectToItemAppend source code on BitBucket
Class JControllerForm
Subpackage Application- Other versions of JControllerForm::getRedirectToItemAppend
User contributed notes
Code Examples