API17

JFilesystemHelper: Difference between revisions

From Joomla! Documentation

Doxiki2 (talk | contribs)
Layout updates
m preparing for archive only
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
<span class="editsection" style="font-size:76%;">
=={{JVer|11.1}} JFilesystemHelper==
<nowiki>[</nowiki>[[Description:JFilesystemHelper|Edit Descripton]]<nowiki>]</nowiki>
===Description===
</span>
 
{{Description:JFilesystemHelper}}
 
===Defined in===
libraries/joomla/filesystem/helper.php
* see source code in [[jplatform:filesystem/helper.php|BitBucket]]
===Subpackage===
[[Subpackage Filesystem/11.1|Filesystem]]
===Extends===
===Extended by===
===Methods===
===Methods===
{| class="wikitable sortable"
{| class="wikitable sortable"
|-
|-
!Visibility
!Method name
!Method name
!Description
!Description
|-
|-
|[[JFilesystemHelper::ftpChmod/11.1|ftpChmod]]
|public
|[[API17:JFilesystemHelper::ftpChmod|ftpChmod]]
|Quick FTP chmod.  
|Quick FTP chmod.  
|-
|-
|[[JFilesystemHelper::getFilters/11.1|getFilters]]
|public
|[[API17:JFilesystemHelper::getFilters|getFilters]]
|Returns a list of filters.  
|Returns a list of filters.  
|-
|-
|[[JFilesystemHelper::getJStreams/11.1|getJStreams]]
|public
|[[API17:JFilesystemHelper::getJStreams|getJStreams]]
|Returns a list of J! streams.  
|Returns a list of J! streams.  
|-
|-
|[[JFilesystemHelper::getSupported/11.1|getSupported]]
|public
|Returns the supported streams, in addition to direct file access Also includes Joomla! streams as well as PHP streams.  
|[[API17:JFilesystemHelper::getSupported|getSupported]]
|Stream and Filter Support Operations.  
|-
|-
|[[JFilesystemHelper::getTransports/11.1|getTransports]]
|public
|[[API17:JFilesystemHelper::getTransports|getTransports]]
|Returns a list of transports.  
|Returns a list of transports.  
|-
|-
|[[JFilesystemHelper::isJoomlaStream/11.1|isJoomlaStream]]
|public
|[[API17:JFilesystemHelper::isJoomlaStream|isJoomlaStream]]
|TODO Add description.  
|TODO Add description.  
|-
|-
|[[JFilesystemHelper::remotefsize/11.1|remotefsize]]
|public
|Remote file size function for streams that don't support it.
|[[API17:JFilesystemHelper::remotefsize|remotefsize]]
|Support Functions; should probably live in a helper?
|-
|-
|[[JFilesystemHelper::getWriteModes/11.1|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 in [[jplatform:filesystem/helper.php|BitBucket]]
* {{JVer|11.1}} '''JFilesystemHelper source code''' on [[jplatform:filesystem/helper.php|BitBucket]]
* [[JFilesystemHelper|Other versions of this class]]
* {{JVer|11.1}} Subpackage [[API17:Subpackage Filesystem|Filesystem]]
{{SeeAlso:JFilesystemHelper}}
* [[API17:JFilesystemHelper|Other versions of JFilesystemHelper]]
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JFilesystemHelper|Edit See Also]]<nowiki>]</nowiki>
 
</span>
===User contributed notes===
===Examples===
=== Code Examples ===
<CodeExamplesForm />
<dpl>
<dpl>
noresultsheader=\n
noresultsheader=\n
category=JFilesystemHelper
category=JFilesystemHelper
category=CodeExample
namespace=CodeExample
category=ClassExample
category=ClassExample
include=*
include=*
namespace=CodeExample
format= ,,,
format= ,,,
</dpl>
</dpl>
<noinclude>[[Category:Platform]][[Category:Platform 11.1]][[Category:JFilesystemHelper]]</noinclude>
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 03:01, 25 March 2017

Joomla 11.1 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


User contributed notes

Code Examples