X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=notimeline%2Fnotimeline.php;h=93782878a246e6dea1a993d2449183c70b34ab66;hb=a5a3a64b1aa19a87f21aebdfae0ef7252b0bc483;hp=dcf9693542f38cd065a8932ad9695bb9b98d0b22;hpb=e1bb463ba945db3f05766651204bd8872fc255bf;p=friendica-addons.git diff --git a/notimeline/notimeline.php b/notimeline/notimeline.php index dcf96935..93782878 100644 --- a/notimeline/notimeline.php +++ b/notimeline/notimeline.php @@ -4,33 +4,32 @@ * Description: Disable "Archives" widget on profile page * Version: 1.0 * Author: Mike Macgirvin - * * */ - +use Friendica\Core\Addon; +use Friendica\Core\L10n; use Friendica\Core\PConfig; -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'); - +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; + } - PConfig::set(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) @@ -53,13 +52,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 .= '
'; }