예제 #1
0
파일: list.php 프로젝트: te-koyama/sheep
<?php

$PAGE = "S_TARGET_LIST";
require_once '../_init_auth.php';
require_once 'target/class.Target.php';
try {
    $param = array();
    $param['page'] = $PAGE;
    $authority = $_SESSION[SESSION_GROUP_CD];
    //人事、開発以外はじく
    if (!in_array(ACCOUNT_DEVEL, $authority) && !in_array(ACCOUNT_HUMAN_RESOURCES, $authority)) {
        $param['errors'][] = "システムエラーが発生しました。";
        renderTemplate('error.tpl', $param);
        exit;
    }
    $target = new target($request);
    //新入社員が所属している本部リスト取得
    $list = $target->getAssignList();
    //パラメータ設定
    $param['list'] = $list;
    // //画面遷移
    renderTemplate("target/list.tpl", $param);
} catch (Exception $e) {
    $param['errors'][] = "システムエラーが発生しました。";
    renderTemplate('error.tpl', $param);
    exit;
}