JFilesystemHelper: Difference between revisions
From Joomla! Documentation
Layout updates |
m preparing for archive only |
||
| (6 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
=={{JVer|11.1}} JFilesystemHelper== | |||
===Description=== | |||
{{ | |||
=== | |||
===Methods=== | ===Methods=== | ||
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
|- | |- | ||
!Visibility | |||
!Method name | !Method name | ||
!Description | !Description | ||
|- | |- | ||
|[[JFilesystemHelper::ftpChmod | |public | ||
|[[API17:JFilesystemHelper::ftpChmod|ftpChmod]] | |||
|Quick FTP chmod. | |Quick FTP chmod. | ||
|- | |- | ||
|[[JFilesystemHelper::getFilters | |public | ||
|[[API17:JFilesystemHelper::getFilters|getFilters]] | |||
|Returns a list of filters. | |Returns a list of filters. | ||
|- | |- | ||
|[[JFilesystemHelper::getJStreams | |public | ||
|[[API17:JFilesystemHelper::getJStreams|getJStreams]] | |||
|Returns a list of J! streams. | |Returns a list of J! streams. | ||
|- | |- | ||
|[[JFilesystemHelper::getSupported | |public | ||
| | |[[API17:JFilesystemHelper::getSupported|getSupported]] | ||
|Stream and Filter Support Operations. | |||
|- | |- | ||
|[[JFilesystemHelper::getTransports | |public | ||
|[[API17:JFilesystemHelper::getTransports|getTransports]] | |||
|Returns a list of transports. | |Returns a list of transports. | ||
|- | |- | ||
|[[JFilesystemHelper::isJoomlaStream | |public | ||
|[[API17:JFilesystemHelper::isJoomlaStream|isJoomlaStream]] | |||
|TODO Add description. | |TODO Add description. | ||
|- | |- | ||
|[[JFilesystemHelper::remotefsize | |public | ||
| | |[[API17:JFilesystemHelper::remotefsize|remotefsize]] | ||
|Support Functions; should probably live in a helper? | |||
|- | |- | ||
|[[JFilesystemHelper::getWriteModes | |public static | ||
|[[API17:JFilesystemHelper::getWriteModes|getWriteModes]] | |||
|Modes that require a write operation. | |Modes that require a write operation. | ||
|- | |- | ||
|} | |} | ||
* '''Defined in''' libraries/joomla/filesystem/helper.php | |||
===Importing=== | ===Importing=== | ||
<source lang="php">jimport( 'joomla.filesystem.helper' );</source> | <source lang="php">jimport( 'joomla.filesystem.helper' );</source> | ||
===See also=== | ===See also=== | ||
* JFilesystemHelper source code | * {{JVer|11.1}} '''JFilesystemHelper source code''' on [[jplatform:filesystem/helper.php|BitBucket]] | ||
* [[ | * {{JVer|11.1}} Subpackage [[API17:Subpackage Filesystem|Filesystem]] | ||
* [[API17:JFilesystemHelper|Other versions of JFilesystemHelper]] | |||
===User contributed notes=== | |||
===Examples=== | === Code Examples === | ||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JFilesystemHelper | category=JFilesystemHelper | ||
namespace=CodeExample | |||
category=ClassExample | category=ClassExample | ||
include=* | include=* | ||
namespace=CodeExample | |||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude> | <noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude> | ||
Latest revision as of 03:01, 25 March 2017
JFilesystemHelper
Description
Methods
| Visibility | Method name | Description |
|---|---|---|
| public | ftpChmod | Quick FTP chmod. |
| public | getFilters | Returns a list of filters. |
| public | getJStreams | Returns a list of J! streams. |
| public | getSupported | Stream and Filter Support Operations. |
| public | getTransports | Returns a list of transports. |
| public | isJoomlaStream | TODO Add description. |
| public | remotefsize | Support Functions; should probably live in a helper? |
| public static | getWriteModes | Modes that require a write operation. |
- Defined in libraries/joomla/filesystem/helper.php
Importing
jimport( 'joomla.filesystem.helper' );
See also
JFilesystemHelper source code on BitBucket
Subpackage Filesystem- Other versions of JFilesystemHelper
User contributed notes
Code Examples