ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/thecomponents.in/admin/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/thecomponents.in/admin/web-footer.php |
<?php session_start(); include_once('includes/custom-functions.php'); $fn = new custom_functions; // set time for session timeout $currentTime = time() + 25200; $expired = 3600; // if session not set go to login page if (!isset($_SESSION['user'])) { header("location:index.php"); } // if current time is more than session timeout back to login page if ($currentTime > $_SESSION['timeout']) { session_destroy(); header("location:index.php"); } // destroy previous session timeout and create new one unset($_SESSION['timeout']); $_SESSION['timeout'] = $currentTime + $expired; include "header.php"; ?> <html> <head> <title>Update Footer | <?= $settings['app_name'] ?> - Dashboard</title> <style> .asterik { font-size: 20px; line-height: 0px; vertical-align: middle; } .tox .tox-menubar { background-color: #e7e8e7; display: flex; flex: 0 0 auto; flex-shrink: 0; flex-wrap: wrap; padding: 0 4px 0 4px; } .tox .tox-notification--warn, .tox .tox-notification--warning { background-color: #fffaea; border-color: #ffe89d; color: #222f3e; display: none; } </style> </head> </body> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <?php $sql = "SELECT * FROM settings WHERE variable='front_end_about_us'"; $db->sql($sql); $res = $db->getResult(); $message = ''; if (isset($_POST['btn_update'])) { if (ALLOW_MODIFICATION == 0 && !defined(ALLOW_MODIFICATION)) { $message = '<label class="alert alert-danger">This operation is not allowed in demo panel!.</label>'; return false; } if ($permissions['settings']['update'] == 1) { if (empty($res)) { $settings_value = $db->escapeString($fn->xss_clean($_POST['about_us'])); $sql = "INSERT INTO settings (`variable`,`value`) VALUES ('front_end_about_us','$settings_value ')"; $db->sql($sql); $sql = "SELECT * FROM settings WHERE `variable`='front_end_about_us'"; $db->sql($sql); $res = $db->getResult(); $message = "<p class='alert alert-success'>Saved Successfully!</p>"; } else { $settings_value = $db->escapeString($fn->xss_clean($_POST['about_us'])); $sql = "UPDATE settings SET value='" . $settings_value . "' WHERE variable='front_end_about_us'"; $db->sql($sql); $sql = "SELECT * FROM settings WHERE `variable`='front_end_about_us'"; $db->sql($sql); $res = $db->getResult(); $message = "<p class='alert alert-success'>Updated Successfully!</p>"; } } } ?> <section class="content-header"> <h2>Web Front-End Settings</h2> <ol class="breadcrumb"> <li><a href="home.php"><i class="fa fa-home"></i> Home</a></li> </ol> </section> <section class="content"> <h4 id="result"> <?= !empty($message) ? $message : "" ?></h4> <div class="row"> <div class="col-md-12"> <?php if ($permissions['settings']['read'] == 1) { if ($permissions['settings']['update'] == 0) { ?> <div class="alert alert-danger">You have no permission to update settings</div> <?php } ?> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title">About Us</h3> </div> <form id="about_us_form" method="post" enctype="multipart/form-data"> <div class="box-body"> <div class="form-group"> <label for="app_name">About Us :</label><i class="address_note"></i> <textarea class="form-control addr_editor" name="about_us" id="about_us" required><?= !empty($res[0]['value']) ? $res[0]['value'] : '' ?></textarea> </div> </div> <div class="box-footer"> <input type="submit" id="about_us_btn" class="btn-primary btn" value="Update" name="btn_update" /> </div> </form> <?php } else { ?> <div class="alert alert-danger">You have no permission to view settings</div> <?php } ?> </div> </div> </div> </section> <div class="separator"> </div> </div> </body> </html> <?php include "footer.php"; ?> <script type="text/javascript" src="css/js/ckeditor/ckeditor.js"></script> <script type="text/javascript"> $(document).ready(function() { ltr = '<svg width="20" height="20"><path d="M11 5h7a1 1 0 010 2h-1v11a1 1 0 01-2 0V7h-2v11a1 1 0 01-2 0v-6c-.5 0-1 0-1.4-.3A3.4 3.4 0 017.8 10a3.3 3.3 0 010-2.8 3.4 3.4 0 011.8-1.8L11 5zM4.4 16.2L6.2 15l-1.8-1.2a1 1 0 011.2-1.6l3 2a1 1 0 010 1.6l-3 2a1 1 0 11-1.2-1.6z" fill-rule="evenodd"></path></svg>'; rtl = '<svg width="20" height="20"><path d="M8 5h8v2h-2v12h-2V7h-2v12H8v-7c-.5 0-1 0-1.4-.3A3.4 3.4 0 014.8 10a3.3 3.3 0 010-2.8 3.4 3.4 0 011.8-1.8L8 5zm12 11.2a1 1 0 11-1 1.6l-3-2a1 1 0 010-1.6l3-2a1 1 0 111 1.6L18.4 15l1.8 1.2z" fill-rule="evenodd"></path></svg>'; html = '( Use ' + ltr + ' for LTR and use ' + rtl + ' for RTL )'; $('.address_note').append(html); }); </script>