25 lines
475 B
PHP
25 lines
475 B
PHP
<?php
|
|
require 'frame.php';
|
|
function getH1() {
|
|
return 'End User License Agreement';
|
|
}
|
|
function getActiveMenu() {
|
|
return "";
|
|
}
|
|
function printContent() {
|
|
global $root;
|
|
global $minorVersion;
|
|
global $version;
|
|
?>
|
|
|
|
<h2>End User License Agreement</h2>
|
|
<p>
|
|
The jOOQ Commercial License is not yet effective. You may thus not yet use jOOQ using the Commercial License.
|
|
</p>
|
|
<p>
|
|
Come back soon to learn how to commercially license jOOQ.
|
|
</p>
|
|
|
|
<?php
|
|
}
|
|
?>
|