mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-18 07:23:13 +00:00
24 lines
482 B
PHP
24 lines
482 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\SearchEngine\Elastic\AST;
|
|
|
|
class QuotedTextNode extends TextNode
|
|
{
|
|
public function getQuery($fields = ['_all'])
|
|
{
|
|
return array(
|
|
'multi_match' => array(
|
|
'type' => 'phrase',
|
|
'fields' => $fields,
|
|
'query' => $this->text,
|
|
// 'operator' => 'and'
|
|
)
|
|
);
|
|
}
|
|
|
|
public function isFullTextOnly()
|
|
{
|
|
return true;
|
|
}
|
|
}
|