blob: 75fe7c743aa720b2e0c04242bd6c5e6f04af43cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* Elgg sidebar menu
*
* @package Elgg
* @subpackage Core
*
*/
// Plugins can add to the sidebar menu by calling elgg_add_submenu_item()
$submenu = elgg_get_submenu();
echo $submenu;
|