~katiekitty/+junk/solidstate

« back to all changes in this revision

Viewing changes to solidstate/trunk/manager/application.conf

  • Committer: root
  • Date: 2010-01-13 07:44:31 UTC
  • Revision ID: root@ds3-vamp.cs-monitor.cz.cc-20100113074431-kt8ceoeznpjg22x7
Reviving the project

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<application main_template="manager_content.tpl"
 
2
             controller="manager_content.php"
 
3
             access_denied_template="manager_AccessDenied.tpl"
 
4
             authenticate_user="true"
 
5
             application_name="SolidState v0.5 Beta">
 
6
 
 
7
  <!-- ===== -->
 
8
  <!-- Pages -->
 
9
  <!-- ===== -->
 
10
  <pages home_page="home" login_page="login">
 
11
 
 
12
    <!-- ========== -->
 
13
    <!-- Login Page -->
 
14
    <!-- ========== -->
 
15
 
 
16
    <page name="login"
 
17
          title="SolidState Manager v0.5 Beta - [LOGIN]"
 
18
          class="LoginPage"
 
19
          class_file="manager/pages/LoginPage.class.php"
 
20
          url="manager_content.php?page=login">
 
21
      <templates>
 
22
        <template name="default" file="manager_LoginPage.tpl"/>
 
23
      </templates>
 
24
    </page>
 
25
 
 
26
    <!-- ========= -->
 
27
    <!-- Home Page -->
 
28
    <!-- ========= -->
 
29
 
 
30
    <page name="home"
 
31
          title="[HOME]"
 
32
          class="HomePage"
 
33
          class_file="manager/pages/HomePage.class.php"
 
34
          url="manager_content.php?page=home">
 
35
      <templates>
 
36
        <template name="default" file="manager_HomePage.tpl"/>
 
37
      </templates>
 
38
    </page>
 
39
 
 
40
    <!-- =================== -->
 
41
    <!-- Configuration Pages -->
 
42
    <!-- =================== -->
 
43
 
 
44
    <page name="config"
 
45
          title="[ADMINISTRATION]"
 
46
          class="ConfigurationPage"
 
47
          parent="home"
 
48
          url="manager_content.php?page=config"/>
 
49
 
 
50
    <page name="config_users"
 
51
          title="[USERS]"
 
52
          class="ConfigureUsersPage"
 
53
          class_file="manager/pages/ConfigureUsersPage.class.php"
 
54
          parent="config"
 
55
          url="manager_content.php?page=config_users">
 
56
      <templates>
 
57
        <template name="default" file="manager_ConfigureUsers.tpl"/>
 
58
        <template name="access" file="manager_AccessDenied.tpl"/>
 
59
      </templates>
 
60
    </page>
 
61
 
 
62
    <page name="config_new_user"
 
63
          title="[NEW_USER]"
 
64
          class="ConfigureNewUserPage"
 
65
          class_file="manager/pages/ConfigureNewUserPage.class.php"
 
66
          parent="config"
 
67
          url="manager_content.php?page=config_new_user">
 
68
      <templates>
 
69
        <template name="default" file="manager_ConfigureNewUserPage.tpl"/>
 
70
        <template name="confirm" file="manager_ConfigureNewUserPage_confirm.tpl"/>
 
71
        <template name="receipt" file="manager_ConfigureNewUserPage_receipt.tpl"/>
 
72
        <template name="access"  file="manager_AccessDenied.tpl"/>
 
73
      </templates>
 
74
    </page>
 
75
 
 
76
    <page name="config_edit_user"
 
77
          title="[EDIT_USER]"
 
78
          class="ConfigureEditUserPage"
 
79
          class_file="manager/pages/ConfigureEditUserPage.class.php"
 
80
          parent="config_users"
 
81
          url="manager_content.php?page=config_edit_user">
 
82
      <templates>
 
83
        <template name="default" file="manager_ConfigureEditUserPage.tpl"/>
 
84
        <template name="del_confirm" file="manager_ConfigureEditUserPage_confdelete.tpl"/>
 
85
      </templates>
 
86
      <urlfields>
 
87
        <urlfield name="user" validator="user" required="true"/>
 
88
      </urlfields>
 
89
    </page>
 
90
 
 
91
    <page name="log"
 
92
          title="[SOLIDSTATE_LOG]"
 
93
          class="LogPage"
 
94
          class_file="manager/pages/LogPage.class.php"
 
95
          parent="config"
 
96
          url="manager_content.php?page=log">
 
97
      <templates>
 
98
        <template name="default" file="manager_LogPage.tpl"/>
 
99
      </templates>
 
100
    </page>
 
101
 
 
102
    <page name="view_log_message"
 
103
          title="[VIEW_LOG_MESSAGE]"
 
104
          class="ViewLogMessagePage"
 
105
          class_file="manager/pages/ViewLogMessagePage.class.php"
 
106
          parent="log"
 
107
          url="manager_content.php?page=view_log_message">
 
108
      <templates>
 
109
        <template name="default" file="manager_ViewLogMessagePage.tpl"/>
 
110
      </templates>
 
111
      <urlfields>
 
112
        <urlfield name="log" validator="log" required="true"/>
 
113
      </urlfields>
 
114
    </page>
 
115
 
 
116
    <page name="settings"
 
117
          title="[SETTINGS]"
 
118
          class="SettingsPage"
 
119
          class_file="manager/pages/SettingsPage.class.php"
 
120
          parent="config"
 
121
          url="manager_content.php?page=settings">
 
122
      <templates>
 
123
        <template name="default" file="manager_Settings.tpl"/>
 
124
      </templates>
 
125
    </page>
 
126
 
 
127
    <page name="modules"
 
128
          title="[MODULES]"
 
129
          class="ModulesPage"
 
130
          class_file="manager/pages/ModulesPage.class.php"
 
131
          parent="config"
 
132
          url="manager_content.php?page=modules">
 
133
      <templates>
 
134
        <template name="default" file="manager_Modules.tpl"/>
 
135
      </templates>
 
136
    </page>
 
137
 
 
138
    <!-- ======================== -->
 
139
    <!-- Product & Services Pages -->
 
140
    <!-- ======================== -->
 
141
 
 
142
    <page name="services"
 
143
          title="[PRODUCTS_SERVICES]"
 
144
          class="ServicesPage"
 
145
          class_file="manager/pages/ServicesPage.class.php"
 
146
          parent="home"
 
147
          url="manager_content.php?page=services">
 
148
      <templates>
 
149
        <template name="default" file="manager_Services.tpl"/>
 
150
      </templates>
 
151
    </page>
 
152
 
 
153
    <page name="services_web_hosting"
 
154
          title="[WEB_HOSTING_SERVICES]"
 
155
          class="ServicesHostingServicesPage"
 
156
          class_file="manager/pages/ServicesHostingServicesPage.class.php"
 
157
          parent="services"
 
158
          url="manager_content.php?page=services_web_hosting">
 
159
      <templates>
 
160
        <template name="default" file="manager_ServicesHostingServicesPage.tpl"/>
 
161
      </templates>
 
162
    </page>
 
163
 
 
164
    <page name="services_view_hosting_service"
 
165
          title="[VIEW_HOSTING_SERVICES]"
 
166
          class="ViewHostingServicePage"
 
167
          class_file="manager/pages/ViewHostingServicePage.class.php"
 
168
          parent="services_web_hosting"
 
169
          url="manager_content.php?page=services_view_hosting_service">
 
170
      <templates>
 
171
        <template name="default" file="manager_ViewHostingServicePage.tpl"/>
 
172
      </templates>
 
173
      <urlfields>
 
174
        <urlfield name="hservice" validator="hosting" required="true"/>
 
175
      </urlfields>
 
176
    </page>
 
177
 
 
178
    <page name="services_edit_hosting"
 
179
          title="[EDIT_HOSTING_SERVICE]"
 
180
          class="EditHostingServicePage"
 
181
          class_file="manager/pages/EditHostingServicePage.class.php"
 
182
          parent="services_web_hosting"
 
183
          url="manager_content.php?page=services_edit_hosting">
 
184
      <templates>
 
185
        <template name="default" file="manager_EditHostingServicePage.tpl"/>
 
186
      </templates>
 
187
      <urlfields>
 
188
        <urlfield name="hservice" validator="hosting" required="true"/>
 
189
      </urlfields>
 
190
    </page>
 
191
 
 
192
    <page name="services_delete_hosting"
 
193
          title="[DELETE_HOSTING_SERVICE]"
 
194
          class="DeleteHostingServicePage"
 
195
          class_file="manager/pages/DeleteHostingServicePage.class.php"
 
196
          parent="services_web_hosting"
 
197
          url="manager_content.php?page=services_delete_hosting">
 
198
      <templates>
 
199
        <template name="default" file="manager_DeleteHostingServicePage.tpl"/>
 
200
      </templates>
 
201
      <urlfields>
 
202
        <urlfield name="hservice" validator="hosting" required="true"/>
 
203
      </urlfields>
 
204
    </page>
 
205
 
 
206
    <page name="services_new_hosting"
 
207
          title="[NEW_HOSTING_SERVICE]"
 
208
          class="ServicesNewHosting"
 
209
          class_file="manager/pages/ServicesNewHostingPage.class.php"
 
210
          parent="services_web_hosting"
 
211
          url="manager_content.php?page=services_new_hosting">
 
212
      <templates>
 
213
        <template name="default" file="manager_ServicesNewHostingPage.tpl"/>
 
214
      </templates>
 
215
    </page>
 
216
 
 
217
    <page name="services_domain_services"
 
218
          title="[DOMAIN_SERVICES]"
 
219
          class="DomainServicesPage"
 
220
          class_file="manager/pages/DomainServicesPage.class.php"
 
221
          parent="services"
 
222
          url="manager_content.php?page=services_domain_services">
 
223
      <templates>
 
224
        <template name="default" file="manager_DomainServicesPage.tpl"/>
 
225
      </templates>
 
226
    </page>
 
227
 
 
228
    <page name="services_view_domain_service"
 
229
          title="[VIEW]"
 
230
          class="ViewDomainServicePage"
 
231
          class_file="manager/pages/ViewDomainServicePage.class.php"
 
232
          parent="services_domain_services"
 
233
          url="manager_content.php?page=services_view_domain_service">
 
234
      <templates>
 
235
        <template name="default" file="manager_ViewDomainServicePage.tpl"/>
 
236
      </templates>
 
237
      <urlfields>
 
238
        <urlfield name="dservice" validator="domainservice" required="true"/>
 
239
      </urlfields>
 
240
    </page>
 
241
 
 
242
    <page name="services_edit_domain_service"
 
243
          title="[EDIT]"
 
244
          class="EditDomainServicePage"
 
245
          class_file="manager/pages/EditDomainServicePage.class.php"
 
246
          parent="services_domain_services"
 
247
          url="manager_content.php?page=services_edit_domain_service">
 
248
      <templates>
 
249
        <template name="default" file="manager_EditDomainServicePage.tpl"/>
 
250
      </templates>
 
251
      <urlfields>
 
252
        <urlfield name="dservice" validator="domainservice" required="true"/>
 
253
      </urlfields>
 
254
    </page>
 
255
 
 
256
    <page name="services_delete_domain_service"
 
257
          title="[DELETE]"
 
258
          class="DeleteDomainServicePage"
 
259
          class_file="manager/pages/DeleteDomainServicePage.class.php"
 
260
          parent="services_domain_service"
 
261
          url="manager_content.php?page=services_delete_domain_service">
 
262
      <templates>
 
263
        <template name="default" file="manager_DeleteDomainServicePage.tpl"/>
 
264
      </templates>
 
265
      <urlfields>
 
266
        <urlfield name="dservice" validator="domainservice" required="true"/>
 
267
      </urlfields>
 
268
    </page>
 
269
 
 
270
    <page name="services_new_domain_service"
 
271
          title="[NEW_DOMAIN_SERVICE]"
 
272
          class="NewDomainServicePage"
 
273
          class_file="manager/pages/NewDomainServicePage.class.php"
 
274
          parent="services_domain_services"
 
275
          url="manager_content.php?page=services_new_domain_service">
 
276
      <templates>
 
277
        <template name="default" file="manager_NewDomainServicePage.tpl"/>
 
278
        <template name="confirm" file="manager_NewDomainServicePage_confirm.tpl"/>
 
279
      </templates>
 
280
    </page>
 
281
 
 
282
    <page name="services_products"
 
283
          title="[OTHER_PRODUCTS]"
 
284
          class="ProductsPage"
 
285
          class_file="manager/pages/ProductsPage.class.php"
 
286
          parent="services"
 
287
          url="manager_content.php?page=services_products">
 
288
      <templates>
 
289
        <template name="default" file="manager_ProductsPage.tpl"/>
 
290
      </templates>
 
291
    </page>
 
292
 
 
293
    <page name="services_new_product"
 
294
          title="[NEW_PRODUCT]"
 
295
          class="NewProductPage"
 
296
          class_file="manager/pages/NewProductPage.class.php"
 
297
          parent="services_products"
 
298
          url="manager_content.php?page=services_new_product">
 
299
      <templates>
 
300
        <template name="default" file="manager_NewProductPage.tpl"/>
 
301
        <template name="confirm" file="manager_NewProductPage_confirm.tpl"/>
 
302
      </templates>
 
303
    </page>
 
304
 
 
305
    <page name="services_view_product"
 
306
          title="[VIEW_PRODUCT]"
 
307
          class="ViewProductPage"
 
308
          class_file="manager/pages/ViewProductPage.class.php"
 
309
          parent="services_products"
 
310
          url="manager_content.php?page=services_view_product">
 
311
      <templates>
 
312
        <template name="default" file="manager_ViewProductPage.tpl"/>
 
313
      </templates>
 
314
      <urlfields>
 
315
        <urlfield name="product" validator="product" required="true"/>
 
316
      </urlfields>
 
317
    </page>
 
318
 
 
319
    <page name="services_edit_product"
 
320
          title="[EDIT_PRODUCT]"
 
321
          class="EditProductPage"
 
322
          class_file="manager/pages/EditProductPage.class.php"
 
323
          parent="services_products"
 
324
          url="manager_content.php?page=services_edit_product">
 
325
      <templates>
 
326
        <template name="default" file="manager_EditProductPage.tpl"/>
 
327
      </templates>
 
328
      <urlfields>
 
329
        <urlfield name="product" validator="product" required="true"/>
 
330
      </urlfields>
 
331
    </page>
 
332
 
 
333
    <page name="services_delete_product"
 
334
          title="[DELETE_PRODUCT_TITLE]"
 
335
          class="DeleteProductPage"
 
336
          class_file="manager/pages/DeleteProductPage.class.php"
 
337
          parent="services_product"
 
338
          url="manager_content.php?page=services_delete_product">
 
339
      <templates>
 
340
        <template name="default" file="manager_DeleteProductPage.tpl"/>
 
341
      </templates>
 
342
      <urlfields>
 
343
        <urlfield name="product" validator="product" required="true"/>
 
344
      </urlfields>
 
345
    </page>
 
346
 
 
347
    <page name="addon"
 
348
          title="[ADD_ON_PRODUCTS_AND_SERVICES]"
 
349
          class="AddOnPage"
 
350
          class_file="manager/pages/AddOnPage.class.php"
 
351
          parent="services"
 
352
          url="manager_content.php?page=addon">
 
353
      <templates>
 
354
        <template name="default" file="manager_AddOnPage.tpl"/>
 
355
      </templates>
 
356
    </page>          
 
357
 
 
358
    <page name="services_ip_manager"
 
359
          title="[IP_ADDRESS_MANAGER]"
 
360
          class="IPManagerPage"
 
361
          class_file="manager/pages/IPManagerPage.class.php"
 
362
          parent="services"
 
363
          url="manager_content.php?page=services_ip_manager">
 
364
      <templates>
 
365
        <template name="default" file="manager_IPManagerPage.tpl"/>
 
366
      </templates>
 
367
      <urlfields>
 
368
        <urlfield name="ip" validator="ipaddressdb"/>
 
369
      </urlfields>
 
370
    </page>
 
371
 
 
372
    <page name="services_add_ip"
 
373
          title="[ADD_IP_ADDRESSES]"
 
374
          class="AddIPAddressPage"
 
375
          class_file="manager/pages/AddIPAddressPage.class.php"
 
376
          parent="services_view_server"
 
377
          url="manager_content.php?page=services_add_ip">
 
378
      <templates>
 
379
        <template name="default" file="manager_AddIPAddressPage.tpl"/>
 
380
        <template name="confirm" file="manager_AddIPAddressPage_confirm.tpl"/>
 
381
      </templates>
 
382
      <urlfields>
 
383
        <urlfield name="server" validator="server" required="true"/>
 
384
      </urlfields>
 
385
    </page>
 
386
 
 
387
    <page name="services_servers"
 
388
          title="[SERVERS]"
 
389
          class="ServersPage"
 
390
          class_file="manager/pages/ServersPage.class.php"
 
391
          parent="services"
 
392
          url="manager_content.php?page=services_servers">
 
393
      <templates>
 
394
        <template name="default" file="manager_ServersPage.tpl"/>
 
395
      </templates>
 
396
    </page>
 
397
 
 
398
    <page name="services_add_server"
 
399
          title="[ADD_SERVER]"
 
400
          class="AddServerPage"
 
401
          class_file="manager/pages/AddServerPage.class.php"
 
402
          parent="services_servers"
 
403
          url="manager_content.php?page=services_add_server">
 
404
      <templates>
 
405
        <template name="default" file="manager_AddServerPage.tpl"/>
 
406
      </templates>
 
407
    </page>
 
408
 
 
409
    <page name="services_view_server"
 
410
          title="{hostname}"
 
411
          class="ViewServerPage"
 
412
          class_file="manager/pages/ViewServerPage.class.php"
 
413
          parent="services_servers"
 
414
          url="manager_content.php?page=services_view_server">
 
415
      <templates>
 
416
        <template name="default" file="manager_ViewServerPage.tpl"/>
 
417
      </templates>
 
418
      <urlfields>
 
419
        <urlfield name="server" validator="server" required="true"/>
 
420
        <urlfield name="ip" validator="ipaddressdb"/>
 
421
      </urlfields>
 
422
    </page>
 
423
 
 
424
    <page name="services_edit_server"
 
425
          title="[EDIT]"
 
426
          class="EditServerPage"
 
427
          class_file="manager/pages/EditServerPage.class.php"
 
428
          parent="services_view_server"
 
429
          url="manager_content.php?page=services_edit_server">
 
430
      <templates>
 
431
        <template name="default" file="manager_EditServerPage.tpl"/>
 
432
      </templates>
 
433
      <urlfields>
 
434
        <urlfield name="server" validator="server" required="true"/>
 
435
      </urlfields>
 
436
    </page>
 
437
 
 
438
    <page name="services_delete_server"
 
439
          title="[DELETE]"
 
440
          class="DeleteServerPage"
 
441
          class_file="manager/pages/DeleteServerPage.class.php"
 
442
          parent="services_view_server"
 
443
          url="manager_content.php?page=services_delete_server">
 
444
      <templates>
 
445
        <template name="default" file="manager_DeleteServerPage.tpl"/>
 
446
      </templates>
 
447
      <urlfields>
 
448
        <urlfield name="server" validator="server" required="true"/>
 
449
      </urlfields>
 
450
    </page>
 
451
 
 
452
    <!-- ============== -->
 
453
    <!-- Accounts Pages -->
 
454
    <!-- ============== -->
 
455
 
 
456
    <page name="accounts"
 
457
          title="[ACCOUNTS]"
 
458
          class="AccountsPage"
 
459
          class_file="manager/pages/AccountsPage.class.php"
 
460
          parent="home"
 
461
          url="manager_content.php?page=accounts">
 
462
      <templates>
 
463
        <template name="default" file="manager_AccountsPage.tpl"/>
 
464
      </templates>
 
465
    </page>
 
466
 
 
467
    <page name="accounts_browse"
 
