JFilterOutput
JFilterOutput
Located in /joomla/filter/filteroutput.php (line 23)
JFilterOutput (Subpackage Filter)
static void
objectHTMLSafe
(object An &$mixed, [int $quote_style = ENT_QUOTES], [string|array $exclude_keys = ''])
Cleans text of all formating and scripting code
- &$text
This method processes a string and replaces all instances of & with & in links only
- string $input: String to process
Makes an object safe to display in forms
Object parameters that are non-string, array, object or start with underscore will be converted
- object An &$mixed: object to be parsed
- int $quote_style: The optional quote style for the htmlspecialchars function
- string|array $exclude_keys: An optional single field name or array of field names not to be parsed (eg, for a textarea)
This method processes a string and replaces all accented UTF-8 characters by unaccented ASCII-7 "equivalents", whitespaces are replaced by hyphens and the string is lowercased.
- string $input: String to process
- $string
Callback method for replacing & with & in a string
- string $m: String to process




JFilterOutput (Subpackage Filter)