TOP002.php
1.22 KB
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
<?php
//*****************************************************************************
//*
//* プログラム名:インデックスページ
//* プログラムID:TOP002.php
//* 機能 :1ヶ月スケジュール
//* 作成者 :荒内
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("include/SessionChk.inc");
include('include/smarty.conf');
include("inc/header.inc");
include("inc/TOP002.inc");
include("inc/TOP005_2.inc");
include("inc/input_chk.inc");
include('include/Google_API_Info.inc');
include('include/Get_GooGleCal.inc');
include("inc/GCal.inc");
//メニューセット
include("menu_opacity.php");
//アクセストークン取得もしくは予定取得エラーによるチェック処理
$st_year=substr($strwkdate, 0, 4);
$st_mon=substr($strwkdate, 4, 2);
if($syain_cd == $PHP_SYAIN_CD){
$error_flg = '';
//エラーフラグ取得
$Cal_Data = Get_GooGleCalMonth_API($PHP_SYAIN_CD , $st_year ,$st_mon, "1");
$error_flg = $Cal_Data[error_flg];
if ($error_flg == 1) {
echo '<script type="text/javascript">gcal_auth()</script>';
}
}
$o_smarty->assign('strwkdate',$strwkdate);
$o_smarty->assign('syain_cd',$syain_cd);
$o_smarty->display('TOP002.tpl');
?>