468
          title="[ACTIVE_ACCOUNTS]"
 
469
          class="BrowseAccountsPage"
 
470
          class_file="manager/pages/BrowseAccountsPage.class.php"
 
471
          parent="accounts"
 
472
          url="manager_content.php?page=accounts_browse">
 
473
      <templates>
 
474
        <template name="default" file="manager_BrowseAccounts.tpl"/>
 
475
      </templates>
 
476
    </page>
 
477
 
 
478
    <page name="accounts_browse_pending"
 
479
          title="[PENDING_ACCOUNTS]"
 
480
          class="PendingAccountsPage"
 
481
          class_file="manager/pages/PendingAccountsPage.class.php"
 
482
          parent="accounts"
 
483
          url="manager_content.php?page=accounts_browse_pending">
 
484
      <templates>
 
485
        <template name="default" file="manager_PendingAccounts.tpl"/>
 
486
      </templates>
 
487
    </page>
 
488
 
 
489
    <page name="accounts_browse_inactive"
 
490
          title="[INACTIVE_ACCOUNTS]"
 
491
          class="InactiveAccountsPage"
 
492
          class_file="manager/pages/InactiveAccountsPage.class.php"
 
493
          parent="accounts"
 
494
          url="manager_content.php?page=accounts_browse_inactive">
 
495
      <templates>
 
496
        <template name="default" file="manager_InactiveAccounts.tpl"/>
 
497
      </templates>
 
498
    </page>
 
499
 
 
500
    <page name="accounts_view_account"
 
501
          title="{account_name}"
 
502
          class="ViewAccountPage"
 
503
          class_file="manager/pages/ViewAccountPage.class.php"
 
504
          parent="accounts"
 
505
          url="manager_content.php?page=accounts_view_account">
 
506
      <templates>
 
507
        <template name="default" file="manager_ViewAccountPage.tpl"/>
 
508
      </templates>
 
509
      <urlfields>
 
510
        <urlfield name="account" validator="account" required="true"/>
 
511
      </urlfields>
 
512
    </page>
 
513
 
 
514
    <page name="accounts_edit_account"
 
515
          title="[EDIT_ACCOUNT]"
 
516
          class="EditAccountPage"
 
517
          class_file="manager/pages/EditAccountPage.class.php"
 
518
          parent="accounts_browse"
 
519
          url="manager_content.php?page=accounts_edit_account">
 
520
      <templates>
 
521
        <template name="default" file="manager_EditAccountPage.tpl"/>
 
522
      </templates>
 
523
      <urlfields>
 
524
        <urlfield name="account" validator="account" required="true"/>
 
525
      </urlfields>
 
526
    </page>
 
527
 
 
528
    <page name="accounts_delete_account"
 
529
          title="[DELETE_ACCOUNT_TITLE]"
 
530
          class="DeleteAccountPage"
 
531
          class_file="manager/pages/DeleteAccountPage.class.php"
 
532
          parent="accounts_browse"
 
533
          url="manager_content.php?page=accounts_delete_account">
 
534
      <templates>
 
535
        <template name="default" file="manager_DeleteAccountPage.tpl"/>
 
536
      </templates>
 
537
      <urlfields>
 
538
        <urlfield name="account" validator="account" required="true"/>
 
539
      </urlfields>
 
540
    </page>
 
541
 
 
542
    <page name="accounts_welcome"
 
543
          title="[SEND_WELCOME_EMAIL]"
 
544
          class="WelcomeEmailPage"
 
545
          class_file="manager/pages/WelcomeEmailPage.class.php"
 
546
          parent="accounts_browse"
 
547
          url="manager_content.php?page=accounts_welcome">
 
548
      <templates>
 
549
        <template name="default" file="manager_WelcomeEmailPage.tpl"/>
 
550
      </templates>
 
551
      <urlfields>
 
552
        <urlfield name="account" validator="account" required="true"/>
 
553
      </urlfields>
 
554
    </page>
 
555
 
 
556
    <page name="accounts_new_account"
 
557
          title="[NEW_ACCOUNT]"
 
558
          class="NewAccountPage"
 
559
          class_file="manager/pages/NewAccountPage.class.php"
 
560
          parent="accounts"
 
561
          url="manager_content.php?page=accounts_new_account">
 
562
      <templates>
 
563
        <template name="default" file="manager_NewAccountPage.tpl"/>
 
564
        <template name="confirm" file="manager_NewAccountPage_confirm.tpl"/>
 
565
      </templates>
 
566
    </page>
 
567
 
 
568
    <page name="accounts_assign_hosting"
 
569
          title="[ADD_HOSTING]"
 
570
          class="AssignHostingPage"
 
571
          class_file="manager/pages/AssignHostingPage.class.php"
 
572
          parent="accounts_view_account"
 
573
          url="manager_content.php?page=accounts_assign_hosting">
 
574
      <templates>
 
575
        <template name="default" file="manager_AssignHostingPage.tpl"/>
 
576
      </templates>
 
577
      <urlfields>
 
578
        <urlfield name="account" validator="account" required="true"/>
 
579
      </urlfields>
 
580
    </page>
 
581
 
 
582
    <page name="edit_hosting_purchase"
 
583
          title="[EDIT_HOSTING_SERVICE_PURCHASE]"
 
584
          class="EditHostingPurchasePage"
 
585
          class_file="manager/pages/EditHostingPurchasePage.class.php"
 
586
          parent="accounts_view_account"
 
587
          url="manager_content.php?page=edit_hosting_purchase">
 
588
      <templates>
 
589
        <template name="default" file="manager_EditHostingPurchasePage.tpl"/>
 
590
      </templates>
 
591
      <urlfields>
 
592
        <urlfield name="hspurchase" validator="hostingpurchase" required="true"/>
 
593
      </urlfields>
 
594
    </page>
 
595
 
 
596
    <page name="accounts_assign_domain"
 
597
          title="[ADD_DOMAIN]" 
 
598
          class="AssignDomainPage"
 
599
          class_file="manager/pages/AssignDomainPage.class.php"
 
600
          parent="accounts_view_account"
 
601
          url="manager_content.php?page=accounts_assign_domain">
 
602
      <templates>
 
603
        <template name="default" file="manager_AssignDomainPage.tpl"/>
 
604
      </templates>
 
605
      <urlfields>
 
606
        <urlfield name="account" validator="account" required="true"/>
 
607
      </urlfields>
 
608
    </page>
 
609
 
 
610
    <page name="accounts_assign_product"
 
611
          title="[ADD_PRODUCT]" 
 
612
          class="AssignProductPage"
 
613
          class_file="manager/pages/AssignProductPage.class.php"
 
614
          parent="accounts_view_account"
 
615
          url="manager_content.php?page=accounts_assign_product">
 
616
      <templates>
 
617
        <template name="default" file="manager_AssignProductPage.tpl"/>
 
618
      </templates>
 
619
      <urlfields>
 
620
        <urlfield name="account" validator="account" required="true"/>
 
621
      </urlfields>
 
622
    </page>
 
623
 
 
624
    <page name="edit_product_purchase"
 
625
          title="[EDIT_PRODUCT_PURCHASE]"
 
626
          class="EditProductPurchasePage"
 
627
          class_file = "manager/pages/EditProductPurchasePage.class.php"
 
628
          parent="accounts_view_account"
 
629
          url="manager_content.php?page=edit_product_purchase">
 
630
      <templates>
 
631
        <template name="default" file="manager_EditProductPurchasePage.tpl"/>
 
632
      </templates>
 
633
      <urlfields>
 
634
        <urlfield name="ppurchase" validator="productpurchase" requred="true"/>
 
635
      </urlfields>
 
636
    </page>
 
637
 
 
638
    <page name="accounts_add_invoice"
 
639
          title="[CREATE_INVOICE]"
 
640
          class="AddInvoicePage"
 
641
          class_file="manager/pages/AddInvoicePage.class.php"
 
642
          parent="billing_invoices"
 
643
          url="manager_content.php?page=accounts_add_invoice">
 
644
      <templates>
 
645
        <template name="default" file="manager_AddInvoicePage.tpl"/>
 
646
      </templates>
 
647
      <urlfields>
 
648
        <urlfield name="account" validator="account"/>
 
649
      </urlfields>
 
650
    </page>
 
651
 
 
652
    <page name="accounts_add_payment"
 
653
          title="[ENTER_PAYMENT]"
 
654
          class="AddPaymentPage"
 
655
          class_file="manager/pages/AddPaymentPage.class.php"
 
656
          parent="accounts_view_account"
 
657
          url="manager_content.php?page=accounts_add_payment">
 
658
      <templates>
 
659
        <template name="default" file="manager_AddPaymentPage.tpl"/>
 
660
      </templates>
 
661
      <urlfields>
 
662
        <urlfield name="account" validator="account" required="true"/>
 
663
        <urlfield name="invoice" validator="invoice"/>
 
664
      </urlfields>
 
665
    </page>
 
666
 
 
667
    <page name="pending_orders"
 
668
          title="[PENDING_ORDERS]"
 
669
          class="PendingOrdersPage"
 
670
          class_file="manager/pages/PendingOrdersPage.class.php"
 
671
          parent="accounts"
 
672
          url="manager_content.php?page=pending_orders">
 
673
      <templates>
 
674
        <template name="default" file="manager_PendingOrdersPage.tpl"/>
 
675
      </templates>
 
676
    </page>
 
677
 
 
678
    <page name="fulfilled_orders"
 
679
          title="[FULFILLED_ORDERS]"
 
680
          class="FulfilledOrdersPage"
 
681
          class_file="manager/pages/FulfilledOrdersPage.class.php"
 
682
          parent="accounts"
 
683
          url="manager_content.php?page=fulfilled_orders">
 
684
      <templates>
 
685
        <template name="default" file="manager_FulfilledOrdersPage.tpl"/>
 
686
      </templates>
 
687
    </page>
 
688
 
 
689
    <page name="view_order"
 
690
          title="[ORDER] #{order_id}"
 
691
          class="ViewOrderPage"
 
692
          class_file="manager/pages/ViewOrderPage.class.php"
 
693
          parent="pending_orders"
 
694
          url="manager_content.php?page=view_order&amp;order={order_id}">
 
695
      <templates>
 
696
        <template name="default" file="manager_ViewOrderPage.tpl"/>
 
697
      </templates>
 
698
      <urlfields>
 
699
        <urlfield name="order" validator="order" required="true"/>
 
700
      </urlfields>
 
701
    </page>
 
702
 
 
703
    <page name="execute_order"
 
704
          title="[EXECUTE]"
 
705
          class="ExecuteOrderPage"
 
706
          class_file="manager/pages/ExecuteOrderPage.class.php"
 
707
          parent="view_order"
 
708
          url="manager_content.php?page=execute_order">
 
709
      <templates>
 
710
        <template name="default" file="manager_ExecuteOrderPage.tpl"/>
 
711
      </templates>
 
712
      <urlfields>
 
713
        <urlfield name="order" validator="order" required="true"/>
 
714
      </urlfields>
 
715
    </page>
 
716
 
 
717
    <!-- ======================== -->
 
718
    <!-- Billing & Invoices Pages -->
 
719
    <!-- ======================== -->
 
720
 
 
721
    <page name="billing"
 
722
          title="[BILLING_INVOICES]"
 
723
          class="BillingPage"
 
724
          class_file="manager/pages/BillingPage.class.php"
 
725
          parent="home"
 
726
          url="manager_content.php?page=billing">
 
727
      <templates>
 
728
        <template name="default" file="manager_Billing.tpl"/>
 
729
      </templates>
 
730
    </page>
 
731
 
 
732
    <page name="billing_invoices"
 
733
          title="[INVOICES]"
 
734
          class="BrowseInvoicesPage"
 
735
          class_file="manager/pages/BrowseInvoicesPage.class.php"
 
736
          parent="billing"
 
737
          url="manager_content.php?page=billing_invoices">
 
738
      <templates>
 
739
        <template name="default" file="manager_BrowseInvoicesPage.tpl"/>
 
740
      </templates>
 
741
    </page>
 
742
 
 
743
    <page name="billing_invoices_outstanding"
 
744
          title="[OUTSTANDING_INVOICES]"
 
745
          class="OutstandingInvoicesPage"
 
746
          class_file="manager/pages/OutstandingInvoicesPage.class.php"
 
747
          parent="billing"
 
748
          url="manager_content.php?page=billing_invoices_outstanding">
 
749
      <templates>
 
750
        <template name="default" file="manager_OutstandingInvoicesPage.tpl"/>
 
751
      </templates>
 
752
    </page>
 
753
 
 
754
    <page name="billing_view_invoice"
 
755
          title="[INVOICE] #{invoice_id}"
 
756
          class="ViewInvoicePage"
 
757
          class_file="manager/pages/ViewInvoicePage.class.php"
 
758
          parent="accounts_view_account"
 
759
          url="manager_content.php?page=billing_view_invoice">
 
760
      <templates>
 
761
        <template name="default" file="manager_ViewInvoicePage.tpl"/>
 
762
      </templates>
 
763
      <urlfields>
 
764
        <urlfield name="invoice" validator="invoice" required="true"/>
 
765
        <urlfield name="item" validator="invoiceitem"/>
 
766
        <urlfield name="payment" validator="payment"/>
 
767
      </urlfields>
 
768
    </page>
 
769
 
 
770
    <page name="billing_delete_invoice"
 
771
          title="[DELETE]"
 
772
          class="DeleteInvoicePage"
 
773
          class_file="manager/pages/DeleteInvoicePage.class.php"
 
774
          parent="billing_view_invoice"
 
775
          url="manager_content.php?page=billing_delete_invoice">
 
776
      <templates>
 
777
        <template name="default" file="manager_DeleteInvoicePage.tpl"/>
 
778
      </templates>
 
779
      <urlfields>
 
780
        <urlfield name="invoice" validator="invoice" required="true"/>
 
781
      </urlfields>
 
782
    </page>
 
783
 
 
784
    <page name="billing_print_invoice"
 
785
          title="[PRINT]"
 
786
          class="PrintInvoicePage"
 
787
          class_file="manager/pages/PrintInvoicePage.class.php"
 
788
          parent="billing_view_invoice"
 
789
          url="manager_content.php?page=billing_print_invoice">
 
790
      <templates> 
 
791
        <template name="default" file="manager_PrintInvoicePage.tpl"/>
 
792
      </templates>
 
793
      <urlfields>
 
794
        <urlfield name="invoice" validator="invoice" required="true"/>
 
795
      </urlfields>
 
796
    </page>
 
797
 
 
798
    <page name="billing_email_invoice"
 
799
          title="[EMAIL]"
 
800
          class="EmailInvoicePage"
 
801
          class_file="manager/pages/EmailInvoicePage.class.php"
 
802
          parent="billing_view_invoice"
 
803
          url="manager_content.php?page=billing_email_invoice">
 
804
      <templates>
 
805
        <template name="default" file="manager_EmailInvoicePage.tpl"/>
 
806
      </templates>
 
807
      <urlfields>
 
808
        <urlfield name="invoice" validator="invoice" required="true"/>
 
809
      </urlfields>
 
810
    </page>
 
811
 
 
812
    <page name="billing_generate"
 
813
          title="[GENERATE_INVOICES]"
 
814
          class="GenerateInvoicesPage"
 
815
          class_file="manager/pages/GenerateInvoicesPage.class.php"
 
816
          parent="billing"
 
817
          url="manager_content.php?page=billing_generate">
 
818
      <templates>
 
819
        <template name="default" file="manager_GenerateInvoicesPage.tpl"/>
 
820
      </templates>
 
821
    </page>
 
822
 
 
823
    <page name="billing_add_payment" 
 
824
          title="[ENTER_PAYMENT]"
 
825
          class="BillingPaymentPage"
 
826
          class_file="manager/pages/BillingPaymentPage.class.php"
 
827
          parent="billing"
 
828
          url="manager_content.php?page=billing_add_payment">
 
829
      <templates>
 
830
        <template name="default" file="manager_BillingPaymentPage.tpl"/>
 
831
      </templates>
 
832
    </page>
 
833
 
 
834
    <page name="edit_payment" 
 
835
          title="[EDIT_PAYMENT]"
 
836
          class="EditPaymentPage"
 
837
          class_file="manager/pages/EditPaymentPage.class.php"
 
838
          parent="billing_view_invoice"
 
839
          url="manager_content.php?page=edit_payment">
 
840
      <templates>
 
841
        <template name="default" file="manager_EditPaymentPage.tpl"/>
 
842
      </templates>
 
843
      <urlfields>
 
844
        <urlfield name="payment" validator="payment" required="true"/>
 
845
      </urlfields>
 
846
    </page>
 
847
 
 
848
    <page name="taxes" 
 
849
          title="[TAXES]"
 
850
          class="TaxesPage"
 
851
          class_file="manager/pages/TaxesPage.class.php"
 
852
          parent="billing"
 
853
          url="manager_content.php?page=taxes">
 
854
      <templates>
 
855
        <template name="default" file="manager_TaxesPage.tpl"/>
 
856
      </templates>
 
857
      <urlfields>
 
858
        <urlfield name="taxrule" validator="taxrule"/>
 
859
      </urlfields>
 
860
    </page>
 
861
 
 
862
    <page name="add_tax_rule" 
 
863
          title="[NEW_TAX_RULE]"
 
864
          class="AddTaxRulePage"
 
865
          class_file="manager/pages/AddTaxRulePage.class.php"
 
866
          parent="billing"
 
867
          url="manager_content.php?page=add_tax_rule">
 
868
      <templates>
 
869
        <template name="default" file="manager_AddTaxRulePage.tpl"/>
 
870
      </templates>
 
871
    </page>
 
872
 
 
873
    <!-- ============= -->
 
874
    <!-- Domains Pages -->
 
875
    <!-- ============= -->
 
876
 
 
877
    <page name="domains"
 
878
          title="[DOMAINS]"
 
879
          class="DomainsPage"
 
880
          class_file="manager/pages/DomainsPage.class.php"
 
881
          parent="home"
 
882
          url="manager_content.php?page=domains">
 
883
      <templates>
 
884
        <template name="default" file="manager_DomainsPage.tpl"/>
 
885
      </templates>
 
886
    </page>
 
887
 
 
888
    <page name="domains_browse"
 
889
          title="[REGISTERED_DOMAINS]"
 
890
          class="RegisteredDomainsPage"
 
891
          class_file="manager/pages/RegisteredDomainsPage.class.php"
 
892
          parent="domains"
 
893
          url="manager_content.php?page=domains_browse">
 
894
      <templates>
 
895
        <template name="default" file="manager_RegisteredDomainsPage.tpl"/>
 
896
      </templates>
 
897
    </page>
 
898
 
 
899
    <page name="domains_expired"
 
900
          title="[EXPIRED_DOMAINS]"
 
901
          class="ExpiredDomainsPage"
 
902
          class_file="manager/pages/ExpiredDomainsPage.class.php"
 
903
          parent="domains"
 
904
          url="manager_content.php?page=domains_expired">
 
905
      <templates>
 
906
        <template name="default" file="manager_ExpiredDomainsPage.tpl"/>
 
907
      </templates>
 
908
    </page>
 
909
 
 
910
    <page name="domains_register"
 
911
          title="[REGISTER_NEW_DOMAIN]"
 
912
          class="RegisterDomainPage"
 
913
          class_file="manager/pages/RegisterDomainPage.class.php"
 
914
          parent="domains"
 
915
          url="manager_content.php?page=domains_register">
 
916
      <templates>
 
917
        <template name="default" file="manager_RegisterDomainPage.tpl"/>
 
918
        <template name="whois_results" file="manager_RegisterDomainPage_WhoisResults.tpl"/>
 
919
        <template name="confirm" file="manager_RegisterDomainPage_confirm.tpl"/>
 
920
      </templates>
 
921
    </page>
 
922
 
 
923
    <page name="domains_edit_domain"
 
924
          title="[EDIT_DOMAIN]"
 
925
          class="EditDomainPage"
 
