ArchiverInterface::listContents

public ArchiverInterface::listContents() Lists all files in the archive. Return value array An array of file names relative to the root of the archive. File core/lib/Drupal/Core/Archiver/ArchiverInterface.php, line 58 Class ArchiverInterface Defines the common interface for all Archiver classes. Namespace Drupal\Core\Archiver Code public function listContents();

ArchiverInterface

Defines the common interface for all Archiver classes. Hierarchy interface \Drupal\Core\Archiver\ArchiverInterface See also \Drupal\Core\Archiver\ArchiverManager \Drupal\Core\Archiver\Annotation\Archiver Plugin API File core/lib/Drupal/Core/Archiver/ArchiverInterface.php, line 12 Namespace Drupal\Core\Archiver Members Name Modifiers Type Description ArchiverInterface::add public function Adds the specified file or directory to the archive. ArchiverInterface::extract

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::$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

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

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

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

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); }

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

APCu backend for the file cache. Hierarchy class \Drupal\Component\FileCache\ApcuFileCacheBackend implements FileCacheBackendInterface File core/lib/Drupal/Component/FileCache/ApcuFileCacheBackend.php, line 8 Namespace Drupal\Component\FileCache Members Name Modifiers Type Description ApcuFileCacheBackend::delete public function Deletes data from a cache backend. Overrides FileCacheBackendInterface::delete ApcuFileCacheBackend::fetch public function Fetches data