]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/settingsaction.php
hide profile block on settings and admin panels
[quix0rs-gnu-social.git] / lib / settingsaction.php
index c3669868d4d3cb177401e1f1747b7f7c06cf6c0d..c7113d15c2b651c6ba07fe302b1973d3fdbf4bdb 100644 (file)
@@ -150,4 +150,32 @@ class SettingsAction extends CurrentUserDesignAction
         return '';
     }
 
+    /**
+     * Show the local navigation menu
+     *
+     * This is the same for all settings, so we show it here.
+     *
+     * @return void
+     */
+
+    function showLocalNav()
+    {
+        $menu = new SettingsNav($this);
+        $menu->show();
+    }
+
+    /**
+     * Show notice form.
+     *
+     * @return nothing
+     */
+
+    function showNoticeForm()
+    {
+        return;
+    }
+
+    function showProfileBlock()
+    {
+    }
 }