926
          class_file="manager/pages/EditDomainPage.class.php"
 
927
          parent="domains_browse"
 
928
          url="manager_content.php?page=domains_edit_domain">
 
929
      <templates> 
 
930
        <template name="default" file="manager_EditDomainPage.tpl"/>
 
931
      </templates>
 
932
      <urlfields>
 
933
        <urlfield name="dpurchase" validator="domainpurchase" required="true"/>
 
934
      </urlfields>
 
935
    </page>
 
936
 
 
937
    <page name="transfer_domain"
 
938
          title="[TRANSFER_DOMAIN]"
 
939
          class="TransferDomainPage"
 
940
          class_file="manager/pages/TransferDomainPage.class.php"
 
941
          parent="domains"
 
942
          url="manager_content.php?page=transfer_domain">
 
943
      <templates>
 
944
        <template name="default" file="manager_TransferDomainPage.tpl"/>
 
945
        <template name="transfer" file="manager_TransferDomainPage_transfer.tpl"/>
 
946
        <template name="confirm" file="manager_TransferDomainPage_confirm.tpl"/>
 
947
      </templates>
 
948
    </page>
 
949
 
 
950
    <page name="edit_product_purchase"
 
951
          title="[EDIT_PRODUCT_PURCHASE]"
 
952
          class="EditProductPurchasePage"
 
953
          class_file="manager/pages/EditProductPurchasePage.class.php"
 
954
          parent="accounts_view_account"
 
955
          url="manager_content.php?page=edit_product_purchase">
 
956
      <templates>
 
957
        <template name="default" file="manager_EditProductPurchasePage.tpl"/>
 
958
      </templates>
 
959
      <urlfields>
 
960
        <urlfield name="ppurchase" validator="productpurchase" required="true"/>
 
961
      </urlfields>
 
962
    </page>
 
963
 
 
964
  </pages>
 
965
 
 
966
  <!-- ===== -->
 
967
  <!-- Forms -->
 
968
  <!-- ===== -->
 
969
 
 
970
  <forms>
 
971
    <form name="login" page="login" method="POST">
 
972
      <fields>
 
973
        <field name="username"
 
974
               widget="text"
 
975
               validator="text"
 
976
               description="[USERNAME]"
 
977
               required="true"
 
978
               max_length="32"
 
979
               min_length="3"/>
 
980
        <field name="password"
 
981
               widget="password"
 
982
               validator="password"
 
983
               description="[PASSWORD]"
 
984
               validate="true"
 
985
               required="true"
 
986
               max_length="32"
 
987
               min_length="3"/>
 
988
        <field name="theme"
 
989
               widget="themeselect"
 
990
               validator="theme"
 
991
               description="[THEME]"/>
 
992
        <field name="continue"
 
993
               widget="submit"
 
994
               validator="submit"
 
995
               description="[LOGIN]"/>
 
996
      </fields>
 
997
    </form>
 
998
 
 
999
    <form name="inactive_accounts_action" page="accounts_browse_inactive" method="POST">
 
1000
      <fields>
 
1001
        <field name="add"
 
1002
               widget="submit"
 
1003
               validator="submit"
 
1004
               description="[CREATE_ACCOUNT]"/>
 
1005
      </fields>
 
1006
    </form>
 
1007
 
 
1008
    <form name="inactive_accounts" page="accounts_browse_inactive" method="POST">
 
1009
      <fields>
 
1010
        <field name="accounts"
 
1011
               description="[INACTIVE_ACCOUNTS]"
 
1012
               widget="accounttable"
 
1013
               validator="account"
 
1014
               required="true"/>
 
1015
      </fields>
 
1016
    </form>
 
1017
 
 
1018
    <form name="pending_accounts_action" page="accounts_browse_pending" method="POST">
 
1019
      <fields>
 
1020
        <field name="add"
 
1021
               widget="submit"
 
1022
               validator="submit"
 
1023
               description="[CREATE_ACCOUNT]"/>
 
1024
      </fields>
 
1025
    </form>
 
1026
 
 
1027
    <form name="pending_accounts" page="accounts_browse_pending" method="POST">
 
1028
      <fields>
 
1029
        <field name="accounts"
 
1030
               description="[PENDING_ACCOUNTS]"
 
1031
               widget="accounttable"
 
1032
               validator="account"
 
1033
               required="true"/>
 
1034
      </fields>
 
1035
    </form>
 
1036
 
 
1037
    <form name="browse_accounts_action" page="accounts_browse" method="POST">
 
1038
      <fields>
 
1039
        <field name="add"
 
1040
               widget="submit"
 
1041
               validator="submit"
 
1042
               description="[CREATE_ACCOUNT]"/>
 
1043
      </fields>
 
1044
    </form>
 
1045
 
 
1046
    <form name="active_accounts" page="accounts_browse" method="POST">
 
1047
      <fields>
 
1048
        <field name="accounts"
 
1049
               description="[ACTIVE_ACCOUNTS]"
 
1050
               widget="accounttable"
 
1051
               validator="account"
 
1052
               required="true"/>
 
1053
      </fields>
 
1054
    </form>
 
1055
 
 
1056
    <form name="pending_orders" page="pending_orders" method="POST">
 
1057
      <fields>
 
1058
        <field name="orders"
 
1059
               description="[PENDING_ORDERS]"
 
1060
               widget="ordertable"
 
1061
               validator="order"
 
1062
               required="true"/>
 
1063
      </fields>
 
1064
    </form>
 
1065
 
 
1066
    <form name="fulfilled_orders" page="fulfilled_orders" method="POST">
 
1067
      <fields>
 
1068
        <field name="orders"
 
1069
               description="[FULFILLED_ORDERS]"
 
1070
               widget="ordertable"
 
1071
               validator="order"
 
1072
               required="true"/>
 
1073
      </fields>
 
1074
    </form>
 
1075
 
 
1076
    <form name="order" page="view_order" method="POST">
 
1077
      <fields>
 
1078
        <field name="businessname"
 
1079
               widget="text"
 
1080
               description="[BUSINESS_NAME]"
 
1081
               validator="text"
 
1082
               max_length="255"
 
1083
               min_length="1"/>
 
1084
        <field name="contactname"
 
1085
               widget="text"
 
1086
               description="[CONTACT_NAME]"
 
1087
               validator="text"
 
1088
               max_length="255"
 
1089
               min_length="1"/>
 
1090
        <field name="contactemail"
 
1091
               widget="text"
 
1092
               description="[CONTACT_EMAIL]"
 
1093
               validator="email"
 
1094
               max_length="255"
 
1095
               min_length="1"/>
 
1096
        <field name="address1"
 
1097
               widget="text"
 
1098
               description="[ADDRESS_LINE_1]"
 
1099
               validator="text"
 
1100
               max_length="255"
 
1101
               min_length="1"/>
 
1102
        <field name="address2"
 
1103
               widget="text"
 
1104
               description="[ADDRESS_LINE_2]"
 
1105
               validator="text"
 
1106
               max_length="255"
 
1107
               min_length="1"/>
 
1108
        <field name="city"
 
1109
               widget="text"
 
1110
               description="[CITY]"
 
1111
               validator="text"
 
1112
               max_length="255"
 
1113
               min_length="1"/>
 
1114
        <field name="state"
 
1115
               widget="text"
 
1116
               description="[STATE_PROVINCE]"
 
1117
               validator="text"
 
1118
               required="false"
 
1119
               max_length="255"
 
1120
               min_length="0"/>
 
1121
        <field name="country"
 
1122
               widget="country"
 
1123
               description="[COUNTRY]"
 
1124
               validator="country"/>
 
1125
        <field name="postalcode"
 
1126
               widget="text"
 
1127
               description="[ZIP_POSTAL_CODE]"
 
1128
               validator="text"
 
1129
               max_length="255"
 
1130
               min_length="1"/>
 
1131
        <field name="phone"
 
1132
               widget="text"
 
1133
               description="[PHONE]"
 
1134
               validator="telephone"/>
 
1135
        <field name="mobilephone"
 
1136
               widget="text"
 
1137
               description="[MOBILE_PHONE]"
 
1138
               validator="telephone"/>
 
1139
        <field name="fax"
 
1140
               widget="text"
 
1141
               description="[FAX]"
 
1142
               validator="telephone"/>
 
1143
        <field name="items"
 
1144
               description="[ORDER_ITEMS]"
 
1145
               widget="orderitemtable"
 
1146
               validator="orderitem"
 
1147
               array="true"/>
 
1148
        <field name="payments"
 
1149
               description="[PAYMENTS]"
 
1150
               widget="paymenttable"
 
1151
               validator="payment"
 
1152
               array="true"/>
 
1153
        <field name="username"
 
1154
               widget="text"
 
1155
               description="[USERNAME]"
 
1156
               validator="text"/>
 
1157
        <field name="password" 
 
1158
               widget="password"
 
1159
               description="[PASSWORD]"
 
1160
               validator="text"/>
 
1161
        <field name="execute"
 
1162
               widget="submit"
 
1163
               description="[EXECUTE_ORDER]"
 
1164
               validator="submit"/>
 
1165
        <field name="save"
 
1166
               widget="submit"
 
1167
               description="[SAVE_CHANGES]"
 
1168
               validator="submit"/>
 
1169
        <field name="delete"
 
1170
               widget="submit"
 
1171
               description="[DELETE]"
 
1172
               validator="submit"/>
 
1173
      </fields>
 
1174
    </form>
 
1175
 
 
1176
    <form name="execute_order" page="execute_order" method="POST">
 
1177
      <fields>
 
1178
        <field name="type"
 
1179
               widget="select"
 
1180
               description="[ACCOUNT_TYPE]"
 
1181
               validator="choice"
 
1182
               required="true">
 
1183
          <enum>
 
1184
            <option value="Individual Account"/>
 
1185
            <option value="Business Account" default="true"/>
 
1186
          </enum>
 
1187
        </field>
 
1188
        <field name="status"
 
1189
               widget="select"
 
1190
               description = "[ACCOUNT_STATUS]"
 
1191
               validator="choice"
 
1192
               required="true">
 
1193
          <enum>
 
1194
            <option value="Active" description="[ACTIVE]"/>
 
1195
            <option value="Pending" description="[PENDING]"/>
 
1196
            <option value="Inactive" description="[INACTIVE]"/>
 
1197
          </enum>
 
1198
        </field>
 
1199
        <field name="billingstatus"
 
1200
               widget="select"
 
1201
               description="[BILLING_STATUS]"
 
1202
               validator="choice"
 
1203
               required="true">
 
1204
          <enum>
 
1205
            <option value="Bill" description="[BILL]" default="true"/>
 
1206
            <option value="Do Not Bill" description="Do Not Bill"/>
 
1207
          </enum>
 
1208
        </field>
 
1209
        <field name="billingday"
 
1210
               widget="text"
 
1211
               description="[BILLING_DAY]"
 
1212
               validator="int"
 
1213
               required="true"
 
1214
               max_value="31"
 
1215
               min_value="1"
 
1216
               default_value="1"/>
 
1217
        <field name="continue"
 
1218
               description="[CONTINUE]"
 
1219
               widget="submit"
 
1220
               validator="submit"/>
 
1221
        <field name="cancel"
 
1222
               description="[CANCEL]"
 
1223
               widget="submit"
 
1224
               cancel="true"
 
1225
               validator="submit"/>
 
1226
        <field name="items"
 
1227
               description="[ORDER_ITEMS]"
 
1228
               widget="orderitemtable"
 
1229
               validator="orderitem"
 
1230
               array="true"/>
 
1231
      </fields>
 
1232
    </form>
 
1233
    <form name="new_account" page="accounts_new_account" method="POST">
 
1234
      <fields>
 
1235
        <field name="type"
 
1236
               widget="radio"
 
1237
               validator="choice"
 
1238
               description="[ACCOUNT_TYPE]"
 
1239
               required="true">
 
1240
          <enum>
 
1241
            <option value="Individual Account" default="true"/>
 
1242
            <option value="Non-Profit Account"/>
 
1243
            <option value="Business Account"/>
 
1244
          </enum>
 
1245
        </field>
 
1246
        <field name="status"
 
1247
               widget="select"
 
1248
               validator="choice"
 
1249
               description = "[ACCOUNT_STATUS]"
 
1250
               required="true">
 
1251
          <enum>
 
1252
            <option value="Active" description="[ACTIVE]"/>
 
1253
            <option value="Pending" description="[PENDING]"/>
 
1254
            <option value="Inactive" description="[INACTIVE]"/>
 
1255
          </enum>
 
1256
        </field>
 
1257
        <field name="username"
 
1258
               widget="text"
 
1259
               validator="text"
 
1260
               max_length="32"
 
1261
               required="true"
 
1262
               description="[USERNAME]"/>
 
1263
        <field name="password"
 
1264
               widget="password"
 
1265
               validator="password"
 
1266
               required="True"
 
1267
               description="[PASSWORD]"/>
 
1268
        <field name="billingstatus"
 
1269
               widget="select"
 
1270
               validator="choice"
 
1271
               description="[BILLING_STATUS]"
 
1272
               required="true">
 
1273
          <enum>
 
1274
            <option value="Bill" description="[BILL]" default="true"/>
 
1275
            <option value="Do Not Bill" description="[DO_NOT_BILL]"/>
 
1276
          </enum>
 
1277
        </field>
 
1278
        <field name="billingday"
 
1279
               widget="text"
 
1280
               validator="int"
 
1281
               description="[BILLING_DAY]"
 
1282
               required="true"
 
1283
               max_value="31"
 
1284
               min_value="1"
 
1285
               default_value="1"/>
 
1286
        <field name="businessname"
 
1287
               widget="text"
 
1288
               validator="text"
 
1289
               description="[ACCOUNT_NAME]"
 
1290
               max_length="255"
 
1291
               min_length="1"/>
 
1292
        <field name="contactname"
 
1293
               widget="text"
 
1294
               validator="text"
 
1295
               description="[CONTACT_NAME]"
 
1296
               required="true"
 
1297
               max_length="255"
 
1298
               min_length="1"/>
 
1299
        <field name="contactemail"
 
1300
               widget="text"
 
1301
               validator="email"
 
1302
               description="[CONTACT_EMAIL]"
 
1303
               required="true"
 
1304
               max_length="255"
 
1305
               min_length="1"/>
 
1306
        <field name="address1"
 
1307
               widget="text"
 
1308
               validator="text"
 
1309
               description="[ADDRESS_LINE_1]"
 
1310
               required="true"
 
1311
               max_length="255"
 
1312
               min_length="1"/>
 
1313
        <field name="address2"
 
1314
               widget="text"
 
1315
               validator="text"
 
1316
               description="[ADDRESS_LINE_2]"
 
1317
               max_length="255"
 
1318
               min_length="1"/>
 
1319
        <field name="city"
 
1320
               widget="text"
 
1321
               validator="text"
 
1322
               description="[CITY]"
 
1323
               required="true"
 
1324
               max_length="255"
 
1325
               min_length="1"/>
 
1326
        <field name="state"
 
1327
               widget="text"
 
1328
               validator="text"
 
1329
               description="[STATE_PROVINCE]"
 
1330
               required="false"
 
1331
               max_length="255"
 
1332
               min_length="0"/>
 
1333
        <field name="country"
 
1334
               widget="country"
 
1335
               validator="country"
 
1336
               description="[COUNTRY]"
 
1337
               validate="true"
 
1338
               default_value="LU"
 
1339
               required="true"/>
 
1340
        <field name="postalcode"
 
1341
               widget="text"
 
1342
               validator="text"
 
1343
               description="[ZIP_POSTAL_CODE]"
 
1344
               required="true"
 
1345
               max_length="255"
 
1346
               min_length="1"/>
 
1347
        <field name="phone"
 
1348
               widget="text"
 
1349
               validator="telephone"
 
1350
               description="[PHONE]"
 
1351
               required="false"/>
 
1352
        <field name="mobilephone"
 
1353
               widget="text"
 
1354
               validator="telephone"
 
1355
               description="[MOBILE_PHONE]"
 
1356
               required="false"/>
 
1357
        <field name="fax"
 
1358
               widget="text"
 
1359
               validator="telephone"
 
1360
               description="[FAX]"
 
1361
               required="false"/>
 
1362
        <field name="continue"
 
1363
               widget="submit"
 
1364
               validator="submit"
 
1365
               description="[CREATE_ACCOUNT]"
 
1366
               required="false"/>
 
1367
        <field name="cancel"
 
1368
               widget="submit"
 
1369
               cancel="true"
 
1370
               validator="submit"
 
1371
               description="[CANCEL]"/>
 
1372
      </fields>
 
1373
    </form>
 
1374
 
 
1375
    <form name="edit_account" page="accounts_edit_account" method="POST">
 
1376
      <fields>
 
1377
        <field name="type"
 
1378
               widget="radio"
 
1379
               description="[ACCOUNT_TYPE]"
 
1380
               validator="choice"
 
1381
               required="true">
 
1382
          <enum>
 
1383
            <option value="Individual Account"/>
 
1384
            <option value="Non-Profit Account"/>
 
1385
            <option value="Business Account" default="true"/>
 
1386
          </enum>
 
1387
        </field>
 
1388
        <field name="status"
 
1389
               widget="select"
 
1390
               description = "[ACCOUNT_STATUS]"
 
1391
               validator="choice"
 
1392
               required="true">
 
1393
          <enum>
 
1394
            <option value="Active" description="[ACTIVE]"/>
 
1395
            <option value="Pending" description="[PENDING]"/>
 
1396
            <option value="Inactive" description="[INACTIVE]"/>
 
1397
          </enum>
 
1398
        </field>
 
1399
        <field name="billingstatus"
 
1400
               widget="select"
 
1401
               description="[BILLING_STATUS]"
 
1402
               validator="choice"
 
1403
               required="true">
 
1404
          <enum>
 
1405
            <option value="Bill" description="[BILL]" default="true"/>
 
1406
            <option value="Do Not Bill" description="[DO_NOT_BILL]"/>
 
1407
          </enum>
 
1408
        </field>
 
1409
        <field name="billingday"
 
1410
               widget="text"
 
1411
               description="[BILLING_DAY]"
 
1412
               validator="int"
 
1413
               required="true"
 
1414
               max_value="31"
 
1415
               min_value="1"
 
1416
               default_value="1"/>
 
1417
        <field name="businessname"
 
1418
               widget="text"
 
1419
               description="[ACCOUNT_NAME]"
 
1420
               validator="text"
 
1421
               max_length="255"
 
1422
               min_length="1"/>
 
1423
        <field name="contactname"
 
1424
               widget="text"
 
1425
               description="[CONTACT_NAME]"
 
1426
               validator="text"
 
1427
               required="true"
 
1428
               max_length="255"
 
1429
               min_length="1"/>
 
1430
        <field name="contactemail"
 
1431
               widget="text"
 
1432
               description="[CONTACT_EMAIL]"
 
1433
               validator="email"
 
1434
               required="true"
 
1435
               max_length="255"
 
1436
               min_length="1"/>
 
1437
        <field name="address1"
 
1438
               widget="text"
 
1439
               description="[ADDRESS_LINE_1]"
 
1440
               validator="text"
 
1441
               required="true"
 
1442
               max_length="255"
 
1443
               min_length="1"/>
 
1444
        <field name="address2"
 
1445
               widget="text"
 
1446
               description="[ADDRESS_LINE_2]"
 
1447
               validator="text"
 
1448
               max_length="255"
 
1449
               min_length="1"/>
 
1450
        <field name="city"
 
1451
               widget="text"
 
1452
               description="[CITY]"
 
1453
               validator="text"
 
1454
               required="true"
 
1455
               max_length="255"
 
1456
               min_length="1"/>
 
1457
        <field name="state"
 
1458
               widget="text"
 
1459
               description="[STATE_PROVINCE]"
 
1460
               validator="text"
 
1461
               required="false"
 
1462
               max_length="255"
 
1463
               min_length="0"/>
 
1464
        <field name="country"
 
1465
               widget="country"
 
