$fields_form = array(
'form' => array(
'legend' => array(
'title' => $this->l('Configure Settings'),
'icon' => 'icon-cogs'
),
'description' => $form_desc,
'input' => array(
array(
'type' => 'text',
'label' => $this->l('textfield1'),
'name' => 'username',
'size' => 50,
'class' => 'fixed-width-xxl',
'required' => true
),
array(
'type' => 'password',
'label' => $this->l('textfield2'),
'name' => 'password',
'size' => 50,
'class' => 'fixed-width-xl',
'required' => true,
),
),
'submit' => array(
'name' => 'submitconfigureoptions',
'title' => $this->l('Save'),
'icon' => 'process-icon-save',
'class' => 'btn btn-default pull-right'
),
)
);
4 つの入力テキスト フィールドと送信ボタンを含むフォームがあります。そのため、フォームを送信した後、入力テキスト フィールドに入力した値と同じ値をページの更新後にフォームに表示する必要があります。