You are here

protected function TeamAppBaseFieldConfigForm::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

modules/apigee_edge_teams/src/Form/TeamAppBaseFieldConfigForm.php, line 47

Class

TeamAppBaseFieldConfigForm
Provides a form for configuring base field settings on team apps.

Namespace

Drupal\apigee_edge_teams\Form

Code

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