BookNavigation.php in Open Social 8.5
Same filename and directory in other branches
- 8.9 themes/socialbase/src/Plugin/Preprocess/BookNavigation.php
- 8 themes/socialbase/src/Plugin/Preprocess/BookNavigation.php
- 8.2 themes/socialbase/src/Plugin/Preprocess/BookNavigation.php
- 8.3 themes/socialbase/src/Plugin/Preprocess/BookNavigation.php
- 8.4 themes/socialbase/src/Plugin/Preprocess/BookNavigation.php
- 8.6 themes/socialbase/src/Plugin/Preprocess/BookNavigation.php
- 8.7 themes/socialbase/src/Plugin/Preprocess/BookNavigation.php
- 8.8 themes/socialbase/src/Plugin/Preprocess/BookNavigation.php
Namespace
Drupal\socialbase\Plugin\PreprocessFile
themes/socialbase/src/Plugin/Preprocess/BookNavigation.phpView source
<?php
namespace Drupal\socialbase\Plugin\Preprocess;
use Drupal\bootstrap\Plugin\Preprocess\PreprocessBase;
/**
* Pre-processes variables for the "book_navigation" theme hook.
*
* @ingroup plugins_preprocess
*
* @BootstrapPreprocess("book_navigation")
*/
class BookNavigation extends PreprocessBase {
/**
* {@inheritdoc}
*/
public function preprocess(array &$variables, $hook, array $info) {
parent::preprocess($variables, $hook, $info);
// Disables the menu tree below the content on a
// book node in full display mode.
$variables['tree'] = '';
}
}
Classes
Name | Description |
---|---|
BookNavigation | Pre-processes variables for the "book_navigation" theme hook. |