diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-09-24 15:09:49 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-09-24 15:09:49 +0000 |
commit | 0bf17c03c2de8423045bf59b83d1e6d12ed7ca42 (patch) | |
tree | c0e2b9a30e617d92392974139c605f5cde931fc6 /mod/apiadmin/index.php | |
parent | 745cdb1c22401bd62cf8e3d9754bcaceab2617f3 (diff) | |
download | elgg-0bf17c03c2de8423045bf59b83d1e6d12ed7ca42.tar.gz elgg-0bf17c03c2de8423045bf59b83d1e6d12ed7ca42.tar.bz2 |
Introducing API key administration panel
git-svn-id: https://code.elgg.org/elgg/trunk@2114 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/apiadmin/index.php')
-rw-r--r-- | mod/apiadmin/index.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/mod/apiadmin/index.php b/mod/apiadmin/index.php new file mode 100644 index 000000000..2908f212f --- /dev/null +++ b/mod/apiadmin/index.php @@ -0,0 +1,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)); +?>
\ No newline at end of file |