ftp_base::site()publicWP 1.0

Method of the class: ftp_base{}

No Hooks.

Return

null. Nothing (null).

Usage

$ftp_base = new ftp_base();
$ftp_base->site( $command, $fnction );
$command (required)
-
$fnction **
-
Default: "site"

ftp_base::site() code WP 6.5.2

function site($command, $fnction="site") {
	if(!$this->_exec("SITE ".$command, $fnction)) return FALSE;
	if(!$this->_checkCode()) return FALSE;
	return TRUE;
}