API16

JFilterOutput/linkXHTMLSafe: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
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 preparing for archive only
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
===Description===
===Description===
This method processes a string and replaces all instances of &amp; with &amp; in links only
This method processes a string and replaces all instances of & with & in links only


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JFilterOutput/linkXHTMLSafe|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JFilterOutput/linkXHTMLSafe}}
 
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 39: Line 37:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JFilterOutput/linkXHTMLSafe|Edit See Also]]<nowiki>]</nowiki>
<! removed transcluded page call, red link never existed >
</span>
{{SeeAlso:JFilterOutput/linkXHTMLSafe}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=linkXHTMLSafe
  category=linkXHTMLSafe
  category=JFilterOutput
  category=JFilterOutput
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API16]]

Latest revision as of 01:40, 25 March 2017

Description

This method processes a string and replaces all instances of & with & in links only


<! 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 transcluded page call, red link never existed >

Examples

Code Examples