mirror of
https://github.com/ShaYmez/FreeSTAR-Status-Engine.git
synced 2026-06-01 21:54:48 -04:00
Revert "Merge branch 'dev' into master"
This reverts commit18b89e8c35, reversing changes made to81132e9ccf.
This commit is contained in:
+22
-71
@@ -1,12 +1,12 @@
|
||||
<?php
|
||||
if (isset($_GET['delete']) && isset($_GET['type']))
|
||||
if (isset($_GET['new']))
|
||||
{
|
||||
if ( $_GET['type'] == 'service') {
|
||||
Service::delete();
|
||||
}
|
||||
elseif ( $_GET['type'] == 'groups') {
|
||||
ServiceGroup::delete();
|
||||
}
|
||||
Service::add();
|
||||
}
|
||||
|
||||
if (isset($_GET['delete']))
|
||||
{
|
||||
Service::delete();
|
||||
}
|
||||
|
||||
Template::render_header(_("Settings"), true);
|
||||
@@ -14,7 +14,7 @@ Template::render_header(_("Settings"), true);
|
||||
<div class="text-center">
|
||||
<h2>Settings</h2>
|
||||
</div>
|
||||
<?php
|
||||
<?php
|
||||
if (isset($message)){
|
||||
?>
|
||||
<p class="alert alert-danger"><?php echo $message; ?></p>
|
||||
@@ -24,18 +24,19 @@ if (isset($message)){
|
||||
<?php if ($user->get_rank() <= 1){?>
|
||||
<form action="?do=settings&new=service" method="post">
|
||||
<div class="input-group pull-right new-service">
|
||||
<a href="<?php echo WEB_URL;?>/admin/?do=new-service" class="btn btn-success pull-right"><?php echo _("Add new service");?></a>
|
||||
<input class="form-control" name="service" placeholder="Name" type="text" value="<?php echo ((isset($_POST['service']))?htmlspecialchars($_POST['service']):''); ?>" maxlength="50" required>
|
||||
<span class="input-group-btn">
|
||||
<button type="submit" class="btn btn-success pull-right"><?php echo _("Add service");?></button>
|
||||
</span>
|
||||
</div>
|
||||
</form>
|
||||
<?php }?>
|
||||
<div class="table-responsive">
|
||||
<table class="table">
|
||||
|
||||
|
||||
<thead><tr>
|
||||
<!--<th scope="col"><?php echo _("ID");?></th>-->
|
||||
<th scope="col"><?php echo _("ID");?></th>
|
||||
<th scope="col"><?php echo _("Name");?></th>
|
||||
<th scope="col"><?php echo _("Description");?></th>
|
||||
<th scope="col"><?php echo _("Group");?></th>
|
||||
<?php if ($user->get_rank()<=1)
|
||||
{?>
|
||||
<th scope="col"><?php echo _("Delete");?></th>
|
||||
@@ -43,66 +44,16 @@ if (isset($message)){
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
$query = $mysqli->query("SELECT services.*, services_groups.name AS group_name FROM `services` LEFT JOIN services_groups ON services.group_id = services_groups.id ORDER BY services.name ASC");
|
||||
<?php
|
||||
$query = $mysqli->query("SELECT * FROM services");
|
||||
while($result = $query->fetch_assoc())
|
||||
{
|
||||
echo "<tr>";
|
||||
//echo "<td>".$result['id']."</td>";
|
||||
echo '<td><a href="'.WEB_URL.'/admin?do=edit-service&id='.$result['id'].'">'.$result['name'].'</a></th>';
|
||||
echo "<td>".$result['description']."</td>";
|
||||
echo "<td>".$result['group_name']."</td>";
|
||||
|
||||
echo "<td>".$result['id']."</td>";
|
||||
echo "<td>".$result['name']."</td>";
|
||||
if ($user->get_rank()<=1)
|
||||
{
|
||||
echo '<td><a href="'.WEB_URL.'/admin/?do=settings&type=service&delete='.$result['id'].'" class="pull-right delete-service"><i class="fa fa-trash"></i></a></td>';
|
||||
}
|
||||
echo "</tr>";
|
||||
}?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h3 class="pull-left"><?php echo _("Services Groups");?></h3>
|
||||
<?php if ($user->get_rank() <= 1){?>
|
||||
<form action="?do=settings&new=service-group" method="post">
|
||||
<div class="input-group pull-right new-service">
|
||||
<a href="<?php echo WEB_URL;?>/admin/?do=new-service-group" class="btn btn-success pull-right"><?php echo _("Add new service group");?></a>
|
||||
</div>
|
||||
</form>
|
||||
<?php }?>
|
||||
<div class="table-responsive">
|
||||
<table class="table">
|
||||
|
||||
<thead><tr>
|
||||
<!--<th scope="col"><?php echo _("ID");?></th>-->
|
||||
<th scope="col"><?php echo _("Group Name");?></th>
|
||||
<th scope="col"><?php echo _("In use by");?></th>
|
||||
<th scope="col"><?php echo _("Description");?></th>
|
||||
<th scope="col"><?php echo _("Visibility");?></th>
|
||||
<?php if ($user->get_rank()<=1)
|
||||
{?>
|
||||
<th scope="col"><?php echo _("Delete");?></th>
|
||||
<?php } ?>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
$query = $mysqli->query("SELECT sg.* , (SELECT COUNT(*) FROM services WHERE services.group_id = sg.id) AS counter FROM services_groups AS sg ORDER BY sg.id ASC");
|
||||
while($result = $query->fetch_assoc())
|
||||
{
|
||||
echo "<tr>";
|
||||
//echo "<td>".$result['id']."</td>";
|
||||
echo '<td><a href="'.WEB_URL.'/admin?do=edit-service-group&id='.$result['id'].'">'.$result['name'].'</a></th>';
|
||||
echo '<td> <span class="badge badge-danger ml-2">'.$result['counter'].'</span>';
|
||||
echo "<td>".$result['description']."</td>";
|
||||
echo "<td>".$visibility[$result['visibility']]."</td>";
|
||||
|
||||
if ($user->get_rank()<=1)
|
||||
{
|
||||
echo '<td><a href="'.WEB_URL.'/admin/?do=settings&type=groups&delete='.$result['id'].'" class="pull-right delete-service"><i class="fa fa-trash"></i></a></td>';
|
||||
echo '<td><a href="'.WEB_URL.'/admin/?do=settings&delete='.$result['id'].'" class="pull-right delete-service"><i class="fa fa-trash"></i></a></td>';
|
||||
}
|
||||
echo "</tr>";
|
||||
}?>
|
||||
@@ -117,10 +68,10 @@ if (isset($message)){
|
||||
<?php if ($user->get_rank() == 0){?> <a href="<?php echo WEB_URL;?>/admin/?do=new-user" class="btn btn-success pull-right"><?php echo _("Add new user");?></a><?php }?>
|
||||
<div class="table-responsive">
|
||||
<table class="table">
|
||||
|
||||
|
||||
<thead><tr><th scope="col"><?php echo _("ID");?></th><th scope="col"><?php echo _("Username");?></th><th scope="col"><?php echo _("Name");?></th><th scope="col"><?php echo _("Surname");?></th><th scope="col"><?php echo _("Email");?></th><th scope="col"><?php echo _("Role");?></th><th scope="col">Active</th></tr></thead>
|
||||
<tbody>
|
||||
<?php
|
||||
<?php
|
||||
$query = $mysqli->query("SELECT * FROM users");
|
||||
while($result = $query->fetch_assoc())
|
||||
{
|
||||
@@ -138,4 +89,4 @@ if (isset($message)){
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
Reference in New Issue
Block a user