Yii2 ビューのコードスタイル =========================== 下記のコードスタイルが Yii 2.x コアと公式エクステンションのビューファイルに用いられています。 私たちは、あなたが自分のアプリケーションにこのコードスタイルを使うことを強制するものではありません。 あなたにとってより良いコードスタイルを自由に選んでください。 ```php title = 'Posts'; ?>

['id' => 'contact-message-form'], 'fieldConfig' => ['inputOptions' => ['class' => 'common-input']], ]); ?> field($contactMessage, 'name')->textInput() ?> field($contactMessage, 'email')->textInput() ?> field($contactMessage, 'subject')->textInput() ?> field($contactMessage, 'body')->textArea(['rows' => 6]) ?>
'common-button']) ?>
```