Tar.php

Same filename in this branch
  1. 9 core/lib/Drupal/Core/Archiver/Tar.php
Same filename in other branches
  1. 8.9.x core/modules/system/src/Plugin/Archiver/Tar.php
  2. 8.9.x core/lib/Drupal/Core/Archiver/Tar.php
  3. 10 core/modules/system/src/Plugin/Archiver/Tar.php
  4. 10 core/lib/Drupal/Core/Archiver/Tar.php
  5. 11.x core/modules/system/src/Plugin/Archiver/Tar.php
  6. 11.x core/lib/Drupal/Core/Archiver/Tar.php

Namespace

Drupal\system\Plugin\Archiver

File

core/modules/system/src/Plugin/Archiver/Tar.php

View source
<?php

namespace Drupal\system\Plugin\Archiver;

use Drupal\Core\Archiver\Tar as BaseTar;

/**
 * Defines an archiver implementation for .tar files.
 *
 * @Archiver(
 *   id = "Tar",
 *   title = @Translation("Tar"),
 *   description = @Translation("Handles .tar files."),
 *   extensions = {"tar", "tgz", "tar.gz", "tar.bz2"}
 * )
 */
class Tar extends BaseTar {

}

Classes

Title Deprecated Summary
Tar Defines an archiver implementation for .tar files.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.