API15

JRequest/getWord

From Joomla! Documentation

< API15:JRequest
Revision as of 13:44, 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]

Fetches and returns a given filtered variable. The word filter only allows the characters [A-Za-z_]. This is currently only a proxy function for getVar().

[<! removed edit link to red link >]

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

Syntax[edit]

getWord($name, $default= '', $hash= 'default')
Parameter Name Default Value Description
$name $name Variable name
$default $default Default value if the variable does not exist
$hash 'default' $hash Where the var should come from (POST, GET, FILES, COOKIE, METHOD)

Returns[edit]

string Requested variable

Defined in[edit]

libraries/joomla/environment/request.php

Importing[edit]

jimport( 'joomla.environment.request' );

Source Body[edit]

function getWord($name, $default = '', $hash = 'default')
{
        return JRequest::getVar($name, $default, $hash, 'word');
}

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

Examples[edit]

<CodeExamplesForm />