1466
               description="[COUNTRY]"
 
1467
               validator="country"
 
1468
               required="true"/>
 
1469
        <field name="postalcode"
 
1470
               widget="text"
 
1471
               description="[ZIP_POSTAL_CODE]"
 
1472
               validator="text"
 
1473
               required="true"
 
1474
               max_length="255"
 
1475
               min_length="1"/>
 
1476
        <field name="phone"
 
1477
               widget="text"
 
1478
               description="[PHONE]"
 
1479
               validator="telephone"
 
1480
               required="false"/>
 
1481
        <field name="mobilephone"
 
1482
               widget="text"
 
1483
               description="[MOBILE_PHONE]"
 
1484
               validator="telephone"
 
1485
               required="false"/>
 
1486
        <field name="fax"
 
1487
               widget="text"
 
1488
               description="[FAX]"
 
1489
               validator="telephone"
 
1490
               required="false"/>
 
1491
        <field name="save"
 
1492
               widget="submit"
 
1493
               description="[SAVE]"
 
1494
               validator="submit"/>
 
1495
        <field name="cancel"
 
1496
               widget="submit"
 
1497
               description="[CANCEL]"
 
1498
               validator="submit"
 
1499
               cancel="true"/>
 
1500
      </fields>
 
1501
    </form>
 
1502
 
 
1503
    <form name="delete_account" page="accounts_delete_account" method="POST">
 
1504
      <fields>
 
1505
        <field name="cancel"
 
1506
               widget="submit"
 
1507
               validator="submit"
 
1508
               cancel="true"
 
1509
               description="[CANCEL]"/>
 
1510
        <field name="delete"
 
1511
               widget="submit"
 
1512
               description="[DELETE]"
 
1513
               validator="submit"/>
 
1514
      </fields>
 
1515
    </form>
 
1516
 
 
1517
    <form name="new_account_confirm" page="accounts_new_account" method="POST">
 
1518
      <fields>
 
1519
        <field name="continue"
 
1520
               widget="submit"
 
1521
               validator="submit"
 
1522
               description="[CONTINUE]"/>
 
1523
        <field name="cancel"
 
1524
               widget="submit"
 
1525
               cancel="true"
 
1526
               validator="submit"
 
1527
               description="[GO_BACK]"/>
 
1528
      </fields>
 
1529
    </form>
 
1530
 
 
1531
    <form name="view_account_action" page="accounts_view_account" method="POST">
 
1532
      <fields>
 
1533
        <field name="edit"
 
1534
               widget="submit"
 
1535
               description="[EDIT]"
 
1536
               validator="submit"/>
 
1537
        <field name="delete"
 
1538
               widget="submit"
 
1539
               description="[DELETE]"
 
1540
               validator="submit"/>
 
1541
      </fields>
 
1542
    </form>
 
1543
 
 
1544
    <form name="view_account_billing_action" page="accounts_view_account" method="POST">
 
1545
      <fields>
 
1546
        <field name="add_invoice"
 
1547
               widget="submit"
 
1548
               description="[CREATE_INVOICE]"
 
1549
               validator="submit"/>
 
1550
        <field name="add_payment"
 
1551
               widget="submit"
 
1552
               description="[ENTER_PAYMENT]"
 
1553
               validator="submit"/>
 
1554
      </fields>
 
1555
    </form>
 
1556
 
 
1557
    <form name="view_account_invoices" page="accounts_view_account" method="POST">
 
1558
      <fields>
 
1559
        <field name="invoices"
 
1560
               description="[INVOICES]"
 
1561
               widget="invoicetable"
 
1562
               validator="invoice"
 
1563
               array="true"
 
1564
               required="true"/>
 
1565
      </fields>
 
1566
    </form>
 
1567
 
 
1568
    <form name="view_account_note" page="accounts_view_account" method="POST">
 
1569
      <fields>
 
1570
        <field name="notes"
 
1571
               description="[NOTES]"
 
1572
               widget="notetable"
 
1573
               validator="note"
 
1574
               array="true"
 
1575
               required="true"/>
 
1576
        <field name="remove"
 
1577
               description="[REMOVE]"
 
1578
               widget="submit"
 
1579
               validator="submit"/>
 
1580
      </fields>
 
1581
    </form>
 
1582
 
 
1583
    <form name="view_account_add_note" page="accounts_view_account" method="POST">
 
1584
      <fields>
 
1585
        <field name="text"
 
1586
               widget="textarea"
 
1587
               description="[ADD_NOTE]"
 
1588
               validator="text"
 
1589
               required="true"/>
 
1590
        <field name="add"
 
1591
               widget="submit"
 
1592
               description="[ADD_NOTE]"
 
1593
               validator="submit"/>
 
1594
      </fields>
 
1595
    </form>
 
1596
 
 
1597
    <form name="view_account_hosting" page="accounts_view_account" method="POST">
 
1598
      <fields>
 
1599
        <field name="add"
 
1600
               widget="submit"
 
1601
               description="[ADD_HOSTING]"
 
1602
               validator="submit"/>
 
1603
      </fields>
 
1604
    </form>
 
1605
 
 
1606
    <form name="hosting_purchases" page="accounts_view_account" method="POST">
 
1607
      <fields>
 
1608
        <field name="services"
 
1609
               description="[WEB_HOSTING_SERVICES]"
 
1610
               widget="hostingpurchasetable"
 
1611
               validator="hostingpurchase"
 
1612
               array="true"
 
1613
               required="true"/>
 
1614
        <field name="remove"
 
1615
               description="[REMOVE]"
 
1616
               widget="submit"
 
1617
               validator="submit"/>
 
1618
      </fields>
 
1619
    </form>
 
1620
 
 
1621
    <form name="view_account_domains" page="accounts_view_account" method="POST">
 
1622
      <fields>
 
1623
        <field name="add"
 
1624
               widget="submit"
 
1625
               description="[ADD_DOMAIN]"
 
1626
               validator="submit"/>
 
1627
      </fields>
 
1628
    </form>
 
1629
 
 
1630
    <form name="domain_purchases" page="accounts_view_account" method="POST">
 
1631
      <fields>
 
1632
        <field name="domains"
 
1633
               description="[DOMAINS]"
 
1634
               widget="domainpurchasetable"
 
1635
               validator="domainpurchase"
 
1636
               array="true"
 
1637
               required="true"/>
 
1638
        <field name="remove"
 
1639
               description="[REMOVE]"
 
1640
               widget="submit"
 
1641
               validator="submit"/>
 
1642
      </fields>
 
1643
    </form>
 
1644
 
 
1645
    <form name="view_account_products" page="accounts_view_account" method="POST">
 
1646
      <fields>
 
1647
        <field name="add"
 
1648
               widget="submit"
 
1649
               description="[ADD_PRODUCT]"
 
1650
               validator="submit"/>
 
1651
      </fields>
 
1652
    </form>
 
1653
 
 
1654
    <form name="product_purchases" page="accounts_view_account" method="POST">
 
1655
      <fields>
 
1656
        <field name="products"
 
1657
               description="[OTHER_PRODUCTS]"
 
1658
               widget="productpurchasetable"
 
1659
               validator="productpurchase"
 
1660
               array="true"
 
1661
               required="true"/>
 
1662
        <field name="remove"
 
1663
               description="[REMOVE]"
 
1664
               widget="submit"
 
1665
               validator="submit"/>
 
1666
      </fields>
 
1667
    </form>
 
1668
 
 
1669
    <form name="assign_hosting" page="accounts_assign_hosting" method="POST">
 
1670
      <fields>
 
1671
        <field name="service"
 
1672
               widget="hostingselect"
 
1673
               description="[HOSTING_SERVICE]"
 
1674
               validator="hosting"
 
1675
               required="true"/>
 
1676
        <field name="date"
 
1677
               widget="date"
 
1678
               description="[ACTIVATION_DATE]"
 
1679
               validator="date"
 
1680
               required="true"/>
 
1681
        <field name="server"
 
1682
               widget="serverselect"
 
1683
               description="[ASSIGN_TO_SERVER]"
 
1684
               validator="server"/>
 
1685
        <field name="ipaddress"
 
1686
               widget="ipselect"
 
1687
               description="[ASSIGN_IP_ADDRESS]"
 
1688
               validator="ipaddressdb"/>
 
1689
        <field name="domainname"
 
1690
               widget="text"
 
1691
               validator="text"
 
1692
               min_length="1"
 
1693
               max_length="255"
 
1694
               description="[DOMAIN]"/>
 
1695
        <field name="continue"
 
1696
               widget="submit"
 
1697
               description="[CONTINUE]"
 
1698
               validator="submit"/>
 
1699
        <field name="cancel"
 
1700
               widget="submit"
 
1701
               description="[CANCEL]"
 
1702
               validator="submit"
 
1703
               cancel="true"/>
 
1704
        <field name="term"
 
1705
               widget="purchasabletermselect"
 
1706
               description="[SERVICE_TERMS]"
 
1707
               validator="hostingserviceprice"/>
 
1708
        <field name="note"
 
1709
               widget="textarea"
 
1710
               validator="text"
 
1711
               max_length="1024"
 
1712
               description="[NOTE]"/>
 
1713
      </fields>
 
1714
    </form>
 
1715
 
 
1716
    <form name="edit_hosting_purchase_action" page="edit_hosting_purchase" method="POST">
 
1717
      <fields>
 
1718
        <field name="createaccount"
 
1719
               widget="submit"
 
1720
               validator="submit"
 
1721
               description="[CREATE_ACCOUNT]"/>
 
1722
        <field name="suspendaccount"
 
1723
               widget="submit"
 
1724
               validator="submit"
 
1725
               description="[SUSPEND_ACCOUNT]"/>
 
1726
        <field name="unsuspendaccount"
 
1727
               widget="submit"
 
1728
               validator="submit"
 
1729
               description="[UNSUSPEND_ACCOUNT]"/>
 
1730
        <field name="killaccount"
 
1731
               widget="submit"
 
1732
               validator="submit"
 
1733
               description="[KILL_ACCOUNT]"/>
 
1734
      </fields>
 
1735
    </form>
 
1736
 
 
1737
    <form name="edit_hosting_purchase" page="edit_hosting_purchase" method="POST"> 
 
1738
      <fields>
 
1739
        <field name="term"
 
1740
               widget="purchasabletermselect"
 
1741
               validator="hostingserviceprice"
 
1742
               description="[TERM]"
 
1743
               required="true"/>
 
1744
        <field name="nextbillingdate"
 
1745
               widget="date"
 
1746
               validator="date"
 
1747
               description="[NEXT_BILLING_DATE]"
 
1748
               required="true"/>
 
1749
        <field name="server"
 
1750
               widget="serverselect"
 
1751
               validator="server"
 
1752
               description="[SERVER]"/>
 
1753
        <field name="ipaddress"
 
1754
               widget="ipselect"
 
1755
               description="[ASSIGN_IP_ADDRESS]"
 
1756
               validator="ipaddressdb"/>
 
1757
        <field name="domain"
 
1758
               widget="text"
 
1759
               validator="text"
 
1760
               description="[DOMAIN]"
 
1761
               max_length="255"/>
 
1762
        <field name="note"
 
1763
               widget="textarea"
 
1764
               validator="text"
 
1765
               max_length="1024"
 
1766
               description="[NOTE]"/>
 
1767
        <field name="save"
 
1768
               widget="submit"
 
1769
               description="[SAVE]"
 
1770
               validator="submit"/>
 
1771
        <field name="cancel"
 
1772
               widget="submit"
 
1773
               description="[CANCEL]"
 
1774
               validator="submit"
 
1775
               cancel="true"/>
 
1776
      </fields>
 
1777
    </form>
 
1778
 
 
1779
    <form name="assign_product" page="accounts_assign_product" method="POST">
 
1780
      <fields>
 
1781
        <field name="product"
 
1782
               widget="productselect"
 
1783
               description="[PRODUCT]"
 
1784
               validator="product"
 
1785
               required="true"/>
 
1786
        <field name="term"
 
1787
               widget="purchasabletermselect"
 
1788
               validator="productprice"
 
1789
               description="[TERMS]"/>
 
1790
        <field name="continue"
 
1791
               widget="submit"
 
1792
               description="[CONTINUE]"
 
1793
               validator="submit"/>
 
1794
        <field name="cancel"
 
1795
               widget="submit"
 
1796
               description="[CANCEL]"
 
1797
               validator="submit"
 
1798
               cancel="true"/>
 
1799
        <field name="date"
 
1800
               widget="date"
 
1801
               description="[ACTIVATION_DATE]"
 
1802
               validator="date"
 
1803
               required="true"/>
 
1804
        <field name="note"
 
1805
               widget="textarea"
 
1806
               description="[NOTE]"
 
1807
               validator="text"
 
1808
               max_length="1024"/>
 
1809
      </fields>
 
1810
    </form>
 
1811
 
 
1812
    <form name="edit_product_purchase" page="edit_product_purchase" method="POST"> 
 
1813
      <fields>
 
1814
        <field name="term"
 
1815
               widget="purchasabletermselect"
 
1816
               validator="productprice"
 
1817
               description="[TERM]"
 
1818
               required="true"/>
 
1819
        <field name="nextbillingdate"
 
1820
               widget="date"
 
1821
               validator="date"
 
1822
               description="[NEXT_BILLING_DATE]"
 
1823
               required="true"/>
 
1824
        <field name="note"
 
1825
               widget="textarea"
 
1826
               description="[NOTE]"
 
1827
               validator="text"
 
1828
               min_length="1"
 
1829
               max_length="1024"/>
 
1830
        <field name="save"
 
1831
               widget="submit"
 
1832
               description="[SAVE]"
 
1833
               validator="submit"/>
 
1834
        <field name="cancel"
 
1835
               widget="submit"
 
1836
               description="[CANCEL]"
 
1837
               validator="submit"
 
1838
               cancel="true"/>
 
1839
      </fields>
 
1840
    </form>
 
1841
 
 
1842
    <form name="assign_domain" page="accounts_assign_domain" method="POST">
 
1843
      <fields>
 
1844
        <field name="tld"
 
1845
               widget="tldselect"
 
1846
               description="TLD"
 
1847
               validator="domainservice"
 
1848
               required="true"/>
 
1849
        <field name="continue"
 
1850
               widget="submit"
 
1851
               description="[CONTINUE]"
 
1852
               validator="submit"/>
 
1853
        <field name="cancel"
 
1854
               widget="submit"
 
1855
               description="[CANCEL]"
 
1856
               validator="submit"
 
1857
               cancel="true"/>
 
1858
        <field name="term"
 
1859
               widget="purchasabletermselect"
 
1860
               description="[SERVICE_TERMS]"
 
1861
               validator="domainserviceprice"
 
1862
               required="true"/>
 
1863
        <field name="domainname"
 
1864
               widget="text"
 
1865
               description="[DOMAIN_NAME]"
 
1866
               validator="text"
 
1867
               min_length="1"
 
1868
               max_length="255"/>
 
1869
        <field name="date"
 
1870
               widget="date"
 
1871
               description="[ACTIVATION_DATE]"
 
1872
               validator="date"
 
1873
               required="true"/>
 
1874
        <field name="note"
 
1875
               widget="textarea"
 
1876
               validator="text"
 
1877
               max_length="1024"
 
1878
               description="[NOTE]"/>
 
1879
      </fields>
 
1880
    </form>
 
1881
 
 
1882
    <form name="new_invoice" page="accounts_add_invoice" method="POST">
 
1883
      <fields>
 
1884
        <field name="account"
 
1885
               widget="accountselect"
 
1886
               description="[ACCOUNT]"
 
1887
               validator="account"
 
1888
               required="true"/>
 
1889
        <field name="date"
 
1890
               widget="date"
 
1891
               description="[INVOICE_DATE]"
 
1892
               validator="date"
 
1893
               required="true"/>
 
1894
        <field name="periodbegin"
 
1895
               widget="date"
 
1896
               description="[BEGINNING_OF_INVOICE_PERIOD]"
 
1897
               validator="date"
 
1898
               required="true"/>
 
1899
        <field name="periodend"
 
1900
               widget="date"
 
1901
               description="[END_OF_INVOICE_PERIOD]"
 
1902
               validator="date"
 
1903
               required="true"/>
 
1904
        <field name="terms"
 
1905
               widget="text"
 
1906
               validator="int"
 
1907
               description="[TERMS_DAYS]"
 
1908
               required="true"
 
1909
               min_value="1"
 
1910
               max_value="3653"
 
1911
               default_value="15"/>
 
1912
        <field name="note"
 
1913
               widget="textarea"
 
1914
               description="[NOTE_TO_CUSTOMER]"
 
1915
               validator="text"
 
1916
               min_length="1"
 
1917
               max_length="4098"/>
 
1918
        <field name="continue"
 
1919
               widget="submit"
 
1920
               validator="submit"
 
1921
               description="[CONTINUE]"/>
 
1922
        <field name="cancel"
 
1923
               widget="submit"
 
1924
               validator="submit"
 
1925
               cancel="true"
 
1926
               description="[CANCEL]"/>
 
1927
      </fields>
 
1928
    </form>
 
1929
 
 
1930
    <form name="new_payment" page="accounts_add_payment" method="POST">
 
1931
      <fields>
 
1932
        <field name="invoice"
 
1933
               widget="invoiceselect"
 
1934
               description="[INVOICE_TO_PAY]"
 
1935
               validator="invoice"/>
 
1936
        <field name="date"
 
1937
               widget="date"
 
1938
               description="[PAYMENT_DATE]"
 
1939
               validator="date"
 
1940
               required="true"/>
 
1941
        <field name="amount"
 
1942
               widget="currency"
 
1943
               description="[PAYMENT]"
 
1944
               validator="float"
 
1945
               required="true"
 
1946
               max_value="9999.99"
 
1947
               min_value="0.00"
 
1948
               default_value="0.00"/>
 
1949
        <field name="type"
 
1950
               widget="select"
 
1951
               description="[PAYMENT_TYPE]"
 
1952
               validator="choice"
 
1953
               required="true">
 
1954
          <enum>
 
1955
            <option value="Cash" description="[CASH]" default="true"/>
 
1956
            <option value="Check" description="[CHECK]"/>
 
1957
            <option value="Credit" description="[CREDIT]"/>
 
1958
            <option value="Other" description="[OTHER]"/>
 
1959
          </enum>
 
1960
        </field>
 
1961
        <field name="transaction1"
 
1962
               widget="text"
 
1963
               description="[TRANSACTION_DATA]"
 
1964
               validator="text"
 
1965
               min_length="1"
 
1966
               max_length="255"/>
 
1967
        <field name="transaction2"
 
1968
               widget="text"
 
1969
               description="[TRANSACTION_DATA]"
 
1970
               validator="text"
 
1971
               min_length="1"
 
1972
               max_length="255"/>
 
1973
        <field name="continue"
 
1974
               widget="submit"
 
1975
               description="[CONTINUE]"
 
1976
               validator="submit"/>
 
1977
        <field name="cancel" 
 
1978
               widget="submit"
 
1979
               description="[CANCEL]"
 
1980
               validator="submit"
 
1981
               cancel="true"/>
 
1982
      </fields>
 
1983
    </form>
 
1984
 
 
1985
    <form name="edit_payment" page="edit_payment" method="POST">
 
1986
      <fields>
 
1987
        <field name="date"
 
1988
               widget="date"
 
1989
               description="[PAYMENT_DATE]"
 
1990
               validator="date"
 
1991
               required="true"/>
 
1992
        <field name="amount"
 
1993
               widget="text"
 
1994
               description="[PAYMENT]"
 
1995
               validator="float"
 
1996
               required="true"
 
1997
               max_value="9999.99"
 
1998
               min_value="0.00"
 
1999
               default_value="0.00"/>
 
2000
        <field name="status"
 
2001
               widget="select"
 
2002
               description="[PAYMENT_STATUS]"
 
2003
               validator="choice"
 
2004
               required="true">
 
2005
          <enum>
 
