This wiki plugin has been available since Tiki8 for the purpose of creating custom user interfaces to search for objects within Tiki. This plugin makes use of the functionality of PluginList to show the results of the search. This plugin is intended for rather advanced customization and you will need to have a good understanding of PluginList as well as Search and List from Unified Index and good knowledge of HTML, CSS, and Smarty in order to make good use of it. See also PluginList with editable filters.
What happens when the wheel spins forever?
That is likely the sign of an AJAX failure.
If you use the Firefox Firebug plugin in the HTML Response you should be able to see what the AJAX responds with.
Parameters
Create a custom search form for searching or listing items on the site Introduced in Tiki 8. Go to the source code Preferences required: wikiplugin_customsearch, wikiplugin_list, feature_search
Parameters
Accepted Values
Description
Default
Since
(body of plugin)
LIST plugin configuration information
tpl
Smarty template (.tpl) file where the search form is found
templates/search_customsearch/default_form.tpl
12.2
callbackscript
pagename
The wiki page on which custom JavaScript is to be executed on return of Ajax results
8.0
destdiv
text
The id of an existing div to contain the search results
9.0
searchfadediv
text
The specific ID of the specific div to fade out when AJAX search is in progress,
if not set will attempt to fade the whole area or if failing simply show the spinner
8.0
autosearchdelay
digits
Delay in milliseconds before automatically triggering search after change
(0 disables and is the default)
0
8.0
id
alnum
A unique identifier to distinguish custom searches for storing of previous search
criteria entered by users
0
8.0
forcesortmode
(blank) 0 1
Force the use of specified sort mode in place of search relevance even when there is a text search query
1
13.0
noajaxforbots
(blank) 0 1
Renders the default search results when being crawled by a bot.
0
24.1
recalllastsearch
(blank) 0 1
In the same session, return users to same search parameters on coming back to the
search page after leaving
0
8.0
requireinput
(blank) 0 1
Require first input field to be filled for search to trigger
0
12.0
searchonload
(blank) 0 1
Execute the search when the page loads (default: Yes)
1
9.0
searchable_only
(blank) 0 1
Only include results marked as searchable in the index.
1
14.1
wiki
pagename
Wiki page where the search form is found
8.0
trimlinefeeds
(blank) 0 1
Remove the linefeeds added after each input which casues the wiki parser to add extra paragraphs.
0
14.1
customsearchjs
(blank) 0 1
Mainly keeps the search state on the URL hash, but also adds some helper functions like easier sorting and page size.
0
14.1
customsearchjs parameter
Setting the wikiplugin parameter customsearchjs to 1 (enable) will load a javascript (jquery?) file "lib/jquery_tiki/customsearch.js". This is a Custom search js helper function, mainly keeps the search state on the URL hash, but also adds some helper functions like easier sorting, page size, trackeritem title popover, etc.
For this to work you need to have only ONE customSearch plugin on the page with the default ID for the customSearch: id="customsearch_0" or not set (default will be customsearch_0)
Basic Usage
You need two wiki pages, one for the search interface itself, and the other for the template to be used at the interface. From Tiki 13 onwards, it is possible to specify a .tpl file on disk instead of a wiki page for the second wiki page.
1.1.1. Create Wiki page 1, entitled: "Custom Search"
In case you want to limit the search to content found just on a single tracker field, you need to use the tracker field unique name to refer to that field (for instance in this example: my_permanent_name). This is because by default since Tiki8, unified search uses the permanent names for tracker field names instead of field IDs. Therefore, you could change this line:
Copy to clipboard
Any text: {input _filter="content" type="text" }
for this other one with _field as tracker_field_ + my_permanent_name instead:
Copy to clipboard
Any text: {input _filter="content" type="text" _field="tracker_field_my_permanent_name"}
1.1.3. Grant permission to the tpl page
You need to grant permissions to the tpl page "Custom Search Tpl" to be used as a tracker template (or a template for unified search) by anonymous or registered users (or the group of your choice). Click on permissions for that page, and change permissions accordingly. Remember to restrict edit permissions to only admin users since then to that page.
1.1.4. Enable unified search
Ensure that you have Unified search enabled, under "Control Panels > Search".
1.1.5. Rebuild search index
Rebuild your search index after you have created some content in tracker 1, so that this content can be found by the search engine through the search index.
1.1.6. Use your custom search interface
Go to page 1 to use your new custom search interface.
Notes:
Assuming you have a tracker with id 1 with some items, that should work.
In fact if you remove the line
Copy to clipboard
{filter field="tracker_id" content="1"}
it will work as a search over all your content. In fact just this line on it's own in a page will work!
Copy to clipboard
{customsearch wiki="Custom Search Tpl"}
1.1.7. Download search results
Since Tiki18 it is possible to add a download button to export the results of the search query. This option is available if you use the "table" output (see: Download CSV of Table Results . What is interesting in this option is that it will export ALL the results found for the search query and not only the list displayed (pagination may limit the visible list of results).
This option has been improved in Tiki25 offering an option to position the download button when using the table.tpl template.
It is fairly easy to create a multilingual interface using the i18n feature and the Tiki translation tools out-in-the-box. Tools like the Plugin Lang (recommended for large sections containing other elements than text), the Plugin Translated (or PluginTr) (recommended for sentences, text) and the tr Smarty tag (recommended for sentences, text in a smarty template)
There are cases you cannot use translation tag inside another element in a Smarty template. You can overcome the issue using a condition based on the language preference (the language actually in use) or use the wikiplugin smarty syntax.
For a working example showing many of these features see this Custom Search Example page.
More advanced usage
Wiki syntax:
CustomSearch
Copy to clipboard
{CUSTOMSEARCH(wiki="Search-tpl" id="mysearch")}
{output template="/var/www/html/templates/my-custom-searchresults.tpl" pagination="y"}
<put whatever base filters and formatting things that you would do in the LIST plugin here>
{CUSTOMSEARCH}
Note that the pagination="y" is generally required so that you have the ability to paginate across multiple pages of search results. (There is a more advanced way of specifying the pagination manually within Smarty templates explained below).
Base filters are filters that you want applied regardless of what search parameters the user chooses in the search form.
See PluginList for more information about filters and formatting of output.
Creating your search interface
Creating the wiki page
You will need to create a template to be placed in the wiki page mentioned above. In this wiki page, you need to surround the contents with smarty literal tags so that the contents don't get parsed as Smarty tags.
Copy to clipboard
{literal}
<contents of template>
{/literal}
In addition, if you want to use HTML in your template, you can use PluginHTML:
Copy to clipboard
{literal}
{HTML()}
<contents of template>
{HTML}
{/literal}
It is important to make sure that this page has Permissions set so that it cannot be edited by non-admins
Creating form elements
Creating form elements are similar to creating standard HTML form elements, combined with using the filter parameters found in PluginList. Specify each element using plugin syntax. If you want to use a standard HTML supported attribute, simply use it and it will appear in the resulting HTML. All internal attributes that are meant for the LIST plugin to generate the search results should start with an underscore (_), so that they don't end up in the HTML (which would be invalid). For example, if you want to create a text search field that searches for the content entered:
Copy to clipboard
{input _filter="content" type="text"}
You can add any HTML supported attributes if you want, for e.g.:
In a text tracker field have an "Autocomplete" parameter and if set to yes, it is possible to have the autocomplete feature used from within the customSearch interface adding a small JQuery code.
From Tiki 14.1 onwards custom search will automatically populate the drop-down menu for ItemLink, UserSelector and Text tracker field inputs. You need to specify the _field and _trackerId params only.
You can force a blank or labelled item (has no value) by using the attribute _firstlabel like, kind of a placeholder HTML attribute.
From Tiki 19.0 (and 18.3) you can use the _operator attribute to override the site-wide preference for default boolean operator for multiple select fields.
From Tiki 21+ you can use the parameter _unquoted to not create quotes around strings with spaces in. This is useful for doing boolean filters, such as:
Copy to clipboard
{select _filter="content" _options="o OR p,c" _labels="Open or Pending,Closed" _field="tracker_status" class="form-control" id="status" _unquoted="y"}
Checkbox example:
The most important thing to keep in mind about checkboxes is that they cannot take a normal "value" parameter like in HTML. Instead, use the _value (with underscore) parameter if you want to set a value. If you do not set a value, the values searched for will by default be y (if checked) or NOT y (if not checked). If you want the checkbox to be checked by default, specify _default="y" . For example.
The most important thing to remember about radio buttons is that they need a _group attribute. This _group attribute determines which radio buttons are together as a group. For example:
In general, if there are just a few categories to search by, you can use radio buttons or checkboxes (in the following example 24 is the category ID you want to search for when the checkbox is checked):
In addition, to facilitate creating category selection elements for many categories, there is a special way to quickly show multiple checkboxes/radio buttons or a drop-down for multiple categories based on a parent category.
Note that if you are specifying a _style of checkbox or radio, _group is mandatory.
Other parameters include _categpath which shows the full category path category labels instead of just the category name, and _showdeep which shows not just the immediate children of the parent category specified but all the sub-children as well.
When specifying multiple="multiple" there is not first blank item, you can force a blank or labelled item (has no value) by using the attribute _firstlabel.
Adding a submit button
Copy to clipboard
{input type="submit"}
Grouping elements together for the purpose of OR searching instead of AND
It has already been mentioned above that Radio buttons as well as categories (those using a _style attribute of checkbox and radio) need to use the _group attribute mandatory.
However, it is possible to use the _group attribute for other types of fields as well, if you want them to be searched using OR logic instead of AND which is how different filters are combined. So long as the filters you are trying to group together are exactly the same except for the search term, they can be grouped. For example, the following searches for either "apples" or "oranges" if both checkboxes are checked:
If you want to dynamically filter on object types (e.g. trackeritem, wiki page, calendaritem etc) then you need to use an input with _filter="type" e.g.:
Note that it has to be something other than type="text" (so hidden if using javascript, or select to use a dropdown).
Range searches
Before you start, please be informed that the Unified search is a string based search. In other words, if you are trying to search between 2 numbers, make sure all your numbers are of the same number of digits. Otherwise 2 will be larger than 12. The only way to get around this for now is to make sure all numbers are entered in a padded form, for example, 0012 for 12.
However, from Tiki14 if you are using Elasticsearch as the unified search engine, then numeric tracker fields are indexed internally as float and therefore will provide for correct range searches for those fields, even without padding.
The way to generate a search for a value between two values is to use the _daterange attribute to group the 2 items that you want to search in between together. The following example searches a tracker field that contains all 4-digit years.
Copy to clipboard
Show content between {select _filter="content" _field="tracker_field_104" _options="2000,2001,2002,2003,2004,2005" _textrange="1"} and {select _filter="content" _field="tracker_field_104" _options="2000,2001,2002,2003,2004,2005" _textrange="1"}
The following example is an interesting twist, where you automatically set one end of the range through a hidden field.
Copy to clipboard
Show only content after {select _filter="content" _field="tracker_field_104" _default="2000" _mandatory="y" _options="2000,2005,2010" _textrange="2"}{input _filter="content" _field="tracker_field_104" type="hidden" value="9999" _textrange="2"}
To do a range search on things like modification dates, which are "unix timestamps indexed as dates", use _daterange instead of _textrange. This will ensure than the comparison is correct despite the string based search since these timestamps are indexed in YYYYMMDDHHMMSS format.
Copy to clipboard
Show content modified between {select _filter="content" _field="modification_date" _options="946684800,1104537600,1262304000" _labels="2000,2005,2010" _daterange="1"} and {select _filter="content" _field="modification_date" _options="946684800,1104537600,1262304000" _labels="2000,2005,2010" _daterange="1"}
Date Range Picker
In Tiki 9 there is also a date range picker you can use like this:
To test your "humanly readable" date strings you can use this tool so see what the server interprets them as, for example this for the first friday of next month
You need to set a default filter in the customsearch as follows so that the user is not confused when first arriving at the page.
Since Tiki 18.3 the end date uses the end of the day, as opposed to midnight at the beginning of that day. This is generally agreed to be more intuitive, but if you need to revert to the previous behaviour add a parameter _toendofday="n". For instance this will find nothing:
Before Tiki14, the user must enter both ends of the filter for the range search for the search to have any effect. Therefore it is important to make sure the user selects a value, or a _default is set.
From Tiki14 it is possible allow for doing range searches with user only specifying one end of the range and the other end left blank but still having default value. For example, the following code will generate 2 form fields for searching the tracker field duration. If the user keeps the first one blank and enters 20 in the second field, it will search for the range 0 to 20. If the user enters 50 in the first field but leaves the second field blank, then the range searched for is 50 to 9999. Note that in each of the fields, _emptyto OR _emptyfrom must be used TOGETHER WITH _emptyother for this to work. If you leave out _emptyother, unpredictable results can occur because browsers may not submit empty form fields (and so this is the only way to get the information on the other range endpoint if it's not filled in).
Since Tiki 22 It was possible to perform a partial search foo* in a text field in order to match foo, foobar, foostuff but it is not user-friendly and users need to know or figure it out.
A parameter _partial has been added to the plugin CustomSearch in Tiki22 to allow partial search.
Text field filter using partial parameter
Copy to clipboard
{input _field="tracker_field_peopleLastname,tracker_field_peopleFirstname" _trackerId="1" class="form-control" placeholder="Look for names in directory" _partial="y" }
One offers the opportunity for users to search by only entering the first characters of a word.
Multilingual samples
You can use them on your Wiki page or your Smarty template
literal tags depends of the context and the way you set your template while needed in most case, you may need to remove them for your usage
Label translation using Plugin Lang
Using the Plugin Lang you can display block of "content" based on the language selection in your results page or you customSearch interface.
You can use the selected language to control what is displayed or used in embedded wikiplugin (like an embedded wikiplugin List)
Using the language preferences
Copy to clipboard
{if $prefs.language eq fr} Montre ca {else} Show this {/if}
Setting default search parameters when first coming to the page
As already mentioned above, you can use the _default parameter on specific fields. However, in some cases you are coming from another page where you want to pass some input from there via the query string. To do this you can pass in the query string, for example:
Copy to clipboard
[tiki-index_raw.php?page=Search&default[field]=value]
''Or with SEFURL enabled''
[Search?default~field=value]
The "field" here is the same as what you have in the _field attribute in your search template.
You can have several search parameters in the url using &.
You may also use an item link/list value (in the example below tracker_field_kind is item link) in some case.
Copy to clipboard
tiki-index_raw.php?page=Search&default[field]=value&default[field]=value
e.g. [tiki-index_raw.php?page=Search&default[tracker_field_month]=October&default[tracker_field_kind]=644]
''Or with SEFURL enabled''
[Search?default~tracker_field_month=October&default~tracker_field_kind=644]
If you have categories filters defined, you can set the defaults as follows:
Copy to clipboard
tiki-index_raw.php?page=Search&defaultcat[parent]=value
e.g. [tiki-index_raw.php?page=Search&defaultcat[5]=2,7]
''Or with SEFURL enabled''
[Search?defaultcat~5=2,7]
Setting Date Ranges and Radio Buttons From The URL
Improvements in Tiki 23.1 (also 22.2) Date Ranges PHP strtotime values can be used to set date range field defaults. You can test your values here https://strtotime.co.uk
The wiki page containing the Custom Search plugin is called "search" and the date range input has the id "timedate":
Date Range Examples
Copy to clipboard
* From one year ago to the end of the current month
[search?default~timedate_from=-1+year&default~timedate_to=first+day+of+next+month]
* Everything in the past year
[search?default~timedate_gap=1+year&default~timedate_to=now]
* Everything in 2015
[search?default~timedate_gap=1+year&default~timedate_from=2015-1-1]
Radio Buttons You can use the _field or the _group value to set Radio Buttons by their value
Radio Button Examples
Copy to clipboard
[Search?default~tracker_field_radioButton=1]
or
[Search?default~myGroup=3]
Setting Default Search Parameters From A Smarty Template
Smarty syntax can be used to solve more complex cases in previous versions.
tiki-index_raw.php?page=Search&default[field]={smarty}
e.g. tiki-index_raw.php?page=Serch&default[tracker_field_month]={'this month'|date_format:"%B"}
''Or with SEFURL enabled''
<a href="Search?default~tracker_field_month={'this month'|date_format:"%B"}">Search this month</a>
Note that if you are having problems using square brackets within link syntax in a wiki page, you may want to urlencode the square brackets, for example:
Copy to clipboard
[tiki-index_raw.php?page=Search&defaultcat%5b7%5d=3]
''Or use ~ instead of square brackets completely (also with SEFURL enabled)''
[Search?defaultcat~5=3]
Advanced adding of jquery/javascript on AJAX loading of results
This is relevant only if you are implementing an advanced template for PluginList used in conjunction with Custom Search, and it contains jquery/javascript that affects the search results.
Because in IE prior to version 9 it is not possible (due to crappy DOM handling) to deliver jquery/javascript that affect the content of the AJAX response together with the AJAX response, instead of including such scripts in the template for PluginList, you will need to include such scripts as follows:
Create a wiki page as follows, enclosing your javascript/jquery, and specify the wiki page name as the callbackscript parameter to the CUSTOMSEARCH plugin.
It is important to make sure that this page has Permissions set so that it cannot be edited by non-admins
Example excerpt
Wiki page to display results of custom search
Copy to clipboard
{CUSTOMSEARCH(wiki="My Custom Search Tpl" recalllastsearch="0" searchonload="1" requireinput="0" searchable_only="1" customsearchjs="1" callbackscript="shortenDescriptions")}
(the filters and output of the custom search as usual)
{CUSTOMSEARCH}
Contents of "My Custom Search Tpl"
The page "My Custom Search Tpl" has this type of code:
Contents of "shortenDescriptions" (callbackscript)
The page shortenDescriptions:
Copy to clipboard
{JQ()}
$(document).on("pageSearchReady", function() {
//using the .readMore class as a selector for the click event over it.
$('.readMore').click(function(){
$('#courseOverview').toggle();
$('#courseOverviewFull').show();
$('.readLess').show();
$('.readMore').hide();
});
$('.readLess').click(function(){
$('#courseOverview').toggle();
$('#courseOverviewFull').hide();
$('.readLess').hide();
$('.readMore').show();
});
return true;
});
{JQ}
Advanced Pagination in Smarty Template
Advanced pagination not using pagination="y" but instead directly creating the pagination within the Smarty template, by specifying the customsearch ID manually as follows:
Overriding defaults that apply on arriving at search page
The defaults can be overridden by passing into the query string these variables. For example, if you want the number of search results to show to be set to 10, you can do:
Copy to clipboard
http://yoursite.tiki.org/tiki-index_raw.php?page=MySearch&maxRecords=10
(or with SEFURL on) http://yoursite.tiki.org/MySearch?maxRecords=10
For sort_mode, you can also set it inside your search template. Please be warned that sorting is based on string. if you are trying to sort by numbers, make sure all your numbers are of the same number of digits. Otherwise 2 will be larger than 12. The only way to get around this for now is to make sure all numbers are entered in a padded form, for example, 0012 for 12.
Copy to clipboard
{sort mode="tracker_field_18_desc"}
Changing the settings after arriving at the search page
You will need a little Jquery/javascript for this. It is possible to set the javascript variables "customsearch_<id>.maxRecords", "customsearch_<id>.sort_mode", "customsearch_<id>.offset" programmatically and then resubmit the form by calling the submit() event handler on the form using the jquery. For example:
The final step is to customize the search interface with CSS. The search results is in a DIV with the ID customsearch_<id>_form. The search form is in a DIV with the ID customsearch_<id>_results Because you can assign your own CSS classes to each of the form elements above, you can customize it anyway you like.
Using Facets
Since Tiki23 Chosen has been removed
Following this tutorial you will be able to set facets search using JQuery Chosen. Chosen was a "dead" project and from Tiki23 we use Select2: https://doc.tiki.org/Tiki23#Select2
A new documentation is required and will be published soon
Facets are dynamic search filters provided by the search engines. They allow to refine the user's search. Not all search engines support this feature. At this time, it is only supported by the Elasticsearch implementation.
Global parameters for Facets can be set on the Admin, Search control panel under Search Results (/tiki-admin.php?page=search&cookietab=2)
Using facets with CustomSearch requires that hidden fields be added to the search form. These fields will be filled as the user selects filters. To simplify binding, make sure you set the ID explicitly.
The CustomSearch plugin must then define which facet it wishes to obtain. When configuring the facets, you get to choose how to handle multiple selection. By default, OR filters will be used.
Then, you need to modify the results template to display the facets selector tools (see the sample below)
Facets from Categories
To use categories as facet generators, go to the search control panel, and on the "search results" tab add the top category or categories you will need to the "Generate custom facets from categories" preference, apply that and rebuild the search index.
Add the hidden fields to your search form as above, but using this special format for the id: deep_categories_under_XXX replacing the XXX with the top category id
Then, you need to modify the results template to display the facets selector tools (see the sample below)
Facet Parameters
Operator
Sets the input above to use "AND" or "OR" (default is "OR")
Count
Since 12.4 You can specify the maximum number of facets returned. This defaults to 10, but can be changed globally using the "Facet result count" preference on the search results control panel, or per facet in the plugin like this:
Since 20.1 Sets the order the facets are returned in the results, use either _count (default) or _term for ES5 (or _key for ES6+). Append _asc or _desc for ascending and descending.
Useful for charts where you need to set the colours according to the order the facets/aggregations are returned.
Used for type=date_range each range is separated by a pipe | character, and within that use commas to separate from,-+to+-,-+label+-
More info on date formats accepted here on elastic.co
Finally, you need to modify the results template. The $facets variable is available and contains all the facets returned by the search engine. It is important to verify that the results have been provided.
Test the facets array is populated properly
Copy to clipboard
{$facets|var_dump}
In this example, Chosen is used to render the facet elements nicely and each change to a facet causes the results to reload. The registerFacet() jQuery function binds the select element to the hidden field annotated by data-for.
Since Tiki 19 (r68500) example templates can be found in templates/examples/search/.
Some examples of this can be found on PluginCustomSearch Chart Examples