Файл order_info.tpl > OpenCart документация разработчика. Документация разработчика opencart
class Affiliate { ... } | ||
class Amazon { ... } | ||
class Amazonus { ... } | ||
class Cache { ... } | ||
class Captcha { ... } | ||
class Cart { ... } | Класс реализующий работу корзины товаров | |
class CBA { ... } | ||
class Config { ... } | ||
class Currency { ... } | Класс для работы с валютами | |
class Customer { ... } | ||
class DB { ... } | Является прослойкой между драйвером базы данных и системой | |
class Document { ... } | Класс, предназначеный для работы с документом (на уровне html). Хранит в себе заголовок (title) страницы, meta-теги, ссылки на стили и скрипты страницы. | |
class Ebay { ... } | ||
class Encryption { ... } | ||
class Image { ... } | ||
class Language { ... } | Класс для работы с языковыми файлами | |
class Length { ... } | ||
class Log { ... } | ||
class Mail { ... } | Класс для работы с почтой | |
class Openbay { ... } | ||
class Pagination { ... } | ||
class Play { ... } | ||
class Request { ... } | Класс является оберткой над $_POST, $_GET, $_REQUEST | |
class Response { ... } | ||
class Session { ... } | ||
class Tax { ... } | ||
class Template { ... } | ||
class Url { ... } | Класс для работы с URL (генерация ссылок) | |
class User { ... } | ||
class Weight { ... } |
woo.zp.ua
Файл order_invoice.tpl > OpenCart документация разработчика
Содержимое файла:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?php echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n"; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="<?php echo $direction; ?>" lang="<?php echo $language; ?>" xml:lang="<?php echo $language; ?>"> <head> <title><?php echo $title; ?></title> <base href="<?php echo $base; ?>" /> <link rel="stylesheet" type="text/css" href="view/stylesheet/invoice.css" /> </head> <body> <?php foreach ($orders as $order) { ?> <div> <h2><?php echo $text_invoice; ?></h2> <table> <tr> <td><?php echo $order['store_name']; ?><br /> <?php echo $order['store_address']; ?><br /> <?php echo $text_telephone; ?> <?php echo $order['store_telephone']; ?><br /> <?php if ($order['store_fax']) { ?> <?php echo $text_fax; ?> <?php echo $order['store_fax']; ?><br /> <?php } ?> <?php echo $order['store_email']; ?><br /> <?php echo $order['store_url']; ?></td> <td align="right" valign="top"><table> <tr> <td><b><?php echo $text_date_added; ?></b></td> <td><?php echo $order['date_added']; ?></td> </tr> <?php if ($order['invoice_no']) { ?> <tr> <td><b><?php echo $text_invoice_no; ?></b></td> <td><?php echo $order['invoice_no']; ?></td> </tr> <?php } ?> <tr> <td><b><?php echo $text_order_id; ?></b></td> <td><?php echo $order['order_id']; ?></td> </tr> <tr> <td><b><?php echo $text_payment_method; ?></b></td> <td><?php echo $order['payment_method']; ?></td> </tr> <?php if ($order['shipping_method']) { ?> <tr> <td><b><?php echo $text_shipping_method; ?></b></td> <td><?php echo $order['shipping_method']; ?></td> </tr> <?php } ?> </table></td> </tr> </table> <table> <tr> <td><b><?php echo $text_to; ?></b></td> <td><b><?php echo $text_ship_to; ?></b></td> </tr> <tr> <td><?php echo $order['payment_address']; ?><br/> <?php echo $order['email']; ?><br/> <?php echo $order['telephone']; ?> <?php if ($order['payment_company_id']) { ?> <br/> <br/> <?php echo $text_company_id; ?> <?php echo $order['payment_company_id']; ?> <?php } ?> <?php if ($order['payment_tax_id']) { ?> <br/> <?php echo $text_tax_id; ?> <?php echo $order['payment_tax_id']; ?> <?php } ?></td> <td><?php echo $order['shipping_address']; ?></td> </tr> </table> <table> <tr> <td><b><?php echo $column_product; ?></b></td> <td><b><?php echo $column_model; ?></b></td> <td align="right"><b><?php echo $column_quantity; ?></b></td> <td align="right"><b><?php echo $column_price; ?></b></td> <td align="right"><b><?php echo $column_total; ?></b></td> </tr> <?php foreach ($order['product'] as $product) { ?> <tr> <td><?php echo $product['name']; ?> <?php foreach ($product['option'] as $option) { ?> <br /> <small> - <?php echo $option['name']; ?>: <?php echo $option['value']; ?></small> <?php } ?></td> <td><?php echo $product['model']; ?></td> <td align="right"><?php echo $product['quantity']; ?></td> <td align="right"><?php echo $product['price']; ?></td> <td align="right"><?php echo $product['total']; ?></td> </tr> <?php } ?> <?php foreach ($order['voucher'] as $voucher) { ?> <tr> <td align="left"><?php echo $voucher['description']; ?></td> <td align="left"></td> <td align="right">1</td> <td align="right"><?php echo $voucher['amount']; ?></td> <td align="right"><?php echo $voucher['amount']; ?></td> </tr> <?php } ?> <?php foreach ($order['total'] as $total) { ?> <tr> <td align="right" colspan="4"><b><?php echo $total['title']; ?>:</b></td> <td align="right"><?php echo $total['text']; ?></td> </tr> <?php } ?> </table> <?php if ($order['comment']) { ?> <table> <tr> <td><b><?php echo $column_comment; ?></b></td> </tr> <tr> <td><?php echo $order['comment']; ?></td> </tr> </table> <?php } ?> </div> <?php } ?> </body> </html>Комментарии
Please enable JavaScript to view the comments powered by Disqus. Oтзывы и предложения для OpenCart Документация разработчикаwoo.zp.ua
Файл order_info.tpl > OpenCart документация разработчика
Содержимое файла:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?php echo $header; ?><?php echo $column_left; ?><?php echo $column_right; ?> <div><?php echo $content_top; ?> <div> <?php foreach ($breadcrumbs as $breadcrumb) { ?> <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a> <?php } ?> </div> <h2><?php echo $heading_title; ?></h2> <table> <thead> <tr> <td colspan="2"><?php echo $text_order_detail; ?></td> </tr> </thead> <tbody> <tr> <td><?php if ($invoice_no) { ?> <b><?php echo $text_invoice_no; ?></b> <?php echo $invoice_no; ?><br /> <?php } ?> <b><?php echo $text_order_id; ?></b> #<?php echo $order_id; ?><br /> <b><?php echo $text_date_added; ?></b> <?php echo $date_added; ?></td> <td><?php if ($payment_method) { ?> <b><?php echo $text_payment_method; ?></b> <?php echo $payment_method; ?><br /> <?php } ?> <?php if ($shipping_method) { ?> <b><?php echo $text_shipping_method; ?></b> <?php echo $shipping_method; ?> <?php } ?></td> </tr> </tbody> </table> <table> <thead> <tr> <td><?php echo $text_payment_address; ?></td> <?php if ($shipping_address) { ?> <td><?php echo $text_shipping_address; ?></td> <?php } ?> </tr> </thead> <tbody> <tr> <td><?php echo $payment_address; ?></td> <?php if ($shipping_address) { ?> <td><?php echo $shipping_address; ?></td> <?php } ?> </tr> </tbody> </table> <table> <thead> <tr> <td><?php echo $column_name; ?></td> <td><?php echo $column_model; ?></td> <td><?php echo $column_quantity; ?></td> <td><?php echo $column_price; ?></td> <td><?php echo $column_total; ?></td> <?php if ($products) { ?> <td></td> <?php } ?> </tr> </thead> <tbody> <?php foreach ($products as $product) { ?> <tr> <td><?php echo $product['name']; ?> <?php foreach ($product['option'] as $option) { ?> <br /> <small> - <?php echo $option['name']; ?>: <?php echo $option['value']; ?></small> <?php } ?></td> <td><?php echo $product['model']; ?></td> <td><?php echo $product['quantity']; ?></td> <td><?php echo $product['price']; ?></td> <td><?php echo $product['total']; ?></td> <td><a href="<?php echo $product['return']; ?>"><img src="catalog/view/theme/default/image/return.png" alt="<?php echo $button_return; ?>" title="<?php echo $button_return; ?>" /></a></td> </tr> <?php } ?> <?php foreach ($vouchers as $voucher) { ?> <tr> <td><?php echo $voucher['description']; ?></td> <td></td> <td>1</td> <td><?php echo $voucher['amount']; ?></td> <td><?php echo $voucher['amount']; ?></td> <?php if ($products) { ?> <td></td> <?php } ?> </tr> <?php } ?> </tbody> <tfoot> <?php foreach ($totals as $total) { ?> <tr> <td colspan="3"></td> <td><b><?php echo $total['title']; ?>:</b></td> <td><?php echo $total['text']; ?></td> <?php if ($products) { ?> <td></td> <?php } ?> </tr> <?php } ?> </tfoot> </table> <?php if ($comment) { ?> <table> <thead> <tr> <td><?php echo $text_comment; ?></td> </tr> </thead> <tbody> <tr> <td><?php echo $comment; ?></td> </tr> </tbody> </table> <?php } ?> <?php if ($histories) { ?> <h3><?php echo $text_history; ?></h3> <table> <thead> <tr> <td><?php echo $column_date_added; ?></td> <td><?php echo $column_status; ?></td> <td><?php echo $column_comment; ?></td> </tr> </thead> <tbody> <?php foreach ($histories as $history) { ?> <tr> <td><?php echo $history['date_added']; ?></td> <td><?php echo $history['status']; ?></td> <td><?php echo $history['comment']; ?></td> </tr> <?php } ?> </tbody> </table> <?php } ?> <div> <div><a href="<?php echo $continue; ?>"><?php echo $button_continue; ?></a></div> </div> <?php echo $content_bottom; ?></div> <?php echo $footer; ?>Комментарии
Please enable JavaScript to view the comments powered by Disqus. Oтзывы и предложения для OpenCart Документация разработчикаwoo.zp.ua
Файл order.php > OpenCart документация разработчика
Содержимое файла:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<?php // Heading $_['heading_title'] = 'Orders'; // Text $_['text_amazon_order_id'] = 'Amazon Order ID:'; $_['text_name'] = 'Name:'; $_['text_success'] = 'Success: You have modified orders!'; $_['text_order_id'] = 'Order ID:'; $_['text_invoice_no'] = 'Invoice No.:'; $_['text_invoice_date'] = 'Invoice Date:'; $_['text_store_name'] = 'Store Name:'; $_['text_store_url'] = 'Store Url:'; $_['text_customer'] = 'Customer:'; $_['text_customer_group'] = 'Customer Group:'; $_['text_email'] = 'E-Mail:'; $_['text_telephone'] = 'Telephone:'; $_['text_fax'] = 'Fax:'; $_['text_shipping_method'] = 'Shipping Method:'; $_['text_payment_method'] = 'Payment Method:'; $_['text_total'] = 'Total:'; $_['text_reward'] = 'Reward Points:'; $_['text_order_status'] = 'Order Status:'; $_['text_comment'] = 'Comment:'; $_['text_affiliate'] = 'Affiliate:'; $_['text_commission'] = 'Commission:'; $_['text_ip'] = 'IP Address:'; $_['text_forwarded_ip'] = 'Forwarded IP:'; $_['text_user_agent'] = 'User Agent:'; $_['text_accept_language'] = 'Accept Language:'; $_['text_date_added'] = 'Date Added:'; $_['text_date_modified'] = 'Date Modified:'; $_['text_firstname'] = 'First Name:'; $_['text_lastname'] = 'Last Name:'; $_['text_company'] = 'Company:'; $_['text_company_id'] = 'Company ID:'; $_['text_tax_id'] = 'Tax ID:'; $_['text_address_1'] = 'Address 1:'; $_['text_address_2'] = 'Address 2:'; $_['text_postcode'] = 'Postcode:'; $_['text_city'] = 'City:'; $_['text_zone'] = 'Region / State:'; $_['text_zone_code'] = 'Region / State Code:'; $_['text_country'] = 'Country:'; $_['text_download'] = 'Order Downloads'; $_['text_invoice'] = 'Invoice'; $_['text_to'] = 'To'; $_['text_ship_to'] = 'Ship To (if different address)'; $_['text_missing'] = 'Missing Orders'; $_['text_default'] = 'Default'; $_['text_wait'] = 'Please Wait!'; $_['text_product'] = 'Add Product(s)'; $_['text_voucher'] = 'Add Voucher(s)'; $_['text_order'] = 'Order Details'; $_['text_generate'] = 'Generate'; $_['text_reward_add'] = 'Add Reward Points'; $_['text_reward_added'] = 'Success: Reward points added!'; $_['text_reward_remove'] = 'Remove Reward Points'; $_['text_reward_removed'] = 'Success: Reward points removed!'; $_['text_commission_add'] = 'Add Commission'; $_['text_commission_added'] = 'Success: Commission added!'; $_['text_commission_remove'] = 'Remove Commission'; $_['text_commission_removed'] = 'Success: Commission removed!'; $_['text_credit_add'] = 'Add Credit'; $_['text_credit_added'] = 'Success: Account credit added!'; $_['text_credit_remove'] = 'Remove Credit'; $_['text_credit_removed'] = 'Success: Account credit removed!'; $_['text_upload'] = 'Your file was successfully uploaded!'; $_['text_country_match'] = 'Country Match:<br /><span>Whether country of IP address matches billing address country (mismatch = higher risk).</span>'; $_['text_country_code'] = 'Country Code:<br /><span>Country Code of the IP address.</span>'; $_['text_high_risk_country'] = 'High Risk Country:<br /><span>Whether IP address or billing address country is in Ghana, Nigeria, or Vietnam.</span>'; $_['text_distance'] = 'Distance:<br /><span>Distance from IP address to Billing Location in kilometers (large distance = higher risk).</span>'; $_['text_ip_region'] = 'IP Region:<br /><span>Estimated State/Region of the IP address.</span>'; $_['text_ip_city'] = 'IP City:<br /><span>Estimated City of the IP address.</span>'; $_['text_ip_latitude'] = 'IP Latitude:<br /><span>Estimated Latitude of the IP address.</span>'; $_['text_ip_longitude'] = 'IP Longitude:<br /><span>Estimated Longitude of the IP address.</span>'; $_['text_ip_isp'] = 'ISP:<br /><span>ISP of the IP address.</span>'; $_['text_ip_org'] = 'IP Organization:<br /><span>Organization of the IP addres.</span>'; $_['text_ip_asnum'] = 'ASNUM:<br /><span>Estimated Autonomous System Number of the IP address.</span>'; $_['text_ip_user_type'] = 'IP User Type:<br /><span>Estimated user type of the IP address.</span>'; $_['text_ip_country_confidence'] = 'IP Country Confidence:<br /><span>Representing our confidence that the country location is correct.</span>'; $_['text_ip_region_confidence'] = 'IP Region Confidence:<br /><span>Representing our confidence that the region location is correct.</span>'; $_['text_ip_city_confidence'] = 'IP City Confidence:<br /><span>Representing our confidence that the city location is correct.</span>'; $_['text_ip_postal_confidence'] = 'IP Postal Confidence:<br /><span>Representing our confidence that the postal code location is correct.</span>'; $_['text_ip_postal_code'] = 'IP Postal Code:<br /><span>Estimated Postal Code of the IP address.</span>'; $_['text_ip_accuracy_radius'] = 'IP Accuracy Radius:<br /><span>The average distance between the actual location of the end user using the IP address and the location returned by the GeoIP City database, in miles.</span>'; $_['text_ip_net_speed_cell'] = 'IP Net Speed Cell:<br /><span>Estimated network type of the IP address.</span>'; $_['text_ip_metro_code'] = 'IP Metro Code:<br /><span>Estimated Metro Code of the IP address.</span>'; $_['text_ip_area_code'] = 'IP Area Code:<br /><span>Estimated Area Code of the IP address.</span>'; $_['text_ip_time_zone'] = 'IP Time Zone:<br /><span>Estimated Time Zone of the IP address.</span>'; $_['text_ip_region_name'] = 'IP Region Name:<br /><span>Estimated Region name of the IP address.</span>'; $_['text_ip_domain'] = 'IP Domain:<br /><span>Estimated domain of the IP address.</span>'; $_['text_ip_country_name'] = 'IP Country Name:<br /><span>Estimated Country name of the IP address.</span>'; $_['text_ip_continent_code'] = 'IP Continent Code:<br /><span>Estimated Continent code of the IP address.</span>'; $_['text_ip_corporate_proxy'] = 'IP Corporate Proxy:<br /><span>Whether the IP is an Corporate Proxy in the database or not.</span>'; $_['text_anonymous_proxy'] = 'Anonymous Proxy:<br /><span>Whether IP address is Anonymous Proxy (anonymous proxy = very high risk).</span>'; $_['text_proxy_score'] = 'Proxy Score:<br /><span>Likelihood of IP Address being an Open Proxy.</span>'; $_['text_is_trans_proxy'] = 'Is Transparent Proxy:<br /><span>Whether IP address is in our database of known transparent proxy servers, returned if forwardedIP is passed as an input.</span>'; $_['text_free_mail'] = 'Free Mail:<br /><span>Whether e-mail is from free e-mail provider (free e-mail = higher risk).</span>'; $_['text_carder_email'] = 'Carder Email:<br /><span>Whether e-mail is in database of high risk e-mails.</span>'; $_['text_high_risk_username'] = 'High Risk Username:<br /><span>Whether usernameMD5 input is in database of high risk usernames. Only returned if usernameMD5 is included in inputs.</span>'; $_['text_high_risk_password'] = 'High Risk Password:<br /><span>Whether passwordMD5 input is in database of high risk passwords. Only returned if passwordMD5 is included in inputs.</span>'; $_['text_bin_match'] = 'Bin Match:<br /><span>Whether country of issuing bank based on BIN number matches billing address country.</span>'; $_['text_bin_country'] = 'Bin Country:<br /><span>Country Code of the bank which issued the credit card based on BIN number.</span>'; $_['text_bin_name_match'] = 'Bin Name Match:<br /><span>Whether name of issuing bank matches inputted BIN name. A return value of Yes provides a positive indication that cardholder is in possession of credit card.</span>'; $_['text_bin_name'] = 'Bin Name:<br /><span>Name of the bank which issued the credit card based on BIN number. Available for approximately 96% of BIN numbers.</span>'; $_['text_bin_phone_match'] = 'Bin Phone Match:<br /><span>Whether customer service phone number matches inputed BIN Phone. A return value of Yes provides a positive indication that cardholder is in possession of credit card.</span>'; $_['text_bin_phone'] = 'Bin Phone:<br /><span>Customer service phone number listed on back of credit card. Available for approximately 75% of BIN numbers. In some cases phone number returned may be outdated.</span>'; $_['text_customer_phone_in_billing_location'] = 'Customer Phone Number in Billing Location:<br /><span>Whether the customer phone number is in the billing zip code. A return value of Yes provides a positive indication that the phone number listed belongs to the cardholder. A return value of No indicates that the phone number may be in a different area, or may not be listed in our database. NotFound is returned when the phone number prefix cannot be found in our database at all. Currently we only support US Phone numbers.</span>'; $_['text_ship_forward'] = 'Shipping Forward:<br /><span>Whether shipping address is in database of known mail drops.</span>'; $_['text_city_postal_match'] = 'City Postal Match:<br /><span>Whether billing city and state match zipcode. Currently available for US addresses only, returns empty string outside the US.</span>'; $_['text_ship_city_postal_match'] = 'Shipping City Postal Match:<br /><span>Whether shipping city and state match zipcode. Currently available for US addresses only, returns empty string outside the US.</span>'; $_['text_score'] = 'Score:<br /><span>Overall fraud score based on outputs listed above. This is the original fraud score, and is based on a simple formula. It has been replaced with risk score (see below), but is kept for backwards compatibility.</span>'; $_['text_explanation'] = 'Explanation:<br /><span>A brief explanation of the score, detailing what factors contributed to it, according to our formula. Please note this corresponds to the score, not the riskScore.</span>'; $_['text_risk_score'] = 'Risk Score:<br /><span>New fraud score representing the estimated probability that the order is fraud, based off of analysis of past minFraud transactions. Requires an upgrade for clients who signed up before February 2007.</span>'; $_['text_queries_remaining'] = 'Queries Remaining:<br /><span>Number of queries remaining in your account, can be used to alert you when you may need to add more queries to your account.</span>'; $_['text_maxmind_id'] = 'Maxmind ID:<br /><span>Unique identifier, used to reference transactions when reporting fraudulent activity back to MaxMind. This reporting will help MaxMind improve its service to you and will enable a planned feature to customize the fraud scoring formula based on your chargeback history.</span>'; $_['text_error'] = 'Error:<br /><span>Returns an error string with a warning message or a reason why the request failed.</span>'; // Column $_['column_order_id'] = 'Order ID'; $_['column_customer'] = 'Customer'; $_['column_status'] = 'Status'; $_['column_date_added'] = 'Date Added'; $_['column_date_modified'] = 'Date Modified'; $_['column_total'] = 'Total'; $_['column_product'] = 'Product'; $_['column_model'] = 'Model'; $_['column_quantity'] = 'Quantity'; $_['column_price'] = 'Unit Price'; $_['column_download'] = 'Download Name'; $_['column_filename'] = 'Filename'; $_['column_remaining'] = 'Remaining Downloads'; $_['column_comment'] = 'Comment'; $_['column_notify'] = 'Customer Notified'; $_['column_action'] = 'Action'; // Entry $_['entry_store'] = 'Store:'; $_['entry_customer'] = 'Customer:'; $_['entry_customer_group'] = 'Customer Group:'; $_['entry_firstname'] = 'First Name:'; $_['entry_lastname'] = 'Last Name:'; $_['entry_email'] = 'E-Mail:'; $_['entry_telephone'] = 'Telephone:'; $_['entry_fax'] = 'Fax:'; $_['entry_address'] = 'Choose Address:'; $_['entry_company'] = 'Company:'; $_['entry_company_id'] = 'Company ID:'; $_['entry_tax_id'] = 'Tax ID:'; $_['entry_address_1'] = 'Address 1:'; $_['entry_address_2'] = 'Address 2:'; $_['entry_city'] = 'City:'; $_['entry_postcode'] = 'Postcode:'; $_['entry_country'] = 'Country:'; $_['entry_zone'] = 'Region / State:'; $_['entry_zone_code'] = 'Region / State Code:'; $_['entry_product'] = 'Choose Product:'; $_['entry_option'] = 'Choose Option(s):'; $_['entry_quantity'] = 'Quantity:'; $_['entry_to_name'] = 'Recipient\'s Name:'; $_['entry_to_email'] = 'Recipient\'s Email:'; $_['entry_from_name'] = 'Senders Name:'; $_['entry_from_email'] = 'Senders Email:'; $_['entry_theme'] = 'Gift Certificate Theme:'; $_['entry_message'] = 'Message:'; $_['entry_amount'] = 'Amount:'; $_['entry_affiliate'] = 'Affiliate:'; $_['entry_order_status'] = 'Order Status:'; $_['entry_notify'] = 'Notify Customer:'; $_['entry_comment'] = 'Comment:'; $_['entry_shipping'] = 'Shipping Method:'; $_['entry_payment'] = 'Payment Method:'; $_['entry_coupon'] = 'Coupon:'; $_['entry_voucher'] = 'Voucher:'; $_['entry_reward'] = 'Reward:'; // Error $_['error_warning'] = 'Warning: Please check the form carefully for errors!'; $_['error_permission'] = 'Warning: You do not have permission to modify orders!'; $_['error_firstname'] = 'First Name must be between 1 and 32 characters!'; $_['error_lastname'] = 'Last Name must be between 1 and 32 characters!'; $_['error_email'] = 'E-Mail Address does not appear to be valid!'; $_['error_telephone'] = 'Telephone must be between 3 and 32 characters!'; $_['error_password'] = 'Password must be between 3 and 20 characters!'; $_['error_confirm'] = 'Password and password confirmation do not match!'; $_['error_company_id'] = 'Company ID required!'; $_['error_tax_id'] = 'Tax ID required!'; $_['error_vat'] = 'VAT number is invalid!'; $_['error_address_1'] = 'Address 1 must be between 3 and 128 characters!'; $_['error_city'] = 'City must be between 3 and 128 characters!'; $_['error_postcode'] = 'Postcode must be between 2 and 10 characters for this country!'; $_['error_country'] = 'Please select a country!'; $_['error_zone'] = 'Please select a region / state!'; $_['error_shipping'] = 'Warning: Shipping method required!'; $_['error_payment'] = 'Warning: Payment method required!'; $_['error_upload'] = 'Upload required!'; $_['error_filename'] = 'Filename must be between 3 and 128 characters!'; $_['error_filetype'] = 'Invalid file type!'; $_['error_action'] = 'Warning: Could not complete this action!'; ?>Комментарии
Please enable JavaScript to view the comments powered by Disqus. Oтзывы и предложения для OpenCart Документация разработчикаwoo.zp.ua