2006
            <option value="Pending" description="[PENDING]" />
 
2007
            <option value="Declined" description="[DECLINED]" />
 
2008
            <option value="Completed" description="[COMPLETED]" default="true"/>
 
2009
            <option value="Authorized" description="[AUTHORIZED]" />
 
2010
            <option value="Refunded" description="[REFUNDED]" />
 
2011
            <option value="Reversed" description="[REVERSED]" />
 
2012
            <option value="Voided" description="[VOIDED]" />
 
2013
          </enum>
 
2014
        </field>
 
2015
        <field name="statusmessage"
 
2016
               widget="textarea"
 
2017
               description="[PAYMENT_STATUS_MESSAGE]"
 
2018
               validator="text"
 
2019
               min_length="1"
 
2020
               max_lenth="255"/>
 
2021
        <field name="transaction1"
 
2022
               widget="text"
 
2023
               description="[TRANSACTION_DATA]"
 
2024
               validator="text"
 
2025
               min_length="1"
 
2026
               max_length="255"/>
 
2027
        <field name="transaction2"
 
2028
               widget="text"
 
2029
               description="[TRANSACTION_DATA]"
 
2030
               validator="text"
 
2031
               min_length="1"
 
2032
               max_length="255"/>
 
2033
        <field name="capture"
 
2034
               widget="submit"
 
2035
               description="[CAPTURE_PAYMENT]"
 
2036
               validator="submit"/>
 
2037
        <field name="void"
 
2038
               widget="submit"
 
2039
               description="[VOID_PAYMENT]"
 
2040
               validator="submit"/>
 
2041
        <field name="refund"
 
2042
               widget="submit"
 
2043
               description="[REFUND_PAYMENT]"
 
2044
               validator="submit"/>
 
2045
        <field name="save"
 
2046
               widget="submit"
 
2047
               description="[SAVE]"
 
2048
               validator="submit"/>
 
2049
        <field name="cancel" 
 
2050
               widget="submit"
 
2051
               cancel="true"
 
2052
               description="[CANCEL]"
 
2053
               validator="submit"/>
 
2054
      </fields>
 
2055
    </form>
 
2056
 
 
2057
    <form name="welcome_email" page="accounts_welcome" method="POST">
 
2058
      <fields>
 
2059
        <field name="email"
 
2060
               widget="text"
 
2061
               description="[CUSTOMERS_EMAIL]"
 
2062
               validator="email"
 
2063
               required="true"/>
 
2064
        <field name="subject"
 
2065
               widget="text"
 
2066
               description="[SUBJECT]"
 
2067
               validator="text"
 
2068
               required="true"
 
2069
               max_length="70"
 
2070
               min_length="1"/>
 
2071
        <field name="email_body"
 
2072
               widget="textarea"
 
2073
               description="[EMAIL_BODY]"
 
2074
               validator="text"
 
2075
               required="true"
 
2076
               max_length="4096"
 
2077
               min_length="1"/>
 
2078
        <field name="continue"
 
2079
               widget="submit"
 
2080
               description="[CONTINUE]"
 
2081
               validator="submit"/>
 
2082
        <field name="cancel"
 
2083
               widget="submit"
 
2084
               description="[CANCEL]"
 
2085
               validator="submit"
 
2086
               cancel="true"/>
 
2087
      </fields>
 
2088
    </form>
 
2089
 
 
2090
    <form name="billing_payment" page="billing_add_payment" method="POST">
 
2091
      <fields>
 
2092
        <field name="invoiceselect" 
 
2093
               widget="invoiceselect"
 
2094
               description="[INVOICE_TO_PAY]"
 
2095
               validator="invoice"
 
2096
               required="true"/>
 
2097
        <field name="invoiceint"
 
2098
               widget="text"
 
2099
               description="[INVOICE_ID]"
 
2100
               validator="invoice"
 
2101
               required="false"/>
 
2102
        <field name="date"
 
2103
               widget="date"
 
2104
               description="[PAYMENT_DATE]"
 
2105
               validator="date"
 
2106
               required="true"/>
 
2107
        <field name="amount"
 
2108
               widget="currency"
 
2109
               description="[PAYMENT]"
 
2110
               validator="float"
 
2111
               required="true"
 
2112
               max_value="99999999.99"
 
2113
               min_value="0.00"
 
2114
               default_value="0.00"/>
 
2115
        <field name="type"
 
2116
               widget="select"
 
2117
               description="[PAYMENT_TYPE]"
 
2118
               validator="choice"
 
2119
               required="true">
 
2120
          <enum>
 
2121
            <option value="Cash" description="[CASH]" default="true"/>
 
2122
            <option value="Check" description="[CHECK]"/>
 
2123
            <option value="Other" description="[OTHER]"/>
 
2124
          </enum>
 
2125
        </field>
 
2126
        <field name="status"
 
2127
               widget="select"
 
2128
               description="[PAYMENT_STATUS]"
 
2129
               validator="choice"
 
2130
               required="true">
 
2131
          <enum>
 
2132
            <option value="Pending" description="[PENDING]" />
 
2133
            <option value="Declined" description="[DECLINED]" />
 
2134
            <option value="Completed" description="[COMPLETED]" default="true"/>
 
2135
            <option value="Authorized" description="[AUTHORIZED]" />
 
2136
            <option value="Refunded" description="[REFUNDED]" />
 
2137
            <option value="Reversed" description="[REVERSED]" />
 
2138
            <option value="Voided" description="[VOIDED]" />
 
2139
          </enum>
 
2140
        </field>
 
2141
        <field name="transaction1"
 
2142
               widget="text"
 
2143
               description="[TRANSACTION_DATA]"
 
2144
               validator="text"
 
2145
               min_length="1"
 
2146
               max_length="255"/>
 
2147
        <field name="transaction2"
 
2148
               widget="text"
 
2149
               description="[TRANSACTION_DATA]"
 
2150
               validator="text"
 
2151
               min_length="1"
 
2152
               max_length="255"/>
 
2153
        <field name="continue"
 
2154
               widget="submit"
 
2155
               description="[CONTINUE]"
 
2156
               validator="submit"/>
 
2157
        <field name="cancel" 
 
2158
               widget="submit"
 
2159
               cancel="true"
 
2160
               description="[CANCEL]"
 
2161
               validator="submit"/>
 
2162
      </fields>
 
2163
    </form>
 
2164
 
 
2165
    <form name="taxes_action" page="taxes" method="POST">
 
2166
      <fields>
 
2167
        <field name="add"
 
2168
               widget="submit"
 
2169
               description="[NEW_TAX_RULE]"
 
2170
               validator="submit"/>
 
2171
      </fields>
 
2172
    </form>
 
2173
 
 
2174
    <form name="tax_rules" page="taxes" method="POST">
 
2175
      <fields>
 
2176
        <field name="rules"
 
2177
               description="[TAX_RULES]"
 
2178
               widget="taxruletable"
 
2179
               validator="taxrule"
 
2180
               array="true"
 
2181
               required="true"/>
 
2182
        <field name="remove"
 
2183
               description="[REMOVE]"
 
2184
               widget="submit"
 
2185
               validator="submit"/>
 
2186
      </fields>
 
2187
    </form>
 
2188
 
 
2189
    <form name="new_tax_rule" page="add_tax_rule" method="POST">
 
2190
      <fields>
 
2191
        <field name="rate"
 
2192
               widget="text"
 
2193
               description="[TAX_RATE]"
 
2194
               validator="float"
 
2195
               required="true"
 
2196
               min_value="0.01"
 
2197
               max_length="99.99"/>
 
2198
        <field name="country"
 
2199
               widget="country"
 
2200
               description="[COUNTRY]"
 
2201
               validator="country"
 
2202
               required="true"/>
 
2203
        <field name="state"
 
2204
               widget="text"
 
2205
               description="[SPECIFIC_STATE]"
 
2206
               validator="text"
 
2207
               min_length="1"
 
2208
               max_length="255"/>
 
2209
        <field name="allstates"
 
2210
               widget="checkbox"
 
2211
               description="[ALL_STATES]"
 
2212
               default_value="true"
 
2213
               validator="choice">
 
2214
          <enum>
 
2215
            <option value="true"/>
 
2216
          </enum>
 
2217
        </field>
 
2218
        <field name="description"
 
2219
               widget="text"
 
2220
               description="[DESCRIPTION]"
 
2221
               validator="text"
 
2222
               required="true"
 
2223
               min_length="1"
 
2224
               max_length="255"/>
 
2225
        <field name="continue"
 
2226
               widget="submit"
 
2227
               description="[CONTINUE]"
 
2228
               validator="submit"/>
 
2229
        <field name="cancel"
 
2230
               widget="submit"
 
2231
               cancel="true"
 
2232
               description="[CANCEL]"
 
2233
               validator="submit"/>
 
2234
      </fields>
 
2235
    </form>
 
2236
 
 
2237
    <form name="browse_invoices_action" page="billing_invoices" method="POST">
 
2238
      <fields>
 
2239
        <field name="add"
 
2240
               widget="submit"
 
2241
               validator="submit"
 
2242
               description="[CREATE_INVOICE]"/>
 
2243
      </fields>
 
2244
    </form>
 
2245
 
 
2246
    <form name="browse_invoices" page="billing_invoices" method="POST">
 
2247
      <fields>
 
2248
        <field name="invoices"
 
2249
               description="[OUTSTANDING_INVOICES]"
 
2250
               widget="invoicetable"
 
2251
               validator="invoice"
 
2252
               required="true"/>
 
2253
      </fields>
 
2254
    </form>
 
2255
 
 
2256
    <form name="outstanding_invoices_action" page="billing_invoices_outstanding" method="POST">
 
2257
      <fields>
 
2258
        <field name="add"
 
2259
               widget="submit"
 
2260
               validator="submit"
 
2261
               description="[CREATE_INVOICE]"/>
 
2262
      </fields>
 
2263
    </form>
 
2264
 
 
2265
    <form name="outstanding_invoices" page="billing_invoices_outstanding" method="POST">
 
2266
      <fields>
 
2267
        <field name="invoices"
 
2268
               description="[OUTSTANDING_INVOICES]"
 
2269
               widget="invoicetable"
 
2270
               validator="invoice"
 
2271
               required="true"/>
 
2272
      </fields>
 
2273
    </form>
 
2274
 
 
2275
    <form name="generate_invoices" page="billing_generate" method="POST">
 
2276
      <fields>
 
2277
        <field name="date"
 
2278
               widget="date"
 
2279
               description="[INVOICE_DATE]"
 
2280
               validator="date"
 
2281
               required="true"/>
 
2282
        <field name="periodbegin"
 
2283
               widget="date"
 
2284
               description="[BEGINNING_OF_INVOICE_PERIOD]"
 
2285
               validator="date"
 
2286
               required="true"/>
 
2287
        <field name="periodend"
 
2288
               widget="date"
 
2289
               description="[END_OF_INVOICE_PERIOD]"
 
2290
               validator="date"
 
2291
               required="true"/>
 
2292
        <field name="terms"
 
2293
               description="[TERMS_DAYS]"
 
2294
               widget="text"
 
2295
               validator="int"
 
2296
               required="true"
 
2297
               min_value="1"
 
2298
               max_value="3653"
 
2299
               default_value="15"/>
 
2300
        <field name="note"
 
2301
               widget="textarea"
 
2302
               description="[NOTE_TO_CUSTOMER]"
 
2303
               validator="text"
 
2304
               min_length="1"
 
2305
               max_length="4098"/>
 
2306
        <field name="continue"
 
2307
               widget="submit"
 
2308
               description="[CONTINUE]"
 
2309
               validator="submit"/>
 
2310
        <field name="cancel"
 
2311
               cancel="true"
 
2312
               widget="submit"
 
2313
               description="[CANCEL]"
 
2314
               validator="submit"/>
 
2315
      </fields>
 
2316
    </form>
 
2317
 
 
2318
    <form name="view_invoice_action" page="billing_view_invoice" method="POST">
 
2319
      <fields>
 
2320
        <field name="print"
 
2321
               widget="submit"
 
2322
               description="[PRINT]"
 
2323
               validator="submit"/>
 
2324
        <field name="email"
 
2325
               widget="submit"
 
2326
               description="[EMAIL]"
 
2327
               validator="submit"/>
 
2328
        <field name="add_payment"
 
2329
               widget="submit"
 
2330
               description="[RECEIVE_PAYMENT]"
 
2331
               validator="submit"/>
 
2332
        <field name="delete"
 
2333
               widget="submit"
 
2334
               description="[DELETE]"
 
2335
               validator="submit"/>
 
2336
      </fields>
 
2337
    </form>
 
2338
 
 
2339
    <form name="view_invoice_items" page="billing_view_invoice" method="POST">
 
2340
      <fields>
 
2341
        <field name="items"
 
2342
               description="[LINE_ITEMS]"
 
2343
               widget="invoiceitemtable"
 
2344
               validator="invoiceitem"
 
2345
               array="true"
 
2346
               required="true"/>
 
2347
        <field name="remove"
 
2348
               description="[REMOVE]"
 
2349
               widget="submit"
 
2350
               validator="submit"/>
 
2351
      </fields>
 
2352
    </form>
 
2353
 
 
2354
    <form name="view_invoice_payments" page="billing_view_invoice" method="POST">
 
2355
      <fields>
 
2356
        <field name="payments"
 
2357
               description="[PAYMENTS]"
 
2358
               widget="paymenttable"
 
2359
               validator="payment"
 
2360
               array="true"
 
2361
               required="true"/>
 
2362
        <field name="remove"
 
2363
               description="[REMOVE]"
 
2364
               widget="submit"
 
2365
               validator="submit"/>
 
2366
      </fields>
 
2367
    </form>
 
2368
 
 
2369
    <form name="view_invoice_outstanding_invoices" page="billing_view_invoice" method="POST">
 
2370
      <fields>
 
2371
        <field name="invoices"
 
2372
               description="[OUTSTANDING_INVOICES]"
 
2373
               widget="invoicetable"
 
2374
               validator="invoice"
 
2375
               array="true"
 
2376
               required="true"/>
 
2377
      </fields>
 
2378
    </form>
 
2379
 
 
2380
    <form name="delete_invoice" page="billing_delete_invoice" method="POST">
 
2381
      <fields>
 
2382
        <field name="cancel"
 
2383
               widget="submit"
 
2384
               description="[CANCEL]"
 
2385
               validator="submit"
 
2386
               cancel="true"/>
 
2387
        <field name="delete"
 
2388
               widget="submit"
 
2389
               description="[DELETE]"
 
2390
               validator="submit"
 
2391
               required="false"/>
 
2392
      </fields>
 
2393
    </form>
 
2394
 
 
2395
    <form name="delete_invoice_items" page="billing_delete_invoice" method="POST">
 
2396
      <fields>
 
2397
        <field name="items"
 
2398
               description="[INVOICE_ITEMS]"
 
2399
               widget="invoiceitemtable"
 
2400
               validator="invoiceitem"
 
2401
               array="true"
 
2402
               required="true"/>
 
2403
      </fields>
 
2404
    </form>
 
2405
 
 
2406
    <form name="email_invoice" page="billing_email_invoice" method="POST">
 
2407
      <fields>
 
2408
        <field name="email"
 
2409
               widget="text"
 
2410
               description="[CUSTOMERS_EMAIL]"
 
2411
               validator="email"
 
2412
               required="true"/>
 
2413
        <field name="subject"
 
2414
               widget="text"
 
2415
               description="[SUBJECT]"
 
2416
               validator="text"
 
2417
               required="true"
 
2418
               max_length="255"
 
2419
               min_length="1"/>
 
2420
        <field name="invoice"
 
2421
               widget="textarea"
 
2422
               description="[EMAIL_BODY_INVOICE]"
 
2423
               validator="text"
 
2424
               required="true"
 
2425
               max_length="4096"
 
2426
               min_length="1"/>
 
2427
        <field name="continue"
 
2428
               widget="submit"
 
2429
               description="[CONTINUE]"
 
2430
               validator="submit"/>
 
2431
        <field name="cancel"
 
2432
               widget="submit"
 
2433
               description="[CANCEL]"
 
2434
               validator="submit"
 
2435
               cancel="true"/>
 
2436
      </fields>
 
2437
    </form>
 
2438
 
 
2439
    <form name="new_line_item" page="billing_view_invoice" method="POST">
 
2440
      <fields>
 
2441
        <field name="text"
 
2442
               widget="text"
 
2443
               description="[ITEM]"
 
2444
               validator="text"
 
2445
               max_length="255"
 
2446
               min_length="10"/>
 
2447
        <field name="unitamount"
 
2448
               widget="currency"
 
2449
               description="[UNIT_PRICE]"
 
2450
               validator="float"
 
2451
               required="true"
 
2452
               max_value="99999.99"
 
2453
               min_value="-99999.99"
 
2454
               default_value="0.00"/>
 
2455
        <field name="quantity"
 
2456
               widget="text"
 
2457
               description="[QUANTITY]"
 
2458
               validator="int"
 
2459
               required="true"
 
2460
               max_length="255"
 
2461
               min_length="1"
 
2462
               default_value="0"/>
 
2463
        <field name="continue"
 
2464
               widget="submit"
 
2465
               description="[ADD_LINE_ITEM]"
 
2466
               validator="submit"/>
 
2467
      </fields>
 
2468
    </form>
 
2469
 
 
2470
    <form name="products_action" page="services_products" method="POST">
 
2471
      <fields>
 
2472
        <field name="add"
 
2473
               widget="submit"
 
2474
               description="[CREATE_PRODUCT]"
 
2475
               validator="submit"/>
 
2476
      </fields>
 
2477
    </form>
 
2478
 
 
2479
    <form name="products" page="services_products" method="POST">
 
2480
      <fields>
 
2481
        <field name="products"
 
2482
               description="[PRODUCTS]"
 
2483
               widget="producttable"
 
2484
               validator="product"
 
2485
               array="true"
 
2486
               required="true"/>
 
2487
        <field name="remove"
 
2488
               widget="submit"
 
2489
               validator="submit"
 
2490
               description="[REMOVE]"/>
 
2491
      </fields>
 
2492
    </form>
 
2493
 
 
2494
    <form name="new_product" page="services_new_product" method="POST">
 
2495
      <fields>
 
2496
        <field name="name"
 
2497
               widget="text"
 
2498
               description="[PRODUCT_NAME]"
 
2499
               validator="text"
 
2500
               required="true"
 
2501
               max_length="255"
 
2502
               min_length="1"/>
 
2503
        <field name="description"
 
2504
               widget="textarea"
 
2505
               description="[DESCRIPTION]"
 
2506
               validator="text"
 
2507
               max_length="2048"
 
2508
               min_length="1"/>
 
2509
        <field name="public"
 
2510
               widget="checkbox"
 
2511
               validator="choice"
 
2512
               description="[ALLOW_CUSTOMERS_TO_ORDER_THIS_PRODUCT]">
 
2513
          <enum> <option value="Yes"/> </enum>
 
2514
        </field>
 
2515
        <field name="continue"
 
2516
               widget="submit"
 
2517
               description="[CREATE_PRODUCT]"
 
2518
               validator="submit"/>
 
2519
        <field name="cancel"
 
2520
               widget="submit"
 
2521
               cancel="true"
 
2522
               description="[CANCEL]"
 
2523
               validator="submit"/>  
 
2524
      </fields>
 
2525
    </form>
 
2526
 
 
2527
    <form name="new_product_confirm" page="services_new_product" method="POST">
 
2528
      <fields>
 
2529
        <field name="continue"
 
2530
               widget="submit"
 
2531
               description="[CONTINUE]"
 
2532
               validator="submit"/>
 
2533
        <field name="goback"
 
2534
               widget="submit"
 
2535
               description="[GO_BACK]"
 
2536
               validator="submit"/>
 
2537
      </fields>
 
2538
    </form>
 
2539
 
 
2540
    <form name="edit_product" page="services_edit_product" method="POST">
 
2541
      <fields>
 
2542
        <field name="name"
 
