Back to Language class

Method getUsed

public array
getUsed
()
Get the list of used strings.
Returns
  • array Used strings.
Since
  • 1.7.0
Class: Language
Project: Joomla

Method getUsed - Source code

/**
 * Get the list of used strings.
 *
 * Used strings are those strings requested and found either as a string or a constant.
 *
 * @return  array  Used strings.
 *
 * @since   1.7.0
 */
public function getUsed()
{
    return $this->used;
}