You are here

Tar.php in Drupal 8

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

Namesort descending Description
Tar Defines an archiver implementation for .tar files.