Download the PHP package thelia/tnt-search-module without Composer

On this page you can find all versions of the php package thelia/tnt-search-module. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package tnt-search-module

TNT Search Module

This module integrates TNTSearch, a full-featured full text search engine written in PHP, into Thelia. It works both in the front-office through a dedicated loop and replaces the standard back-office search functionality.

Installation

Add it to your main Thelia composer.json file:

Configuration

Search indexes update automatically when products, categories, folders, content, brands, etc. are modified in the back-office. For faster back-office operations, you can disable real-time updates in the module configuration.

When real-time updates are disabled, you'll need to rebuild indexes manually:

Thelia Loops

tnt-search loop

Returns IDs of the elements matching your search criteria.

Input arguments

Argument Description
search_for Elements to search for (product, category, folder, content, brand, order or customer)
locale Languages to search in (e.g., 'fr_FR, en_US')
search Search term

Output arguments

Variable Description
$PRODUCT List of product IDs or 0
$CATEGORY List of category IDs or 0
$BRAND List of brand IDs or 0
$FOLDER List of folder IDs or 0
$CONTENT List of content IDs or 0
$CUSTOMER List of customer IDs or 0
$ORDER List of order IDs or 0

Example

To use this loop, combine it with another loop:

The order="given_id" parameter is important to preserve the relevance order provided by TNTSearch.

Custom Indexation

To implement custom indexation, create a class implementing TntSearchIndexInterface and register it as a service with the tntsearch.base.index parent.

TntSearchIndexInterface

If you want to create your own index, implement this interface which requires the following methods:

Method Description
getFieldWeights(string $field) Returns the weight for a given field (integer). Higher values give more importance to matches in this field.
isTranslatable() Returns whether the indexed content has translations (boolean).
isGeoIndexable() Returns whether the index supports geolocation search features (boolean).
buildSqlQuery(int $itemId = null, string $locale = null) Returns the SQL query used to retrieve the data to index. Can be filtered by ID and locale.
buildSqlGeoQuery(int $itemId = null) Returns the SQL query for geolocation data (or null if not applicable).

Service Configuration

Register your custom index as a service by extending the tntsearch.base.index. This will automatically register your index with the TNTSearch indexation provider system.


All versions of tnt-search-module with dependencies

PHP Build Version
Package Version
Requires ext-json Version *
thelia/installer Version ~1.1
teamtnt/tntsearch Version 2.*
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package thelia/tnt-search-module contains the following files

Loading the files please wait ....