Update to Drupal 8.0.0 beta 14. For more information, see https://drupal.org/node/2544542

This commit is contained in:
Pantheon Automation 2015-08-27 12:03:05 -07:00 committed by Greg Anderson
parent 3b2511d96d
commit 81ccda77eb
2155 changed files with 54307 additions and 46870 deletions

View file

@ -0,0 +1,116 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\Batch\BatchStorage.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\Batch\BatchStorage' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\Batch {
/**
* Provides a proxy class for \Drupal\Core\Batch\BatchStorage.
*
* @see \Drupal\Component\ProxyBuilder
*/
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);
}
}
}

View file

@ -0,0 +1,141 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\Config\ConfigInstaller.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\Config\ConfigInstaller' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\Config {
/**
* Provides a proxy class for \Drupal\Core\Config\ConfigInstaller.
*
* @see \Drupal\Component\ProxyBuilder
*/
class ConfigInstaller implements \Drupal\Core\Config\ConfigInstallerInterface
{
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\Config\ConfigInstaller
*/
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 installDefaultConfig($type, $name)
{
return $this->lazyLoadItself()->installDefaultConfig($type, $name);
}
/**
* {@inheritdoc}
*/
public function installOptionalConfig(\Drupal\Core\Config\StorageInterface $storage = NULL, $dependency = array (
))
{
return $this->lazyLoadItself()->installOptionalConfig($storage, $dependency);
}
/**
* {@inheritdoc}
*/
public function installCollectionDefaultConfig($collection)
{
return $this->lazyLoadItself()->installCollectionDefaultConfig($collection);
}
/**
* {@inheritdoc}
*/
public function setSourceStorage(\Drupal\Core\Config\StorageInterface $storage)
{
return $this->lazyLoadItself()->setSourceStorage($storage);
}
/**
* {@inheritdoc}
*/
public function getSourceStorage()
{
return $this->lazyLoadItself()->getSourceStorage();
}
/**
* {@inheritdoc}
*/
public function setSyncing($status)
{
return $this->lazyLoadItself()->setSyncing($status);
}
/**
* {@inheritdoc}
*/
public function isSyncing()
{
return $this->lazyLoadItself()->isSyncing();
}
/**
* {@inheritdoc}
*/
public function checkConfigurationToInstall($type, $name)
{
return $this->lazyLoadItself()->checkConfigurationToInstall($type, $name);
}
}
}

View file

@ -0,0 +1,84 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\Cron.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\Cron' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass {
/**
* Provides a proxy class for \Drupal\Core\Cron.
*
* @see \Drupal\Component\ProxyBuilder
*/
class Cron implements \Drupal\Core\CronInterface
{
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\Cron
*/
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 run()
{
return $this->lazyLoadItself()->run();
}
}
}

View file

@ -0,0 +1,92 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\Entity\ContentUninstallValidator.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\Entity\ContentUninstallValidator' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\Entity {
/**
* Provides a proxy class for \Drupal\Core\Entity\ContentUninstallValidator.
*
* @see \Drupal\Component\ProxyBuilder
*/
class ContentUninstallValidator implements \Drupal\Core\Extension\ModuleUninstallValidatorInterface
{
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\Entity\ContentUninstallValidator
*/
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 validate($module)
{
return $this->lazyLoadItself()->validate($module);
}
/**
* {@inheritdoc}
*/
public function setStringTranslation(\Drupal\Core\StringTranslation\TranslationInterface $translation)
{
return $this->lazyLoadItself()->setStringTranslation($translation);
}
}
}

View file

@ -0,0 +1,108 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\Extension\ModuleInstaller.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\Extension\ModuleInstaller' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\Extension {
/**
* Provides a proxy class for \Drupal\Core\Extension\ModuleInstaller.
*
* @see \Drupal\Component\ProxyBuilder
*/
class ModuleInstaller implements \Drupal\Core\Extension\ModuleInstallerInterface
{
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\Extension\ModuleInstaller
*/
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 addUninstallValidator(\Drupal\Core\Extension\ModuleUninstallValidatorInterface $uninstall_validator)
{
return $this->lazyLoadItself()->addUninstallValidator($uninstall_validator);
}
/**
* {@inheritdoc}
*/
public function install(array $module_list, $enable_dependencies = true)
{
return $this->lazyLoadItself()->install($module_list, $enable_dependencies);
}
/**
* {@inheritdoc}
*/
public function uninstall(array $module_list, $uninstall_dependents = true)
{
return $this->lazyLoadItself()->uninstall($module_list, $uninstall_dependents);
}
/**
* {@inheritdoc}
*/
public function validateUninstall(array $module_list)
{
return $this->lazyLoadItself()->validateUninstall($module_list);
}
}
}

