TOP002.php 1.22 KB
<?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');
?>