function template_preprocess_book_all_books_block

Same name in other branches
  1. 9 core/modules/book/book.module \template_preprocess_book_all_books_block()
  2. 8.9.x core/modules/book/book.module \template_preprocess_book_all_books_block()
  3. 10 core/modules/book/book.module \template_preprocess_book_all_books_block()
  4. 11.x core/modules/book/book.module \template_preprocess_book_all_books_block()

Processes variables for book-all-books-block.tpl.php.

All non-renderable elements are removed so that the template has full access to the structured data but can also simply iterate over all elements and render them (as in the default template).

Parameters

$variables: An associative array containing the following key:

  • book_menus

See also

book-all-books-block.tpl.php

File

modules/book/book.module, line 1077

Code

function template_preprocess_book_all_books_block(&$variables) {
    // Remove all non-renderable elements.
    $elements = $variables['book_menus'];
    $variables['book_menus'] = array();
    foreach (element_children($elements) as $index) {
        $variables['book_menus'][$index] = $elements[$index];
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.