API15

JView/escape

From Joomla! Documentation

< API15:JView
Revision as of 13:58, 12 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Escapes a value for output in a view script.

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

escape($var)
Parameter Name Default Value Description
$var $var The output to escape.

Returns[edit]

mixed The escaped value.

Defined in[edit]

libraries/joomla/application/component/view.php

Importing[edit]

jimport( 'joomla.application.component.view' );

Source Body[edit]

function escape($var)
{
    if (in_array($this->_escape, array('htmlspecialchars', 'htmlentities'))) {
        return call_user_func($this->_escape, $var, ENT_COMPAT, $this->_charset);
    }

    return call_user_func($this->_escape, $var);
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />