public function EntityProcessorProperty::isHidden in Search API 8
Determines whether this property should be hidden from the UI.
Return value
bool TRUE if this property should not be displayed in the UI, FALSE otherwise.
Overrides ProcessorPropertyInterface::isHidden
File
- src/
Processor/ EntityProcessorProperty.php, line 22
Class
- EntityProcessorProperty
- Provides a definition for a processor property that contains an entity.
Namespace
Drupal\search_api\ProcessorCode
public function isHidden() {
return !empty($this->definition['hidden']);
}