Make Custom Module Pages Searchable
Jamroom Developers
To make your module work with search you just need to register for it in your module's init function:
jrCore_register_module_feature('jrSearch', 'search_fields', 'myCustomModule', 'key_one,key_two', 'Item Title');
Where:
key_one and key_two are the datastore key fields you want to search (you can have from 1 to N fields - as many as you want) and "Item Title" is the title that they will show up under when a result is displayed.
For jrCore_list you don't have to do anything at all - it is automatic once you use a datastore in your module.