API15

API15:PatTemplate Function Sef/call

From Joomla! Documentation

Revision as of 22:24, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== call the function <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

call the function

[Edit Descripton]

Template:Description:patTemplate Function Sef/call

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 );
}

[Edit See Also] Template:SeeAlso:patTemplate Function Sef/call

Examples

<CodeExamplesForm />