X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=notimeline%2Fnotimeline.php;h=6f747ca96730eedbda7ea227002905160900794a;hb=2aa373a75d8283b77d33569fed45a485d7be1124;hp=c2bca211beb398479e7c36c23f514c858d81011e;hpb=dfa4cfc7cde6c6f755beae5818fe3eee99724c5c;p=friendica-addons.git diff --git a/notimeline/notimeline.php b/notimeline/notimeline.php index c2bca211..6f747ca9 100644 --- a/notimeline/notimeline.php +++ b/notimeline/notimeline.php @@ -4,48 +4,48 @@ * Description: Disable "Archives" widget on profile page * Version: 1.0 * Author: Mike Macgirvin - * + * Status: Unsupported * */ - - -function notimeline_install() { - - register_hook('plugin_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings'); - register_hook('plugin_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post'); - +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() { - unregister_hook('plugin_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings'); - unregister_hook('plugin_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'))) +function notimeline_settings_post($a, $post) +{ + if (!local_user() || (!x($_POST, 'notimeline-submit'))) { return; + } - set_pconfig(local_user(),'system','no_wall_archive_widget',intval($_POST['notimeline'])); - info( t('No Timeline settings updated.') . EOL); + 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()) +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"; + $a->page['htmlhead'] .= '' . "\r\n"; /* Get the current state of our config variable */ - $notimeline = get_pconfig(local_user(),'system','no_wall_archive_widget'); - if($notimeline === false) - $notimeline = false; + $notimeline = PConfig::get(local_user(), 'system', 'no_wall_archive_widget', false); $notimeline_checked = (($notimeline) ? ' checked="checked" ' : ''); @@ -53,14 +53,13 @@ function notimeline_settings(&$a,&$s) { /* Add some HTML to the existing form */ $s .= '
'; - $s .= '

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

'; + $s .= '

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

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