Initial commit
This commit is contained in:
10
#pma/templates/database/designer/page_selector.phtml
Normal file
10
#pma/templates/database/designer/page_selector.phtml
Normal file
@ -0,0 +1,10 @@
|
||||
<select name="selected_page" id="selected_page">
|
||||
<option value="0">-- <?= __('Select page'); ?> --</option>
|
||||
<?php if ($cfgRelation['pdfwork']) : $pages = PMA_getPageIdsAndNames($db); ?>
|
||||
<?php foreach ($pages as $nr => $desc) : ?>
|
||||
<option value="<?= $nr; ?>">
|
||||
<?= htmlspecialchars($desc); ?>
|
||||
</option>
|
||||
<?php endforeach; ?>
|
||||
<?php endif; ?>
|
||||
</select>
|
Reference in New Issue
Block a user