]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - inc/footer.php
Move plugins.php class file to Class/class-plugins.php
[irc/unrealircd/unrealircd-webpanel.git] / inc / footer.php
index 229674fe2d4e1776f845a89cb95a0ceb62b08015..fdf0f6447fc770ebb370779f5d3511c90e2160c9 100644 (file)
@@ -1,18 +1,23 @@
 <?php
        if (!isset($nav_shown))
                return;
+               $arr = []; Hook::run(HOOKTYPE_PRE_FOOTER, $arr);
 ?>
 <footer class="text-center bg-dark text-white fixed-bottom" style="background-color: #f1f1f1;">
        <!-- Grid container -->
        <div class="container">
                <!-- Section: Social media -->
-
                <?php
-                       $arr = []; Hook::run(HOOKTYPE_PRE_FOOTER, $arr);
                        echo "<small style=\"font-size: 70%\"><code>Admin Panel ".get_config('webpanel_version')."</code></small>";
                ?>
 
                <section class="mt-1">
+                       <a href="https://www.youtube.com/@unrealircdtutorials/"
+                               role="button"
+                               data-mdb-ripple-color="dark"
+                               target="_blank">
+                               <img src="https://static-00.iconduck.com/assets.00/youtube-icon-2048x2048-wiwalbpx.png" width="16" height="16"></a>
+
                        <!-- Twitter -->
                        <a
                                class="btn btn-link btn-floating btn-md text-white"
                                role="button"
                                data-mdb-ripple-color="dark"
                                target="_blank">
-                               <img src="<?php echo get_config("base_url"); ?>img/unreal.jpg" width="16" height="16" style="margin-left: -7px; margin-right: 24px"></a>
+                               <img src="<?php echo get_config("base_url"); ?>img/unreal.jpg" width="16" height="16" style="margin-left: -7px; margin-right: 17px"></a>
 
-                       <i id="bugreport" style="margin-left: -18px; margin-right: 10px;" height="10px" class="fa fa-bug" data-toggle="tooltip" data-placement="top" title="Report a bug (Opens in new tab)"></i>
-               
                <?php
 
                $arr = []; Hook::run(HOOKTYPE_FOOTER, $arr);
 </html>
 <!--
 <script>
-       var bugreport = document.getElementById('bugreport');
-       bugreport.addEventListener('click', (e) => {
-               window.open("https://github.com/unrealircd/unrealircd-webpanel/issues/new?labels=bug&template=bug_report.md", '_blank');
-       });
-
        // Function to check if the feedback prompt should be shown
        function showFeedbackPrompt()
        {