HEX
Server: Apache/2.2.22
System: Linux server1.blueharbor.com 3.10.0-1160.90.1.vz7.200.7 #1 SMP Wed Jul 12 12:00:44 MSK 2023 x86_64
User: locglobe (1004)
PHP: 5.6.37
Disabled: NONE
Upload Files
File: //usr/local/cwpsrv/var/services/pma_03-08-2021.bak/templates/database/designer/page_save_as.phtml
<?php
$cfgRelation = PMA_getRelationsParam();
$choices = array(
    'same' => __('Save to selected page'),
    'new' => __('Create a page and save to it')
);
?>
<form action="db_designer.php" method="post" name="save_as_pages" id="save_as_pages" class="ajax">
    <?= PMA\libraries\URL::getHiddenInputs($db); ?>
    <fieldset id="page_save_as_options">
        <table>
            <tbody>
                <tr>
                    <td>
                        <input type="hidden" name="operation" value="savePage" />
                        <?= PMA_getHtmlForPageSelector($cfgRelation, $db); ?>
                    </td>
                </tr>
                <tr>
                    <td>
                        <?= PMA\libraries\Util::getRadioFields('save_page', $choices, 'same', true); ?>
                    </td>
                </tr>
                <tr>
                    <td>
                        <label for="selected_value"><?= __('New page name'); ?></label>
                        <input type="text" name="selected_value" id="selected_value" />
                    </td>
                </tr>
            </tbody>
        </table>
    </fieldset>
</form>