[ Index ]

PHP Cross Reference of WordPress

title

Body

[close]

/wp-admin/includes/ -> class-wp-filesystem-ssh2.php (summary)

(no description)

File Size: 813 lines (22 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

WP_Filesystem_SSH2:: (30 methods):
  __construct()
  connect()
  sftp_path()
  run_command()
  get_contents()
  get_contents_array()
  put_contents()
  cwd()
  chdir()
  chgrp()
  chmod()
  chown()
  owner()
  getchmod()
  group()
  copy()
  move()
  delete()
  exists()
  is_file()
  is_dir()
  is_readable()
  is_writable()
  atime()
  mtime()
  size()
  touch()
  mkdir()
  rmdir()
  dirlist()


Class: WP_Filesystem_SSH2  - X-Ref

WordPress Filesystem Class for implementing SSH2

To use this class you must follow these steps for PHP 5.2.6+

__construct( $opt = '' )   X-Ref
Constructor.

since: 2.7.0
param: array $opt

connect()   X-Ref
Connects filesystem.

since: 2.7.0
return: bool True on success, false on failure.

sftp_path( $path )   X-Ref
Gets the ssh2.sftp PHP stream wrapper path to open for the given file.

This method also works around a PHP bug where the root directory (/) cannot
be opened by PHP functions, causing a false failure. In order to work around
this, the path is converted to /./ which is semantically the same as /
See https://bugs.php.net/bug.php?id=64169 for more details.

since: 4.4.0
return: string The ssh2.sftp:// wrapped path to use.
param: string $path The File/Directory path on the remote server to return

run_command( $command, $returnbool = false )   X-Ref

since: 2.7.0
return: bool|string True on success, false on failure. String if the command was executed, `$returnbool`
param: string $command
param: bool   $returnbool

get_contents( $file )   X-Ref
Reads entire file into a string.

since: 2.7.0
return: string|false Read data on success, false if no temporary file could be opened,
param: string $file Name of the file to read.

get_contents_array( $file )   X-Ref
Reads entire file into an array.

since: 2.7.0
return: array|false File contents in an array on success, false on failure.
param: string $file Path to the file.

put_contents( $file, $contents, $mode = false )   X-Ref
Writes a string to a file.

since: 2.7.0
return: bool True on success, false on failure.
param: string    $file     Remote path to the file where to write the data.
param: string    $contents The data to write.
param: int|false $mode     Optional. The file permissions as octal number, usually 0644.

cwd()   X-Ref
Gets the current working directory.

since: 2.7.0
return: string|false The current working directory on success, false on failure.

chdir( $dir )   X-Ref
Changes current directory.

since: 2.7.0
return: bool True on success, false on failure.
param: string $dir The new current directory.

chgrp( $file, $group, $recursive = false )   X-Ref
Changes the file group.

since: 2.7.0
return: bool True on success, false on failure.
param: string     $file      Path to the file.
param: string|int $group     A group name or number.
param: bool       $recursive Optional. If set to true, changes file group recursively.

chmod( $file, $mode = false, $recursive = false )   X-Ref
Changes filesystem permissions.

since: 2.7.0
return: bool True on success, false on failure.
param: string    $file      Path to the file.
param: int|false $mode      Optional. The permissions as octal number, usually 0644 for files,
param: bool      $recursive Optional. If set to true, changes file permissions recursively.

chown( $file, $owner, $recursive = false )   X-Ref
Changes the owner of a file or directory.

since: 2.7.0
return: bool True on success, false on failure.
param: string     $file      Path to the file or directory.
param: string|int $owner     A user name or number.
param: bool       $recursive Optional. If set to true, changes file owner recursively.

owner( $file )   X-Ref
Gets the file owner.

since: 2.7.0
return: string|false Username of the owner on success, false on failure.
param: string $file Path to the file.

getchmod( $file )   X-Ref
Gets the permissions of the specified file or filepath in their octal format.

since: 2.7.0
return: string Mode of the file (the last 3 digits).
param: string $file Path to the file.

group( $file )   X-Ref
Gets the file's group.

since: 2.7.0
return: string|false The group on success, false on failure.
param: string $file Path to the file.

copy( $source, $destination, $overwrite = false, $mode = false )   X-Ref
Copies a file.

since: 2.7.0
return: bool True on success, false on failure.
param: string    $source      Path to the source file.
param: string    $destination Path to the destination file.
param: bool      $overwrite   Optional. Whether to overwrite the destination file if it exists.
param: int|false $mode        Optional. The permissions as octal number, usually 0644 for files,

move( $source, $destination, $overwrite = false )   X-Ref
Moves a file.

since: 2.7.0
return: bool True on success, false on failure.
param: string $source      Path to the source file.
param: string $destination Path to the destination file.
param: bool   $overwrite   Optional. Whether to overwrite the destination file if it exists.

delete( $file, $recursive = false, $type = false )   X-Ref
Deletes a file or directory.

since: 2.7.0
return: bool True on success, false on failure.
param: string       $file      Path to the file or directory.
param: bool         $recursive Optional. If set to true, deletes files and folders recursively.
param: string|false $type      Type of resource. 'f' for file, 'd' for directory.

exists( $file )   X-Ref
Checks if a file or directory exists.

since: 2.7.0
return: bool Whether $file exists or not.
param: string $file Path to file or directory.

is_file( $file )   X-Ref
Checks if resource is a file.

since: 2.7.0
return: bool Whether $file is a file.
param: string $file File path.

is_dir( $path )   X-Ref
Checks if resource is a directory.

since: 2.7.0
return: bool Whether $path is a directory.
param: string $path Directory path.

is_readable( $file )   X-Ref
Checks if a file is readable.

since: 2.7.0
return: bool Whether $file is readable.
param: string $file Path to file.

is_writable( $file )   X-Ref
Checks if a file or directory is writable.

since: 2.7.0
return: bool Whether $file is writable.
param: string $file Path to file or directory.

atime( $file )   X-Ref
Gets the file's last access time.

since: 2.7.0
return: int|false Unix timestamp representing last access time, false on failure.
param: string $file Path to file.

mtime( $file )   X-Ref
Gets the file modification time.

since: 2.7.0
return: int|false Unix timestamp representing modification time, false on failure.
param: string $file Path to file.

size( $file )   X-Ref
Gets the file size (in bytes).

since: 2.7.0
return: int|false Size of the file in bytes on success, false on failure.
param: string $file Path to file.

touch( $file, $time = 0, $atime = 0 )   X-Ref
Sets the access and modification times of a file.

Note: Not implemented.

since: 2.7.0
param: string $file  Path to file.
param: int    $time  Optional. Modified time to set for file.
param: int    $atime Optional. Access time to set for file.

mkdir( $path, $chmod = false, $chown = false, $chgrp = false )   X-Ref
Creates a directory.

since: 2.7.0
return: bool True on success, false on failure.
param: string           $path  Path for new directory.
param: int|false        $chmod Optional. The permissions as octal number (or false to skip chmod).
param: string|int|false $chown Optional. A user name or number (or false to skip chown).
param: string|int|false $chgrp Optional. A group name or number (or false to skip chgrp).

rmdir( $path, $recursive = false )   X-Ref
Deletes a directory.

since: 2.7.0
return: bool True on success, false on failure.
param: string $path      Path to directory.
param: bool   $recursive Optional. Whether to recursively remove files/directories.

dirlist( $path, $include_hidden = true, $recursive = false )   X-Ref
Gets details for files in a directory or a specific file.

since: 2.7.0
return: array|false {
param: string $path           Path to directory or file.
param: bool   $include_hidden Optional. Whether to include details of hidden ("." prefixed) files.
param: bool   $recursive      Optional. Whether to recursively include file details in nested directories.



Generated: Tue Mar 19 01:00:02 2024 Cross-referenced by PHPXref 0.7.1