2543
               widget="text"
 
2544
               description="[PRODUCT_NAME]"
 
2545
               validator="text"
 
2546
               required="true"
 
2547
               max_length="255"
 
2548
               min_length="1"/>
 
2549
        <field name="description"
 
2550
               widget="textarea"
 
2551
               description="[DESCRIPTION]"
 
2552
               validator="text"
 
2553
               max_length="2048"
 
2554
               min_length="1"/>
 
2555
        <field name="public"
 
2556
               widget="checkbox"
 
2557
               validator="choice"
 
2558
               description="[ALLOW_CUSTOMERS_TO_ORDER_THIS_PRODUCT]">
 
2559
          <enum> <option value="Yes"/> </enum>
 
2560
        </field>
 
2561
        <field name="save"
 
2562
               widget="submit"
 
2563
               description="[SAVE]"
 
2564
               validator="submit"/>
 
2565
        <field name="cancel"
 
2566
               widget="submit"
 
2567
               submit="true"
 
2568
               description="[CANCEL]"
 
2569
               validator="submit"/>
 
2570
      </fields>
 
2571
    </form>
 
2572
 
 
2573
    <form name="edit_product_pricing" page="services_edit_product" method="POST">
 
2574
      <fields>
 
2575
        <field name="prices"
 
2576
               widget="pricetable"
 
2577
               validator="productprice"
 
2578
               description="[PRICING]"
 
2579
               array="true"
 
2580
               required="true"/>
 
2581
        <field name="delete"
 
2582
               widget="submit"
 
2583
               validator="submit"
 
2584
               description="[DELETE]"/>
 
2585
      </fields>
 
2586
    </form>
 
2587
 
 
2588
    <form name="edit_product_add_price" page="services_edit_product" method="POST">
 
2589
      <fields>
 
2590
        <field name="type"
 
2591
               description="[TYPE]"
 
2592
               widget="select"
 
2593
               validator="choice"
 
2594
               required="true">
 
2595
          <enum>
 
2596
            <option value="Onetime" description="[ONETIME]"/>
 
2597
            <option value="Recurring" description="[RECURRING]"/>
 
2598
          </enum>
 
2599
        </field>
 
2600
        <field name="termlength"
 
2601
               description="[TERM_LENGTH] ([MONTHS])"
 
2602
               widget="text"
 
2603
               validator="int"
 
2604
               required="false"/>
 
2605
        <field name="price"
 
2606
               description="[PRICE]"
 
2607
               widget="currency"
 
2608
               validator="float"
 
2609
               required="true"/>
 
2610
        <field name="taxable"
 
2611
               description="[TAXABLE]"
 
2612
               widget="select"
 
2613
               validator="choice"
 
2614
               required="true">
 
2615
          <enum>
 
2616
            <option value="Yes" description="[YES]"/>
 
2617
            <option value="No" description="[NO]"/>
 
2618
          </enum>
 
2619
        </field>
 
2620
        <field name="add"
 
2621
               description="[ADD_OR_UPDATE_PRICE]"
 
2622
               widget="submit"
 
2623
               validator="submit"/>
 
2624
      </fields>
 
2625
    </form>
 
2626
 
 
2627
    <form name="delete_product" page="services_delete_product">
 
2628
      <fields>
 
2629
        <field name="cancel"
 
2630
               widget="submit"
 
2631
               cancel="true"
 
2632
               description="[CANCEL]"
 
2633
               validator="submit"/>
 
2634
        <field name="delete"
 
2635
               widget="submit"
 
2636
               description="[DELETE]"
 
2637
               validator="submit"/>
 
2638
      </fields>
 
2639
    </form>
 
2640
 
 
2641
    <form name="domain_services_action" page="services_domain_services" method="POST">
 
2642
      <fields>
 
2643
        <field name="add"
 
2644
               widget="submit"
 
2645
               description="[CREATE_DOMAIN_SERVICE]"
 
2646
               validator="submit"/>
 
2647
      </fields>
 
2648
    </form>
 
2649
 
 
2650
    <form name="domain_services" page="services_domain_services" method="POST">
 
2651
      <fields>
 
2652
        <field name="services"
 
2653
               description="[DOMAIN_SERVICES]"
 
2654
               widget="domainservicetable"
 
2655
               validator="domainservice"
 
2656
               array="true"
 
2657
               required="true"/>
 
2658
        <field name="remove"
 
2659
               description="[REMOVE]"
 
2660
               widget="submit"
 
2661
               validator="submit"/>
 
2662
      </fields>
 
2663
    </form>
 
2664
 
 
2665
    <form name="new_domain_service" page="services_new_domain_service" method="POST">
 
2666
      <fields>
 
2667
        <field name="tld"
 
2668
               widget="text"
 
2669
               description="TLD"
 
2670
               validator="text"
 
2671
               required="true"
 
2672
               max_length="255"
 
2673
               min_length="1"/>
 
2674
        <field name="modulename"
 
2675
               description="[REGISTRAR_MODULE]"
 
2676
               widget="registrarmoduleselect"
 
2677
               required="true"
 
2678
               validator="registrarmodule"/>
 
2679
        <field name="description"
 
2680
               widget="textarea"
 
2681
               description="[DESCRIPTION]"
 
2682
               validator="text"
 
2683
               max_length="2048"
 
2684
               min_length="1"/>
 
2685
        <field name="public"
 
2686
               widget="checkbox"
 
2687
               validator="choice"
 
2688
               description="[ALLOW_CUSTOMERS_TO_ORDER_THIS_SERVICE]">
 
2689
          <enum> <option value="Yes"/> </enum>
 
2690
        </field>
 
2691
        <field name="continue"
 
2692
               widget="submit"
 
2693
               description="[CREATE_DOMAIN_SERVICE]"
 
2694
               validator="submit"
 
2695
               required="false"/>
 
2696
        <field name="cancel"
 
2697
               widget="submit"
 
2698
               cancel="true"
 
2699
               description="[CANCEL]"
 
2700
               validator="submit"/>
 
2701
      </fields>
 
2702
    </form>
 
2703
 
 
2704
    <form name="edit_domain_service" page="services_edit_domain_service" method="POST">
 
2705
      <fields>
 
2706
        <field name="modulename"
 
2707
               description="[REGISTRAR_MODULE]"
 
2708
               widget="registrarmoduleselect"
 
2709
               required="true"
 
2710
               validator="registrarmodule"/>
 
2711
        <field name="description"
 
2712
               widget="textarea"
 
2713
               description="[DESCRIPTION]"
 
2714
               validator="text"
 
2715
               max_length="2048"
 
2716
               min_length="1"/>
 
2717
        <field name="public"
 
2718
               widget="checkbox"
 
2719
               validator="choice"
 
2720
               description="[ALLOW_CUSTOMERS_TO_ORDER_THIS_SERVICE]">
 
2721
          <enum> <option value="Yes"/> </enum>
 
2722
        </field>
 
2723
        <field name="save"
 
2724
               widget="submit"
 
2725
               description="[SAVE]"
 
2726
               validator="submit"/>
 
2727
        <field name="cancel"
 
2728
               widget="submit"
 
2729
               cancel="true"
 
2730
               description="[CANCEL]"
 
2731
               validator="submit"/>
 
2732
      </fields>
 
2733
    </form>
 
2734
 
 
2735
    <form name="edit_domain_pricing" page="services_edit_domain_service" method="POST">
 
2736
      <fields>
 
2737
        <field name="prices"
 
2738
               widget="pricetable"
 
2739
               validator="domainserviceprice"
 
2740
               description="[PRICING]"
 
2741
               array="true"
 
2742
               required="true"/>
 
2743
        <field name="delete"
 
2744
               widget="submit"
 
2745
               validator="submit"
 
2746
               description="[DELETE]"/>
 
2747
      </fields>
 
2748
    </form>
 
2749
 
 
2750
    <form name="edit_domain_add_price" page="services_edit_domain_service" method="POST">
 
2751
      <fields>
 
2752
        <field name="type"
 
2753
               description="[TYPE]"
 
2754
               widget="select"
 
2755
               validator="choice"
 
2756
               required="true">
 
2757
          <enum>
 
2758
            <option value="Onetime" description="[ONETIME]"/>
 
2759
            <option value="Recurring" description="[RECURRING]"/>
 
2760
          </enum>
 
2761
        </field>
 
2762
        <field name="termlength"
 
2763
               description="[TERM_LENGTH] ([MONTHS])"
 
2764
               widget="text"
 
2765
               validator="int"
 
2766
               required="false"/>
 
2767
        <field name="price"
 
2768
               description="[PRICE]"
 
2769
               widget="currency"
 
2770
               validator="float"
 
2771
               required="true"/>
 
2772
        <field name="taxable"
 
2773
               description="[TAXABLE]"
 
2774
               widget="select"
 
2775
               validator="choice"
 
2776
               required="true">
 
2777
          <enum>
 
2778
            <option value="Yes" description="[YES]"/>
 
2779
            <option value="No" description="[NO]"/>
 
2780
          </enum>
 
2781
        </field>
 
2782
        <field name="add"
 
2783
               description="[ADD_OR_UPDATE_PRICE]"
 
2784
               widget="submit"
 
2785
               validator="submit"/>
 
2786
      </fields>
 
2787
    </form>
 
2788
 
 
2789
    <form name="new_domain_service_confirm" page="services_new_domain_service" method="POST">
 
2790
      <fields>
 
2791
        <field name="continue"
 
2792
               widget="submit"
 
2793
               description="[CONTINUE]"
 
2794
               validator="submit"/>
 
2795
        <field name="goback"
 
2796
               widget="submit"
 
2797
               description="[GO_BACK]"
 
2798
               validator="submit"/>
 
2799
      </fields>
 
2800
    </form>
 
2801
 
 
2802
    <form name="delete_domain_service" page="services_delete_domain_service" method="POST">
 
2803
      <fields>
 
2804
        <field name="cancel"
 
2805
               widget="submit"
 
2806
               cancel="true"
 
2807
               description="[CANCEL]"
 
2808
               validator="submit"/>
 
2809
        <field name="delete"
 
2810
               widget="submit"
 
2811
               description="[DELETE]"
 
2812
               validator="submit"/>
 
2813
      </fields>
 
2814
    </form>
 
2815
 
 
2816
    <form name="web_hosting_action" page="services_web_hosting" method="POST">
 
2817
      <fields>
 
2818
        <field name="add"
 
2819
               widget="submit"
 
2820
               description="[CREATE_HOSTING_SERVICE]"
 
2821
               validator="submit"/>
 
2822
      </fields>
 
2823
    </form>
 
2824
 
 
2825
    <form name="hosting_services" page="services_web_hosting" method="POST">
 
2826
      <fields>
 
2827
        <field name="hosting_services"
 
2828
               description="[WEB_HOSTING_SERVICES]"
 
2829
               widget="hostingservicetable"
 
2830
               validator="hosting"
 
2831
               array="true"
 
2832
               required="true"/>
 
2833
        <field name="remove"
 
2834
               description="[REMOVE]"
 
2835
               widget="submit"
 
2836
               validator="submit"/>
 
2837
      </fields>
 
2838
    </form>
 
2839
 
 
2840
    <form name="view_hosting_action" page="services_view_hosting_service" method="POST">
 
2841
      <fields>
 
2842
        <field name="edit"
 
2843
               widget="submit"
 
2844
               description="[EDIT]"
 
2845
               validator="submit"/>
 
2846
        <field name="delete"
 
2847
               widget="submit"
 
2848
               description="[DELETE]"
 
2849
               validator="submit"/>
 
2850
      </fields>
 
2851
    </form>
 
2852
 
 
2853
    <form name="new_hosting" page="services_new_hosting" method="POST">
 
2854
      <fields>
 
2855
        <field name="title"
 
2856
               widget="text"
 
2857
               description="[TITLE]"
 
2858
               validator="text"
 
2859
               required="true"
 
2860
               max_length="255"
 
2861
               min_length="1"/>
 
2862
        <field name="description"
 
2863
               widget="textarea"
 
2864
               description="[DESCRIPTION]"
 
2865
               validator="text"
 
2866
               max_lenth="2048"
 
2867
               min_length="1"/>
 
2868
        <field name="uniqueip"
 
2869
               widget="select"
 
2870
               description="[UNIQUE_IP_ADDRESS]"
 
2871
               validator="choice"
 
2872
               required="true">
 
2873
          <enum>
 
2874
            <option value="Not Required" description="[NOT_REQUIRED]" default="true"/>
 
2875
            <option value="Required" description="[REQUIRED]"/>
 
2876
          </enum>
 
2877
        </field>
 
2878
        <field name="domainrequirement"
 
2879
               widget="select"
 
2880
               description="[DOMAIN]"
 
2881
               validator="choice"
 
2882
               required="true">
 
2883
          <enum>
 
2884
            <option value="Not Required" description="[NOT_REQUIRED]"/>
 
2885
            <option value="Required" description="[REQUIRED]" default="true"/>
 
2886
          </enum>
 
2887
        </field>
 
2888
        <field name="public"
 
2889
               widget="checkbox"
 
2890
               validator="choice"
 
2891
               description="[ALLOW_CUSTOMERS_TO_ORDER_THIS_SERVICE]">
 
2892
          <enum>
 
2893
            <option value="Yes"/>
 
2894
          </enum>
 
2895
        </field>
 
2896
        <field name="continue"
 
2897
               widget="submit"
 
2898
               description="[CREATE_HOSTING_SERVICE]"
 
2899
               validator="submit"/>
 
2900
        <field name="cancel"
 
2901
               widget="submit"
 
2902
               cancel="true"
 
2903
               description="[CANCEL]"
 
2904
               validator="submit"/>
 
2905
      </fields>
 
2906
    </form>
 
2907
 
 
2908
    <form name="new_hosting_confirm" page="services_new_hosting" method="POST">
 
2909
      <fields>
 
2910
        <field name="continue"
 
2911
               widget="submit"
 
2912
               description="[CONTINUE]"
 
2913
               validator="submit"/>
 
2914
        <field name="goback"
 
2915
               widget="submit"
 
2916
               description="[GO_BACK]"
 
2917
               validator="submit"/>
 
2918
      </fields>
 
2919
    </form>
 
2920
 
 
2921
    <form name="edit_hosting" page="services_edit_hosting" method="POST">
 
2922
      <fields>
 
2923
        <field name="title"
 
2924
               widget="text"
 
2925
               description="[TITLE]"
 
2926
               validator="text"
 
2927
               required="true"
 
2928
               max_length="255"
 
2929
               min_length="1"/>
 
2930
        <field name="description"
 
2931
               widget="textarea"
 
2932
               description="[DESCRIPTION]"
 
2933
               validator="text"
 
2934
               max_lenth="2048"
 
2935
               min_length="1"/>
 
2936
        <field name="uniqueip"
 
2937
               widget="select"
 
2938
               description="Unique IP Address"
 
2939
               validator="choice"
 
2940
               required="true">
 
2941
          <enum>
 
2942
            <option value="Not Required" description="[NOT_REQUIRED]" default="true"/>
 
2943
            <option value="Required" description="[REQUIRED]"/>
 
2944
          </enum>
 
2945
        </field>
 
2946
        <field name="domainrequirement"
 
2947
               widget="select"
 
2948
               description="[DOMAIN]"
 
2949
               validator="choice"
 
2950
               required="true">
 
2951
          <enum>
 
2952
            <option value="Not Required" description="[NOT_REQUIRED]"/>
 
2953
            <option value="Required" description="[REQUIRED]" default="true"/>
 
2954
          </enum>
 
2955
        </field>
 
2956
        <field name="public"
 
2957
               widget="checkbox"
 
2958
               validator="choice"
 
2959
               description="[ALLOW_CUSTOMERS_TO_ORDER_THIS_SERVICE]">
 
2960
          <enum> <option value="Yes"/> </enum>
 
2961
        </field>
 
2962
        <field name="save"
 
2963
               widget="submit"
 
2964
               description="[SAVE]"
 
2965
               validator="submit"/>
 
2966
        <field name="cancel"
 
2967
               widget="submit"
 
2968
               cancel="true"
 
2969
               description="[CANCEL]"
 
2970
               validator="submit"/>
 
2971
      </fields>
 
2972
    </form>
 
2973
 
 
2974
    <form name="edit_hosting_pricing" page="services_edit_hosting" method="POST">
 
2975
      <fields>
 
2976
        <field name="prices"
 
2977
               widget="pricetable"
 
2978
               validator="hostingserviceprice"
 
2979
               description="[PRICING]"
 
2980
               array="true"
 
2981
               required="true"/>
 
2982
        <field name="delete"
 
2983
               widget="submit"
 
2984
               validator="submit"
 
2985
               description="[DELETE]"/>
 
2986
      </fields>
 
2987
    </form>
 
2988
 
 
2989
    <form name="edit_hosting_add_price" page="services_edit_hosting" method="POST">
 
2990
      <fields>
 
2991
        <field name="type"
 
2992
               description="[TYPE]"
 
2993
               widget="select"
 
2994
               validator="choice"
 
2995
               required="true">
 
2996
          <enum>
 
2997
            <option value="Onetime" description="[ONETIME]"/>
 
2998
            <option value="Recurring" description="[RECURRING]"/>
 
2999
          </enum>
 
3000
        </field>
 
3001
        <field name="termlength"
 
3002
               description="[TERM_LENGTH] ([MONTHS])"
 
3003
               widget="text"
 
3004
               validator="int"
 
3005
               required="false"/>
 
3006
        <field name="price"
 
3007
               description="[PRICE]"
 
3008
               widget="currency"
 
3009
               validator="float"
 
3010
               required="true"/>
 
3011
        <field name="taxable"
 
3012
               description="[TAXABLE]"
 
3013
               widget="select"
 
3014
               validator="choice"
 
3015
               required="true">
 
3016
          <enum>
 
3017
            <option value="Yes" description="[YES]"/>
 
3018
            <option value="No" description="[NO]"/>
 
3019
          </enum>
 
3020
        </field>
 
3021
        <field name="add"
 
3022
               description="[ADD_OR_UPDATE_PRICE]"
 
3023
               widget="submit"
 
3024
               validator="submit"/>
 
3025
      </fields>
 
3026
    </form>
 
3027
 
 
3028
    <form name="delete_hosting" page="services_delete_hosting" method="POST">
 
3029
      <fields>
 
3030
        <field name="cancel"
 
3031
               widget="submit"
 
3032
               cancel="true"
 
3033
               description="[CANCEL]"
 
3034
               validator="submit"/>
 
3035
        <field name="delete"
 
3036
               widget="submit"
 
3037
               description="[DELETE]"
 
3038
               validator="submit"/>
 
3039
      </fields>
 
3040
    </form>
 
3041
 
 
3042
    <form name="view_domain_service_action" page="services_view_domain_service" method="POST">
 
3043
      <fields>
 
3044
        <field name="edit"
 
3045
               widget="submit"
 
3046
               description="[EDIT]"
 
3047
               validator="submit"/>
 
3048
        <field name="delete"
 
3049
               widget="submit"
 
3050
               description="[DELETE]"
 
3051
               validator="submit"/>
 
3052
      </fields>
 
3053
    </form>
 
3054
 
 
3055
    <form name="registered_domains" page="domains_browse" method="POST">
 
3056
      <fields>
 
3057
        <field name="domains"
 
3058
               description="[REGISTERED_DOMAINS]"
 
3059
               widget="domaintable"
 
3060
               validator="domainpurchase"
 
3061
               required="true"
 
3062
               array="true"/>
 
3063
        <field name="remove"
 
3064
               description="[REMOVE]"
 
3065
               widget="submit"
 
3066
               validator="submit"/>
 
3067
      </fields>
 
3068
    </form>
 
3069
 
 
3070
    <form name="expired_domains" page="domains_expired" method="POST">
 
3071
      <fields>
 
3072
        <field name="domains"
 
3073
               description="[EXPIRED_DOMAINS]"
 
3074
               widget="domaintable"
 
3075
               validator="domainpurchase"
 
