我经常与 Drupal 和类打交道,有时我读到类似的内容:
/**
* {@inheritdoc}
*/
// return the form definition
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this->config('hello_world.custom_salutation');
$form['salutation'] = array(
'#type' => 'textfield',
'#title' => $this->t('Salutation'),
'#description' => $this->t('Si prega di inserire il saluto che si desidera usare'),
'#default_value' => $config->get('salutation'),
);
Run Code Online (Sandbox Code Playgroud)
继承的意思是什么?