PHP code example of la-haute-societe / craft-elasticsearch
1. Go to this page and download the library: Download la-haute-societe/craft-elasticsearch library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
la-haute-societe / craft-elasticsearch example snippets
Event::on(ElasticsearchRecord::class, ElasticsearchRecord::EVENT_BEFORE_CREATE_INDEX, function (Event $event) {
/** @var ElasticsearchRecord $esRecord */
$esRecord = $event->sender;
$schema = $esRecord->getSchema();
// Modify the original schema to add the additional field
$schema['mappings']['elasticsearch-record']['properties']['color'] = [
'type' => 'text',
'store' => true
];
$esRecord->setSchema($schema);
});
Event::on(ElasticsearchRecord::class, ElasticsearchRecord::EVENT_INIT, function (Event $event) {
/** @var ElasticsearchRecord $esRecord */
$esRecord = $event->sender;
$esRecord->addAttributes(['color']); // Adds an additional attribute named `color`
});
Event::on(ElasticsearchRecord::class, ElasticsearchRecord::EVENT_BEFORE_SAVE, function (Event $event) {
/** @var ElasticsearchRecord $esRecord */
$esRecord = $event->sender;
$element = $esRecord->getElement();
// Set the color attributes value to be saved in Elasticsearch index
$esRecord->color = ArrayHelper::getValue($element, 'color.hex');
});