blob: 2908f212f79ff4dad60ab460ee02f8e136086f1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?php
/**
* Elgg API Admin
*
* @package ElggAPIAdmin
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd
* @copyright Curverider Ltd 2008
* @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
admin_gatekeeper();
set_context('admin');
$limit = get_input('limit', 10);
$offset = get_input('offset', 0);
// Set admin user for user block
set_page_owner($_SESSION['guid']);
$title = elgg_view_title(elgg_echo('apiadmin'));
// Display add form
$body .= elgg_view('apiadmin/forms/add_key');
// List entities
set_context('search');
$body .= list_entities('object', 'api_key');
set_context('admin');
// Display main admin menu
page_draw(elgg_echo('apitest'),elgg_view_layout("two_column_left_sidebar", '', $title . $body));
?>
|