API16:JFilterOutput/linkXHTMLSafe
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
This method processes a string and replaces all instances of & with & in links only
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
linkXHTMLSafe($input)
| Parameter Name | Default Value | Description |
|---|---|---|
| $input | $input String to process |
Returns
string Processed string
Defined in
libraries/joomla/filter/filteroutput.php
Importing
jimport( 'joomla.filter.filteroutput' );
Source Body
function linkXHTMLSafe($input) { $regex = 'href="([^"]*(&(amp;){0})[^"]*)*?"'; return preg_replace_callback("#$regex#i", array('JFilterOutput', '_ampReplaceCallback'), $input); }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
