You are here

protected function DeveloperAppBaseFieldConfigForm::getLockedBaseFields in Apigee Edge 8

Returns the array of locked base field on the entity type.

Return value

array Array of base field names.

Overrides BaseFieldConfigFromBase::getLockedBaseFields

File

src/Form/DeveloperAppBaseFieldConfigForm.php, line 27

Class

DeveloperAppBaseFieldConfigForm
Provides a form for configuring base field settings on developer apps.

Namespace

Drupal\apigee_edge\Form

Code

protected function getLockedBaseFields() : array {
  return $this
    ->config('apigee_edge.developer_app_settings')
    ->get('locked_base_fields');
}