blob: 6a5a521a55a0ba65bfe91cf496db83fba3f6ea5c (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
/**
* Admin section for editing external pages
*/
$type = get_input('type', 'about');
echo elgg_view('expages/menu', array('type' => $type));
echo elgg_view_form('expages/edit', array('class' => 'elgg-form-settings'), array('type' => $type));
|