You are here

public function Tar::listContents in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Archiver/Tar.php \Drupal\Core\Archiver\Tar::listContents()

Lists all files in the archive.

Return value

array An array of file names relative to the root of the archive.

Overrides ArchiverInterface::listContents

File

core/lib/Drupal/Core/Archiver/Tar.php, line 74
Contains \Drupal\Core\Archiver\Tar.

Class

Tar
Defines a archiver implementation for .tar files.

Namespace

Drupal\Core\Archiver

Code

public function listContents() {
  $files = array();
  foreach ($this->tar
    ->listContent() as $file_data) {
    $files[] = $file_data['filename'];
  }
  return $files;
}