* */ use Friendica\Core\Addon; use Friendica\Core\L10n; use Friendica\Core\PConfig; function notimeline_install() { Addon::registerHook('addon_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings'); Addon::registerHook('addon_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post'); } function notimeline_uninstall() { Addon::unregisterHook('addon_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings'); Addon::unregisterHook('addon_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post'); } function notimeline_settings_post($a, $post) { if (!local_user() || (!x($_POST, 'notimeline-submit'))) { return; } PConfig::set(local_user(), 'system', 'no_wall_archive_widget', intval($_POST['notimeline'])); info(L10n::t('No Timeline settings updated.') . EOL); } function notimeline_settings(&$a, &$s) { if (! local_user()) { return; } /* Add our stylesheet to the page so we can make our settings look nice */ $a->page['htmlhead'] .= '' . "\r\n"; /* Get the current state of our config variable */ $notimeline = PConfig::get(local_user(), 'system', 'no_wall_archive_widget', false); $notimeline_checked = (($notimeline) ? ' checked="checked" ' : ''); /* Add some HTML to the existing form */ $s .= '
'; $s .= '

' . L10n::t('No Timeline Settings') . '

'; $s .= '
'; $s .= ''; $s .= ''; $s .= '
'; /* provide a submit button */ $s .= '
'; }