Mercurial > hg > isophonics-drupal-site
comparison core/lib/Drupal/Core/Field/FieldConfigBase.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
589 $this->itemDefinition = NULL; | 589 $this->itemDefinition = NULL; |
590 | 590 |
591 return $this; | 591 return $this; |
592 } | 592 } |
593 | 593 |
594 /** | |
595 * {@inheritdoc} | |
596 */ | |
597 public function isInternal() { | |
598 // Respect the definition, otherwise default to TRUE for computed fields. | |
599 if (isset($this->definition['internal'])) { | |
600 return $this->definition['internal']; | |
601 } | |
602 return $this->isComputed(); | |
603 } | |
604 | |
594 } | 605 } |