public function BackupFile::setExtList in Backup and Migrate 5.0.x
Parameters
array $ext: The list of file extensions for the file.
Overrides BackupFileInterface::setExtList
1 call to BackupFile::setExtList()
- BackupFile::setFullName in src/
Core/ File/ BackupFile.php - Set the full filename with extensions.
File
- src/
Core/ File/ BackupFile.php, line 151
Class
- BackupFile
- @package Drupal\backup_migrate\Core\File
Namespace
Drupal\backup_migrate\Core\FileCode
public function setExtList(array $ext) {
$this->ext = array_filter($ext);
}