Line | |
---|
1 | <?php |
---|
2 | /** |
---|
3 | * @copyright 2005-2007 OpenPNE Project |
---|
4 | * @license http://www.php.net/license/3_01.txt PHP License 3.01 |
---|
5 | */ |
---|
6 | |
---|
7 | // メンバー強制退会 確認画面 |
---|
8 | class admin_page_delete_c_member_confirm extends OpenPNE_Action |
---|
9 | { |
---|
10 | function execute($requests) |
---|
11 | { |
---|
12 | |
---|
13 | // 管理者は強制退会できない |
---|
14 | if ($requests['target_c_member_id'] == 1) { |
---|
15 | admin_client_redirect('top', '管理者を強制退会させることはできません'); |
---|
16 | } |
---|
17 | |
---|
18 | $v = array(); |
---|
19 | |
---|
20 | $v['c_profile_list'] = db_member_c_profile_list4null(); |
---|
21 | $v['c_member'] = db_member_c_member4c_member_id($requests['target_c_member_id'], true, true, 'private'); |
---|
22 | |
---|
23 | $this->set($v); |
---|
24 | return 'success'; |
---|
25 | } |
---|
26 | } |
---|
27 | |
---|
28 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.