Exemplo n.º 1
0
 /**
  * return complete font size selection form
  *
  * @static
  *
  * @return string html selectbox
  */
 public static function getFontsizeForm()
 {
     return '<form name="form_fontsize_selection" id="form_fontsize_selection"' . ' method="get" action="index.php" class="disableAjax">' . "\n" . PMA_generate_common_hidden_inputs() . "\n" . PMA_Config::getFontsizeSelection() . "\n" . '</form>';
 }
Exemplo n.º 2
0
 /**
  * return complete font size selection form
  *
  * @uses    PMA_generate_common_hidden_inputs()
  * @uses    PMA_Config::getFontsizeSelection()
  * @uses    $GLOBALS['strGo']
  * @static
  * @param   string  $current_size   currently slected font size with unit
  * @return  string  html selectbox
  */
 function getFontsizeForm()
 {
     return '<form name="form_fontsize_selection" id="form_fontsize_selection"' . ' method="post" action="index.php" target="_parent">' . "\n" . PMA_generate_common_hidden_inputs() . "\n" . PMA_Config::getFontsizeSelection() . "\n" . '<noscript>' . "\n" . '<input type="submit" value="' . $GLOBALS['strGo'] . '" />' . "\n" . '</noscript>' . "\n" . '</form>';
 }