Replace misc glyphicon usage.

This commit is contained in:
Nate
2019-08-20 19:53:21 -06:00
parent c20302f8dd
commit 9ebc6d9d83
21 changed files with 37 additions and 38 deletions
+1 -1
View File
@@ -22,7 +22,7 @@
$apps[$x]['menu'][$y]['uuid'] = "fd29e39c-c936-f5fc-8e2b-611681b266b5";
$apps[$x]['menu'][$y]['parent_uuid'] = "";
$apps[$x]['menu'][$y]['category'] = "internal";
$apps[$x]['menu'][$y]['icon'] = "glyphicon-send";
$apps[$x]['menu'][$y]['icon'] = "fa-paper-plane";
$apps[$x]['menu'][$y]['path'] = "";
$apps[$x]['menu'][$y]['order'] = "20";
$apps[$x]['menu'][$y]['groups'][] = "superadmin";
+6 -6
View File
@@ -45,7 +45,7 @@
$apps[$x]['menu'][$y]['uuid'] = "02194288-6d56-6d3e-0b1a-d53a2bc10788";
$apps[$x]['menu'][$y]['parent_uuid'] = "";
$apps[$x]['menu'][$y]['category'] = "internal";
$apps[$x]['menu'][$y]['icon'] = "glyphicon-home";
$apps[$x]['menu'][$y]['icon'] = "fa-home";
$apps[$x]['menu'][$y]['path'] = "";
$apps[$x]['menu'][$y]['order'] = "5";
$apps[$x]['menu'][$y]['groups'][] = "superadmin";
@@ -74,7 +74,7 @@
$apps[$x]['menu'][$y]['uuid'] = "bc96d773-ee57-0cdd-c3ac-2d91aba61b55";
$apps[$x]['menu'][$y]['parent_uuid'] = "";
$apps[$x]['menu'][$y]['category'] = "internal";
$apps[$x]['menu'][$y]['icon'] = "glyphicon-user";
$apps[$x]['menu'][$y]['icon'] = "fa-user";
$apps[$x]['menu'][$y]['path'] = "";
$apps[$x]['menu'][$y]['order'] = "10";
$apps[$x]['menu'][$y]['groups'][] = "admin";
@@ -101,7 +101,7 @@
$apps[$x]['menu'][$y]['uuid'] = "0438b504-8613-7887-c420-c837ffb20cb1";
$apps[$x]['menu'][$y]['parent_uuid'] = "";
$apps[$x]['menu'][$y]['category'] = "internal";
$apps[$x]['menu'][$y]['icon'] = "glyphicon-equalizer";
$apps[$x]['menu'][$y]['icon'] = "fa-chart-bar";
$apps[$x]['menu'][$y]['path'] = "";
$apps[$x]['menu'][$y]['order'] = "25";
$apps[$x]['menu'][$y]['groups'][] = "user";
@@ -129,7 +129,7 @@
$apps[$x]['menu'][$y]['uuid'] = "594d99c5-6128-9c88-ca35-4b33392cec0f";
$apps[$x]['menu'][$y]['parent_uuid'] = "";
$apps[$x]['menu'][$y]['category'] = "internal";
$apps[$x]['menu'][$y]['icon'] = "glyphicon-cog";
$apps[$x]['menu'][$y]['icon'] = "fa-cog";
$apps[$x]['menu'][$y]['path'] = "";
$apps[$x]['menu'][$y]['order'] = "30";
$apps[$x]['menu'][$y]['groups'][] = "superadmin";
@@ -155,7 +155,7 @@
$apps[$x]['menu'][$y]['uuid'] = "c85bf816-b88d-40fa-8634-11b456928afa";
$apps[$x]['menu'][$y]['parent_uuid'] = "";
$apps[$x]['menu'][$y]['category'] = "internal";
$apps[$x]['menu'][$y]['icon'] = "glyphicon-log-in";
$apps[$x]['menu'][$y]['icon'] = "fa-sign-in-alt";
$apps[$x]['menu'][$y]['path'] = "/login.php";
$apps[$x]['menu'][$y]['groups'][] = "public";
$apps[$x]['menu'][$y]['order'] = "99";
@@ -181,7 +181,7 @@
$apps[$x]['menu'][$y]['uuid'] = '0d29e9f4-0c9b-9d8d-cd2d-454899dc9bc4';
$apps[$x]['menu'][$y]['parent_uuid'] = '02194288-6d56-6d3e-0b1a-d53a2bc10788';
$apps[$x]['menu'][$y]['category'] = 'internal';
$apps[$x]['menu'][$y]['icon'] = "glyphicon-log-out";
$apps[$x]['menu'][$y]['icon'] = "fa-sign-out-alt";
$apps[$x]['menu'][$y]['path'] = '/logout.php';
$apps[$x]['menu'][$y]['groups'][] = 'superadmin';
$apps[$x]['menu'][$y]['groups'][] = 'admin';
+1 -1
View File
@@ -1213,7 +1213,7 @@
echo " <div class='row' style='padding: 6px;'>";
echo " <div class='col-md-12 hud_box' style='padding: 0;'>";
echo $block['html'];
echo " <span class='hud_expander' onclick=\"$('#hud_'+".$index."+'_details').slideToggle('fast');\"><span class='glyphicon glyphicon-option-horizontal'></span></span>";
echo " <span class='hud_expander' onclick=\"$('#hud_'+".$index."+'_details').slideToggle('fast');\"><span class='fas fa-ellipsis-h'></span></span>";
echo " </div>";
echo " </div>";
echo "</div>";
+2 -2
View File
@@ -660,7 +660,7 @@
echo "<div style='float:right; white-space: nowrap;'>\n";
if ($unsaved) {
echo "<span style='color: #b00;'>".$text['message-unsaved_changes']." <i class='glyphicon glyphicon-warning-sign' style='margin-right: 15px;'></i></span>";
echo "<span style='color: #b00;'>".$text['message-unsaved_changes']." <i class='fas fa-exclamation-triangle' style='margin-right: 15px;'></i></span>";
}
if (permission_exists('user_add') || permission_exists('user_edit')) {
echo " <input type='button' class='btn' style='margin-right: 10px;' onclick=\"window.location='users.php'\" value='".$text['button-back']."'>";
@@ -1045,7 +1045,7 @@
}
echo " <br>";
if ($unsaved) {
echo " <span style='color: #b00;'>".$text['message-unsaved_changes']." <i class='glyphicon glyphicon-warning-sign' style='margin-right: 15px;'></i></span>";
echo " <span style='color: #b00;'>".$text['message-unsaved_changes']." <i class='fas fa-exclamation-triangle' style='margin-right: 15px;'></i></span>";
}
echo " <input type='submit' class='btn' value='".$text['button-save']."'>";
echo " </td>";
+1 -1
View File
@@ -196,7 +196,7 @@
echo " <td class='".$row_style[$c]."'>\n";
if (permission_exists('ticket_edit')) {
echo " <a href='/app/tickets/tickets.php?user_uuid=".$row['user_uuid']."'><span class='glyphicon glyphicon-tags' title='".$text['label-tickets']."'></span></a>\n";
echo " <a href='/app/tickets/tickets.php?user_uuid=".$row['user_uuid']."'><span class='fas fa-tags' title='".$text['label-tickets']."'></span></a>\n";
}
echo " </td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>";