API16

JFilesystemHelper/getFilters: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 28: Line 28:


===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=*

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