Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
33 | public function updateCMSFields(FieldList $fields) |
||
34 | { |
||
35 | $fields->addFieldToTab("Root.FreeTextSearch", new NumericField("BulkSize", 'The number of documents to index at once in bulk')); |
||
36 | $fields->addFieldToTab('Root.FreeTextSearch', new CheckboxField('FreeTextSearchIndexingModeInBulk', 'True to index in bulk, false to index individually')); |
||
37 | |||
38 | return $fields; |
||
39 | } |
||
41 |