You are here

function wikitools_search_url in Wikitools 5

Same name and namespace in other branches
  1. 6.2 wikitools.module \wikitools_search_url()
  2. 6 wikitools.module \wikitools_search_url()
  3. 7 wikitools.module \wikitools_search_url()

Build an url to search for a title.

Parameters

$title: title to search for

1 call to wikitools_search_url()
theme_wikitools_search_notice in ./wikitools.module

File

./wikitools.module, line 706
A non-intrusive module to have some wiki-like behaviour.

Code

function wikitools_search_url($title) {
  return url('search/node/' . urlencode($title));
}