Update client_settings.php

This commit is contained in:
jakani24
2024-02-11 19:22:24 +01:00
parent f1cd3712bb
commit 7785e638dc

View File

@@ -360,6 +360,7 @@ function load_settings(){
<th scope="col">Action</th> <th scope="col">Action</th>
<th scope="col">Argument</th> <th scope="col">Argument</th>
<th scope="col">Name</th> <th scope="col">Name</th>
<th scope="col">Add / Delete</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@@ -367,15 +368,11 @@ function load_settings(){
<th scope="row">000</th> <th scope="row">000</th>
<td><input type="text" id="task_time" class="form-control" name="task_time"></td> <td><input type="text" id="task_time" class="form-control" name="task_time"></td>
<td> <td>
<div class="dropdown"> <select class="selectpicker" multiple data-live-search="true">
<button class="btn btn-secondary dropdown-toggle" type="button" id="task_action" data-bs-toggle="dropdown" aria-expanded="false"> <option value="choose_action">Choose an action</option>
<?php echo("test"); ?> <option value="scanfile">scanfile</option>
</button> <option value="scanfolder">scanfolder</option>
<ul class="dropdown-menu" aria-labelledby="task_action"> </select>
<li><a class="dropdown-item" href="#" onclick="update_setting('dropdownMenuButton1','setting_virus_ctrl_virus_found_action','remove')">scanfolder</a></li>
<li><a class="dropdown-item" href="#" onclick="update_setting('dropdownMenuButton1','setting_virus_ctrl_virus_found_action','quarantine')">scanfile</a></li>
</ul>
</div>
</td> </td>
<td><input type="text" id="task_argument" class="form-control" name="task_argument"></td> <td><input type="text" id="task_argument" class="form-control" name="task_argument"></td>
<td><input type="text" id="task_name" class="form-control" name="task_name"></td> <td><input type="text" id="task_name" class="form-control" name="task_name"></td>