260 lines
7.7 KiB
PHP
260 lines
7.7 KiB
PHP
<?php
|
|
/******************************************************************************
|
|
* YMS - Yacht Management Software
|
|
* Copyright (C) 2024-2025 Thomas Hooge
|
|
*
|
|
* SPDX-License-Identifier: WTFPL
|
|
******************************************************************************/
|
|
|
|
require 'globals.inc';
|
|
$pagetitle = _('Tags');
|
|
|
|
$id = gpc_get_int($_REQUEST, 'id', 0);
|
|
|
|
// ========== ACTIONS START ===================================================
|
|
|
|
switch ($submit = form_get_action()) {
|
|
|
|
case NULL: break;
|
|
|
|
case 'add': $action = ACT_ADD; break;
|
|
case 'view': $action = ACT_VIEW; break;
|
|
case 'edit': $action = ACT_EDIT; break;
|
|
case 'del': $action = ACT_DELETE; break;
|
|
|
|
case 'filter':
|
|
$flt = array();
|
|
$flt['txt'] = gpc_get_string($_POST, 'flt_txt');
|
|
db_save_filter($flt, 210);
|
|
$action = ACT_DEFAULT;
|
|
break;
|
|
|
|
case 'freset':
|
|
db_clear_filter(210);
|
|
$action = ACT_DEFAULT;
|
|
break;
|
|
|
|
case 'insert':
|
|
$p[':tagname'] = gpc_get_string($_POST, 'tagname');;
|
|
$id = db_exec_insert('tag', $p);
|
|
$action = ACT_VIEW;
|
|
break;
|
|
|
|
case 'update':
|
|
$p[':tagid'] = $id;
|
|
$p[':tagname'] = gpc_get_string($_POST, 'tagname');
|
|
$p[':color'] = gpc_get_color($_POST, 'color');
|
|
$p[':description'] = gpc_get_string($_POST, 'description');
|
|
db_exec_update('tag', $p, 'tagid');
|
|
$action = ACT_VIEW;
|
|
break;
|
|
|
|
case 'delete':
|
|
// Security token needed!
|
|
if (gpc_get_string($_POST, 'token', 16) != $_SESSION['token']) {
|
|
$g_error->Add(_('Delete prohibited, invalid security token!'));
|
|
$action = ACT_VIEW;
|
|
break;
|
|
}
|
|
// tagref have to be empty
|
|
// TODO
|
|
$action = ACT_DEFAULT;
|
|
break;
|
|
|
|
|
|
default:
|
|
$g_error->Add(sprintf(_('Unknown function!'), $submit));
|
|
$valid = FALSE;
|
|
|
|
}
|
|
|
|
// ========== ACTIONS END =====================================================
|
|
|
|
require 'header.php';
|
|
|
|
// ========== PAGE CONTENT ====================================================
|
|
|
|
if ($action == ACT_DEFAULT):
|
|
// ========== VARIANT: default behavior =======================================
|
|
|
|
// load filter from db
|
|
$flt = db_get_filter($user->id, 210);
|
|
|
|
echo "<h1>$pagetitle</h1>\n";
|
|
|
|
// db_save_taglist('inv', 1, 'apple, banana , , , orange, ddd');
|
|
|
|
// Filter
|
|
?>
|
|
<form method="post" action="<?=$g_scriptname?>">
|
|
<div id="filter" class="card">
|
|
<div class="card-header">Filter</div>
|
|
<div class="card-body">
|
|
|
|
<label for="flt_txt">Text</label>
|
|
<input type="text" name="flt_txt" size="15" maxlength="30" value="<?=$flt->txt ?? ''?>">
|
|
<button name="submit[filter]" class="btn btn-sm btn-primary" title="<?=_('Apply')?>"><?=_('Go')?></button>
|
|
<button name="submit[freset]" class="btn btn-sm btn-secondary float-end" title="<?=_('Reset filter to defaults')?>"><?=_('Clear')?></button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<?php
|
|
|
|
$sql = "SELECT tagid, tagname, color, description "
|
|
. "FROM tag "
|
|
. "ORDER BY tagname";
|
|
$sth = $pdo->query($sql);
|
|
$res = $sth->fetchAll();
|
|
echo '<table class="table table-striped">', "\n";
|
|
echo "<thead>\n";
|
|
echo "<tr>\n";
|
|
echo '<th>', _('Tag'), "</th>";
|
|
echo '<th>', _('Description'), "</th>";
|
|
echo '<th>', _('Color'), "</th>";
|
|
echo "<th></th>";
|
|
echo "</tr>\n";
|
|
echo "</thead>\n";
|
|
foreach ($res as $row) {
|
|
echo "<tr>\n";
|
|
echo "<td>", $row['tagname'], "</td>\n";
|
|
echo "<td>", $row['description'], "</td>\n";
|
|
echo "<td>", format_color($row['color']), "</td>\n";
|
|
echo "<td>";
|
|
// Action buttons
|
|
form_action_buttons($g_scriptname, $row['tagid']);
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
}
|
|
// Table summary
|
|
echo "<tfoot>\n";
|
|
echo '<tr><td colspan="6">', sprintf(_('%d records'), count($res)), '</td></tr>', "\n";
|
|
echo "</tfoot>\n";
|
|
echo "</table>\n";
|
|
|
|
form_add_button($g_scriptname);
|
|
|
|
elseif ($action == ACT_ADD):
|
|
// ========== VARIANT: add record =============================================
|
|
|
|
echo '<h2>', _('Add Tag'), "</h2>\n";
|
|
|
|
?>
|
|
<form method="post" action="<?=$g_scriptname?>">
|
|
<div class="mb-3">
|
|
<label for="tagname" class="form-label"><?=_('Name')?></label>
|
|
<input type="text" class="form-control" id="tagname" name="tagname" required autofocus>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="note" class="form-label"><?=_('Description')?></label>
|
|
<input type="text" class="form-control" id="description" name="description">
|
|
</div>
|
|
<?php
|
|
form_new_buttons($g_scriptname);
|
|
echo "</form>\n";
|
|
|
|
elseif ($action == ACT_VIEW):
|
|
// ========== VARIANT: view single record =====================================
|
|
|
|
$sql = "SELECT tagname, description, color "
|
|
. "FROM tag "
|
|
. "WHERE tagid=?";
|
|
$sth = $pdo->prepare($sql);
|
|
$sth->execute([$id]);
|
|
$tag = $sth->fetch(PDO::FETCH_OBJ);
|
|
|
|
echo '<h2>', _('View Tag'), "</h2>\n";
|
|
|
|
echo '<table class="table">', "\n";
|
|
echo '<tr><th style="width:20%">', _('Tag'),"</th><td>", $tag->tagname, "</td></tr>\n";
|
|
echo '<tr><th>', _('Color'),"</th><td>", format_color($tag->color), "</td></tr>\n";
|
|
echo '<tr><th>', _('Description'),"</th><td>", $tag->description, "</td></tr>\n";
|
|
echo "</table>\n";
|
|
|
|
form_view_buttons($g_scriptname, $id);
|
|
|
|
echo '<h3>', _('Tag usage'), "</h3>\n";
|
|
$sql = "SELECT objid, objtype FROM tagref WHERE tagid=?";
|
|
$sth = $pdo->prepare($sql);
|
|
$sth->execute([$id]);
|
|
|
|
$link = array(
|
|
'equip' => 'equipment.php',
|
|
'inv' => 'inventory.php',
|
|
'prov' => 'provisions.php',
|
|
'doc' => 'documents.php',
|
|
'proj' => 'projects.php',
|
|
'task' => 'task.php',
|
|
'maint' => 'maintenance.php'
|
|
);
|
|
echo '<p>';
|
|
if ($sth->rowCount() > 0) {
|
|
foreach ($sth->fetchAll() as $row) {
|
|
echo '<a href="', $link[$row['objtype']], '?f=view&id=', $row['objid'], '">', $row['objid'], '/', $row['objtype'], "</a>\n";
|
|
}
|
|
} else {
|
|
echo _('Tag is not used anywhere');
|
|
}
|
|
echo "</p>\n";
|
|
|
|
echo '<h3>', _('Related tags'), "</h3>\n";
|
|
echo '<p>', _('Not yet implemented'), "</p>\n";
|
|
|
|
elseif ($action == ACT_EDIT):
|
|
// ========== VARIANT: edit single record =====================================
|
|
|
|
$sql = "SELECT tagname, description, color "
|
|
. "FROM tag "
|
|
. "WHERE tagid=?";
|
|
$sth = $pdo->prepare($sql);
|
|
$sth->execute([$id]);
|
|
$tag = $sth->fetch(PDO::FETCH_OBJ);
|
|
|
|
echo '<h2>', _('Edit tag'), "</h2>\n";
|
|
?>
|
|
<form method="post" action="<?=$g_scriptname?>">
|
|
<input type="hidden" name="id" value="<?=$id?>">
|
|
<div class="mb-3">
|
|
<label for="mname" class="form-label"><?=_('Tag')?></label>
|
|
<input type="text" class="form-control" id="tagname" name="tagname" value="<?=$tag->tagname ?>">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="note" class="form-label"><?=_('Description')?></label>
|
|
<input type="text" class="form-control" id="description" name="description" value="<?=$tag->description ?>">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="color" class="form-label"><?=_('Color')?></label>
|
|
<input type="color" name="color" id="color" class="form-control" value="#<?=$tag->color ?>">
|
|
</div>
|
|
<?php
|
|
|
|
form_edit_buttons($g_scriptname, $id);
|
|
echo "</form>\n";
|
|
|
|
elseif ($action == ACT_DELETE):
|
|
// ========== VARIANT: delete record ==========================================
|
|
|
|
echo '<h2>', _('Delete tag'), "</h2>\n";
|
|
|
|
$sql = "SELECT objid, objtype FROM tagref WHERE tagid=?";
|
|
$sth = $pdo->prepare($sql);
|
|
$sth->execute([$id]);
|
|
if ($sth->rowCount() > 0) {
|
|
foreach ($sth->fetchAll() as $row) {
|
|
echo '<a href="', $link[$row['objtype']], '?f=view&id=', $row['objid'], '">', $row['objid'], '/', $row['objtype'], "</a>\n";
|
|
}
|
|
} else {
|
|
echo _('Tag is not used anywhere');
|
|
$_SESSION['token'] = bin2hex(random_bytes(8));
|
|
form_delete_buttons($g_scriptname, $id, $_SESSION['token']);
|
|
}
|
|
|
|
else:
|
|
// ========== ERROR UNKNOWN VARIANT ===========================================
|
|
|
|
echo '<p>', _('Unknown function call: Please report to system development!'), "</p>\n";
|
|
|
|
endif; // $action == ...
|
|
// ========== END OF VARIANTS =================================================
|
|
|
|
include 'footer.php';
|