www/gen_about.php

Wed, 17 Apr 2024 19:54:56 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 17 Apr 2024 19:54:56 +0200
changeset 684
b2265c7e5707
parent 676
09b5efe0c633
child 688
8bf6389e59a2
permissions
-rw-r--r--

Updated dependencies. Devices json data is created in de devices source for all places where it is needed. Added devices_ws function to broadcast all devices, to be used when any device is changed. The devices loop detects changes in input values and calls devices_ws if so. The server uses the general devices json data.

<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/includes/global.inc.php');
page_header('About ThermFerm', NULL);
?>

   <div id="MainPanel">
    <div id="ContentPanel"></div>
    <div id='about_table'>
     <table style='width: 100%; padding: 10px;'>
      <tr><th colspan=2>About ThermFerm</th></tr>
      <tr><td> </td><td> </td></tr>
      <tr><td>Version:</td><td><?php echo $my_version;?> </td></tr>
      <tr><td>Written by:</td><td>M. Broek</td></tr>
      <tr><td>Widgets and style:</td><td><a style="color:white; text-decoration:none;" href="https://www.jqwidgets.com/">jQWidgets</a></td></tr>
     </table>
    </div>
   </div>

<?php
page_footer();
?>

mercurial