API16

JStream/addContextEntry

From Joomla! Documentation

< API16:JStream
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The "API16" 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]

Adds a particular options to the context



Syntax[edit]

addContextEntry($wrapper, $name, $value)
Parameter Name Default Value Description
$wrapper The wrapper to use
$name The option to set
$value The value of the option

Defined in[edit]

libraries/joomla/filesystem/stream.php

Importing[edit]

jimport( 'joomla.filesystem.stream' );

Source Body[edit]

function addContextEntry($wrapper, $name, $value)
{
        $this->_contextOptions[$wrapper][$name] = $value;
        $this->_buildContext();
}



Examples[edit]

Code Examples[edit]