File "index.php"
Full path: /www/ansys/qgis/003_asahikawa/index.php
File size: 2.99 KiB (3064 bytes)
MIME-type: text/x-php
Charset: utf-8
<?php
//===============================================
// CommonUtilities
// 備考 :
// 更新 : 2012/10/18 KMK-Teraoka
//===============================================
$PENTA_OCEAN = "五洋建設株式会社";
$TAIL_PENTA_OCEAN = "penta-ocean";
$SCRIPT_TITLE = "運行管理システム -旭川(23震災関連)庁舎新設等建築工事-";
$LINK_LIST = array(
"0" => array("path" => "./viewer/top_pt.php", "title" => "■アジテータ車確認[五洋建設職員]"),
"1" => array("path" => "./status/status_pt.php", "title" => "■端末ステータス確認[五洋建設職員]"),
"2" => array("path" => "./viewer/top_tc.php", "title" => "■アジテータ車確認[北海道TC生コン(株)]"),
"3" => array("path" => "./status/status_tc.php", "title" => "■端末ステータス確認[北海道TC生コン(株)]"),
"4" => array("path" => "./viewer/top_nd.php", "title" => "■アジテータ車確認[(株)野田生コンクリート]"),
"5" => array("path" => "./status/status_nd.php", "title" => "■端末ステータス確認[(株)野田生コンクリート]"),
"6" => array("path" => "./viewer/top_su.php", "title" => "■アジテータ車確認[三共宇部生コン(株)]"),
"7" => array("path" => "./status/status_su.php", "title" => "■端末ステータス確認[三共宇部生コン(株)]"),
"8" => array("path" => "./intercomm/req_list.php", "title" => "■音声ガイダンス送信履歴"),
);
//===============================================
// HTML-HEAD-
// 備考 :
// 更新 : 2012/10/18 KMK-Teraoka
//===============================================
print "<html>";
print "<head>";
print "<meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">";
print "<link rel=\"stylesheet\" type=\"text/css\" href=\"/ansys/config/css/style.css\">";
print "<link rel=\"shortcut icon\" href=\"/ansys/config/favicon.ico\">";
print "<title>". $SCRIPT_TITLE. "</title>";
print "</head>";
//===============================================
// HTML-BODY部開始-
// 備考 :
// 更新 : 2012/10/18 KMK-Teraoka
//===============================================
print "<body>";
print "<center>";
print "<font size=\"3\">";
print "<b>";
print "". $SCRIPT_TITLE. "<br>";
print "【". $PENTA_OCEAN. "】";
print "</b>";
print "</font>";
print "</center>";
print "<hr />";
//===========================
// リンクの作成
//===========================
$num = count($LINK_LIST);
print "<b>";
for($iCount = 0; $iCount < $num; $iCount++)
{
print "<font size=\"3\">";
print "<a href=\"". $LINK_LIST[$iCount]["path"]. "\">". $LINK_LIST[$iCount]["title"]. "</a>";
print "</font>";
print "<br />";
if (($iCount + 1) < $num)
{
print "<br />";
}
}
print "</b>";
//===========================
// 終端
//===========================
print "<hr />";
print "<font size=\"3\" color=\"#000000\" face=\"Arial\">";
print "<center>";
print "<b>";
print "<i>";
print $TAIL_PENTA_OCEAN;
print "</i>";
print "</b>";
print "</center>";
print "</font>";
print "</body>";
print "</html>";
?>