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 | // API使用一覧 |
---|
8 | class admin_page_list_c_api extends OpenPNE_Action |
---|
9 | { |
---|
10 | function execute($requests) |
---|
11 | { |
---|
12 | $pager = array(); |
---|
13 | $c_api_list = db_admin_get_c_api_all($requests['page'], $requests['page_size'], $pager); |
---|
14 | |
---|
15 | $this->set("pager", $pager); |
---|
16 | $this->set("c_api_list", $c_api_list); |
---|
17 | return 'success'; |
---|
18 | } |
---|
19 | } |
---|
20 | |
---|
21 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.