View file

@ -0,0 +1,92 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\Extension\RequiredModuleUninstallValidator.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\Extension\RequiredModuleUninstallValidator' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\Extension {
/**
* Provides a proxy class for \Drupal\Core\Extension\RequiredModuleUninstallValidator.
*
* @see \Drupal\Component\ProxyBuilder
*/
class RequiredModuleUninstallValidator implements \Drupal\Core\Extension\ModuleUninstallValidatorInterface
{
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\Extension\RequiredModuleUninstallValidator
*/
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 validate($module)
{
return $this->lazyLoadItself()->validate($module);
}
/**
* {@inheritdoc}
*/
public function setStringTranslation(\Drupal\Core\StringTranslation\TranslationInterface $translation)
{
return $this->lazyLoadItself()->setStringTranslation($translation);
}
}
}

View file

@ -0,0 +1,92 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\Field\FieldModuleUninstallValidator.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\Field\FieldModuleUninstallValidator' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\Field {
/**
* Provides a proxy class for \Drupal\Core\Field\FieldModuleUninstallValidator.
*
* @see \Drupal\Component\ProxyBuilder
*/
class FieldModuleUninstallValidator implements \Drupal\Core\Extension\ModuleUninstallValidatorInterface
{
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\Field\FieldModuleUninstallValidator
*/
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 validate($module_name)
{
return $this->lazyLoadItself()->validate($module_name);
}
/**
* {@inheritdoc}
*/
public function setStringTranslation(\Drupal\Core\StringTranslation\TranslationInterface $translation)
{
return $this->lazyLoadItself()->setStringTranslation($translation);
}
}
}

View file

@ -0,0 +1,92 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\File\MimeType\ExtensionMimeTypeGuesser.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\File\MimeType\ExtensionMimeTypeGuesser' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\File\MimeType {
/**
* Provides a proxy class for \Drupal\Core\File\MimeType\ExtensionMimeTypeGuesser.
*
* @see \Drupal\Component\ProxyBuilder
*/
class ExtensionMimeTypeGuesser implements \Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesserInterface
{
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\File\MimeType\ExtensionMimeTypeGuesser
*/
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 guess($path)
{
return $this->lazyLoadItself()->guess($path);
}
/**
* {@inheritdoc}
*/
public function setMapping(array $mapping = NULL)
{
return $this->lazyLoadItself()->setMapping($mapping);
}
}
}

View file

@ -0,0 +1,100 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\File\MimeType\MimeTypeGuesser.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\File\MimeType\MimeTypeGuesser' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\File\MimeType {
/**
* Provides a proxy class for \Drupal\Core\File\MimeType\MimeTypeGuesser.
*
* @see \Drupal\Component\ProxyBuilder
*/
class MimeTypeGuesser implements \Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesserInterface
{
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\File\MimeType\MimeTypeGuesser
*/
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 guess($path)
{
return $this->lazyLoadItself()->guess($path);
}
/**
* {@inheritdoc}
*/
public function addGuesser(\Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesserInterface $guesser, $priority = 0)
{
return $this->lazyLoadItself()->addGuesser($guesser, $priority);
}
/**
* {@inheritdoc}
*/
public static function registerWithSymfonyGuesser(\Symfony\Component\DependencyInjection\ContainerInterface $container)
{
\Drupal\Core\File\MimeType\MimeTypeGuesser::registerWithSymfonyGuesser($container);
}
}
}

View file

