class BatchStorage
Same name in this branch
- 10 core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\Batch\BatchStorage
Same name in other branches
- 9 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage
- 9 core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\Batch\BatchStorage
- 8.9.x core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage
- 8.9.x core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\Batch\BatchStorage
- 11.x core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage
- 11.x core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\Batch\BatchStorage
Provides a proxy class for \Drupal\Core\Batch\BatchStorage.
Hierarchy
- class \Drupal\Core\ProxyClass\Batch\BatchStorage implements \Drupal\Core\Batch\BatchStorageInterface uses \Drupal\Core\DependencyInjection\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 getId() : int {
return $this->lazyLoadItself()
->getId();
}
/**
* {@inheritdoc}
*/
public function schemaDefinition() {
return $this->lazyLoadItself()
->schemaDefinition();
}
}
Members
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.