<?php
# # # #
#
# bk_demo.php
#
# BabelKit Universal Multilingual Code HTML select function PHP demo page.
#
# Copyright (C) 2003 John Gorman <jgorman@webbysoft.com>
# http://www.webbysoft.com/babelkit
#
bk_demo();
function bk_demo() {
require_once('bk_connect.inc');
$dbh = bk_connect();
require_once('BabelKit.php');
$babelkit = new BabelKit($dbh);
$title = "BabelKit Multilanguage Code Select PHP Demo";
$display_lang = $_POST['display_lang'];
$mycurrency = $_POST['currency'];
$day = $_POST['day'];
$country = $_POST['country'];
if (!is_array($country)) $country = array();
$countrystr = join(',', $country);
$month = $_POST['month'];
if (!is_array($month)) $month = array();
$monthstr = join(',', $month);
print "
<html>
<head>
<title>$title</title>
</head>
<body text=\"#000044\" bgcolor=\"#f0ffff\"
link=\"#0000cc\" vlink=\"#0066ff\" alink=\"#ffcc00\">
<center>
<form action=\"" . $_SERVER['PHP_SELF'] . "\" method=\"post\">
<table border=\"1\" width=\"600\" cellpadding=\"20\">
<tr>
<td>
<h2 style=\"color:#873852\">$title</h2>
<a href=\"http://www.webbysoft.com/babelkit\">BabelKit</a> -
Interface to a universal multilingual code table.
<p>
The codified values stored in database fields are not
language sensitive. However, web pages and other documents
often need to display the code descriptions in various
languages.
<p>
BabelKit makes this a snap to program. You can see
the PHP method calls to BabelKit that produce these
multilingual HTML select elements.
<p>
This page shows off the BabelKit code select functions.
Select another language for the code description display.
Select various combinations of countries and months then
click [Test BabelKit] at the bottom to see the selected
codes:
<p>
<table border=\"3\" cellpadding=\"10\">
<tr><th>Variable</th><th>Code(s)</th></tr>
<tr><td>\$display_lang</td><td>'$display_lang'</td></tr>
<tr><td>\$mycurrency</td><td>'$mycurrency'</td></tr>
<tr><td>day</td><td>'$day'</td></tr>
<tr><td>country</td><td>[$countrystr]</td></tr>
<tr><td>month</td><td>[$monthstr]</td></tr>
</table>
<p>
Have fun!
";
#
# Select Display Language.
#
print "</td></tr><tr><td>
<b>Select another display language!</b>
<p>Specify the variable name as 'display_lang'.
<br>Pass in the native language as the default value.
<br>Submit form when selection changes
<pre>
print \$babelkit->select('code_lang', \$display_lang, array(
'var_name' => 'display_lang',
'default' => \$babelkit->native,
'options' => 'onchange=\"submit()\"'
));
</pre>
\$display_lang is '$display_lang':
<p>
";
print $babelkit->select('code_lang', $display_lang, array(
'var_name' => 'display_lang',
'default' => $babelkit->native,
'options' => 'onchange="submit()"'
));
#
# Currency Dropdown.
#
print "</td></tr><tr><td>
<b>Select a currency.</b>
<p>Pass in a specific code value.
<pre>
print \$babelkit->select('currency', \$display_lang, array(
'value' => \$mycurrency
));
</pre>
\$mycurrency is '$mycurrency':
<p>
";
print $babelkit->select('currency', $display_lang, array(
'value' => $mycurrency
));
#
# Day Radiobox.
#
print "</td></tr><tr><td>
<b>Radiobox for days of the week.</b>
<p>Constrain choices to the weekdays (1-5).
<br>A blank separator displays them all on one line.
<pre>
print \$babelkit->radio('day', \$display_lang, array(
'subset' => array(1, 2, 3, 4, 5),
'sep' => ''
));
</pre>
'day' is '$day'.
<p>
";
print $babelkit->radio('day', $display_lang, array(
'subset' => array(1, 2, 3, 4, 5),
'sep' => ''
));
#
# Country Select Multiple.
#
print "</td></tr><tr><td>
<b>Select multiple countries</b>.
<p>Specify a window scrolling size of 10.
<p>Experiment with Ctrl-click and Shift-click.
<br>to select multiple countries.
<pre>
print \$babelkit->multiple('country', \$display_lang, array(
'size' => 10
));
</pre>
'country' contains [$countrystr]:
<p>
";
print $babelkit->multiple('country', $display_lang, array(
'size' => 10
));
#
# Month Checkbox.
#
print "</td></tr><tr><td>
<b>Checkbox for multiple month selections.</b>
<p>Simple no frills method call.
<pre>
print \$babelkit->checkbox('month', \$display_lang);
</pre>
'month' contains [$monthstr]:
<p>
";
print $babelkit->checkbox('month', $display_lang);
print "
</td></tr><tr><td>
<input type=submit value=\"Test BabelKit\">
<-- Click here to see the updated PHP variables!
</td>
</tr>
</table>
</form>
</center>
</body>
</html>
";
}
?>