class BatchStorage in Drupal 10
Same name in this branch
- 10 core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\Batch\BatchStorage
- 10 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage
- 9 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage
Provides a proxy class for \Drupal\Core\Batch\BatchStorage.
Hierarchy
- class \Drupal\Core\ProxyClass\Batch\BatchStorage implements BatchStorageInterface uses DependencySerializationTrait
Expanded class hierarchy of BatchStorage
See also
\Drupal\Component\ProxyBuilder
File
- core/
lib/ Drupal/ Core/ ProxyClass/ Batch/ BatchStorage.php, line 15
Namespace
Drupal\Core\ProxyClass\BatchView source
class BatchStorage implements \Drupal\Core\Batch\BatchStorageInterface {
use \Drupal\Core\DependencyInjection\DependencySerializationTrait;
/**
* The id of the original proxied service.
*
* @var string
*/
protected $drupalProxyOriginalServiceId;
/**
* The real proxied service, after it was lazy loaded.
*
* @var \Drupal\Core\Batch\BatchStorage
*/
protected $service;
/**
* The service container.
*
* @var \Symfony\Component\DependencyInjection\ContainerInterface
*/
protected $container;
/**
* Constructs a ProxyClass Drupal proxy object.
*
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
* The container.
* @param string $drupal_proxy_original_service_id
* The service ID of the original service.
*/
public function __construct(\Symfony\Component\DependencyInjection\ContainerInterface $container, $drupal_proxy_original_service_id) {
$this->container = $container;
$this->drupalProxyOriginalServiceId = $drupal_proxy_original_service_id;
}
/**
* Lazy loads the real service from the container.
*
* @return object
* Returns the constructed real service.
*/
protected function lazyLoadItself() {
if (!isset($this->service)) {
$this->service = $this->container
->get($this->drupalProxyOriginalServiceId);
}
return $this->service;
}
/**
* {@inheritdoc}
*/
public function load($id) {
return $this
->lazyLoadItself()
->load($id);
}
/**
* {@inheritdoc}
*/
public function delete($id) {
return $this
->lazyLoadItself()
->delete($id);
}
/**
* {@inheritdoc}
*/
public function update(array $batch) {
return $this
->lazyLoadItself()
->update($batch);
}
/**
* {@inheritdoc}
*/
public function cleanup() {
return $this
->lazyLoadItself()
->cleanup();
}
/**
* {@inheritdoc}
*/
public function create(array $batch) {
return $this
->lazyLoadItself()
->create($batch);
}
/**
* {@inheritdoc}
*/
public function schemaDefinition() {
return $this
->lazyLoadItself()
->schemaDefinition();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BatchStorage:: |
protected | property | The service container. | |
BatchStorage:: |
protected | property | The id of the original proxied service. | |
BatchStorage:: |
protected | property | The real proxied service, after it was lazy loaded. | |
BatchStorage:: |
public | function |
Cleans up failed or old batches. Overrides BatchStorageInterface:: |
|
BatchStorage:: |
public | function |
Creates and saves a batch. Overrides BatchStorageInterface:: |
|
BatchStorage:: |
public | function |
Deletes a batch. Overrides BatchStorageInterface:: |
|
BatchStorage:: |
protected | function | Lazy loads the real service from the container. | |
BatchStorage:: |
public | function |
Loads a batch. Overrides BatchStorageInterface:: |
|
BatchStorage:: |
public | function | ||
BatchStorage:: |
public | function |
Updates a batch. Overrides BatchStorageInterface:: |
|
BatchStorage:: |
public | function | Constructs a ProxyClass Drupal proxy object. | |
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 |