'
. ' ';
return $html;
}
/**
* Function to get html for the footer
*
* @return string
*/
function PMA_getHtmlForFooter()
{
$html = ''
. ''
. '';
$html .= '';
return $html;
}
/**
* Function to get html for table create table name and number of fields
*
* @return string
*/
function PMA_getHtmlForTableNameAndNoOfColumns()
{
$html = '
';
$odd_row = ! $odd_row;
if (is_array($content_row)) {
foreach ($content_row as $content_row_val) {
$html .= '
' . $content_row_val . '
';
}
}
$html .= '
';
}
$html .= '
'
. ' ';
return $html;
}
/**
* Function to get html for the hidden fields containing index creation info
*
* @param string $index_type the index type
*
* @return string
*/
function PMA_getHtmlForHiddenIndexInfo($index_type)
{
$html = '';
return $html;
}
/**
* Function to get html for the create table or field add view
*
* @param string $action action
* @param array $form_params forms parameters
* @param array $content_cells content cells
* @param array $header_cells header cells
*
* @return string
*/
function PMA_getHtmlForTableCreateOrAddField($action, $form_params, $content_cells,
$header_cells
) {
$html = '