JFilesystemHelper: Difference between revisions
From Joomla! Documentation
New page: <span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>
</span>
{{Description:JFilesystemHelper}}
===... |
m preparing for archive only |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
===Defined in=== | ===Defined in=== | ||
libraries/joomla/filesystem/helper.php | libraries/joomla/filesystem/helper.php | ||
Line 39: | Line 34: | ||
|Modes that require a write operation | |Modes that require a write operation | ||
|} | |} | ||
===Importing=== | ===Importing=== | ||
<source lang="php">jimport( 'joomla.filesystem.helper' );</source> | <source lang="php">jimport( 'joomla.filesystem.helper' );</source> | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JFilesystemHelper | category=JFilesystemHelper | ||
namespace=CodeExample | |||
category=ClassExample | category=ClassExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> |
Latest revision as of 01:40, 25 March 2017
Defined in
libraries/joomla/filesystem/helper.php
Methods
Method name | Description |
---|---|
remotefsize | Remote file size function for streams that don't support it http://www.php.net/manual/en/function.filesize.php#71098 |
ftpChmod | Quick FTP chmod http://www.php.net/manual/en/function.ftp-chmod.php |
getSupported | Returns the supported streams, in addition to direct file access Also includes Joomla! streams as well as PHP streams Array Streams |
getTransports | Returns a list of transports |
getFilters | Returns a list of filters |
getJStreams | Returns a list of J! streams |
isJoomlaStream | |
getWriteModes | Modes that require a write operation |
Importing
jimport( 'joomla.filesystem.helper' );
Examples
Code Examples