mirror of https://github.com/itflow-org/itflow
66 lines
2.4 KiB
PHP
66 lines
2.4 KiB
PHP
<?php
|
|
require_once "inc_confirm_modal.php";
|
|
?>
|
|
|
|
<?php
|
|
if (basename(dirname($_SERVER['REQUEST_URI'])) === 'admin') { ?>
|
|
<p class="text-right font-weight-light">ITFlow <?php echo APP_VERSION ?> · <a target="_blank" href="https://docs.itflow.org">Docs</a> · <a target="_blank" href="https://forum.itflow.org">Forum</a> · <a target="_blank" href="https://services.itflow.org">Services</a></p>
|
|
<br>
|
|
<?php } ?>
|
|
<?php
|
|
if (basename(dirname($_SERVER['REQUEST_URI'])) === 'guest') { ?>
|
|
<p class="text-center">
|
|
<?php
|
|
echo nullable_htmlentities($session_company_name);
|
|
if (!$config_whitelabel_enabled) {
|
|
echo '<br><small class="text-muted">Powered by ITFlow</small>';
|
|
}
|
|
?>
|
|
</p>
|
|
<?php } ?>
|
|
|
|
</div><!-- /.container-fluid -->
|
|
</div> <!-- /.content -->
|
|
</div> <!-- /.content-wrapper -->
|
|
</div> <!-- ./wrapper -->
|
|
|
|
<!-- Set the browser window title to the clients name -->
|
|
<script>document.title = <?php echo json_encode("$tab_title - $page_title"); ?>;</script>
|
|
|
|
<!-- REQUIRED SCRIPTS -->
|
|
|
|
<!-- Bootstrap 4 -->
|
|
<script src="/plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- Custom js-->
|
|
<script src="/plugins/moment/moment.min.js"></script>
|
|
<script src="/plugins/chart.js/chart.umd.min.js"></script>
|
|
<script src="/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js"></script>
|
|
<script src="/plugins/daterangepicker/daterangepicker.js"></script>
|
|
<script src="/plugins/select2/js/select2.min.js"></script>
|
|
<script src="/plugins/inputmask/jquery.inputmask.min.js"></script>
|
|
<script src="/plugins/tinymce/tinymce.min.js" referrerpolicy="origin"></script>
|
|
<script src="/plugins/Show-Hide-Passwords-Bootstrap-4/bootstrap-show-password.min.js"></script>
|
|
<script src="/plugins/clipboardjs/clipboard.min.js"></script>
|
|
<script src="/js/keepalive.js"></script>
|
|
<script src="/plugins/DataTables/datatables.min.js"></script>
|
|
<script src="/plugins/intl-tel-input/js/intlTelInput.min.js"></script>
|
|
|
|
<!-- AdminLTE App -->
|
|
<script src="/plugins/adminlte/js/adminlte.min.js"></script>
|
|
<script src="/js/app.js"></script>
|
|
<script src="/js/ajax_modal.js"></script>
|
|
<script src="/js/confirm_modal.js"></script>
|
|
<script src="/js/date_filter.js"></script>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
<?php
|
|
|
|
// Calculate Execution time Uncomment for test
|
|
|
|
//$time_end = microtime(true);
|
|
//$execution_time = ($time_end - $time_start);
|
|
//echo '<h2>Total Execution Time: '.number_format((float) $execution_time, 10) .' seconds</h2>';
|