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