Source for file stringcontroller.php
Documentation is available at stringcontroller.php
* @package Joomla.Platform
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
* @package Joomla.Platform
* Defines a variable as an array
static $strings =
array();
* @param string $reference The key
* @param string &$string The value
public function createRef($reference, &$string)
$ref =
&self::_getArray();
$ref[$reference] =
& $string;
* @param string $reference The key for the reference.
* @return mixed False if not set, reference if it it exists
public function getRef($reference)
$ref =
&self::_getArray();
if (isset
($ref[$reference]))
Documentation generated on Tue, 19 Nov 2013 15:14:34 +0100 by phpDocumentor 1.4.3