public function ProcessorProperty::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/ ProcessorProperty.php, line 22
Class
- ProcessorProperty
- Provides a base class for normal processor-defined properties.
Namespace
Drupal\search_api\ProcessorCode
public function isHidden() {
return !empty($this->definition['hidden']);
}