wp-admin/includes/class-wp-filesystem-ftpext.php
Lines:
1 to 39 of 39
<?php /** * WordPress FTP Filesystem. * * @package WordPress * @subpackage Filesystem */ /* class WP_Filesystem_FTPext */ /* function WP_Filesystem_FTPext::__construct() – Constructor. */ /* function WP_Filesystem_FTPext::connect() – Connects filesystem. */ /* function WP_Filesystem_FTPext::get_contents() – Reads entire file into a string. */ /* function WP_Filesystem_FTPext::get_contents_array() – Reads entire file into an array. */ /* function WP_Filesystem_FTPext::put_contents() – Writes a string to a file. */ /* function WP_Filesystem_FTPext::cwd() – Gets the current working directory. */ /* function WP_Filesystem_FTPext::chdir() – Changes current directory. */ /* function WP_Filesystem_FTPext::chmod() – Changes filesystem permissions. */ /* function WP_Filesystem_FTPext::owner() – Gets the file owner. */ /* function WP_Filesystem_FTPext::getchmod() – Gets the permissions of the specified file or filepath in their octal format. */ /* function WP_Filesystem_FTPext::group() – Gets the file’s group. */ /* function WP_Filesystem_FTPext::copy() – Copies a file. */ /* function WP_Filesystem_FTPext::move() – Moves a file. */ /* function WP_Filesystem_FTPext::delete() – Deletes a file or directory. */ /* function WP_Filesystem_FTPext::exists() – Checks if a file or directory exists. */ /* function WP_Filesystem_FTPext::is_file() – Checks if resource is a file. */ /* function WP_Filesystem_FTPext::is_dir() – Checks if resource is a directory. */ /* function WP_Filesystem_FTPext::is_readable() – Checks if a file is readable. */ /* function WP_Filesystem_FTPext::is_writable() – Checks if a file or directory is writable. */ /* function WP_Filesystem_FTPext::atime() – Gets the file’s last access time. */ /* function WP_Filesystem_FTPext::mtime() – Gets the file modification time. */ /* function WP_Filesystem_FTPext::size() – Gets the file size (in bytes). */ /* function WP_Filesystem_FTPext::touch() – Sets the access and modification times of a file. */ /* function WP_Filesystem_FTPext::mkdir() – Creates a directory. */ /* function WP_Filesystem_FTPext::rmdir() – Deletes a directory. */ /* function WP_Filesystem_FTPext::parselisting() – */ /* function WP_Filesystem_FTPext::dirlist() – Gets details for files in a directory or a specific file. */ /* function WP_Filesystem_FTPext::__destruct() – Destructor. */