This module process one search field and returns list of found "indexed" articles.
This modules can be used in 2 modes :
This module has no admin panel, so you will not fnd any link in the Modules menu of Ionize.
Your view will typically contain :
<!-- Display the search form --> <ion:search:form /> <!-- Display results --> <ion:search:results> <ion:result> <ion:url href="true" tag="h3 "/> <ion:nb_words tag="p" prefix="Nb occurrences found : "/> <ion:content words="25" /> </ion:result> </ion:search:results>
Your view will typically contain
<div class="article"> <ion:title tag="h2" /> <ion:subtitle tag="h3" class="subtitle" /> <ion:content /> <form method="post" action="<ion:base_url />search/find_pure_php"> <input id="search-input" type="text" name="realm" value="" /> <input type="submit" class="searchbutton" value="<ion:translation term='module_search_button_start' />" /> </form> </div>
The example does not include the XHR javascript code to update just a part of your page. You will need to develop this part of code.