JFilterOutput/linkXHTMLSafe: Difference between revisions
From Joomla! Documentation
New page: ===Description===
This method processes a string and replaces all instances of & with & in links only
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Des... |
m removing red link to edit, no existant pages |
||
| Line 1: | Line 1: | ||
===Description=== | ===Description=== | ||
This method processes a string and replaces all instances of & | This method processes a string and replaces all instances of & with & in links only | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Syntax=== | ===Syntax=== | ||
| Line 40: | Line 40: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Examples=== | ===Examples=== | ||
| Line 55: | Line 55: | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
[[Category:Archived pages API16]] | |||
Revision as of 02:51, 14 May 2013
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 />