|
|
|
|
|
countries_id)) {
echo ' ' . "\n";
} else {
echo ' ' . "\n";
}
?>
|
|
|
countries_id) ) { echo tep_image(DIR_WS_IMAGES . 'icon_arrow_right.gif', ''); } else { echo '' . tep_image(DIR_WS_IMAGES . 'icon_info.gif', IMAGE_ICON_INFO) . ''; } ?> |
display_count($countries_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, $HTTP_GET_VARS['page'], TEXT_DISPLAY_NUMBER_OF_COUNTRIES); ?> |
display_links($countries_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, MAX_DISPLAY_PAGE_LINKS, $HTTP_GET_VARS['page']); ?> |
' . tep_image_button('button_new_country.gif', IMAGE_NEW_COUNTRY) . ''; ?> |
|
|
'' . TEXT_INFO_HEADING_NEW_COUNTRY . '');
$contents = array('form' => tep_draw_form('countries', FILENAME_COUNTRIES, 'page=' . $HTTP_GET_VARS['page'] . '&action=insert'));
$contents[] = array('text' => TEXT_INFO_INSERT_INTRO);
$contents[] = array('text' => ' ' . TEXT_INFO_COUNTRY_NAME . ' ' . tep_draw_input_field('countries_name'));
$contents[] = array('text' => ' ' . TEXT_INFO_COUNTRY_CODE_2 . ' ' . tep_draw_input_field('countries_iso_code_2'));
$contents[] = array('text' => ' ' . TEXT_INFO_COUNTRY_CODE_3 . ' ' . tep_draw_input_field('countries_iso_code_3'));
$contents[] = array('text' => ' ' . TEXT_INFO_ADDRESS_FORMAT . ' ' . tep_draw_pull_down_menu('address_format_id', tep_get_address_formats()));
$contents[] = array('align' => 'center', 'text' => ' ' . tep_image_submit('button_insert.gif', IMAGE_INSERT) . ' ' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . '');
break;
case 'edit':
$heading[] = array('text' => '' . TEXT_INFO_HEADING_EDIT_COUNTRY . '');
$contents = array('form' => tep_draw_form('countries', FILENAME_COUNTRIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $cInfo->countries_id . '&action=save'));
$contents[] = array('text' => TEXT_INFO_EDIT_INTRO);
$contents[] = array('text' => ' ' . TEXT_INFO_COUNTRY_NAME . ' ' . tep_draw_input_field('countries_name', $cInfo->countries_name));
$contents[] = array('text' => ' ' . TEXT_INFO_COUNTRY_CODE_2 . ' ' . tep_draw_input_field('countries_iso_code_2', $cInfo->countries_iso_code_2));
$contents[] = array('text' => ' ' . TEXT_INFO_COUNTRY_CODE_3 . ' ' . tep_draw_input_field('countries_iso_code_3', $cInfo->countries_iso_code_3));
$contents[] = array('text' => ' ' . TEXT_INFO_ADDRESS_FORMAT . ' ' . tep_draw_pull_down_menu('address_format_id', tep_get_address_formats(), $cInfo->address_format_id));
$contents[] = array('align' => 'center', 'text' => ' ' . tep_image_submit('button_update.gif', IMAGE_UPDATE) . ' ' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . '');
break;
case 'delete':
$heading[] = array('text' => '' . TEXT_INFO_HEADING_DELETE_COUNTRY . '');
$contents = array('form' => tep_draw_form('countries', FILENAME_COUNTRIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $cInfo->countries_id . '&action=deleteconfirm'));
$contents[] = array('text' => TEXT_INFO_DELETE_INTRO);
$contents[] = array('text' => ' ' . $cInfo->countries_name . '');
$contents[] = array('align' => 'center', 'text' => ' ' . tep_image_submit('button_delete.gif', IMAGE_UPDATE) . ' ' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . '');
break;
default:
if (is_object($cInfo)) {
$heading[] = array('text' => '' . $cInfo->countries_name . '');
$contents[] = array('align' => 'center', 'text' => '' . tep_image_button('button_edit.gif', IMAGE_EDIT) . ' ' . tep_image_button('button_delete.gif', IMAGE_DELETE) . '');
$contents[] = array('text' => ' ' . TEXT_INFO_COUNTRY_NAME . ' ' . $cInfo->countries_name);
$contents[] = array('text' => ' ' . TEXT_INFO_COUNTRY_CODE_2 . ' ' . $cInfo->countries_iso_code_2);
$contents[] = array('text' => ' ' . TEXT_INFO_COUNTRY_CODE_3 . ' ' . $cInfo->countries_iso_code_3);
$contents[] = array('text' => ' ' . TEXT_INFO_ADDRESS_FORMAT . ' ' . $cInfo->address_format_id);
}
break;
}
if ( (tep_not_null($heading)) && (tep_not_null($contents)) ) {
echo ' ' . "\n";
$box = new box;
echo $box->infoBox($heading, $contents);
echo ' | ' . "\n";
}
?>
|
|