File manager - Edit - /home/autoph/public_html/voc/home/main_app.php
Back
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <?php ob_start(); $cookieID =$_COOKIE['cookieID']; include "core/database/connect.php"; $MyCookieID = mysql_result(mysql_query("SELECT `IT_ADM` FROM `vts_users` WHERE `u_id`='$cookieID'"),0); //echo "My User ID in COOKIE: ".$cookieID; echo "<input type='hidden' id='ckhITRights' value='".$MyCookieID."'>"; ?> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <div id="wait" style="display:none;width:400px;height:100px;border:0px solid red;position:absolute;top:50%;left:45%;padding:2px;z-index:999999999999999999"> <img src='images/demo_wait.gif' width="64" height="64" /><br>Loading...</div> <!-- add jquery --> <script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(document).ajaxStart(function(){ $("#wait").css("display", "block"); }); $(document).ajaxComplete(function(){ $("#wait").css("display", "none"); }); //=================================== //==================================== $("#showHRDApps").click(function(){ ShowUploadBar(); $.ajax({ url: "APP_HR_Module.php", type: "POST", async: false, data: { }, success: function(d){ ShowUploadBar(); $("#displayAPP").html(d); //invHideAssignMsg(); //$('#searchText').val(''); } }) }); //==================================== $("#showSALESApps").click(function(){ ShowUploadBar(); $.ajax({ url: "APP_ASA_Module.php", type: "POST", async: false, data: { }, success: function(d){ ShowUploadBar(); $("#displayAPP").html(d); //invHideAssignMsg(); //$('#searchText').val(''); } }) }); //==================================== $("#showDATABASEApp").click(function(){ ShowUploadBar(); $.ajax({ url: "APP_DBCON_Module.php", type: "POST", async: false, data: { }, success: function(d){ ShowUploadBar(); $("#displayAPP").html(d); //invHideAssignMsg(); //$('#searchText').val(''); } }) }); //==================================== $("#showSettingsApp").click(function(){ var ckhITRights = $("#ckhITRights").val(); if(ckhITRights != 1){ alert('Sorry you are not allowed to access this page. Please contact your System Admin for assistance. Thank yoU!'); return false; } ShowUploadBar(); $.ajax({ url: "APP_SETTING_PAGE.php", type: "POST", async: false, data: { }, success: function(d){ ShowUploadBar(); $("#displayAPP").html(d); //invHideAssignMsg(); //$('#searchText').val(''); } }) }); }); //================== $("#HideShowMenu").click(function(){ $("#displayMenu").animate({width: 'toggle'}); }); //==================== var isOn = true; $(function(){ $("#HideShowMenu").click(function(){ console.log(isOn); if ( isOn ){ isOn = false; $('.BodyArea').css("width", '100%'); } else { isOn = true; $('.BodyArea').css("width", '80%'); } return false; }); }); function ShowUploadBar() { var div = document.getElementById("loadBaraData"); if (div.style.display == 'none') { div.style.display = ''; } else { div.style.display = 'none' } } </script> <style> #displayMenu{ background: #E3E0DE; width: 20%; height: auto% } .BodyArea{ width:80%; } .orangeBG{ background: -webkit-linear-gradient(left top,#F34410 ,#f9b709); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(bottom right, #F34410,#f9b709); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(bottom top, #F34410,#f9b709); /* For Firefox 3.6 to 15 */ background: linear-gradient(to bottom right, #F34410,#f9b709); /* Standard syntax */ } .appMenu{ min-width:250px;width:100%;float:left;height:100px;border:0px;border-bottom:1px solid lightgray;padding:20px;background:#eff1f1;cursor:pointer; } .appMenu:hover{ min-width:250px;width:100%;float:left;height:100px;border:0px;border-bottom:1px solid lightgray;padding:20px;background: #f7d768;cursor:pointer; } .menuLogo{ background-image: url(./images/sys_bg.png); background-size: cover; background-repeat: no-repeat; background-position: center center; width:40%; height:100%; float:left; } .inventoryBG{ background-image: url(./images/inventory_bg.png); background-size: cover; background-repeat: no-repeat; background-position: center center; width:40%; height:100%; float:left; } .dbCon_bg{ background-image: url(./images/dbcon_bg.png); background-size: cover; background-repeat: no-repeat; background-position: center center; width:40%; height:100%; float:left; } .supportBG{ background-image: url(./images/ticket_bg.png); background-size: cover; background-repeat: no-repeat; background-position: center center; width:40%; height:100%; float:left; } .clearanceBG{ background-image: url(./images/clearance_bg.png); background-size: cover; background-repeat: no-repeat; background-position: center center; width:40%; height:100%; float:left; } .bgMenuBackImage{ float:left;width:30%; height:90px; border:0px solid blue; background-image: url(./images/support_bg.png); background-size: cover; background-repeat: no-repeat; background-position: center center; } .bgMenuBackImageSales{ background: -webkit-linear-gradient(left top,#c6cac6,#f7faf7); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(bottom right, #c6cac6,#f7faf7); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(bottom top, #c6cac6,#f7faf7); /* For Firefox 3.6 to 15 */ background: linear-gradient(to bottom right, #c6cac6,#f7faf7); /* Standard syntax */ float:left;width:30%; height:90px; border:0px solid blue; } .bgMenuBackImageCRM{ float:left;width:30%; height:90px; border:0px solid blue; background-image: url(./images/crm_bg.png); background-size: cover; background-repeat: no-repeat; background-position: center center; } .bgMenuBackImageBlank{ float:left;width:30%; height:90px; border:0px solid blue; background-image: url(./images/blank_bg.png); background-size: cover; background-repeat: no-repeat; background-position: center center; } .mainMenuBg{ background: -webkit-linear-gradient(left top,#c6cac6,#f7faf7); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(bottom right, #c6cac6,#f7faf7); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(bottom top, #c6cac6,#f7faf7); /* For Firefox 3.6 to 15 */ background: linear-gradient(to bottom right, #c6cac6,#f7faf7); /* Standard syntax */ float:left;width:100%;border-bottom:1px solid #a0a09f ; } .mainMenuBg:hover{ float:left;width:100%;border-bottom:1px solid orange ; background: -webkit-linear-gradient(left top,#c6cac6,#fcd56d); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(bottom right, #c6cac6,#fcd56d); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(bottom top, #c6cac6,#fcd56d); /* For Firefox 3.6 to 15 */ background: linear-gradient(to bottom right, #c6cac6,#fcd56d); /* Standard syntax */ } .appModule{ margin:5px;padding:8px;width:25%;min-width:300px;height:100px;border:0px solid gray;border-right:0px solid lightgray;border-radius:0px;float:left;margin-top:0px;padding-top:0px;border-bottom:0px solid lightgray; background: #fff; box-shadow:lightgray 3px 3px 3px; background: -webkit-linear-gradient(left top,#faf2a5,#faf6ce); /*For Safari 5.1 to 6.0 */ background: -o-linear-gradient(bottom right, #faf2a5,#faf6ce); /*For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(bottom top, #faf2a5,#faf6ce); /*For Firefox 3.6 to 15 */ background: linear-gradient(to bottom right, #faf2a5,#faf6ce ); /*Standard syntax */ } .appModule:hover{ margin:5px;padding:8px;width:25%;min-width:300px;height:100px;border:0px solid orange;border-radius:0px;float:left;margin-top:0px;padding-top:0px;;border-bottom:0px solid orange; background: #fefbbf ; box-shadow: #2cd3e1 3px 3px 3px; /*background: -webkit-linear-gradient(left top,#f7b228,#feeac1); For Safari 5.1 to 6.0 */ /*background: -o-linear-gradient(bottom right, #f7b228,#feeac1); For Opera 11.1 to 12.0 */ /*background: -moz-linear-gradient(bottom top, #f7b228,#feeac1); For Firefox 3.6 to 15 */ /*background: linear-gradient(to bottom right, #f7b228,#feeac1); Standard syntax */ } .main_app_menu{ padding:10px;float:left;width:70%;height:90px;border:0px solid lightgray;background:white;cursor:pointer; background: -webkit-linear-gradient(left top,#c6cac6,#f7faf7); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(bottom right, #c6cac6,#f7faf7); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(bottom top, #c6cac6,#f7faf7); /* For Firefox 3.6 to 15 */ background: linear-gradient(to bottom right, #c6cac6,#f7faf7); /* Standard syntax */ } .main_app_menu:hover{ padding:10px;float:left;width:70%;height:90px;border:0px solid red;background:white;cursor:pointer; background: -webkit-linear-gradient(left top,#08a89a,#2bbbae); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(bottom right, #08a89a,#2bbbae); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(bottom top, #08a89a,#2bbbae); /* For Firefox 3.6 to 15 */ background: linear-gradient(to bottom right, #08a89a,#2bbbae); /* Standard syntax */ } </style> </head> <body style="font-family:Verdana;color:#aaaaaa;background:white"> <!--#########################################################################--> <div id="loadBaraData" style="display:none;position:absolute;top:50%;left:35%;width:30%;padding:5px;padding-left:2px;padding-right:2px;height:80px;background:transparent;z-index:9999;border:0px solid gray;z-index:999999999999999999"> <div id="uploadBar" style="font-family:Calibri;font-size:14px;color:red;text-align:center;margin-top:0px;background:white;display:block;width:100%;height:50px;border:0px solid red;position:relative;left:5px;padding:8px;z-index:999999999999999999;border:0px solid orange"> <img src='images/ajaxLoader.gif' width="100%" height="20px" /><br><center>Working...<center></div> </div> <!--#########################################################################--> <div style="width:100%;height:50px;padding:8px;border-bottom:1px solid gray" class="grayBG"> <a href="#" id="HideShowMenu" style="padding:5px;font-family:Calibri;font-size:24px;font-weight:bold;color: #02133d ">☰ APPLICATION LIST:</a> </div> <!--#####################################################################################--> <div id="displayMenu" style="min-width:300px;float:left;width:20%;height:auto;margin:0px;border:0px solid red;padding:0px;min-height:750px;border-right:1px solid lightgray;"> <div id='showHRDApps' class='mainMenuBg'> <div class='bgMenuBackImage' style='cursor:pointer;background:transparent'> <img src='./images/support_bg.png'><img> </div> <div class='main_app_menu' style='background:transparent;border:0px'> <div style='float:left;width:100%;height:60px;border:0px solid lightgray;background:transparent'> <b style='font-familt:Yu Gothic Light;font-size:17px;text-align:left;color:black;line-height:150%;text-shadow:0px 0px 0px #fcf9a6 '>AUTOHUB SUPPORT</b><br> <b style='font-familt:Yu Gothic Light;font-size:10px;text-align:left;color:black;font-weight:normal'>List of modules related to back office operation</b> </div> <div style='float:left;width:100%;height:30px;border:0px solid lightgray;text-align:right;background:transparent'> <b style='font-familt:Yu Gothic Light;font-size:11px;text-align:right;color: #140574 ;font-weight:bold;padding:10px;padding-right:0px'>Open Applications</b> </div> </div> </div> <!--#####################################################################################--> <div id='showSALESApps' class='mainMenuBg'> <div class='bgMenuBackImageSales' style='cursor:pointer;background:transparent'> <img src='./images/sales_bg.png'><img> </div> <div class='main_app_menu' style='background:transparent;border:0px'> <div style='float:left;width:100%;height:60px;border:0px solid lightgray;background:transparent'> <b style='font-familt:Yu Gothic Light;font-size:17px;text-align:left;color:black;line-height:150%;text-shadow:0px 0px 0px #fcf9a6 '>SALES OPERATION</b><br> <b style='font-familt:Yu Gothic Light;font-size:10px;text-align:left;color:black;font-weight:normal'>List of modules related to sales operation</b> </div> <div style='float:left;width:100%;height:30px;border:0px solid lightgray;text-align:right;background:transparent'> <b style='font-familt:Yu Gothic Light;font-size:11px;text-align:right;color: #140574 ;font-weight:bold;padding:10px;padding-right:0px'>Open Applications</b> </div> </div> </div> <!--##################################################################################### <div id='showDATABASEApp' class='mainMenuBg'> <div class='bgMenuBackImageSales' style='cursor:pointer;background:transparent'> <img src='./images/sales_bg.png'><img> </div> <div class='main_app_menu' style='background:transparent;border:0px'> <div style='float:left;width:100%;height:60px;border:0px solid lightgray;background:transparent'> <b style='font-familt:Yu Gothic Light;font-size:17px;text-align:left;color:black;line-height:150%;text-shadow:0px 0px 0px #fcf9a6 '>DATABASE</b><br> <b style='font-familt:Yu Gothic Light;font-size:10px;text-align:left;color:black;font-weight:normal'>Autohub Database Consolidation and Data Cleansing</b> </div> <div style='float:left;width:100%;height:30px;border:0px solid lightgray;text-align:right;background:transparent'> <b style='font-familt:Yu Gothic Light;font-size:11px;text-align:right;color: #140574 ;font-weight:bold;padding:10px;padding-right:0px'>Open Applications</b> </div> </div> </div> <!--##################################################################################### <div id='showCRMApp' class='mainMenuBg'> <div class='bgMenuBackImageSales' style='cursor:pointer;background:transparent'> <img src='./images/sales_bg.png'><img> </div> <div class='main_app_menu' style='background:transparent;border:0px'> <div style='float:left;width:100%;height:60px;border:0px solid lightgray;background:transparent'> <b style='font-familt:Yu Gothic Light;font-size:17px;text-align:left;color:black;line-height:150%;text-shadow:0px 0px 0px #fcf9a6 '>CRM Module</b><br> <b style='font-familt:Yu Gothic Light;font-size:10px;text-align:left;color:black;font-weight:normal'>Customer Management System of Autohub Group</b> </div> <div style='float:left;width:100%;height:30px;border:0px solid lightgray;text-align:right;background:transparent'> <b style='font-familt:Yu Gothic Light;font-size:11px;text-align:right;color: #140574 ;font-weight:bold;padding:10px;padding-right:0px'>Open Applications</b> </div> </div> </div> <!--#####################################################################################--> <div id='showSettingsApp' class='mainMenuBg'> <div class='bgMenuBackImageSales' style='cursor:pointer;background:transparent'> <img src='./images/settings_bg.png'><img> </div> <div class='main_app_menu' style='background:transparent;border:0px'> <div style='float:left;width:100%;height:60px;border:0px solid lightgray;background:transparent'> <b style='font-familt:Yu Gothic Light;font-size:17px;text-align:left;color:black;line-height:150%;text-shadow:0px 0px 0px #fcf9a6 '>SYSTEM SETTINGS</b><br> <b style='font-familt:Yu Gothic Light;font-size:10px;text-align:left;color:black;font-weight:normal'>System Configuration and User Access Management</b> </div> <div style='float:left;width:100%;height:30px;border:0px solid lightgray;text-align:right;background:transparent'> <b style='font-familt:Yu Gothic Light;font-size:11px;text-align:right;color: #140574 ;font-weight:bold;padding:10px;padding-right:0px'>System Setup</b> </div> </div> </div> <!--#####################################################################################--> <div id='showSALESApps' class='mainMenuBg'> <div class='bgMenuBackImageSales' style='cursor:pointer;background:lightgray'> </div> <div class='main_app_menu' style='background:lightgray;border:0px'> </div> </div> <!--#####################################################################################--> <div id='showSALESApps' class='mainMenuBg'> <div class='bgMenuBackImageSales' style='cursor:pointer;background:lightgray'> </div> <div class='main_app_menu' style='background:lightgray;border:0px'> </div> </div> <!--#####################################################################################--> <div id='showSALESApps' class='mainMenuBg'> <div class='bgMenuBackImageSales' style='cursor:pointer;background:lightgray'> </div> <div class='main_app_menu' style='background:lightgray;border:0px'> </div> </div> <!--#####################################################################################--> <div id='showSALESApps' class='mainMenuBg'> <div class='bgMenuBackImageSales' style='cursor:pointer;background:lightgray'> </div> <div class='main_app_menu' style='background:lightgray;border:0px'> </div> </div> </div> <div id="displayAPP" style="float:left;width:78%;height:auto;margin:0px;border:0px solid red;padding:10px;height:100%;padding-top:0px" > <?php include 'APP_MAIN_PAGE.php';?> </div> <div style="float:left;width:100%;height:50px;margin:0px;border:0px solid red;padding:0px;background:black"> footer </div> </body> </html>
| ver. 1.4 |
.
| PHP 7.3.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings