本文整理匯總了PHP中FormOther::select_import_model方法的典型用法代碼示例。如果您正苦於以下問題:PHP FormOther::select_import_model方法的具體用法?PHP FormOther::select_import_model怎麽用?PHP FormOther::select_import_model使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類FormOther
的用法示例。
在下文中一共展示了FormOther::select_import_model方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
print '</td></tr>';
print '</table>';
print '<br>' . "\n";
// List of source fields
print '<!-- List of source fields -->' . "\n";
print '<form action="' . $_SERVER["PHP_SELF"] . '" method="post">';
print '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
print '<input type="hidden" name="action" value="select_model">';
print '<input type="hidden" name="step" value="4">';
print '<input type="hidden" name="format" value="' . $format . '">';
print '<input type="hidden" name="datatoimport" value="' . $datatoimport . '">';
print '<input type="hidden" name="filetoimport" value="' . $filetoimport . '">';
print '<input type="hidden" name="excludefirstline" value="' . $excludefirstline . '">';
print '<table><tr><td colspan="2">';
print $langs->trans("SelectImportFields", img_picto('', 'uparrow', '')) . ' ';
$htmlother->select_import_model($importmodelid, 'importmodelid', $datatoimport, 1);
print '<input type="submit" class="button" value="' . $langs->trans("Select") . '">';
print '</td></tr></table>';
print '</form>';
// Title of array with fields
print '<table class="nobordernopadding" width="100%">';
print '<tr class="liste_titre">';
print '<td>' . $langs->trans("FieldsInSourceFile") . '</td>';
print '<td>' . $langs->trans("FieldsInTargetDatabase") . '</td>';
print '</tr>';
//var_dump($array_match_file_to_database);
print '<tr valign="top"><td width="50%">';
$fieldsplaced = array();
$valforsourcefieldnb = array();
$listofkeys = array();
foreach ($array_match_file_to_database as $key => $val) {