/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 services/export_sampling.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
require("../config.php");
 
3
 
 
4
header("Content-type: text/xml");
 
5
header("Cache-Control: no-cache, must-revalidate");
 
6
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
 
7
 
 
8
echo "<?xml version=\"1.0\"?>\n";
 
9
echo "<result>";
 
10
echo "<Value value=\"0\" name=\"" . _("No Resampling") . "\"/>";
 
11
foreach ($EXPORT_SAMPLING_RATES as $id => $val) {
 
12
    echo "<Value value=\"$val\" name=\"" . $id . "\"/>";
 
13
}
 
14
echo "</result>";
 
15
 
 
16
?>
 
 
b'\\ No newline at end of file'