コード例 #1
0
 /**
  * Test for PMA_getContinueInsertionForm
  *
  * @return void
  */
 public function testGetContinueInsertionForm()
 {
     $where_clause_array = array("a<b");
     $GLOBALS['cfg']['InsertRows'] = 1;
     $GLOBALS['cfg']['ServerDefault'] = 1;
     $GLOBALS['goto'] = "index.php";
     $_REQUEST['where_clause'] = true;
     $_REQUEST['sql_query'] = "SELECT 1";
     $result = PMA_getContinueInsertionForm("tbl", "db", $where_clause_array, "localhost");
     $this->assertTag(PMA_getTagArray('<form id="continueForm" method="post" action="tbl_replace.php" ' . 'name="continueForm">'), $result);
     $this->assertTag(PMA_getTagArray('<input type="hidden" name="db" value="db" />'), $result);
     $this->assertTag(PMA_getTagArray('<input type="hidden" name="table" value="tbl" />'), $result);
     $this->assertTag(PMA_getTagArray('<input type="hidden" name="goto" value="index.php" />'), $result);
     $this->assertTag(PMA_getTagArray('<input type="hidden" name="err_url" value="localhost" />'), $result);
     $this->assertTag(PMA_getTagArray('<input type="hidden" name="sql_query" value="SELECT 1" />'), $result);
     $this->assertTag(PMA_getTagArray('<input type="hidden" name="where_clause[0]" value="a<b" />'), $result);
     $this->assertTag(PMA_getTagArray('<option value="1" selected="selected">', array('content' => '1')), $result);
 }
コード例 #2
0
ファイル: tbl_change.php プロジェクト: poush/phpmyadmin
    $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);