Commit eb8a11a1 by marsuboss

Array short

parent ec0e348a
...@@ -33,21 +33,21 @@ $this->title = 'Posts'; ...@@ -33,21 +33,21 @@ $this->title = 'Posts';
<?php endforeach; ?> <?php endforeach; ?>
<!-- Widget declaration may or may not be exploded into multiple LOCs. --> <!-- Widget declaration may or may not be exploded into multiple LOCs. -->
<?php $form = ActiveForm::begin(array( <?php $form = ActiveForm::begin([
'options' => array('id' => 'contact-message-form'), 'options' => ['id' => 'contact-message-form'],
'fieldConfig' => array('inputOptions' => array('class' => 'common-input')), 'fieldConfig' => ['inputOptions' => ['class' => 'common-input']],
)); ?> ]); ?>
<!-- Note indentation level here. --> <!-- Note indentation level here. -->
<?= $form->field($contactMessage, 'name')->textInput() ?> <?= $form->field($contactMessage, 'name')->textInput() ?>
<?= $form->field($contactMessage, 'email')->textInput() ?> <?= $form->field($contactMessage, 'email')->textInput() ?>
<?= $form->field($contactMessage, 'subject')->textInput() ?> <?= $form->field($contactMessage, 'subject')->textInput() ?>
<?= $form->field($contactMessage, 'body')->textArea(array('rows' => 6)) ?> <?= $form->field($contactMessage, 'body')->textArea(['rows' => 6]) ?>
<div class="form-actions"> <div class="form-actions">
<?= Html::submitButton('Submit', array('class' => 'common-button')) ?> <?= Html::submitButton('Submit', ['class' => 'common-button']) ?>
</div> </div>
<!-- Ending widget call should have individual PHP tag. --> <!-- Ending widget call should have individual PHP tag. -->
<?php ActiveForm::end(); ?> <?php ActiveForm::end(); ?>
<!-- Trailing newline character is mandatory. --> <!-- Trailing newline character is mandatory. -->
``` ```
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment