PatTemplate Function Sef/call: Difference between revisions
From Joomla! Documentation
New page: ===Description===
call the function
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>... |
m removing red link to edit, no existant pages |
||
| Line 3: | Line 3: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Syntax=== | ===Syntax=== | ||
| Line 49: | Line 49: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Examples=== | ===Examples=== | ||
| Line 64: | Line 64: | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
[[Category:Archived pages API15]] | |||
Revision as of 18:59, 12 May 2013
Description
call the function
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
call($params, $content)
| Parameter Name | Default Value | Description |
|---|---|---|
| $params | parameters of the function (= attributes of the tag) | |
| $content | content of the tag |
Returns
string content to insert into the template
Defined in
libraries/joomla/template/module/function/Sef.php
Importing
jimport( 'joomla.template.module.function.Sef' );
Source Body
function call( $params, $content )
{
/*
if( !isset( $params['macro'] ) ) {
return false;
}
*/
return JRoute::_( $content );
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />