class Archiver
Same name in this branch
- main core/lib/Drupal/Core/Archiver/Attribute/Archiver.php \Drupal\Core\Archiver\Attribute\Archiver
Same name and namespace in other branches
- 11.x core/lib/Drupal/Core/Archiver/Attribute/Archiver.php \Drupal\Core\Archiver\Attribute\Archiver
- 11.x core/lib/Drupal/Core/Archiver/Annotation/Archiver.php \Drupal\Core\Archiver\Annotation\Archiver
- 10 core/lib/Drupal/Core/Archiver/Attribute/Archiver.php \Drupal\Core\Archiver\Attribute\Archiver
- 10 core/lib/Drupal/Core/Archiver/Annotation/Archiver.php \Drupal\Core\Archiver\Annotation\Archiver
- 9 core/lib/Drupal/Core/Archiver/Annotation/Archiver.php \Drupal\Core\Archiver\Annotation\Archiver
- 8.9.x core/lib/Drupal/Core/Archiver/Annotation/Archiver.php \Drupal\Core\Archiver\Annotation\Archiver
Defines an archiver annotation object.
Plugin Namespace: Plugin\Archiver
For a working example, see \Drupal\system\Plugin\Archiver\Zip
Hierarchy
- class \Drupal\Component\Annotation\Plugin implements \Drupal\Component\Annotation\AnnotationInterface
- class \Drupal\Core\Archiver\Annotation\Archiver extends \Drupal\Component\Annotation\Plugin
Expanded class hierarchy of Archiver
Deprecated
in drupal:11.3.0 and is removed from drupal:12.0.0. There is no replacement.
See also
https://www.drupal.org/node/3556927
\Drupal\Core\Archiver\ArchiverManager
\Drupal\Core\Archiver\ArchiverInterface
hook_archiver_info_alter()
Related topics
File
-
core/
lib/ Drupal/ Core/ Archiver/ Annotation/ Archiver.php, line 25
Namespace
Drupal\Core\Archiver\AnnotationView source
class Archiver extends Plugin {
/**
* The archiver plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the archiver plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $title;
/**
* The description of the archiver plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description;
/**
* An array of valid extensions for this archiver.
*
* @var array
*/
public $extensions;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.