index_head.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. require_once '../path.php';
  3. require_once '../ucenter/login.php';
  4. require_once '../public/config.php';
  5. require_once '../public/load_lang.php';
  6. ?>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  8. <html>
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  12. <link type="text/css" rel="stylesheet" href="../studio/css/style.css"/>
  13. <link type="text/css" rel="stylesheet" href="../studio/css/color_day.css" id="colorchange" />
  14. <title id="page_title"><?php echo $_local->gui->pcd_studio; ?></title>
  15. <script src="../studio/js/common.js"></script>
  16. <script src="../public/js/jquery.js"></script>
  17. <script src="../studio/js/fixedsticky.js"></script>
  18. <link type="text/css" rel="stylesheet" href="../public/css/notify.css"/>
  19. <script src="../public/js/notify.js"></script>
  20. <script src="../public/js/comm.js"></script>
  21. <script src="../public/js/jquery-ui-1.12.1/jquery-ui.js"></script>
  22. <link type="text/css" rel="stylesheet" href="../public/js/jquery-ui-1.12.1/jquery-ui.css"/>
  23. <script type="text/javascript">
  24. <?php require_once '../public/load_lang_js.php';//加载js语言包?>
  25. var g_language="en";
  26. function menuLangrage(obj){
  27. g_language=obj.value;
  28. setCookie('language',g_language,365);
  29. window.location.assign("index.php?language="+g_language);
  30. }
  31. </script>
  32. </head>