template_preprocess_book_export_html

Хочешь помочь с переводом? Это очень просто и быстро. Лишь зарегистрируйся, и можешь тут же начать переводить.

modules/book/book.module, строка 881

Версии
6
template_preprocess_book_export_html(&$variables)

Process variables for book-export-html.tpl.php.

The $variables array contains the following arguments:

  • $title
  • $contents
  • $depth

See also

book-export-html.tpl.php

Код

<?php
function template_preprocess_book_export_html(&$variables) {
  global $base_url, $language;

  $variables['title'] = check_plain($variables['title']);
  $variables['base_url'] = $base_url;
  $variables['language'] = $language;
  $variables['language_rtl'] = ($language->direction == LANGUAGE_RTL);
  $variables['head'] = drupal_get_html_head();
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии

Вход в систему