API16

JFilesystemHelper/getFilters: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Returns a list of filters <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]<...
 
m preparing for archive only
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
Returns a list of filters  
Returns a list of filters  


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


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


===Syntax===
===Syntax===
Line 26: Line 24:
</source>
</source>


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


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=getFilters
  category=getFilters
  category=JFilesystemHelper
  category=JFilesystemHelper
  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

Returns a list of filters


<! removed transcluded page call, red link never existed >

Syntax

getFilters()


Defined in

libraries/joomla/filesystem/helper.php

Importing

jimport( 'joomla.filesystem.helper' );

Source Body

function getFilters() {
        // note: this will look like the getSupported() function with J! filters
        // TODO: add user space filter loading like user space stream loading
        return stream_get_filters();
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples