ここの情報は古いです。ご理解頂いた上でお取り扱いください。

source: OpenPNE/trunk/webapp_biz/modules/biz/page/s_edit_shisetsu.php @ 1108

Last change on this file since 1108 was 1108, checked in by takanashi, 16 years ago

bizのナビなしページにナビを追加

File size: 731 bytes
Line 
1<?php
2/**
3 * @copyright 2005-2006 OpenPNE Project
4 * @license   http://www.php.net/license/3_01.txt PHP License 3.01
5 */
6
7//施設変更
8class biz_page_s_edit_shisetsu extends OpenPNE_Action
9{
10    function execute($requests)
11    {
12        $id = $requests['id'];
13        $sessid = session_id();
14
15        $list = biz_getShisetsuData($id);
16
17        $this->set("list", $list);
18        $this->set("id", $id);
19        $config = biz_getConfig();
20
21        $this->set('inc_navi', fetch_inc_navi('h'));
22        if ($config['IS_CLOSED_SHISETSU']) {
23            $p = array('msg' => '施設関連の操作は禁止されています。');
24            openpne_redirect('biz', 'page_s_list', $p);
25        }
26
27        return 'success';
28    }
29}
30
31?>
Note: See TracBrowser for help on using the repository browser.