@ -0,0 +1,124 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\Lock\DatabaseLockBackend.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\Lock\DatabaseLockBackend' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\Lock {
/**
* Provides a proxy class for \Drupal\Core\Lock\DatabaseLockBackend.
*
* @see \Drupal\Component\ProxyBuilder
*/
class DatabaseLockBackend implements \Drupal\Core\Lock\LockBackendInterface
{
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\Lock\DatabaseLockBackend
*/
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 acquire($name, $timeout = 30)
{
return $this->lazyLoadItself()->acquire($name, $timeout);
}
/**
* {@inheritdoc}
*/
public function lockMayBeAvailable($name)
{
return $this->lazyLoadItself()->lockMayBeAvailable($name);
}
/**
* {@inheritdoc}
*/
public function release($name)
{
return $this->lazyLoadItself()->release($name);
}
/**
* {@inheritdoc}
*/
public function releaseAll($lock_id = NULL)
{
return $this->lazyLoadItself()->releaseAll($lock_id);
}
/**
* {@inheritdoc}
*/
public function wait($name, $delay = 30)
{
return $this->lazyLoadItself()->wait($name, $delay);
}
/**
* {@inheritdoc}
*/
public function getLockId()
{
return $this->lazyLoadItself()->getLockId();
}
}
}

View file

@ -0,0 +1,124 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\Lock\PersistentDatabaseLockBackend.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\Lock\PersistentDatabaseLockBackend' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\Lock {
/**
* Provides a proxy class for \Drupal\Core\Lock\PersistentDatabaseLockBackend.
*
* @see \Drupal\Component\ProxyBuilder
*/
class PersistentDatabaseLockBackend implements \Drupal\Core\Lock\LockBackendInterface
{
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\Lock\PersistentDatabaseLockBackend
*/
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 acquire($name, $timeout = 30)
{
return $this->lazyLoadItself()->acquire($name, $timeout);
}
/**
* {@inheritdoc}
*/
public function lockMayBeAvailable($name)
{
return $this->lazyLoadItself()->lockMayBeAvailable($name);
}
/**
* {@inheritdoc}
*/
public function release($name)
{
return $this->lazyLoadItself()->release($name);
}
/**
* {@inheritdoc}
*/
public function releaseAll($lock_id = NULL)
{
return $this->lazyLoadItself()->releaseAll($lock_id);
}
/**
* {@inheritdoc}
*/
public function wait($name, $delay = 30)
{
return $this->lazyLoadItself()->wait($name, $delay);
}
/**
* {@inheritdoc}
*/
public function getLockId()
{
return $this->lazyLoadItself()->getLockId();
}
}
}

View file

@ -0,0 +1,92 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\PageCache\ChainResponsePolicy.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\PageCache\ChainResponsePolicy' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\PageCache {
/**
* Provides a proxy class for \Drupal\Core\PageCache\ChainResponsePolicy.
*
* @see \Drupal\Component\ProxyBuilder
*/
class ChainResponsePolicy implements \Drupal\Core\PageCache\ChainResponsePolicyInterface
{
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\PageCache\ChainResponsePolicy
*/
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 check(\Symfony\Component\HttpFoundation\Response $response, \Symfony\Component\HttpFoundation\Request $request)
{
return $this->lazyLoadItself()->check($response, $request);
}
/**
* {@inheritdoc}
*/
public function addPolicy(\Drupal\Core\PageCache\ResponsePolicyInterface $policy)
{
return $this->lazyLoadItself()->addPolicy($policy);
}
}
}

View file

@ -0,0 +1,92 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\ParamConverter\AdminPathConfigEntityConverter.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\ParamConverter\AdminPathConfigEntityConverter' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\ParamConverter {
/**
* Provides a proxy class for \Drupal\Core\ParamConverter\AdminPathConfigEntityConverter.
*
* @see \Drupal\Component\ProxyBuilder
*/
class AdminPathConfigEntityConverter implements \Drupal\Core\ParamConverter\ParamConverterInterface
{
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\ParamConverter\AdminPathConfigEntityConverter
*/
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 convert($value, $definition, $name, array $defaults)
{
return $this->lazyLoadItself()->convert($value, $definition, $name, $defaults);
}
/**
* {@inheritdoc}
*/
public function applies($definition, $name, \Symfony\Component\Routing\Route $route)
{
return $this->lazyLoadItself()->applies($definition, $name, $route);
}
}
}

View file

