blob: b3076508928d205684a480d28e639c28b48affa9 (
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(), array('type' => $type));
|