mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-31 01:34:09 +02:00
parent
9cbd7e945d
commit
5f68850443
@ -16,7 +16,7 @@ $showRadioBoxes = strpos(strtolower(get_class($radioElem)), 'radio') !== false;
|
|||||||
<?php if ($showRadioBoxes): ?>
|
<?php if ($showRadioBoxes): ?>
|
||||||
<div class="radiobox">
|
<div class="radiobox">
|
||||||
<label>
|
<label>
|
||||||
<input type="radio" name="user_type" value="by_name">
|
<input type="radio" name="user_type" value="by_name"<?= $radioElem->getValue() === 'by_name' ? ' checked' : ''; ?>>
|
||||||
<?= $radioElem->getMultiOption('by_name'); ?>
|
<?= $radioElem->getMultiOption('by_name'); ?>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -31,7 +31,7 @@ $showRadioBoxes = strpos(strtolower(get_class($radioElem)), 'radio') !== false;
|
|||||||
<?php if ($showRadioBoxes): ?>
|
<?php if ($showRadioBoxes): ?>
|
||||||
<div class="radiobox">
|
<div class="radiobox">
|
||||||
<label>
|
<label>
|
||||||
<input type="radio" name="user_type" value="existing_user">
|
<input type="radio" name="user_type" value="existing_user"<?= $radioElem->getValue() === 'existing_user' ? ' checked' : ''; ?>>
|
||||||
<?= $radioElem->getMultiOption('existing_user'); ?>
|
<?= $radioElem->getMultiOption('existing_user'); ?>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@ -48,7 +48,7 @@ $showRadioBoxes = strpos(strtolower(get_class($radioElem)), 'radio') !== false;
|
|||||||
<?php if ($showRadioBoxes): ?>
|
<?php if ($showRadioBoxes): ?>
|
||||||
<div class="radiobox">
|
<div class="radiobox">
|
||||||
<label>
|
<label>
|
||||||
<input type="radio" name="user_type" value="new_user">
|
<input type="radio" name="user_type" value="new_user"<?= $radioElem->getValue() === 'new_user' ? ' checked' : ''; ?>>
|
||||||
<?= $radioElem->getMultiOption('new_user'); ?>
|
<?= $radioElem->getMultiOption('new_user'); ?>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user