Archiver::$title

The human-readable name of the archiver plugin. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/lib/Drupal/Core/Archiver/Annotation/Archiver.php, line 37 Class Archiver Defines an archiver annotation object. Namespace Drupal\Core\Archiver\Annotation Code public $title;

Archiver::$id

The archiver plugin ID. Type: string File core/lib/Drupal/Core/Archiver/Annotation/Archiver.php, line 28 Class Archiver Defines an archiver annotation object. Namespace Drupal\Core\Archiver\Annotation Code public $id;

Archiver::$extensions

An array of valid extensions for this archiver. Type: array File core/lib/Drupal/Core/Archiver/Annotation/Archiver.php, line 53 Class Archiver Defines an archiver annotation object. Namespace Drupal\Core\Archiver\Annotation Code public $extensions;

Archiver::$description

The description of the archiver plugin. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/lib/Drupal/Core/Archiver/Annotation/Archiver.php, line 46 Class Archiver Defines an archiver annotation object. Namespace Drupal\Core\Archiver\Annotation Code public $description;

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 AnnotationInterfaceclass \Drupal\Core\Archiver\Annotation\Archiver See also \Drupal\Core\Archiver\ArchiverManager \Drupal\Core\Archiver\ArchiverInterface Plugin API hook_archiver_info_alter() Related topics Annotations Annotations for class discovery and metadata description. File core/lib/Dru

AppendCommand::render

public AppendCommand::render() Implements Drupal\Core\Ajax\CommandInterface:render(). Overrides InsertCommand::render File core/lib/Drupal/Core/Ajax/AppendCommand.php, line 24 Class AppendCommand An AJAX command for calling the jQuery append() method. Namespace Drupal\Core\Ajax Code public function render() { return array( 'command' => 'insert', 'method' => 'append', 'selector' => $this->selector, 'data' => $this->getRenderedContent(), 'settings

AppendCommand

An AJAX command for calling the jQuery append() method. The 'insert/append' command instructs the client to use jQuery's append() method to append the given HTML content to the inside of each element matched by the given selector. This command is implemented by Drupal.AjaxCommands.prototype.insert() defined in misc/ajax.js. Hierarchy class \Drupal\Core\Ajax\InsertCommand implements CommandInterface, CommandWithAttachedAssetsInterface uses CommandWithAttachedAssetsTraitclass \Drupal\Core\Ajax\Ap

ApcuFileCacheBackend::store

public ApcuFileCacheBackend::store($cid, $data) Stores data into a cache backend. Parameters string $cid: The cache ID to store data to. mixed $data: The data to store. Overrides FileCacheBackendInterface::store File core/lib/Drupal/Component/FileCache/ApcuFileCacheBackend.php, line 20 Class ApcuFileCacheBackend APCu backend for the file cache. Namespace Drupal\Component\FileCache Code public function store($cid, $data) { apcu_store($cid, $data); }

ApcuFileCacheBackend::fetch

public ApcuFileCacheBackend::fetch(array $cids) Fetches data from the cache backend. Parameters array $cids: The cache IDs to fetch. Return value array An array containing cache entries keyed by cache ID. Overrides FileCacheBackendInterface::fetch File core/lib/Drupal/Component/FileCache/ApcuFileCacheBackend.php, line 13 Class ApcuFileCacheBackend APCu backend for the file cache. Namespace Drupal\Component\FileCache Code public function fetch(array $cids) { return apcu_fetch($cids)

ApcuFileCacheBackend::delete

public ApcuFileCacheBackend::delete($cid) Deletes data from a cache backend. Parameters string $cid: The cache ID to delete. Overrides FileCacheBackendInterface::delete File core/lib/Drupal/Component/FileCache/ApcuFileCacheBackend.php, line 27 Class ApcuFileCacheBackend APCu backend for the file cache. Namespace Drupal\Component\FileCache Code public function delete($cid) { apcu_delete($cid); }