Line | |
---|
1 | <?php |
---|
2 | /** |
---|
3 | * @copyright 2005-2008 OpenPNE Project |
---|
4 | * @license http://www.php.net/license/3_01.txt PHP License 3.01 |
---|
5 | */ |
---|
6 | |
---|
7 | class ktai_page_c_join_request extends OpenPNE_Action |
---|
8 | { |
---|
9 | function execute($requests) |
---|
10 | { |
---|
11 | $u = $GLOBALS['KTAI_C_MEMBER_ID']; |
---|
12 | |
---|
13 | // --- リクエスト変数 |
---|
14 | $target_c_commu_id = $requests['target_c_commu_id']; |
---|
15 | // ---------- |
---|
16 | |
---|
17 | // コミュニティ |
---|
18 | $this->set('c_commu', db_commu_c_commu4c_commu_id_k($target_c_commu_id)); |
---|
19 | |
---|
20 | //コミュニティID |
---|
21 | $this->set("target_c_commu_id", $target_c_commu_id); |
---|
22 | |
---|
23 | return 'success'; |
---|
24 | } |
---|
25 | } |
---|
26 | |
---|
27 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.