/**
  * Test for PMA_getActionsPanel
  *
  * @return void
  */
 public function testGetActionsPanel()
 {
     $GLOBALS['cfg']['ShowHint'] = false;
     $result = PMA_getActionsPanel(null, 'back', 2, 1, null);
     $this->assertTag(PMA_getTagArray('<select name="submit_type" class="control_at_footer" tabindex="4">'), $result);
     $this->assertTag(PMA_getTagArray('<select name="after_insert">'), $result);
     $this->assertTag(PMA_getTagArray('<input type="submit" class="control_at_footer" value="Go" ' . 'tabindex="9" id="buttonYes" '), $result);
 }
Exemplo n.º 2
0
    $current_result = isset($result) && is_array($result) && isset($result[$row_id]) ? $result[$row_id] : $result;
    $repopulate = array();
    $checked = true;
    if (isset($unsaved_values[$row_id])) {
        $repopulate = $unsaved_values[$row_id];
        $checked = false;
    }
    if ($insert_mode && $row_id > 0) {
        $html_output .= PMA_getHtmlForIgnoreOption($row_id, $checked);
    }
    $html_output .= PMA_getHtmlForInsertEditRow($url_params, $table_columns, $comments_map, $timestamp_seen, $current_result, $chg_evt_handler, $jsvkey, $vkey, $insert_mode, $current_row, $o_rows, $tabindex, $columns_cnt, $is_upload, $tabindex_for_function, $foreigners, $tabindex_for_null, $tabindex_for_value, $table, $db, $row_id, $titles, $biggest_max_file_size, $text_dir, $repopulate, $where_clause_array);
}
// end foreach on multi-edit
$scripts->addFiles($GLOBALS['plugin_scripts']);
unset($unsaved_values, $checked, $repopulate, $GLOBALS['plugin_scripts']);
if (!isset($after_insert)) {
    $after_insert = 'back';
}
//action panel
$html_output .= PMA_getActionsPanel($where_clause, $after_insert, $tabindex, $tabindex_for_value, $found_unique_key);
if ($biggest_max_file_size > 0) {
    $html_output .= '        ' . Util::generateHiddenMaxFileSize($biggest_max_file_size) . "\n";
}
$html_output .= '</form>';
$html_output .= PMA_getHtmlForGisEditor();
// end Insert/Edit form
if ($insert_mode) {
    //Continue insertion form
    $html_output .= PMA_getContinueInsertionForm($table, $db, $where_clause_array, $err_url);
}
$response->addHTML($html_output);