当前位置: 首页>>代码示例>>PHP>>正文


PHP PMA_exportCheckboxCheck函数代码示例

本文整理汇总了PHP中PMA_exportCheckboxCheck函数的典型用法代码示例。如果您正苦于以下问题:PHP PMA_exportCheckboxCheck函数的具体用法?PHP PMA_exportCheckboxCheck怎么用?PHP PMA_exportCheckboxCheck使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了PMA_exportCheckboxCheck函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: htmlspecialchars

    }
} else {
    if (isset($_COOKIE) && !empty($_COOKIE['pma_server_filename_template'])) {
        echo htmlspecialchars($_COOKIE['pma_server_filename_template']);
    } else {
        echo $GLOBALS['cfg']['Export']['file_template_server'];
    }
}
echo '" />';
?>

    (
    <input type="checkbox" name="remember_template"
        id="checkbox_remember_template"
        <?php 
PMA_exportCheckboxCheck('remember_file_template');
?>
 />
    <label for="checkbox_remember_template">
        <?php 
echo $strFileNameTemplateRemember;
?>
</label>
    )

    <div class="formelementrow">
    <?php 
// charset of file
if ($cfg['AllowAnywhereRecoding']) {
    echo '        <label for="select_charset_of_file">' . $strCharsetOfFile . '</label>' . "\n";
    reset($cfg['AvailableCharsets']);
开发者ID:alexhava,项目名称:elixirjuice,代码行数:31,代码来源:display_export.lib.php

示例2: PMA_getHtmlForExportOptionsOutput

/**
 * Prints Html For Export Options
 *
 * @param String $export_type Selected Export Type
 *
 * @return string
 */
function PMA_getHtmlForExportOptionsOutput($export_type)
{
    global $cfg;
    $html = '<div class="exportoptions" id="output">';
    $html .= '<h3>' . __('Output:') . '</h3>';
    $html .= '<ul id="ul_output">';
    $html .= '<li>';
    $html .= '<input type="radio" name="output_format" value="sendit" ';
    $html .= 'id="radio_dump_asfile" ';
    if (!isset($_GET['repopulate'])) {
        $html .= PMA_exportCheckboxCheck('asfile');
    }
    $html .= '/>';
    $html .= '<label for="radio_dump_asfile">' . __('Save output to a file') . '</label>';
    $html .= '<ul id="ul_save_asfile">';
    if (isset($cfg['SaveDir']) && !empty($cfg['SaveDir'])) {
        $html .= PMA_getHtmlForExportOptionsOutputSaveDir();
    }
    $html .= PMA_getHtmlForExportOptionsOutputFormat($export_type);
    // charset of file
    if ($GLOBALS['PMA_recoding_engine'] != PMA_CHARSET_NONE) {
        $html .= PMA_getHtmlForExportOptionsOutputCharset();
    }
    // end if
    $html .= PMA_getHtmlForExportOptionsOutputCompression();
    $html .= '</ul>';
    $html .= '</li>';
    $html .= PMA_getHtmlForExportOptionsOutputRadio();
    $html .= '</ul>';
    /*
     * @todo use sprintf() for better translatability, while keeping the
     *       <label></label> principle (for screen readers)
     */
    $html .= '<label for="maxsize">' . __('Skip tables larger than') . '</label>';
    $html .= '<input type="text" id="maxsize" name="maxsize" size="4">' . __('MiB');
    $html .= '</div>';
    return $html;
}
开发者ID:BIGGANI,项目名称:zpanelx,代码行数:45,代码来源:display_export.lib.php

示例3: PMA_getHtmlForExportOptionsOutput

/**
 * Prints Html For Export Options
 *
 * @param String $export_type Selected Export Type
 *
 * @return string
 */
function PMA_getHtmlForExportOptionsOutput($export_type)
{
    global $cfg;
    $html = '<div class="exportoptions" id="output">';
    $html .= '<h3>' . __('Output:') . '</h3>';
    $html .= '<ul id="ul_output">';
    $html .= '<li><input type="checkbox" id="btn_alias_config" ';
    if (isset($_SESSION['tmpval']['aliases']) && !PMA_emptyRecursive($_SESSION['tmpval']['aliases'])) {
        $html .= 'checked="checked"';
    }
    unset($_SESSION['tmpval']['aliases']);
    $html .= '/>';
    $html .= '<label for="btn_alias_config">';
    $html .= __('Rename exported databases/tables/columns');
    $html .= '</label></li>';
    if ($export_type != 'server') {
        $html .= '<li>';
        $html .= '<input type="checkbox" name="lock_tables"';
        $html .= ' value="something" id="checkbox_lock_tables"';
        if (!isset($_GET['repopulate'])) {
            $html .= PMA_exportCheckboxCheck('lock_tables') . '/>';
        } elseif (isset($_GET['lock_tables'])) {
            $html .= ' checked="checked"';
        }
        $html .= '<label for="checkbox_lock_tables">';
        $html .= sprintf(__('Use %s statement'), '<code>LOCK TABLES</code>');
        $html .= '</label></li>';
    }
    $html .= '<li>';
    $html .= '<input type="radio" name="output_format" value="sendit" ';
    $html .= 'id="radio_dump_asfile" ';
    if (!isset($_GET['repopulate'])) {
        $html .= PMA_exportCheckboxCheck('asfile');
    }
    $html .= '/>';
    $html .= '<label for="radio_dump_asfile">' . __('Save output to a file') . '</label>';
    $html .= '<ul id="ul_save_asfile">';
    if (isset($cfg['SaveDir']) && !empty($cfg['SaveDir'])) {
        $html .= PMA_getHtmlForExportOptionsOutputSaveDir();
    }
    $html .= PMA_getHtmlForExportOptionsOutputFormat($export_type);
    // charset of file
    if ($GLOBALS['PMA_recoding_engine'] != PMA_CHARSET_NONE) {
        $html .= PMA_getHtmlForExportOptionsOutputCharset();
    }
    // end if
    $html .= PMA_getHtmlForExportOptionsOutputCompression();
    if ($export_type == 'server' || $export_type == 'database') {
        $html .= PMA_getHtmlForExportOptionsOutputSeparateFiles($export_type);
    }
    $html .= '</ul>';
    $html .= '</li>';
    $html .= PMA_getHtmlForExportOptionsOutputRadio();
    $html .= '</ul>';
    /*
     * @todo use sprintf() for better translatability, while keeping the
     *       <label></label> principle (for screen readers)
     */
    $html .= '<label for="maxsize">' . __('Skip tables larger than') . '</label>';
    $html .= '<input type="text" id="maxsize" name="maxsize" size="4">' . __('MiB');
    $html .= '</div>';
    return $html;
}
开发者ID:szepeviktor,项目名称:phpmyadmin,代码行数:70,代码来源:display_export.lib.php

示例4: PMA_getHtmlForExportOptionsOutput

/**
 * Prints Html For Export Options
 *
 * @param String $export_type Selected Export Type
 *
 * @return string
 */
function PMA_getHtmlForExportOptionsOutput($export_type)
{
    global $cfg;
    $html = '<div class="exportoptions" id="output">';
    $html .= '<h3>' . __('Output:') . '</h3>';
    $html .= '<ul id="ul_output">';
    $html .= '<li>';
    $html .= '<input type="radio" name="output_format" value="sendit" ';
    $html .= 'id="radio_dump_asfile" ';
    if (!isset($_GET['repopulate'])) {
        $html .= PMA_exportCheckboxCheck('asfile');
    }
    $html .= '/>';
    $html .= '<label for="radio_dump_asfile">' . __('Save output to a file') . '</label>';
    $html .= '<ul id="ul_save_asfile">';
    if (isset($cfg['SaveDir']) && !empty($cfg['SaveDir'])) {
        $html .= PMA_getHtmlForExportOptionsOutputSaveDir();
    }
    $html .= PMA_getHtmlForExportOptionsOutputFormat($export_type);
    // charset of file
    if ($GLOBALS['PMA_recoding_engine'] != PMA_CHARSET_NONE) {
        $html .= PMA_getHtmlForExportOptionsOutputCharset();
    }
    // end if
    $html .= PMA_getHtmlForExportOptionsOutputCompression();
    $html .= '</ul>';
    $html .= '</li>';
    $html .= PMA_getHtmlForExportOptionsOutputRadio();
    $html .= '</ul>';
    $html .= '</div>';
    return $html;
}
开发者ID:20000Hz,项目名称:bak-letvs,代码行数:39,代码来源:display_export.lib.php


注:本文中的PMA_exportCheckboxCheck函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。