X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=notimeline%2Fnotimeline.php;h=b99501c3a3b3876f7fb9f11ab86e57828ccb9fd0;hb=1c9f61350917fe289c2bae4d69bd43ea1fdfba4b;hp=15ea32d0314154382c8d47a76e11b2c8a7f0335a;hpb=48fecb9a40d0a1bac959f239be1d937edd5b7f09;p=friendica-addons.git diff --git a/notimeline/notimeline.php b/notimeline/notimeline.php index 15ea32d0..b99501c3 100644 --- a/notimeline/notimeline.php +++ b/notimeline/notimeline.php @@ -8,7 +8,6 @@ * */ use Friendica\Core\Hook; -use Friendica\Core\L10n; use Friendica\DI; function notimeline_install() @@ -17,12 +16,6 @@ function notimeline_install() Hook::register('addon_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post'); } -function notimeline_uninstall() -{ - Hook::unregister('addon_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings'); - Hook::unregister('addon_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post'); -} - function notimeline_settings_post($a, $post) { if (!local_user() || empty($_POST['notimeline-submit'])) { @@ -30,7 +23,6 @@ function notimeline_settings_post($a, $post) } DI::pConfig()->set(local_user(), 'system', 'no_wall_archive_widget', intval($_POST['notimeline'])); - info(DI::l10n()->t('No Timeline settings updated.') . EOL); } function notimeline_settings(&$a, &$s)