1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
/**
* 共通头部文件
* $RCSfile: topmenutopsub_header.inc,v $
* @package templates.manager
*/
@header('Content-Language: ja');
@header('Content-Type: text/html;charset=UTF-8');
?>
<!DOCTYPE html>
<html lang="zh_CN" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Expires" content="-1"/>
<meta http-equiv="Pragma" content="no-cache"/>
<title><?=SERVICE_NAME ?>管理</title>
<link href="css/manager_layout.css" rel="stylesheet" type="text/css" />
<link href="css/common_design.css" rel="stylesheet" type="text/css" />
<link href="css/jquery.ui.core.css" rel="stylesheet" type="text/css" />
<link href="css/jquery.ui.theme.css" rel="stylesheet" type="text/css" />
<link href="css/jquery.ui.datepicker.css" rel="stylesheet" type="text/css" />
<link href="css/selectpopup.css" rel="stylesheet" type="text/css" />
<!-- スクリプト -->
<script type="text/JavaScript">
/**
* doPopup()
* @return
*/
function doPopup(html_data, width_min, width_max, height_min, height_max) {
var selectdialogouterframe = document.getElementById('selectdialogouterframe');
selectdialogouterframe.style.visibility = "visible";
selectdialogouterframe.style.minWidth = width_min + "px";
selectdialogouterframe.style.maxWidth = width_max + "px";
selectdialogouterframe.style.minHeight = height_min + "px";
selectdialogouterframe.style.maxHeight = height_max + "px";
var innerframe = document.getElementById('innerframe');
innerframe.style.minWidth = (width_min - 20) + "px";
innerframe.style.maxWidth = (width_max - 20) + "px";
innerframe.style.minHeight = (height_min - 40) + "px";
innerframe.style.maxHeight = (height_max - 40) + "px";
innerframe.innerHTML = html_data;
}
</script>
<script src="scripts/jquery.js" type="text/javascript"></script>
<script src="scripts/jquery.ui.core.min.js" type="text/javascript"></script>
<script src="scripts/jquery.ui.datepicker.min.js" type="text/javascript"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/jquery.colorbox/1.4.33/example1/colorbox.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.colorbox/1.4.33/jquery.colorbox-min.js"></script>
<script type="text/JavaScript" src="dynamicscripts/do_select_popup.js"></script>
<script type="text/JavaScript" src="dynamicscripts/do_image_popup.js"></script>
<script type="text/javascript" src="scripts/vue.min.js" ></script>
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
<script type="text/javascript" src="scripts/axios.min.js" ></script>
<?
//JavaScript
if (isset($_SCRIPT_FILE)) {
if (is_array($_SCRIPT_FILE)) {
foreach ($_SCRIPT_FILE as $filename) {
if (!empty($_SCRIPT_FILE)) {
?><script language="JavaScript" type="text/JavaScript" src="<?=$filename ?>"></script>
<?
}
}
} else {
if (!empty($_SCRIPT_FILE)) {
?><script language="JavaScript" type="text/JavaScript" src="<?=$_SCRIPT_FILE ?>"></script>
<?
}
}
}
?>
<link rel="stylesheet" href="scripts/jquery-ui-1.10.3/themes/base/jquery.ui.all.css">
<link rel="stylesheet" media="all" type="text/css" href="scripts/jquery-ui-1.10.3/themes/base/jquery.ui.datepicker.css" />
<script src="scripts/jquery-ui-1.10.3/ui/jquery.ui.core.min.js"></script>
<script src="scripts/jquery-ui-1.10.3/ui/jquery.ui.widget.min.js"></script>
<script src="scripts/jquery-ui-1.10.3/ui/jquery.ui.datepicker.min.js"></script>
<script src="scripts/jquery-ui-1.10.3/ui/jquery.ui.tabs.min.js"></script>
<script src="scripts/jquery-ui-1.10.3/ui/datepicker_addon.js"></script>
</head>
<? require(MANAGER_TEMPLATE_DIR_PATH . "/" . $layout_pages["right"]); ?>