. * * @category Settings * @package StatusNet * @author Evan Prodromou * @copyright 2008-2009 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ if (!defined('GNUSOCIAL')) { exit(1); } /** * Base class for settings group of actions * * @category Settings * @package StatusNet * @author Evan Prodromou * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ * * @see Widget */ class SettingsAction extends FormAction { /** * 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() { } }