Gets the display options for all components.
array The array of display options, keyed by component name.
Overrides EntityDisplayBaseInterface::getComponents
public function getComponents() {
$result = array();
foreach ($this->content as $name => $options) {
if (!isset($options['visible']) || $options['visible'] === TRUE) {
unset($options['visible']);
$result[$name] = $options;
}
}
return $result;
}