Skip to content
Grav 2.0 is officially stable. Read the announcement →
Plugins

How to write link to rezult page. tntsearch

Started by ghost666 7 years ago · 1 replies · 588 views
7 years ago

Hi, I make menu to search:

TWIG
    {% for item in item %}
    <a  href="{{ page.url(true, true) }}/search/query{{ config.system.param_sep }}{{ item|e }}">{{ item|e }}</a>
    {% endfor %}

this is for simplesearch.
How wrire link to tnt search to rezult page...?

👍 1
7 years ago

There's quite a few places in TNTIndexer and TNTSearch that looks for what is basically a static list of connectors and drivers. I'm getting around this right now by creating my own GravIndexer class that extends the TNTIndexer and overrides the run() method to load the Grav::pages object and iterate over the pages and store the $page->content()
Buy Fake ID

maybe this other approach will do also
private function doIndex()
{
include DIR.'/../vendor/autoload.php';
error_reporting(1);

PHP
    $data_path = Grav::instance()['locator']->findResource('user://data', true).'/tnt-search';

    if (!file_exists($data_path)) {
        mkdir($data_path);
    }

    $tnt = new TNTSearch;

    $tnt->loadConfig([
        'driver'  => 'sqlite',
        'storage' => $data_path
    ]);
    $tnt->setDatabaseHandle(new GravConnector);
    $indexer = $tnt->createIndex('grav.index');
    $indexer->run();

}
last edited 06/20/19 by Thomas Coello

Suggested topics

Topic Participants Replies Views Activity
Plugins · by Vladimir Novak, 2 weeks ago
3 292 2 weeks ago
Plugins · by Mathieu Lecouturier, 3 weeks ago
3 277 3 weeks ago
Plugins · by Slebeig, 2 months ago
1 403 2 months ago
Plugins · by Rene, 2 months ago
2 574 2 months ago
Plugins · by Xavier, 3 months ago
2 490 3 months ago