@ -0,0 +1,92 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\ParamConverter\MenuLinkPluginConverter.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\ParamConverter\MenuLinkPluginConverter' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\ParamConverter {
/**
* Provides a proxy class for \Drupal\Core\ParamConverter\MenuLinkPluginConverter.
*
* @see \Drupal\Component\ProxyBuilder
*/
class MenuLinkPluginConverter implements \Drupal\Core\ParamConverter\ParamConverterInterface
{
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\ParamConverter\MenuLinkPluginConverter
*/
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 convert($value, $definition, $name, array $defaults)
{
return $this->lazyLoadItself()->convert($value, $definition, $name, $defaults);
}
/**
* {@inheritdoc}
*/
public function applies($definition, $name, \Symfony\Component\Routing\Route $route)
{
return $this->lazyLoadItself()->applies($definition, $name, $route);
}
}
}

View file

@ -0,0 +1,92 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\Plugin\CachedDiscoveryClearer.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\Plugin\CachedDiscoveryClearer' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\Plugin {
/**
* Provides a proxy class for \Drupal\Core\Plugin\CachedDiscoveryClearer.
*
* @see \Drupal\Component\ProxyBuilder
*/
class CachedDiscoveryClearer implements \Drupal\Core\Plugin\CachedDiscoveryClearerInterface
{
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\Plugin\CachedDiscoveryClearer
*/
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 addCachedDiscovery(\Drupal\Component\Plugin\Discovery\CachedDiscoveryInterface $cached_discovery)
{
return $this->lazyLoadItself()->addCachedDiscovery($cached_discovery);
}
/**
* {@inheritdoc}
*/
public function clearCachedDefinitions()
{
return $this->lazyLoadItself()->clearCachedDefinitions();
}
}
}

View file

@ -0,0 +1,85 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\Render\BareHtmlPageRenderer.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\Render\BareHtmlPageRenderer' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\Render {
/**
* Provides a proxy class for \Drupal\Core\Render\BareHtmlPageRenderer.
*
* @see \Drupal\Component\ProxyBuilder
*/
class BareHtmlPageRenderer implements \Drupal\Core\Render\BareHtmlPageRendererInterface
{
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\Render\BareHtmlPageRenderer
*/
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 renderBarePage(array $content, $title, $page_theme_property, array $page_additions = array (
))
{
return $this->lazyLoadItself()->renderBarePage($content, $title, $page_theme_property, $page_additions);
}
}
}

View file

@ -0,0 +1,101 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\Routing\MatcherDumper.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\Routing\MatcherDumper' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\Routing {
/**
* Provides a proxy class for \Drupal\Core\Routing\MatcherDumper.
*
* @see \Drupal\Component\ProxyBuilder
*/
class MatcherDumper implements \Drupal\Core\Routing\MatcherDumperInterface
{
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\Routing\MatcherDumper
*/
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 addRoutes(\Symfony\Component\Routing\RouteCollection $routes)
{
return $this->lazyLoadItself()->addRoutes($routes);
}
/**
* {@inheritdoc}
*/
public function dump(array $options = array (
))
{
return $this->lazyLoadItself()->dump($options);
}
/**
* {@inheritdoc}
*/
public function getRoutes()
{
return $this->lazyLoadItself()->getRoutes();
}
}
}

View file

@ -0,0 +1,108 @@
<?php
/**
* @file
* Contains Drupal\Core\ProxyClass\Routing\RouteBuilder.
*/
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\Core\Routing\RouteBuilder' "core/lib/Drupal/Core".
*/
namespace Drupal\Core\ProxyClass\Routing {
/**
* Provides a proxy class for \Drupal\Core\Routing\RouteBuilder.
*
* @see \Drupal\Component\ProxyBuilder
*/
class RouteBuilder implements \Drupal\Core\Routing\RouteBuilderInterface, \Drupal\Core\DestructableInterface
{
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\Routing\RouteBuilder
*/
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 setRebuildNeeded()
{
return $this->lazyLoadItself()->setRebuildNeeded();
}
/**
* {@inheritdoc}
*/
public function rebuild()
{
return $this->lazyLoadItself()->rebuild();
}
/**
* {@inheritdoc}
*/
public function rebuildIfNeeded()
{
return $this->lazyLoadItself()->rebuildIfNeeded();
}
/**
* {@inheritdoc}
*/
public function destruct()
{
return $this->lazyLoadItself()->destruct();
}
}
}