Leitgedanken/#pma/templates/privileges/add_privileges_routine.phtml
2022-11-21 09:47:28 +01:00

14 lines
631 B
PHTML

<input type="hidden" name="dbname" value="<?= htmlspecialchars($database); ?>"/>
<label for="text_routinename"><?= __('Add privileges on the following routine:'); ?></label>
<?php if (! empty($routines)) : ?>
<select name="pred_routinename" class="autosubmit">
<option value="" selected="selected"><?= __('Use text field'); ?>:</option>
<?php foreach ($routines as $routine) : ?>
<option value="<?= htmlspecialchars($routine); ?>"><?= htmlspecialchars($routine); ?></option>
<?php endforeach; ?>
</select>
<?php endif; ?>
<input type="text" id="text_routinename" name="routinename" />