3076
               required="true"
 
3077
               array="true"/>
 
3078
        <field name="remove"
 
3079
               description="[REMOVE]"
 
3080
               widget="submit"
 
3081
               validator="submit"/>
 
3082
      </fields>
 
3083
    </form>
 
3084
 
 
3085
    <form name="edit_domain" page="domains_edit_domain" method="POST">
 
3086
      <fields>
 
3087
        <field name="continue"
 
3088
               widget="submit"
 
3089
               description="[SAVE]"
 
3090
               validator="submit"/>
 
3091
        <field name="cancel"
 
3092
               widget="submit"
 
3093
               cancel="true"
 
3094
               description="[CANCEL]"
 
3095
               validator="submit"/>
 
3096
        <field name="nextbillingdate"
 
3097
               widget="date"
 
3098
               description="[NEXT_BILLING_DATE]"
 
3099
               validator="date"
 
3100
               required="true"/>
 
3101
        <field name="term"
 
3102
               widget="purchasabletermselect"
 
3103
               description="[SERVICE_TERMS]"
 
3104
               validator="domainserviceprice"/>
 
3105
        <field name="note"
 
3106
               widget="textarea"
 
3107
               validator="text"
 
3108
               max_length="1024"
 
3109
               description="[NOTE]"/>
 
3110
      </fields>
 
3111
    </form>
 
3112
 
 
3113
    <form name="ippool" page="services_ip_manager" method="POST">
 
3114
      <fields>
 
3115
        <field name="ipaddresses"
 
3116
               description="[IP_ADDRESS_POOL]"
 
3117
               widget="ippooltable"
 
3118
               validator="ipaddressdb"
 
3119
               array="true"
 
3120
               required="true"/>
 
3121
        <field name="remove"
 
3122
               description="[REMOVE]"
 
3123
               widget="submit"
 
3124
               validator="submit"/>
 
3125
      </fields>
 
3126
    </form>
 
3127
 
 
3128
    <form name="renew_domain" page="domains_edit_domain" method="POST">
 
3129
      <fields>
 
3130
        <field name="term"
 
3131
               widget="purchasabletermselect"
 
3132
               description="[SERVICE_TERMS]"
 
3133
               validator="domainserviceprice"/>
 
3134
        <field name="date"
 
3135
               widget="date"
 
3136
               description="[DATE_OF_RENEWAL]"
 
3137
               validator="date"
 
3138
               required="true"/>
 
3139
        <field name="registrar"
 
3140
               widget="checkbox"
 
3141
               description="[CONTACT_REGISTRAR_TO_RENEW]"
 
3142
               default_value="true"
 
3143
               validator="choice">
 
3144
          <enum> <option value="true"/> </enum>
 
3145
        </field>
 
3146
        <field name="continue"
 
3147
               widget="submit"
 
3148
               description="[RENEW]"
 
3149
               validator="submit"/>
 
3150
      </fields>
 
3151
    </form>
 
3152
 
 
3153
    <form name="transfer_domain" page="transfer_domain" method="POST">
 
3154
      <fields>
 
3155
        <field name="servicetld"
 
3156
               widget="tldselect"
 
3157
               description="TLD"
 
3158
               validator="domainservice"
 
3159
               required="true"/>
 
3160
        <field name="secret"
 
3161
               widget="text"
 
3162
               description="[TRANSFER_SECRET]"
 
3163
               validator="text"
 
3164
               max_length="255"
 
3165
               min_length="1"/>
 
3166
        <field name="continue"
 
3167
               widget="submit"
 
3168
               description="[TRANSFER_DOMAIN]"
 
3169
               validator="submit"/>
 
3170
        <field name="domainname"
 
3171
               widget="text"
 
3172
               description="[DOMAIN_NAME]"
 
3173
               validator="text"
 
3174
               required="true"
 
3175
               min_length="1"
 
3176
               max_length="255"/>
 
3177
      </fields>
 
3178
    </form>
 
3179
 
 
3180
    <form name="transfer_domain_service" page="transfer_domain" method="POST">
 
3181
      <fields>
 
3182
        <field name="account"
 
3183
               widget="accountselect"
 
3184
               description="[ACCOUNT]"
 
3185
               validator="account"
 
3186
               required="true"/>
 
3187
        <field name="term"
 
3188
               description="[REGISTRATION_TERM]"
 
3189
               widget="purchasabletermselect"
 
3190
               required="true"
 
3191
               validator="domainserviceprice"/>
 
3192
        <field name="continue"
 
3193
               description="[CONTINUE]"
 
3194
               widget="submit"
 
3195
               validator="submit"/>
 
3196
        <field name="cancel"
 
3197
               description="[CANCEL]"
 
3198
               widget="submit"
 
3199
               cancel="true"
 
3200
               validator="submit"/>
 
3201
      </fields>
 
3202
    </form>
 
3203
 
 
3204
    <form name="transfer_domain_confirm" page="transfer_domain" method="POST">
 
3205
      <fields>
 
3206
        <field name="continue"
 
3207
               widget="submit"
 
3208
               description="[CONTINUE]"
 
3209
               validator="submit"/>
 
3210
        <field name="cancel"
 
3211
               widget="submit"
 
3212
               cancel="true"
 
3213
               description="[CANCEL]"
 
3214
               validator="submit"/>
 
3215
      </fields>
 
3216
    </form>
 
3217
 
 
3218
    <form name="register_domain" page="domains_register" method="POST">
 
3219
      <fields>
 
3220
        <field name="servicetld"
 
3221
               widget="tldselect"
 
3222
               description="TLD"
 
3223
               validator="domainservice"
 
3224
               required="true"/>
 
3225
        <field name="continue"
 
3226
               widget="submit"
 
3227
               description="[CHECK_WHOIS]"
 
3228
               validator="submit"/>
 
3229
        <field name="domainname"
 
3230
               widget="text"
 
3231
               description="[DOMAIN_NAME]"
 
3232
               validator="text"
 
3233
               required="true"
 
3234
               min_length="1"
 
3235
               max_length="255"/>
 
3236
      </fields>
 
3237
    </form>
 
3238
 
 
3239
    <form name="register_domain_service" page="domains_register" method="POST">
 
3240
      <fields>
 
3241
        <field name="account"
 
3242
               widget="accountselect"
 
3243
               description="[ACCOUNT]"
 
3244
               validator="account"
 
3245
               required="true"/>
 
3246
        <field name="term"
 
3247
               description="[REGISTRATION_TERM]"
 
3248
               widget="purchasabletermselect"
 
3249
               required="true"
 
3250
               validator="domainserviceprice"/>
 
3251
        <field name="continue"
 
3252
               description="[CONTINUE]"
 
3253
               widget="submit"
 
3254
               validator="submit"/>
 
3255
        <field name="cancel"
 
3256
               description="[CANCEL]"
 
3257
               widget="submit"
 
3258
               cancel="true"
 
3259
               validator="submit"/>
 
3260
      </fields>
 
3261
    </form>
 
3262
 
 
3263
    <form name="register_domain_confirm" page="domains_register" method="POST">
 
3264
      <fields>
 
3265
        <field name="continue"
 
3266
               widget="submit"
 
3267
               description="[CONTINUE]"
 
3268
               validator="submit"/>
 
3269
        <field name="cancel"
 
3270
               widget="submit"
 
3271
               cancel="true"
 
3272
               description="[CANCEL]"
 
3273
               validator="submit"/>
 
3274
      </fields>
 
3275
    </form>
 
3276
 
 
3277
    <form name="users_action" page="config_users" method="POST">
 
3278
      <fields>
 
3279
        <field name="add"
 
3280
               widget="submit"
 
3281
               description="[CREATE_USER]"
 
3282
               validator="submit"/>
 
3283
      </fields>
 
3284
    </form>
 
3285
 
 
3286
    <form name="users" page="config_users" method="POST">
 
3287
      <fields>
 
3288
        <field name="users"
 
3289
               description="[USERS]"
 
3290
               widget="usertable"
 
3291
               validator="user"
 
3292
               required="true"/>
 
3293
      </fields>
 
3294
    </form>
 
3295
 
 
3296
    <form name="new_user" page="config_new_user" method="POST">
 
3297
      <fields>
 
3298
        <field name="username"
 
3299
               widget="text"
 
3300
               description="[USERNAME]"
 
3301
               validator="text"
 
3302
               required="true"
 
3303
               max_length="32"
 
3304
               min_length="3"/>
 
3305
        <field name="password"
 
3306
               widget="password"
 
3307
               description="[PASSWORD]"
 
3308
               validator="password"
 
3309
               required="true"
 
3310
               md5="true"
 
3311
               max_length="32"
 
3312
               min_length="3"/>
 
3313
        <field name="repassword"
 
3314
               widget="password"
 
3315
               description="[REENTER_PASSWORD]"
 
3316
               validator="password"
 
3317
               required="true"
 
3318
               md5="true"
 
3319
               max_length="10"
 
3320
               min_length="3"/>
 
3321
        <field name="contactname"
 
3322
               widget="text"
 
3323
               description="[CONTACT_NAME]"
 
3324
               validator="text"
 
3325
               required="false"
 
3326
               max_length="255"
 
3327
               min_length="1"/>
 
3328
        <field name="email"
 
3329
               widget="text"
 
3330
               description="[EMAIL]"
 
3331
               validator="email"
 
3332
               required="false"
 
3333
               max_length="255"
 
3334
               min_length="1"/>
 
3335
        <field name="type"
 
3336
               widget="select"
 
3337
               description="[USER_TYPE]"
 
3338
               validator="choice"
 
3339
               required="true">
 
3340
          <enum>
 
3341
            <option value="Account Manager" description="[ACCOUNT_MANAGER]"/>
 
3342
            <option value="Administrator" description="[ADMINISTRATOR]"/>
 
3343
            <option value="Client" description="[CLIENT]" default="true"/>
 
3344
          </enum>
 
3345
        </field>
 
3346
        <field name="language"
 
3347
               widget="languageselect"
 
3348
               description="[LANGUAGE_PREFERENCE]"
 
3349
               validator="language"
 
3350
               required="true"/>
 
3351
        <field name="theme"
 
3352
               widget="themeselect"
 
3353
               description="[THEME_PREFERENCE]"
 
3354
               validator="theme"
 
3355
               required="true"/>
 
3356
      </fields>
 
3357
    </form>
 
3358
 
 
3359
    <form name="new_user_action" page="config_new_user" method="POST">
 
3360
      <fields>
 
3361
        <field name="add"
 
3362
               widget="submit"
 
3363
               description="[CREATE_ANOTHER_USER]"
 
3364
               validator="submit"/>
 
3365
        <field name="view"
 
3366
               widget="submit"
 
3367
               description="[BROWSE_USERS]"
 
3368
               validator="submit"/>
 
3369
      </fields>
 
3370
    </form>
 
3371
 
 
3372
    <form name="edit_user" page="config_edit_user" method="POST">
 
3373
      <fields>
 
3374
        <field name="contactname"
 
3375
               widget="text"
 
3376
               description="[CONTACT_NAME]"
 
3377
               validator="text"
 
3378
               max_length="255"
 
3379
               min_length="1"/>
 
3380
        <field name="email"
 
3381
               widget="text"
 
3382
               description="[EMAIL]"
 
3383
               validator="email"
 
3384
               max_length="30"
 
3385
               min_length="1"/>
 
3386
        <field name="language"
 
3387
               widget="languageselect"
 
3388
               description="[LANGUAGE_PREFERENCE]"
 
3389
               validator="language"
 
3390
               required="true"/>
 
3391
        <field name="theme"
 
3392
               widget="themeselect"
 
3393
               description="[THEME_PREFERENCE]"
 
3394
               validator="theme"
 
3395
               required="true"/>
 
3396
        <field name="type"
 
3397
               widget="select"
 
3398
               description="[USER_TYPE]"
 
3399
               validator="choice"
 
3400
               required="true">
 
3401
          <enum>
 
3402
            <option value="Account Manager" description="[ACCOUNT_MANAGER]" default="true"/>
 
3403
            <option value="Administrator" description="[ADMINISTRATOR]"/>
 
3404
            <option value="Client" description="[CLIENT]"/>
 
3405
          </enum>
 
3406
        </field>
 
3407
      </fields>
 
3408
    </form>
 
3409
 
 
3410
    <form name="edit_user_pass" page="config_edit_user" method="POST">
 
3411
      <fields>
 
3412
        <field name="password"
 
3413
               widget="password"
 
3414
               description="[NEW_PASSWORD]"
 
3415
               validator="password"
 
3416
               required="true"
 
3417
               max_length="32"
 
3418
               min_length="3"/>
 
3419
        <field name="repassword"
 
3420
               widget="password"
 
3421
               description="[REENTER_PASSWORD]"
 
3422
               validator="password"
 
3423
               required="true"
 
3424
               max_length="32"
 
3425
               min_length="3"/>
 
3426
      </fields>
 
3427
    </form>
 
3428
 
 
3429
    <form name="delete_user_confirm" page="config_edit_user" method="POST">
 
3430
      <fields>
 
3431
        <field name="continue"
 
3432
               widget="submit"
 
3433
               description="[DELETE]"
 
3434
               validator="submit"/>
 
3435
        <field name="goback"
 
3436
               widget="submit"
 
3437
               cancel="true"
 
3438
               description="[CANCEL]"
 
3439
               validator="submit"/>
 
3440
      </fields>
 
3441
    </form>
 
3442
 
 
3443
    <form name="edit_user_action" page="config_edit_user" method="POST">
 
3444
      <fields>
 
3445
        <field name="delete"
 
3446
               widget="submit"
 
3447
               description="[DELETE_USER]"
 
3448
               validator="submit"/>
 
3449
      </fields>
 
3450
    </form>
 
3451
 
 
3452
    <form name="new_user_confirm" page="config_new_user" method="POST">
 
3453
      <fields>
 
3454
        <field name="continue"
 
3455
               widget="submit"
 
3456
               description="[CONTINUE]"
 
3457
               validator="submit"/>
 
3458
        <field name="goback"
 
3459
               widget="submit"
 
3460
               description="[GO_BACK]"
 
3461
               validator="submit"/>
 
3462
      </fields>
 
3463
    </form>
 
3464
 
 
3465
    <form name="view_log_message" page="view_log_message" method="POST">
 
3466
      <fields>
 
3467
        <field name="back"
 
3468
               widget="submit"
 
3469
               description="[GO_BACK]"
 
3470
               validator="submit"/>
 
3471
      </fields>
 
3472
    </form>
 
3473
 
 
3474
    <form name="settings_themes" page="settings" method="POST">
 
3475
      <fields>
 
3476
        <field name="managertheme"
 
3477
               description="[MANAGER_THEME]"
 
3478
               widget="themeselect"
 
3479
               validator="theme"
 
3480
               required="true"/>
 
3481
        <field name="ordertheme"
 
3482
               description="[ORDER_THEME]"
 
3483
               widget="themeselect"
 
3484
               validator="theme"
 
3485
               required="true"/>
 
3486
        <field name="save"
 
3487
               description="[SAVE]"
 
3488
               widget="submit"
 
3489
               validator="submit"/>
 
3490
      </fields>
 
3491
    </form>
 
3492
 
 
3493
    <form name="settings_general" page="settings" method="POST">
 
3494
      <fields>
 
3495
        <field name="name"
 
3496
               widget="text"
 
3497
               description="[COMPANY_NAME]"
 
3498
               validator="text"
 
3499
               required="true"
 
3500
               max_length="255"
 
3501
               min_length="1"/>
 
3502
        <field name="email"
 
3503
               widget="text"
 
3504
               description="[CONTACT_EMAIL]"
 
3505
               validator="email"
 
3506
               required="true"
 
3507
               max_length="255"
 
3508
               min_length="1"/>
 
3509
        <field name="notification_email"
 
3510
               widget="text"
 
3511
               description="[NOTIFICATION_EMAIL]"
 
3512
               validator="email"
 
3513
               required="true"
 
3514
               max_length="255"
 
3515
               min_length="1"/>
 
3516
        <field name="welcome_subject"
 
3517
               widget="text"
 
3518
               description="[SUBJECT]"
 
3519
               validator="text"
 
3520
               required="true"
 
3521
               max_length="255"
 
3522
               min_length="1"/>
 
3523
        <field name="welcome_email"
 
3524
               widget="textarea"
 
3525
               description="[EMAIL_BODY]"
 
3526
               validator="text"
 
3527
               required="true"
 
3528
               max_length="4098"
 
3529
               min_length="1"/>
 
3530
        <field name="confirm_subject"
 
3531
               widget="text"
 
3532
               description="[SUBJECT]"
 
3533
               validator="text"
 
3534
               required="true"
 
3535
               max_length="255"
 
3536
               min_length="1"/>
 
3537
        <field name="confirm_email"
 
3538
               widget="textarea"
 
3539
               description="[EMAIL_BODY]"
 
3540
               validator="text"
 
3541
               required="true"
 
3542
               max_length="4098"
 
3543
               min_length="1"/>
 
3544
        <field name="notify_subject"
 
3545
               widget="text"
 
3546
               description="[SUBJECT]"
 
3547
               validator="text"
 
3548
               required="true"
 
3549
               max_length="255"
 
3550
               min_length="1"/>
 
3551
        <field name="notify_email"
 
3552
               widget="textarea"
 
3553
               description="[EMAIL_BODY]"
 
3554
               validator="text"
 
3555
               required="true"
 
3556
               max_length="4098"
 
3557
               min_length="1"/>
 
3558
        <field name="save"
 
3559
               widget="submit"
 
3560
               description="[SAVE]"
 
3561
               validator="submit"/>
 
3562
      </fields>
 
3563
    </form>
 
3564
 
 
3565
    <form name="settings_nameservers" page="settings" method="POST">
 
3566
      <fields>
 
3567
        <field name="nameservers_ns1"
 
3568
               widget="text"
 
3569
               description="[NAME_SERVER] #1"
 
3570
               validator="text"
 
3571
               required="true"
 
3572
               max_length="255"
 
3573
               min_length="1"/>
 
3574
        <field name="nameservers_ns2"
 
3575
               widget="text"
 
3576
               description="[NAME_SERVER] #2"
 
3577
               validator="text"
 
3578
               required="true"
 
3579
               max_length="255"
 
3580
               min_length="1"/>
 
3581
        <field name="nameservers_ns3"
 
3582
               widget="text"
 
3583
               description="[NAME_SERVER] #3"
 
3584
               validator="text"
 
3585
               max_length="255"
 
3586
               min_length="1"/>
 
3587
        <field name="nameservers_ns4"
 
3588
               widget="text"
 
3589
               description="[NAME_SERVER] #4"
 
3590
               validator="text"
 
3591
               max_length="255"
 
3592
               min_length="1"/>
 
3593
        <field name="save"
 
3594
               widget="submit"
 
3595
               description="[SAVE]"
 
3596
               validator="submit"/>
 
3597
      </fields>
 
3598
    </form>
 
3599
 
 
3600
    <form name="settings_invoice" page="settings" method="POST">
 
3601
      <fields>
 
3602
        <field name="subject" 
 
3603
               widget="text"
 
3604
               description="[INVOICE_EMAIL_SUBJECT]"
 
3605
               validator="text"
 
3606
               required="true"
 
3607
               max_length="255"
 
3608
               min_length="1"/>
 
3609
        <field name="text"
 
3610
               widget="textarea"
 
3611
               description="[INVOICE_TEXT]"
 
3612
               validator="text"
 
3613
               required="true"
 
3614
               max_length="4098"
 
3615
               min_length="1"/>
 
3616
        <field name="save"
 
3617
               widget="submit"
 
3618
               description="[SAVE]"
 
3619
               validator="submit"/>
 
3620
      </fields>
 
3621
    </form>
 
3622
 
 
3623
    <form name="settings_locale" page="settings" method="POST">
 
3624
      <fields>
 
3625
        <field name="language"
 
3626
               widget="languageselect"
 
3627
               description="[LANGUAGE]"
 
