|
|
|
|
|
|
currencies_id) ) {
echo ' ' . "\n";
} else {
echo ' ' . "\n";
}
if (DEFAULT_CURRENCY == $currency['code']) {
echo ' ' . $currency['title'] . ' (' . TEXT_DEFAULT . ') | ' . "\n";
} else {
echo ' ' . $currency['title'] . ' | ' . "\n";
}
?>
|
|
currencies_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($currency_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, $HTTP_GET_VARS['page'], TEXT_DISPLAY_NUMBER_OF_CURRENCIES); ?> |
display_links($currency_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, MAX_DISPLAY_PAGE_LINKS, $HTTP_GET_VARS['page']); ?> |
currencies_id . '&action=update') . '">' . tep_image_button('button_update_currencies.gif', IMAGE_UPDATE_CURRENCIES) . ''; } ?> |
currencies_id . '&action=new') . '">' . tep_image_button('button_new_currency.gif', IMAGE_NEW_CURRENCY) . ''; ?> |
|
|
'' . TEXT_INFO_HEADING_NEW_CURRENCY . '');
$contents = array('form' => tep_draw_form('currencies', FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . (isset($cInfo) ? '&cID=' . $cInfo->currencies_id : '') . '&action=insert'));
$contents[] = array('text' => TEXT_INFO_INSERT_INTRO);
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_TITLE . ' ' . tep_draw_input_field('title'));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_CODE . ' ' . tep_draw_input_field('code'));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_SYMBOL_LEFT . ' ' . tep_draw_input_field('symbol_left'));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_SYMBOL_RIGHT . ' ' . tep_draw_input_field('symbol_right'));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_DECIMAL_POINT . ' ' . tep_draw_input_field('decimal_point'));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_THOUSANDS_POINT . ' ' . tep_draw_input_field('thousands_point'));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_DECIMAL_PLACES . ' ' . tep_draw_input_field('decimal_places'));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_VALUE . ' ' . tep_draw_input_field('value'));
$contents[] = array('text' => ' ' . tep_draw_checkbox_field('default') . ' ' . TEXT_INFO_SET_AS_DEFAULT);
$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_CURRENCY . '');
$contents = array('form' => tep_draw_form('currencies', FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $cInfo->currencies_id . '&action=save'));
$contents[] = array('text' => TEXT_INFO_EDIT_INTRO);
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_TITLE . ' ' . tep_draw_input_field('title', $cInfo->title));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_CODE . ' ' . tep_draw_input_field('code', $cInfo->code));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_SYMBOL_LEFT . ' ' . tep_draw_input_field('symbol_left', $cInfo->symbol_left));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_SYMBOL_RIGHT . ' ' . tep_draw_input_field('symbol_right', $cInfo->symbol_right));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_DECIMAL_POINT . ' ' . tep_draw_input_field('decimal_point', $cInfo->decimal_point));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_THOUSANDS_POINT . ' ' . tep_draw_input_field('thousands_point', $cInfo->thousands_point));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_DECIMAL_PLACES . ' ' . tep_draw_input_field('decimal_places', $cInfo->decimal_places));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_VALUE . ' ' . tep_draw_input_field('value', $cInfo->value));
if (DEFAULT_CURRENCY != $cInfo->code) $contents[] = array('text' => ' ' . tep_draw_checkbox_field('default') . ' ' . TEXT_INFO_SET_AS_DEFAULT);
$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_CURRENCY . '');
$contents[] = array('text' => TEXT_INFO_DELETE_INTRO);
$contents[] = array('text' => ' ' . $cInfo->title . '');
$contents[] = array('align' => 'center', 'text' => ' ' . (($remove_currency) ? '' . tep_image_button('button_delete.gif', IMAGE_DELETE) . '' : '') . ' ' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . '');
break;
default:
if (is_object($cInfo)) {
$heading[] = array('text' => '' . $cInfo->title . '');
$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_CURRENCY_TITLE . ' ' . $cInfo->title);
$contents[] = array('text' => TEXT_INFO_CURRENCY_CODE . ' ' . $cInfo->code);
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_SYMBOL_LEFT . ' ' . $cInfo->symbol_left);
$contents[] = array('text' => TEXT_INFO_CURRENCY_SYMBOL_RIGHT . ' ' . $cInfo->symbol_right);
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_DECIMAL_POINT . ' ' . $cInfo->decimal_point);
$contents[] = array('text' => TEXT_INFO_CURRENCY_THOUSANDS_POINT . ' ' . $cInfo->thousands_point);
$contents[] = array('text' => TEXT_INFO_CURRENCY_DECIMAL_PLACES . ' ' . $cInfo->decimal_places);
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_LAST_UPDATED . ' ' . tep_date_short($cInfo->last_updated));
$contents[] = array('text' => TEXT_INFO_CURRENCY_VALUE . ' ' . number_format($cInfo->value, 8));
$contents[] = array('text' => ' ' . TEXT_INFO_CURRENCY_EXAMPLE . ' ' . $currencies->format('30', false, DEFAULT_CURRENCY) . ' = ' . $currencies->format('30', true, $cInfo->code));
}
break;
}
if ( (tep_not_null($heading)) && (tep_not_null($contents)) ) {
echo ' ' . "\n";
$box = new box;
echo $box->infoBox($heading, $contents);
echo ' | ' . "\n";
}
?>
|
|