在Drupal7中以编程方式嵌入搜索块的最佳方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Drupal7中以编程方式嵌入搜索块的最佳方法相关的知识,希望对你有一定的参考价值。

  1. <?php
  2. /*
  3. * Preprocess page.tpl.php to inject the $search_box variable back into D7.
  4. */
  5. function template_preprocess_page(&$variables){
  6. $search_box = drupal_render(drupal_get_form('search_form'));
  7. $variables['search_box'] = $search_box;
  8. }

以上是关于在Drupal7中以编程方式嵌入搜索块的最佳方法的主要内容,如果未能解决你的问题,请参考以下文章

在 Windows 中以编程方式复制、重命名和粘贴文件的最佳方法

在 .NET 中以编程方式配置网络适配器的最佳方式

如何在 MAC 中以编程方式设置 *** 连接?

在 SwiftUI 中以编程方式移动 NavigationView 的最佳实践是啥

我想通过在 Swift 中以编程方式将 UINavigationController 与 UITableViewController 嵌入 UITableViewController 这是 UITab

RxSwift - 在 UISearchBar 中以编程方式触发搜索