livre-1.0.0-beta6/book/src/ProxyClass/BookManager.php
book/src/ProxyClass/BookManager.php
<?php
// phpcs:ignoreFile
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\book\BookManager' "modules/contrib/book/src/".
*/
namespace Drupal\book\ProxyClass {
/**
* Provides a proxy class for \Drupal\book\BookManager.
*
* @see \Drupal\Component\ProxyBuilder
*/
class BookManager implements \Drupal\book\BookManagerInterface
{
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\book\BookManager
*/
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 getAllBooks(): array
{
return $this->lazyLoadItself()->getAllBooks();
}
/**
* {@inheritdoc}
*/
public function getLinkDefaults(string|int $nid): array
{
return $this->lazyLoadItself()->getLinkDefaults($nid);
}
/**
* {@inheritdoc}
*/
public function getParentDepthLimit(array $book_link): int
{
return $this->lazyLoadItself()->getParentDepthLimit($book_link);
}
/**
* {@inheritdoc}
*/
public function addFormElements(array $form, \Drupal\Core\Form\FormStateInterface $form_state, \Drupal\node\NodeInterface $node, \Drupal\Core\Session\AccountInterface $account, bool $collapsed = true): array
{
return $this->lazyLoadItself()->addFormElements($form, $form_state, $node, $account, $collapsed);
}
/**
* {@inheritdoc}
*/
public function checkNodeIsRemovable(\Drupal\node\NodeInterface $node): bool
{
return $this->lazyLoadItself()->checkNodeIsRemovable($node);
}
/**
* {@inheritdoc}
*/
public function updateOutline(\Drupal\node\NodeInterface $node): bool
{
return $this->lazyLoadItself()->updateOutline($node);
}
/**
* {@inheritdoc}
*/
public function getBookParents(array $item, array $parent = array (
)): array
{
return $this->lazyLoadItself()->getBookParents($item, $parent);
}
/**
* {@inheritdoc}
*/
public function getTableOfContents(string|int $bid, int $depth_limit, array $exclude = array (
), bool $truncate = true): array
{
return $this->lazyLoadItself()->getTableOfContents($bid, $depth_limit, $exclude, $truncate);
}
/**
* {@inheritdoc}
*/
public function deleteFromBook(int $nid): void
{
$this->lazyLoadItself()->deleteFromBook($nid);
}
/**
* {@inheritdoc}
*/
public function bookTreeAllData(int $bid, ?array $link = NULL, ?int $max_depth = NULL, ?int $min_depth = NULL): array {
return $this->lazyLoadItself()->bookTreeAllData($bid, $link, $max_depth, $min_depth);
}
/**
* {@inheritdoc}
*/
public function getActiveTrailIds(string $bid, array $link): array
{
return $this->lazyLoadItself()->getActiveTrailIds($bid, $link);
}
/**
* {@inheritdoc}
*/
public function bookTreeOutput(array $tree): array
{
return $this->lazyLoadItself()->bookTreeOutput($tree);
}
/**
* {@inheritdoc}
*/
public function bookTreeCollectNodeLinks(array &$tree, array &$node_links): void
{
$this->lazyLoadItself()->bookTreeCollectNodeLinks($tree, $node_links);
}
/**
* {@inheritdoc}
*/
public function bookTreeGetFlat(array $book_link): array
{
return $this->lazyLoadItself()->bookTreeGetFlat($book_link);
}
/**
* {@inheritdoc}
*/
public function loadBookLink(int $nid, bool $translate = true): array
{
return $this->lazyLoadItself()->loadBookLink($nid, $translate);
}
/**
* {@inheritdoc}
*/
public function loadBookLinks(array $nids, bool $translate = true): array
{
return $this->lazyLoadItself()->loadBookLinks($nids, $translate);
}
/**
* {@inheritdoc}
*/
public function saveBookLink(array $link, bool $new): array
{
return $this->lazyLoadItself()->saveBookLink($link, $new);
}
/**
* {@inheritdoc}
*/
public function bookTreeCheckAccess(array &$tree, array $node_links = array (
)): void
{
$this->lazyLoadItself()->bookTreeCheckAccess($tree, $node_links);
}
/**
* {@inheritdoc}
*/
public function bookLinkTranslate(array &$link): array
{
return $this->lazyLoadItself()->bookLinkTranslate($link);
}
/**
* {@inheritdoc}
*/
public function bookSubtreeData(array $link): array
{
return $this->lazyLoadItself()->bookSubtreeData($link);
}
/**
* {@inheritdoc}
*/
public function setStringTranslation(\Drupal\Core\StringTranslation\TranslationInterface $translation)
{
return $this->lazyLoadItself()->setStringTranslation($translation);
}
}
}
