More webgui development
This commit is contained in:
+28
-1
@@ -124,6 +124,9 @@ require 'header.php';
|
||||
if ($action == ACT_DEFAULT):
|
||||
// ========== VARIANT: default behavior =======================================
|
||||
|
||||
// load filter from db
|
||||
$flt = db_get_filter($user->id, 207);
|
||||
|
||||
function format_vals($n, $v1, $v2, $v3) {
|
||||
if ($n == 1) {
|
||||
return $v1;
|
||||
@@ -225,7 +228,7 @@ form_create_select('nval', _('Dimensions'), $opt_dimensions);
|
||||
<?php
|
||||
form_create_select('unit', _('Unit'), $opt_unit);
|
||||
form_create_select('accuracy', _('Accuracy'), $opt_accuracy);
|
||||
form_create_select('eid', _('Equipment'), $opt_equipment);
|
||||
form_create_select('eid', _('Equipment'), $opt_equipment, $id);
|
||||
?>
|
||||
<div class="container-fluid px-0 my-3">
|
||||
<button type="submit" name="submit[insert]" class="btn btn-primary"><?=_('Save')?></button>
|
||||
@@ -237,6 +240,30 @@ form_create_select('eid', _('Equipment'), $opt_equipment);
|
||||
elseif ($action == ACT_VIEW):
|
||||
// ========== VARIANT: view single record =====================================
|
||||
|
||||
$sql = "SELECT mname, unit, nval, val1, val2, val3, accuracy, mdate, note "
|
||||
. "FROM measurement "
|
||||
. "WHERE mid=?";
|
||||
$sth = $pdo->prepare($sql);
|
||||
$sth->execute([$id]);
|
||||
$measurement = $sth->fetch(PDO::FETCH_OBJ);
|
||||
|
||||
echo '<h2>', _('Measurement'), "</h2>\n";
|
||||
|
||||
echo '<table class="table">', "\n";
|
||||
echo '<tr><th style="width:20%">', _('Name'),"</th><td>", $measurement->mname, "</td></tr>\n";
|
||||
echo '<tr><th>', _('Unit'),"</th><td>", $opt_unit[$measurement->unit], "</td></tr>\n";
|
||||
echo '<tr><th>', _('Values'),"</th><td>$measurement->nval</td></tr>\n";
|
||||
echo '<tr><th>', _('Value 1'),"</th><td>$measurement->val1</td></tr>\n";
|
||||
echo '<tr><th>', _('Value 2'),"</th><td>$measurement->val2</td></tr>\n";
|
||||
echo '<tr><th>', _('Value 3'),"</th><td>$measurement->val3</td></tr>\n";
|
||||
echo '<tr><th>', _('Accuracy'),"</th><td>$measurement->accuracy</td></tr>\n";
|
||||
echo '<tr><th>', _('Date'),"</th><td>$measurement->mdate</td></tr>\n";
|
||||
echo '<tr><th>', _('Note'),"</th><td>$measurement->note</td></tr>\n";
|
||||
echo "</table>\n";
|
||||
|
||||
form_view_buttons($g_scriptname, $id);
|
||||
|
||||
|
||||
elseif ($action == ACT_EDIT):
|
||||
// ========== VARIANT: edit single record =====================================
|
||||
|
||||
|
||||
Reference in New Issue
Block a user