Translated using Weblate (Slovenian)
[phpmyadmin.git] / templates / checkbox.phtml
blob5cdb09859b0315d3290fa497f386519714aa541e
1 <input type="checkbox" name="<?= $html_field_name ; ?>"
2         <?php if (isset($html_field_id)):           ?>
3             id="<?= $html_field_id ;                ?>"
4         <?php endif ;
5         if (isset($checked) && $checked):           ?>
6             checked="checked"
7         <?php endif ;
8         if (isset($onclick) && $onclick):           ?>
9             class="autosubmit"
10         <?php endif ;                               ?> />
11 <label  <?php if (isset($html_field_id)):           ?>
12             for="<?= $html_field_id ; endif ;       ?>"><?= $label ; ?></label>