Skip to content
Grav 2.1 is out: every page speaks Markdown. Read the announcement →

How to write link to rezult page. tntsearch

Started by ghost666 7 years ago · 1 replies · 618 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 complanar, 2 weeks ago
2 250 4 days ago
Plugins · by Vladimir Novak, 1 month ago
3 594 1 month ago
Plugins · by Mathieu Lecouturier, 2 months ago
3 417 2 months ago
Plugins · by Slebeig, 2 months ago
1 530 2 months ago
Plugins · by Rene, 3 months ago
2 731 3 months ago