/adei/ui

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/ui

« back to all changes in this revision

Viewing changes to modules/export.php

  • Committer: Suren A. Chilingaryan
  • Date: 2008-04-02 10:23:22 UTC
  • Revision ID: csa@dside.dyndns.org-20080402102322-okib92sicg2dx3o3
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
$export_title = _("Export");
 
3
 
 
4
function exportJS() {?>
 
5
    data_export = new EXPORT("export_format_sel", "export_resample_sel", "export_mask_sel", "export_window_sel");
 
6
    adei.AttachExportModule(data_export);
 
7
<?}
 
8
 
 
9
function exportPage() {
 
10
?>
 
11
<div class="module" id="module_export">
 
12
        <table><tr><?
 
13
            echo "<td>" . _("Format") . "</td><td><select id=\"export_format_sel\" onchange='javascript:data_export.UpdateFormat(this.value)'><option>Loading...</option></select></td>";
 
14
        ?></tr><tr><?
 
15
            echo "<td>" . _("Resample") . "</td><td><select id=\"export_resample_sel\" onchange='javascript:data_export.UpdateSampling(this.value)'><option>Loading...</option></select></td>";
 
16
        ?></tr><tr><?
 
17
            echo "<td>" . _("Items") . "</td><td><select id=\"export_mask_sel\" onchange='javascript:data_export.UpdateMask(this.value)'><option>Loading...</option></select></td>";
 
18
        ?></tr><tr><?
 
19
            echo "<td>" . _("Window") . "</td><td><select id=\"export_window_sel\" onchange='javascript:data_export.UpdateWindow(this.value)'><option>Loading...</option></select></td>";
 
20
        ?></tr><tr class="export_apply">
 
21
            <td colspan="2"><button id="export_button" type="button" onclick="javascript:data_export.Export()"><?echo translate("Export");?></button></td>
 
22
        </tr></table>
 
23
</div>
 
24
<?
 
25
}?>
 
 
b'\\ No newline at end of file'