/**
* Menu item for personal subscriptions/groups area
*
- * @param Widget $widget Widget being executed
+ * @param Action $action action being executed
*
* @return boolean hook return
*/
- function onEndSubGroupNav($widget)
+ function onEndAccountSettingsNav($action)
{
- $action = $widget->out;
$action_name = $action->trimmed('action');
+ common_debug("ACTION NAME = " . $action_name);
+
$action->menuItem(common_local_url('mirrorsettings'),
// TRANS: SubMirror plugin menu item on user settings page.
_m('MENU', 'Mirroring'),
{
}
+ /**
+ * Show the local navigation menu
+ *
+ * This is the same for all settings, so we show it here.
+ *
+ * @return void
+ */
function showLocalNav()
{
- $nav = new SubGroupNav($this, common_current_user());
- $nav->show();
+ $menu = new SettingsNav($this);
+ $menu->show();
}
function showScripts()