/home/suroeste/public_html/wp-content/plugins/akeebabackupwp/app/Solo/Model
NameSizeModeActions
Exception/-0755rm
Mixin/-0755rm
OAuth2/-0755rm
Backup.php140210644editdlrm
Browser.php36150644editdlrm
Configuration.php80800644editdlrm
Dbfilters.php103740644editdlrm
Fsfilters.php156260644editdlrm
Ftpbrowser.php17940644editdlrm
Log.php51520644editdlrm
Main.php401280644editdlrm
Manage.php97270644editdlrm
Oauth2.php12330644editdlrm
Phpinfo.php2890644editdlrm
Profiles.php28190644editdlrm
Sftpbrowser.php30970644editdlrm
Stats.php124290644editdlrm
Sysconfig.php2500644editdlrm
Update.php312000644editdlrm
Wizard.php200490644editdlrm
Edit: /home/suroeste/public_html/wp-content/plugins/akeebabackupwp/app/Solo/Model/Sftpbrowser.php (3097B)
getState('directory'); // Remove the trailing slash and commit it in the state $this->setState('directory', rtrim($dir, '/')); // Parse directory to parts $parsed_dir = trim($dir,'/'); $parts = empty($parsed_dir) ? array() : explode('/', $parsed_dir); // Find the path to the parent directory if (!empty($parts)) { $copy_of_parts = $parts; array_pop($copy_of_parts); if (!empty($copy_of_parts)) { $parent_directory = '/' . implode('/', $copy_of_parts); } else { $parent_directory = '/'; } } else { $parent_directory = '/'; } $options = array( 'host' => $this->getState('host'), 'port' => $this->getState('port'), 'username' => $this->getState('username'), 'password' => $this->getState('password'), 'directory' => $this->getState('directory'), 'privKey' => $this->getState('privKey'), 'pubKey' => $this->getState('pubKey'), ); $list = false; $error = ''; try { $sftp = new Sftp($options); $list = $sftp->listFolders(); } catch (\RuntimeException $e) { $error = $e->getMessage(); // Did I get an error while fetching the list of folders? Let's try using the working dir if(isset($sftp)) { try { $dir = rtrim($sftp->cwd(), '/').'/'.trim($dir, '/'); $dir = rtrim($dir, '/'); $this->setState('directory', $dir); $list = $sftp->listFolders($dir); $error = ''; $parsed_dir = trim($dir,'/'); $parts = empty($parsed_dir) ? array() : explode('/', $parsed_dir); // Find the path to the parent directory if (!empty($parts)) { $copy_of_parts = $parts; array_pop($copy_of_parts); if (!empty($copy_of_parts)) { $parent_directory = '/' . implode('/', $copy_of_parts); } else { $parent_directory = '/'; } } else { $parent_directory = '/'; } } catch(\RuntimeException $e) { $error = $e->getMessage(); } } } $response_array = array( 'error' => $error, 'list' => $list, 'breadcrumbs' => $parts, 'directory' => $this->getState('directory'), 'parent' => $parent_directory ); return $response_array; } }