API17

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.  


{{subst:Description:JControllerForm::getRedirectToItemAppend}}
 


<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]]
{{subst:SeeAlso:JControllerForm::getRedirectToItemAppend}}
 


===User contributed notes===
===User contributed notes===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
noresultsheader=\n
noresultsheader=\n
category=JControllerForm::getRedirectToItemAppend
category=JControllerForm::getRedirectToItemAppend
category=CodeExample
namespace=CodeExample
category=MethodExample
category=MethodExample
include=*
include=*

Latest revision as of 02:32, 25 March 2017

Joomla 11.1 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 Joomla 11.1

See also


User contributed notes

Code Examples