JFilesystemHelper/getFilters: Difference between revisions
From Joomla! Documentation
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 | ||
<! removed transcluded page call, red link never existed > | |||
===Syntax=== | ===Syntax=== | ||
| Line 26: | Line 24: | ||
</source> | </source> | ||
<! removed transcluded page call, red link never existed > | |||
< | |||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=getFilters | category=getFilters | ||
category=JFilesystemHelper | category=JFilesystemHelper | ||
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