Download the PHP package byng/pimcore-elasticsearch-plugin without Composer

On this page you can find all versions of the php package byng/pimcore-elasticsearch-plugin. 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 pimcore-elasticsearch-plugin

Pimcore Elasticsearch Plugin

The Elasticsearch plugin for Pimcore Saves/updates contents (text only) of document's (editables) and assets to Elasticsearch. It also provides a query builder to search the index.

Features

System Requirements

Installation via composer

The recommended method to install the Pimcore Elasticsearch Plugin is via Composer.

1 - Add byng/pimcore-elasticsearch-plugin as a dependency in your project's composer.json file and run composer install

2 - Copy the distribution config file (elasticsearchplugin.xml.dist) in the root of the plugin folder to {PIMCORE_WEBSITE_DIR}/var/config/elasticsearchplugin.xml.

3 - Enable the plugin in Pimcore using the extension manager.

Quickstart

Once the installation has been completed, the first time you create or update a document the Elasticsearch index will be created and the document will be indexed. You can verify that the index exists using curl or Kibana.

Hooks

Hooks allow you to hook into the plugin at various points to provide additional functionality. It uses the standard Zend EventManager which Pimcore uses.

Registering an event listener example

For example to register an even listener:

The above code will call the handlePreIndex() method of the class where it was added whenever a document is ready to be indexed.

Within the handlePreIndex() method you have access to the actual Pimcore document which is being indexed and also the data the plugin has lready extracted. You can add additional properties to the parameters array and they will also be saved to the index:

Available hooks

The following hooks are currently available:

document.elasticsearch.preIndex

This hook is called after the plugin has extracted all the information from the document to index and before it writes the data to Elasticsearch. You can use this hook to write additional/custom properties to the index.

asset.elasticsearch.preIndex

This hook is the asset equivalent of "document.elasticsearch.preIndex".

Querying

The pluigin provides a simple query builder to make it easy to extract information from Elasticsearch.

Example

The following JSON request will be generated from the above code and sent to Elasticsearch:

This will retrieve all documents that contain the word "something".

Todo

License

MIT


All versions of pimcore-elasticsearch-plugin with dependencies

PHP Build Version
Package Version
No informations.
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 byng/pimcore-elasticsearch-plugin contains the following files

Loading the files please wait ....