PMA\libraries\DisplayResults::_getFormForMultiRowOperations PHP Method

_getFormForMultiRowOperations() private method

Prepare html form for multi row operations
See also: _getTableHeaders()
private _getFormForMultiRowOperations ( string $del_lnk ) : string
$del_lnk string the delete link of current row
return string $form_html html content
    private function _getFormForMultiRowOperations($del_lnk)
    {
        $form_html = '';
        if ($del_lnk == self::DELETE_ROW || $del_lnk == self::KILL_PROCESS) {
            $form_html .= '<form method="post" action="tbl_row_action.php" ' . 'name="resultsForm"' . ' id="resultsForm_' . $this->__get('unique_id') . '"';
            $form_html .= ' class="ajax" ';
            $form_html .= '>' . URL::getHiddenInputs($this->__get('db'), $this->__get('table'), 1) . '<input type="hidden" name="goto" value="sql.php" />';
        }
        $form_html .= '<table class="table_results data ajax"';
        $form_html .= ' data-uniqueId="' . $this->__get('unique_id') . '"';
        $form_html .= '>';
        return $form_html;
    }
DisplayResults