public function BackupFile::getFullName in Backup and Migrate 8.4
Get the full filename with extensions.
Return value
string The full filename (with extension, without filepath)
Overrides BackupFileInterface::getFullName
File
- lib/
backup_migrate_core/ src/ File/ BackupFile.php, line 110
Class
- BackupFile
- Class BackupFile.
Namespace
BackupMigrate\Core\FileCode
public function getFullName() {
return rtrim($this->name . '.' . implode('.', $this
->getExtList()));
}