Properties

$pathPrefix

$pathPrefix : string|null

Type

string|null — path prefix

$pathSeparator

$pathSeparator : string

Type

string

$connection

$connection : mixed

Type

mixed

$host

$host : string

Type

string

$port

$port : int

Type

int

$ssl

$ssl : bool

Type

bool

$timeout

$timeout : int

Type

int

$passive

$passive : bool

Type

bool

$separator

$separator : string

Type

string

$permPublic

$permPublic : int

Type

int

$permPrivate

$permPrivate : int

Type

int

$configurable

$configurable : array

Type

array

$systemType

$systemType : string

Type

string

$alternativeRecursion

$alternativeRecursion : bool

Type

bool

$safeStorage

$safeStorage : \League\Flysystem\SafeStorage

Type

SafeStorage

Methods

setPathPrefix()

setPathPrefix(string  $prefix) : void

Set the path prefix.

Parameters

string $prefix

getPathPrefix()

getPathPrefix() : string|null

Get the path prefix.

Returns

string|null —

path prefix or null if pathPrefix is empty

applyPathPrefix()

applyPathPrefix(string  $path) : string

Prefix a path.

Parameters

string $path

Returns

string —

prefixed path

removePathPrefix()

removePathPrefix(string  $path) : string

Remove a path prefix.

Parameters

string $path

Returns

string —

path without the prefix

__construct()

__construct(array  $config) : mixed

Constructor.

Parameters

array $config

Returns

mixed —

setConfig()

setConfig(array  $config) : $this

Set the config.

Parameters

array $config

Returns

$this —

getHost()

getHost() : string

Returns the host.

Returns

string —

setHost()

setHost(string  $host) : $this

Set the host.

Parameters

string $host

Returns

$this —

setPermPublic()

setPermPublic(int  $permPublic) : $this

Set the public permission value.

Parameters

int $permPublic

Returns

$this —

setPermPrivate()

setPermPrivate(int  $permPrivate) : $this

Set the private permission value.

Parameters

int $permPrivate

Returns

$this —

getPort()

getPort() : int

Returns the ftp port.

Returns

int —

getRoot()

getRoot() : string

Returns the root folder to work from.

Returns

string —

setPort()

setPort(int|string  $port) : $this

Set the ftp port.

Parameters

int|string $port

Returns

$this —

setRoot()

setRoot(string  $root) : $this

Set the root folder to work from.

Parameters

string $root

Returns

$this —

getUsername()

getUsername() : string

Returns the ftp username.

Returns

string —

username

setUsername()

setUsername(string  $username) : $this

Set ftp username.

Parameters

string $username

Returns

$this —

getPassword()

getPassword() : string

Returns the password.

Returns

string —

password

setPassword()

setPassword(string  $password) : $this

Set the ftp password.

Parameters

string $password

Returns

$this —

getTimeout()

getTimeout() : int

Returns the amount of seconds before the connection will timeout.

Returns

int —

setTimeout()

setTimeout(int  $timeout) : $this

Set the amount of seconds before the connection should timeout.

Parameters

int $timeout

Returns

$this —

getSystemType()

getSystemType() : string

Return the FTP system type.

Returns

string —

setSystemType()

setSystemType(string  $systemType) : $this

Set the FTP system type (windows or unix).

Parameters

string $systemType

Returns

$this —

listContents()

listContents(mixed  $directory = '', mixed  $recursive = false) : mixed

Parameters

mixed $directory
mixed $recursive

Returns

mixed —

removeDotDirectories()

removeDotDirectories(array  $list) : array

Filter out dot-directories.

Parameters

array $list

Returns

array —

has()

has(mixed  $path) : mixed

Parameters

mixed $path

Returns

mixed —

getSize()

getSize(mixed  $path) : mixed

Parameters

mixed $path

Returns

mixed —

getVisibility()

getVisibility(mixed  $path) : mixed

Parameters

mixed $path

Returns

mixed —

ensureDirectory()

ensureDirectory(string  $dirname) : mixed

Ensure a directory exists.

Parameters

string $dirname

Returns

mixed —

getConnection()

getConnection() : mixed

Returns

mixed —

getPermPublic()

getPermPublic() : int

Get the public permission value.

Returns

int —

getPermPrivate()

getPermPrivate() : int

Get the private permission value.

Returns

int —

__destruct()

__destruct() : mixed

Disconnect on destruction.

Returns

mixed —

connect()

connect() : mixed

Establish a connection.

Returns

mixed —

disconnect()

disconnect() : mixed

Close the connection.

Returns

mixed —

isConnected()

isConnected() : bool

Check if a connection is active.

Returns

bool —

listDirectoryContents()

listDirectoryContents(mixed  $directory, mixed  $recursive = false) : mixed

Parameters

mixed $directory
mixed $recursive

Returns

mixed —

normalizeListing()

normalizeListing(array  $listing, string  $prefix = '') : array

Normalize a directory listing.

Parameters

array $listing
string $prefix

Returns

array —

directory listing

sortListing()

sortListing(array  $result) : array

Sort a directory listing.

Parameters

array $result

Returns

array —

sorted listing

normalizeObject()

normalizeObject(string  $item, string  $base) : array

Normalize a file entry.

Parameters

string $item
string $base

Throws

\League\Flysystem\NotSupportedException

Returns

array —

normalized file array

normalizeUnixObject()

normalizeUnixObject(string  $item, string  $base) : array

Normalize a Unix file entry.

Parameters

string $item
string $base

Returns

array —

normalized file array

normalizeWindowsObject()

normalizeWindowsObject(string  $item, string  $base) : array

Normalize a Windows/DOS file entry.

Parameters

string $item
string $base

Returns

array —

normalized file array

detectSystemType()

detectSystemType(string  $item) : string

Get the system type from a listing item.

Parameters

string $item

Returns

string —

the system type

detectType()

detectType(string  $permissions) : string

Get the file type from the permissions.

Parameters

string $permissions

Returns

string —

file type

normalizePermissions()

normalizePermissions(string  $permissions) : int

Normalize a permissions string.

Parameters

string $permissions

Returns

int —