source:
OpenPNE/branches/stable-2.10.x/webapp/modules/admin/page/top.php
@
7669
Last change on this file since 7669 was 7669, checked in by , 13 years ago | |
---|---|
File size: 433 bytes |
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_top extends OpenPNE_Action |
9 | { |
10 | function execute($requests) |
11 | { |
12 | $v = array(); |
13 | |
14 | $v['SNS_NAME'] = SNS_NAME; |
15 | $v['OPENPNE_VERSION'] = OPENPNE_VERSION; |
16 | |
17 | $this->set($v); |
18 | |
19 | return 'success'; |
20 | } |
21 | |
22 | } |
23 | |
24 | ?> |
Note: See TracBrowser
for help on using the repository browser.