Home
last modified time | relevance | path

Searched refs:bookManager (Results 1 – 21 of 21) sorted by relevance

/dports/www/drupal8/drupal-8.9.20/core/modules/book/src/
H A DBookOutline.php15 protected $bookManager; variable in Drupal\\book\\BookOutline
24 $this->bookManager = $book_manager;
42 $flat = $this->bookManager->bookTreeGetFlat($book_link);
56 $tree = $this->bookManager->bookSubtreeData($prev);
62 $this->bookManager->bookLinkTranslate($data['link']);
66 $this->bookManager->bookLinkTranslate($prev);
83 $flat = $this->bookManager->bookTreeGetFlat($book_link);
93 $this->bookManager->bookLinkTranslate($next);
109 $flat = $this->bookManager->bookTreeGetFlat($book_link);
127 return $this->bookManager->bookTreeOutput($children);
H A DBookExport.php34 protected $bookManager; variable in Drupal\\book\\BookExport
47 $this->bookManager = $book_manager;
75 $tree = $this->bookManager->bookSubtreeData($node->book);
/dports/www/drupal9/drupal-9.2.10/core/modules/book/src/
H A DBookOutline.php15 protected $bookManager; variable in Drupal\\book\\BookOutline
24 $this->bookManager = $book_manager;
42 $flat = $this->bookManager->bookTreeGetFlat($book_link);
56 $tree = $this->bookManager->bookSubtreeData($prev);
62 $this->bookManager->bookLinkTranslate($data['link']);
66 $this->bookManager->bookLinkTranslate($prev);
83 $flat = $this->bookManager->bookTreeGetFlat($book_link);
93 $this->bookManager->bookLinkTranslate($next);
109 $flat = $this->bookManager->bookTreeGetFlat($book_link);
127 return $this->bookManager->bookTreeOutput($children);
H A DBookExport.php35 protected $bookManager; variable in Drupal\\book\\BookExport
57 $this->bookManager = $book_manager;
90 $tree = $this->bookManager->bookSubtreeData($node->book);
/dports/www/drupal8/drupal-8.9.20/core/modules/book/src/Plugin/Block/
H A DBookNavigationBlock.php38 protected $bookManager; variable in Drupal\\book\\Plugin\\Block\\BookNavigationBlock
67 $this->bookManager = $book_manager;
132 foreach ($this->bookManager->getAllBooks() as $book_id => $book) {
136 $data = $this->bookManager->bookTreeAllData($node->book['bid'], $node->book);
137 $book_menus[$book_id] = $this->bookManager->bookTreeOutput($data);
147 $book_menus[$book_id] = $this->bookManager->bookTreeOutput($pseudo_tree);
169 $tree = $this->bookManager->bookTreeAllData($node->book['bid'], $node->book);
172 $below = $this->bookManager->bookTreeOutput($data['below']);
/dports/www/drupal9/drupal-9.2.10/core/modules/book/src/Plugin/Block/
H A DBookNavigationBlock.php38 protected $bookManager; variable in Drupal\\book\\Plugin\\Block\\BookNavigationBlock
67 $this->bookManager = $book_manager;
133 foreach ($this->bookManager->getAllBooks() as $book_id => $book) {
137 $data = $this->bookManager->bookTreeAllData($node->book['bid'], $node->book);
138 $book_menus[$book_id] = $this->bookManager->bookTreeOutput($data);
148 $book_menus[$book_id] = $this->bookManager->bookTreeOutput($pseudo_tree);
171 $tree = $this->bookManager->bookTreeAllData($node->book['bid'], $node->book);
174 $below = $this->bookManager->bookTreeOutput($data['below']);
/dports/www/drupal8/drupal-8.9.20/core/modules/book/src/Form/
H A DBookOutlineForm.php33 protected $bookManager; variable in Drupal\\book\\Form\\BookOutlineForm
49 $this->bookManager = $book_manager;
79 $this->entity->book = $this->bookManager->getLinkDefaults($this->entity->id());
87 …$this->entity->book['parent_depth_limit'] = $this->bookManager->getParentDepthLimit($this->entity-…
89 …$form = $this->bookManager->addFormElements($form, $form_state, $this->entity, $this->currentUser(…
102 $actions['delete']['#access'] = $this->bookManager->checkNodeIsRemovable($this->entity);
121 if ($this->bookManager->updateOutline($this->entity)) {
H A DBookRemoveForm.php23 protected $bookManager; variable in Drupal\\book\\Form\\BookRemoveForm
39 $this->bookManager = $book_manager;
104 if ($this->bookManager->checkNodeIsRemovable($this->node)) {
105 $this->bookManager->deleteFromBook($this->node->id());
H A DBookAdminEditForm.php35 protected $bookManager; variable in Drupal\\book\\Form\\BookAdminEditForm
47 $this->bookManager = $book_manager;
110 $link = $this->bookManager->loadBookLink($values['nid'], FALSE);
113 $this->bookManager->saveBookLink($link, FALSE);
171 $tree = $this->bookManager->bookSubtreeData($node->book);
/dports/www/drupal9/drupal-9.2.10/core/modules/book/src/Form/
H A DBookOutlineForm.php33 protected $bookManager; variable in Drupal\\book\\Form\\BookOutlineForm
49 $this->bookManager = $book_manager;
79 $this->entity->book = $this->bookManager->getLinkDefaults($this->entity->id());
87 …$this->entity->book['parent_depth_limit'] = $this->bookManager->getParentDepthLimit($this->entity-…
89 …$form = $this->bookManager->addFormElements($form, $form_state, $this->entity, $this->currentUser(…
102 $actions['delete']['#access'] = $this->bookManager->checkNodeIsRemovable($this->entity);
121 if ($this->bookManager->updateOutline($this->entity)) {
H A DBookRemoveForm.php23 protected $bookManager; variable in Drupal\\book\\Form\\BookRemoveForm
39 $this->bookManager = $book_manager;
104 if ($this->bookManager->checkNodeIsRemovable($this->node)) {
105 $this->bookManager->deleteFromBook($this->node->id());
H A DBookAdminEditForm.php36 protected $bookManager; variable in Drupal\\book\\Form\\BookAdminEditForm
57 $this->bookManager = $book_manager;
126 $link = $this->bookManager->loadBookLink($values['nid'], FALSE);
129 $this->bookManager->saveBookLink($link, FALSE);
188 $tree = $this->bookManager->bookSubtreeData($node->book);
/dports/www/drupal8/drupal-8.9.20/core/modules/book/src/Controller/
H A DBookController.php27 protected $bookManager; variable in Drupal\\book\\Controller\\BookController
53 …public function __construct(BookManagerInterface $bookManager, BookExport $bookExport, RendererInt… argument
54 $this->bookManager = $bookManager;
81 foreach ($this->bookManager->getAllBooks() as $book) {
119 foreach ($this->bookManager->getAllBooks() as $book) {
/dports/www/drupal9/drupal-9.2.10/core/modules/book/src/Controller/
H A DBookController.php27 protected $bookManager; variable in Drupal\\book\\Controller\\BookController
53 …public function __construct(BookManagerInterface $bookManager, BookExport $bookExport, RendererInt… argument
54 $this->bookManager = $bookManager;
81 foreach ($this->bookManager->getAllBooks() as $book) {
119 foreach ($this->bookManager->getAllBooks() as $book) {
/dports/www/drupal8/drupal-8.9.20/core/modules/book/src/Access/
H A DBookNodeIsRemovableAccessCheck.php20 protected $bookManager; variable in Drupal\\book\\Access\\BookNodeIsRemovableAccessCheck
29 $this->bookManager = $book_manager;
42 …return AccessResult::allowedIf($this->bookManager->checkNodeIsRemovable($node))->addCacheableDepen…
/dports/www/drupal9/drupal-9.2.10/core/modules/book/src/Access/
H A DBookNodeIsRemovableAccessCheck.php20 protected $bookManager; variable in Drupal\\book\\Access\\BookNodeIsRemovableAccessCheck
29 $this->bookManager = $book_manager;
42 …return AccessResult::allowedIf($this->bookManager->checkNodeIsRemovable($node))->addCacheableDepen…
/dports/www/drupal8/drupal-8.9.20/core/modules/book/tests/src/Unit/
H A DBookManagerTest.php48 protected $bookManager; variable in Drupal\\Tests\\book\\Unit\\BookManagerTest
66 …$this->bookManager = new BookManager($this->entityTypeManager, $this->translation, $this->configFa…
75 $this->assertEquals($expected, $this->bookManager->getBookParents($book, $parent));
/dports/www/drupal8/drupal-8.9.20/core/modules/book/src/Plugin/Validation/Constraint/
H A DBookOutlineConstraintValidator.php21 protected $bookManager; variable in Drupal\\book\\Plugin\\Validation\\Constraint\\BookOutlineConstraintValidator
30 $this->bookManager = $book_manager;
48 $original = $this->bookManager->loadBookLink($entity->id(), FALSE) ?: [
/dports/www/drupal9/drupal-9.2.10/core/modules/book/tests/src/Unit/
H A DBookManagerTest.php62 protected $bookManager; variable in Drupal\\Tests\\book\\Unit\\BookManagerTest
82 …$this->bookManager = new BookManager($this->entityTypeManager, $this->translation, $this->configFa…
91 $this->assertEquals($expected, $this->bookManager->getBookParents($book, $parent));
/dports/www/drupal9/drupal-9.2.10/core/modules/book/src/Plugin/Validation/Constraint/
H A DBookOutlineConstraintValidator.php21 protected $bookManager; variable in Drupal\\book\\Plugin\\Validation\\Constraint\\BookOutlineConstraintValidator
30 $this->bookManager = $book_manager;
48 $original = $this->bookManager->loadBookLink($entity->id(), FALSE) ?: [
/dports/deskutils/kmail/kmail-21.12.3/src/
H A Dkmcommands.cpp486 …KBookmarkManager *bookManager = KBookmarkManager::managerForFile(filename, QStringLiteral("konquer… in execute() local
487 KBookmarkGroup group = bookManager->root(); in execute()
489 if (bookManager->save()) { in execute()
490 bookManager->emitChanged(group); in execute()