| 1 | <?php |
||
| 27 | class QueryGroupFacet extends AbstractOptionsFacet |
||
| 28 | { |
||
| 29 | const TYPE_QUERY_GROUP = 'queryGroup'; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * String |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | protected static $type = self::TYPE_QUERY_GROUP; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @var OptionCollection |
||
| 39 | */ |
||
| 40 | protected $options; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * OptionsFacet constructor |
||
| 44 | * |
||
| 45 | * @param SearchResultSet $resultSet |
||
| 46 | * @param string $name |
||
| 47 | * @param string $field |
||
| 48 | * @param string $label |
||
| 49 | * @param array $configuration Facet configuration passed from typoscript |
||
| 50 | */ |
||
| 51 | public function __construct(SearchResultSet $resultSet, $name, $field, $label = '', array $configuration = []) |
||
| 55 | } |
||
| 56 |