API16

API16:JText/

From Joomla! Documentation

Revision as of 10:18, 30 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Translates a string into the current language. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Translates a string into the current language.

[Edit Descripton]

Template:Description:JText/

Syntax

static _($string, $jsSafe=false)
Parameter Name Default Value Description
$string $string The string to translate.
$jsSafe false $jsSafe Make the result javascript safe.

Defined in

libraries/joomla/methods.php

Importing

jimport( 'joomla.methods' );

Source Body

public static function _($string, $jsSafe = false)
{
        $lang = &JFactory::getLanguage();
        return $lang->_($string, $jsSafe);
}

[Edit See Also] Template:SeeAlso:JText/

Examples

<CodeExamplesForm />