3628
               validator="language"
 
3629
               required="true"/>
 
3630
        <field name="currency"
 
3631
               widget="text"
 
3632
               description="[CURRENCY_SYMBOL]"
 
3633
               validator="text"
 
3634
               required="true"
 
3635
               max_length="5"
 
3636
               min_length="1"/>
 
3637
        <field name="save"
 
3638
               widget="submit"
 
3639
               description="[SAVE]"
 
3640
               validator="submit"/>
 
3641
      </fields>
 
3642
    </form>
 
3643
 
 
3644
    <form name="settings_payment_gateway" page="settings" method="POST">
 
3645
      <fields>
 
3646
        <field name="default_module"
 
3647
               widget="paymentmoduleselect"
 
3648
               description="[PAYMENT_GATEWAY_MODULE]"
 
3649
               validator="paymentgatewaymodule"
 
3650
               required="true"/>
 
3651
        <field name="order_method"
 
3652
               widget="select"
 
3653
               description="[PAYMENT_METHOD_FOR_ORDERS]"
 
3654
               validator="choice"
 
3655
               required="true">
 
3656
          <enum>
 
3657
            <option value="Authorize Only" description="[AUTHORIZE_ONLY]" default="true"/>
 
3658
            <option value="Authorize and Capture" description="[AUTHORIZE_AND_CAPTURE]"/>
 
3659
          </enum>
 
3660
        </field>
 
3661
        <field name="save"
 
3662
               widget="submit"
 
3663
               description="[SAVE]"
 
3664
               validator="submit"/>
 
3665
      </fields>
 
3666
    </form>
 
3667
 
 
3668
    <form name="settings_order_interface" page="settings" method="POST">
 
3669
      <fields>
 
3670
        <field name="title"
 
3671
               widget="text"
 
3672
               validator="text"
 
3673
               max_length="255"
 
3674
               description="[ORDER_INTERFACE_PAGE_TITLE]"/>
 
3675
        <field name="accept_checks"
 
3676
               widget="checkbox"
 
3677
               description="[ENABLE_CHECK_MO_PAYMENTS]"
 
3678
               validator="choice">
 
3679
          <enum> <option value="true"/> </enum>
 
3680
        </field>
 
3681
        <field name="tos_required"
 
3682
               widget="checkbox"
 
3683
               description="[NEW_USERS_MUST_ACCEPT_TOS_BEFORE_COMPLETING_ORDER]"
 
3684
               validator="choice">
 
3685
          <enum> <option value="true"/> </enum>
 
3686
        </field>
 
3687
        <field name="tos_url"
 
3688
               description="[TERMS_OF_SERVICE_URL]"
 
3689
               widget="text"
 
3690
               validator="text"
 
3691
               max_length="1024"/>
 
3692
        <field name="save"
 
3693
               widget="submit"
 
3694
               description="[SAVE]"
 
3695
               validator="submit"/>
 
3696
      </fields>
 
3697
    </form>
 
3698
 
 
3699
    <form name="search_accounts" page="accounts_browse" method="POST">
 
3700
      <fields>
 
3701
        <field name="accountname"
 
3702
               widget="text"
 
3703
               validator="text"
 
3704
               description="[ACCOUNT_NAME]"
 
3705
               max_length="255"
 
3706
               min_length="1"/>
 
3707
        <field name="balance"
 
3708
               widget="text"
 
3709
               validator="float"
 
3710
               description="[BALANCE]"/>
 
3711
        <field name="search"
 
3712
               widget="submit"
 
3713
               validator="submit"
 
3714
               description="[SEARCH]"/>
 
3715
      </fields>
 
3716
    </form>
 
3717
 
 
3718
    <form name="search_pending_accounts" page="accounts_browse_pending" method="POST">
 
3719
      <fields>
 
3720
        <field name="accountname"
 
3721
               widget="text"
 
3722
               validator="text"
 
3723
               description="[ACCOUNT_NAME]"
 
3724
               max_length="255"
 
3725
               min_length="1"/>
 
3726
        <field name="balance"
 
3727
               widget="text"
 
3728
               validator="float"
 
3729
               description="[BALANCE]"/>
 
3730
        <field name="search"
 
3731
               widget="submit"
 
3732
               validator="submit"
 
3733
               description="[SEARCH]"/>
 
3734
      </fields>
 
3735
    </form>
 
3736
 
 
3737
    <form name="search_inactive_accounts" page="accounts_browse_inactive" method="POST">
 
3738
      <fields>
 
3739
        <field name="accountname"
 
3740
               widget="text"
 
3741
               validator="text"
 
3742
               description="[ACCOUNT_NAME]"
 
3743
               max_length="255"
 
3744
               min_length="1"/>
 
3745
        <field name="balance"
 
3746
               widget="text"
 
3747
               validator="float"
 
3748
               description="[BALANCE]"/>
 
3749
        <field name="search"
 
3750
               widget="submit"
 
3751
               validator="submit"
 
3752
               description="[SEARCH]"/>
 
3753
      </fields>
 
3754
    </form>
 
3755
 
 
3756
    <form name="search_invoices" page="billing_invoices" method="POST">
 
3757
      <fields>
 
3758
        <field name="accountname"
 
3759
               widget="text"
 
3760
               description="[ACCOUNT]"
 
3761
               validator="text"
 
3762
               max_length="255"/>
 
3763
        <field name="search"
 
3764
               widget="submit"
 
3765
               description="[SEARCH]"
 
3766
               validator="submit"/>
 
3767
      </fields>
 
3768
    </form>
 
3769
 
 
3770
    <form name="search_outstanding_invoices" page="billing_invoices_outstanding" method="POST">
 
3771
      <fields>
 
3772
        <field name="accountname"
 
3773
               widget="text"
 
3774
               description="[ACCOUNT]"
 
3775
               validator="text"
 
3776
               max_length="255"/>
 
3777
        <field name="search"
 
3778
               widget="submit"
 
3779
               description="[SEARCH]"
 
3780
               validator="submit"/>
 
3781
      </fields>
 
3782
    </form>
 
3783
 
 
3784
    <form name="search_hosting_services" page="services_web_hosting" method="POST">
 
3785
      <fields>
 
3786
        <field name="title"
 
3787
               widget="text"
 
3788
               description="[TITLE]"
 
3789
               validator="text"
 
3790
               max_length="255"
 
3791
               min_length="1"/>
 
3792
        <field name="description"
 
3793
               widget="text"
 
3794
               description="[DESCRIPTION]"
 
3795
               validator="text"
 
3796
               max_length="255"
 
3797
               min_length="1"/>
 
3798
        <field name="search"
 
3799
               widget="submit"
 
3800
               description="[SEARCH]"
 
3801
               validator="submit"/>
 
3802
      </fields>
 
3803
    </form>
 
3804
 
 
3805
    <form name="search_domain_services" page="services_domain_services" method="POST">
 
3806
      <fields>
 
3807
        <field name="tld"
 
3808
               widget="text"
 
3809
               description="TLD"
 
3810
               validator="text"
 
3811
               max_length="255"
 
3812
               min_length="1"/>
 
3813
        <field name="search"
 
3814
               widget="submit"
 
3815
               description="[SEARCH]"
 
3816
               validator="submit"/>
 
3817
      </fields>
 
3818
    </form>
 
3819
 
 
3820
    <form name="search_products" page="services_products" method="POST">
 
3821
      <fields>
 
3822
        <field name="name"
 
3823
               widget="text"
 
3824
               description="[NAME]"
 
3825
               validator="text"
 
3826
               max_length="255"
 
3827
               min_length="1"/>
 
3828
        <field name="search"
 
3829
               widget="submit"
 
3830
               description="[SEARCH]"
 
3831
               validator="text"/>
 
3832
      </fields>
 
3833
    </form>
 
3834
 
 
3835
    <form name="search_servers" page="services_servers" method="POST">
 
3836
      <fields>
 
3837
        <field name="hostname"
 
3838
               widget="text"
 
3839
               description="[HOSTNAME]"
 
3840
               validator="text"
 
3841
               max_length="255"
 
3842
               min_length="1"/>
 
3843
        <field name="location"
 
3844
               widget="text"
 
3845
               description="[LOCATION]"
 
3846
               validator="text"
 
3847
               max_length="255"
 
3848
               min_length="1"/>
 
3849
        <field name="search"
 
3850
               widget="submit"
 
3851
               description="[SEARCH]"
 
3852
               validator="text"/>
 
3853
      </fields>
 
3854
    </form>
 
3855
 
 
3856
    <form name="search_ips" page="services_ip_manager" method="POST">
 
3857
      <fields>
 
3858
        <field name="ipaddressstring"
 
3859
               widget="text"
 
3860
               description="[IP_ADDRESS]"
 
3861
               validator="text"
 
3862
               max_length="255"
 
3863
               min_length="1"/>
 
3864
        <field name="hostname"
 
3865
               widget="text"
 
3866
               description="[HOSTNAME]"
 
3867
               validator="text"
 
3868
               max_length="255"
 
3869
               min_length="1"/>
 
3870
        <field name="accountname"
 
3871
               widget="text"
 
3872
               description="[ASSIGNED_TO]"
 
3873
               validator="text"
 
3874
               max_length="255"
 
3875
               min_length="1"/>
 
3876
        <field name="service"
 
3877
               widget="text"
 
3878
               description="[SERVICE]"
 
3879
               validator="text"
 
3880
               max_length="255"
 
3881
               min_length="1"/>
 
3882
        <field name="search"
 
3883
               widget="submit"
 
3884
               description="[SEARCH]"
 
3885
               validator="text"/>
 
3886
      </fields>
 
3887
    </form>
 
3888
 
 
3889
    <form name="search_domains" page="domains_browse" method="POST">
 
3890
      <fields>
 
3891
        <field name="fulldomainname"
 
3892
               widget="text"
 
3893
               description="[DOMAIN_NAME]"
 
3894
               validator="text"
 
3895
               max_length="255"
 
3896
               min_length="1"/>
 
3897
        <field name="tld"
 
3898
               widget="text"
 
3899
               description="TLD"
 
3900
               validator="text"
 
3901
               max_length="255"
 
3902
               min_length="1"/>
 
3903
        <field name="accountname"
 
3904
               widget="text"
 
3905
               description="[ACCOUNT_NAME]"
 
3906
               validator="text"
 
3907
               max_length="255"
 
3908
               min_length="1"/>
 
3909
        <field name="search"
 
3910
               widget="submit"
 
3911
               description="[SEARCH]"
 
3912
               validator="submit"/>
 
3913
      </fields>
 
3914
    </form>
 
3915
 
 
3916
    <form name="search_expired_domains" page="domains_expired" method="POST">
 
3917
      <fields>
 
3918
        <field name="fulldomainname"
 
3919
               widget="text"
 
3920
               description="[DOMAIN_NAME]"
 
3921
               validator="text"
 
3922
               max_length="255"
 
3923
               min_length="1"/>
 
3924
        <field name="tld"
 
3925
               widget="text"
 
3926
               description="TLD"
 
3927
               validator="text"
 
3928
               max_length="255"
 
3929
               min_length="1"/>
 
3930
        <field name="accountname"
 
3931
               widget="text"
 
3932
               description="[ACCOUNT_NAME]"
 
3933
               validator="text"
 
3934
               max_length="255"
 
3935
               min_length="1"/>
 
3936
        <field name="search"
 
3937
               widget="submit"
 
3938
               description="[SEARCH]"
 
3939
               validator="submit"/>
 
3940
      </fields>
 
3941
    </form>
 
3942
 
 
3943
    <form name="search_users" page="config_users" method="POST">
 
3944
      <fields>
 
3945
        <field name="username"
 
3946
               widget="text"
 
3947
               description="[USERNAME]"
 
3948
               validator="text"
 
3949
               max_length="32"
 
3950
               min_length="1"/>
 
3951
        <field name="contactname"
 
3952
               widget="text"
 
3953
               description="[CONTACT_NAME]"
 
3954
               validator="text"
 
3955
               max_length="255"
 
3956
               min_length="1"/>
 
3957
        <field name="email"
 
3958
               widget="text" 
 
3959
               description="[EMAIL]"
 
3960
               validator="text"/>
 
3961
        <field name="search"
 
3962
               widget="submit"
 
3963
               description="[SEARCH]"
 
3964
               validator="submit"/>
 
3965
      </fields>
 
3966
    </form>
 
3967
 
 
3968
    <form name="view_product_action" page="services_view_product" method="POST">
 
3969
      <fields>
 
3970
        <field name="edit"
 
3971
               widget="submit"
 
3972
               description="[EDIT]"
 
3973
               validator="submit"/>
 
3974
        <field name="delete"
 
3975
               widget="submit"
 
3976
               description="[DELETE]"
 
3977
               validator="submit"/>
 
3978
      </fields>
 
3979
    </form>
 
3980
 
 
3981
    <form name="add_ip_address" page="services_add_ip" method="POST">
 
3982
      <fields>
 
3983
        <field name="begin_address"
 
3984
               widget="text"
 
3985
               description="[BEGINNING_ADDRESS]"
 
3986
               validator="ipaddress"
 
3987
               required="true"/>
 
3988
        <field name="end_address"
 
3989
               widget="text"
 
3990
               description="[ENDING_ADDRESS]"
 
3991
               validator="ipaddress"/>
 
3992
        <field name="continue"
 
3993
               widget="submit"
 
3994
               description="[CONTINUE]"
 
3995
               validator="submit"/>
 
3996
        <field name="cancel"
 
3997
               widget="submit"
 
3998
               cancel="true"
 
3999
               description="[CANCEL]"
 
4000
               validator="submit"/>
 
4001
      </fields>
 
4002
    </form>
 
4003
 
 
4004
    <form name="add_ip_confirm" page="services_add_ip" method="POST">
 
4005
      <fields>
 
4006
        <field name="continue"
 
4007
               widget="submit"
 
4008
               description="[CONTINUE]"
 
4009
               validator="submit"/>
 
4010
        <field name="cancel"
 
4011
               widget="submit"
 
4012
               cancel="true"
 
4013
               description="[CANCEL]"
 
4014
               validator="submit"/>
 
4015
      </fields>
 
4016
    </form>
 
4017
 
 
4018
    <form name="servers_action" page="services_servers" method="POST">
 
4019
      <fields>
 
4020
        <field name="add"
 
4021
               widget="submit"
 
4022
               description="[ADD_SERVER]"
 
4023
               validator="submit"/>
 
4024
      </fields>
 
4025
    </form>
 
4026
 
 
4027
    <form name="servers" page="services_servers" method="POST">
 
4028
      <fields>
 
4029
        <field name="servers"
 
4030
               description="[SERVERS]"
 
4031
               widget="servertable"
 
4032
               validator="server"/>
 
4033
      </fields>
 
4034
    </form>
 
4035
 
 
4036
    <form name="add_server" page="services_add_server" method="POST">
 
4037
      <fields>
 
4038
        <field name="hostname"
 
4039
               widget="text"
 
4040
               description="[HOSTNAME]"
 
4041
               validator="text"
 
4042
               required="true"
 
4043
               max_length="255"
 
4044
               min_length="1"/>
 
4045
        <field name="location"
 
4046
               widget="text"
 
4047
               description="[LOCATION]"
 
4048
               validator="text"
 
4049
               required="true"
 
4050
               max_length="255"
 
4051
               min_length="1"/>
 
4052
        <field name="continue"
 
4053
               widget="submit"
 
4054
               description="[CONTINUE]"
 
4055
               validator="submit"/>
 
4056
        <field name="cancel"
 
4057
               widget="submit"
 
4058
               cancel="true"
 
4059
               description="[CANCEL]"
 
4060
               validator="submit"/>
 
4061
      </fields>
 
4062
    </form>
 
4063
 
 
4064
    <form name="edit_server" page="services_edit_server" method="POST">
 
4065
      <fields>
 
4066
        <field name="hostname"
 
4067
               widget="text"
 
4068
               description="[HOSTNAME]"
 
4069
               validator="text"
 
4070
               required="true"
 
4071
               max_length="255"
 
4072
               min_length="1"/>
 
4073
        <field name="location"
 
4074
               widget="text"
 
4075
               description="[LOCATION]"
 
4076
               validator="text"
 
4077
               required="true"
 
4078
               max_length="255"
 
4079
               min_length="1"/>
 
4080
        <field name="cpmodule"
 
4081
               description="[CONTROL_PANEL_MODULE]"
 
4082
               widget="moduleselect"
 
4083
               validator="module"
 
4084
               required="false"/>
 
4085
        <field name="save"
 
4086
               widget="submit"
 
4087
               description="[SAVE]"
 
4088
               validator="submit"/>
 
4089
        <field name="cancel"
 
4090
               widget="submit"
 
4091
               cancel="true"
 
4092
               description="[CANCEL]"
 
4093
               validator="submit"/>
 
4094
      </fields>
 
4095
    </form>
 
4096
 
 
4097
    <form name="view_server_add_ip" page="services_view_server" method="POST">
 
4098
      <fields>
 
4099
        <field name="add"
 
4100
               widget="submit"
 
4101
               description="[ADD_IP_ADDRESSES]"
 
4102
               validator="submit"/>
 
4103
      </fields>
 
4104
    </form>
 
4105
 
 
4106
    <form name="view_server_ips" page="services_view_server" method="POST">
 
4107
      <fields>
 
4108
        <field name="ips"
 
4109
               description="[IP_ADDRESSES]"
 
4110
               widget="ippooltable"
 
4111
               validator="ipaddressdb"
 
4112
               array="true"
 
4113
               required="true"/>
 
4114
        <field name="remove"
 
4115
               description="[REMOVE]"
 
4116
               validator="submit"
 
4117
               widget="submit"/>
 
4118
      </fields>
 
4119
    </form>
 
4120
 
 
4121
    <form name="view_server_services" page="services_view_server" method="POST">
 
4122
      <fields>
 
4123
        <field name="services"
 
4124
               description="[HOSTING_SERVICES]"
 
4125
               widget="hostingpurchasetable"
 
4126
               validator="hostingpurchase"
 
4127
               array="true"
 
4128
               required="true"/>
 
4129
      </fields>
 
4130
    </form>
 
4131
 
 
4132
    <form name="view_server" page="services_view_server" method="POST">
 
4133
      <fields>
 
4134
        <field name="edit"
 
4135
               widget="submit"
 
4136
               description="[EDIT]"
 
4137
               validator="submit"/>
 
4138
        <field name="delete"
 
4139
               widget="submit"
 
4140
               description="[DELETE]"
 
4141
               validator="submit"/>
 
4142
      </fields>
 
4143
    </form>
 
4144
 
 
4145
    <form name="delete_server" page="services_delete_server" method="POST">
 
4146
      <fields>
 
4147
        <field name="delete"
 
4148
               widget="submit"
 
4149
               description="[DELETE]"
 
4150
               validator="submit"/>
 
4151
        <field name="cancel"
 
4152
               widget="submit"
 
4153
               cancel="true"
 
4154
               description="[CANCEL]"
 
4155
               validator="submit"/>
 
4156
      </fields>
 
4157
    </form>
 
4158
 
 
4159
    <form name="modules" page="modules" method="POST">
 
4160
      <fields>
 
4161
        <field name="modules"
 
4162
               description="[INSTALLED_MODULES]"
 
4163
               widget="moduletable"
 
4164
               validator="module"
 
4165
               array="true"
 
4166
               required="false"/>
 
4167
        <field name="update"
 
4168
               widget="submit"
 
4169
               description="[UPDATE]"
 
4170
               validator="submit"/>
 
4171
      </fields>
 
4172
    </form>
 
4173
 
 
4174
    <form name="log" page="log" method="POST">
 
4175
      <fields>
 
4176
        <field name="log"
 
4177
               description="[LOG]"
 
4178
               widget="logtable"
 
4179
               validator="submit"
 
4180
               required="true"/>
 
4181
      </fields>
 
4182
    </form>
 
4183
  </forms>
 
4184
 
 
4185
</application>