X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=notimeline%2Fnotimeline.php;h=b99501c3a3b3876f7fb9f11ab86e57828ccb9fd0;hb=1c9f61350917fe289c2bae4d69bd43ea1fdfba4b;hp=fb32717965c2ed79453014694c9b9c0d756c3087;hpb=39dd3dffe07efd69fa1ac6d0bd243c7fc0e3a66f;p=friendica-addons.git diff --git a/notimeline/notimeline.php b/notimeline/notimeline.php index fb327179..b99501c3 100644 --- a/notimeline/notimeline.php +++ b/notimeline/notimeline.php @@ -4,48 +4,40 @@ * Description: Disable "Archives" widget on profile page * Version: 1.0 * Author: Mike Macgirvin + * Status: Unsupported * */ -use Friendica\Core\Addon; -use Friendica\Core\L10n; -use Friendica\Core\PConfig; +use Friendica\Core\Hook; +use Friendica\DI; 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'); + Hook::register('addon_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings'); + Hook::register('addon_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post'); } function notimeline_settings_post($a, $post) { - if (!local_user() || (!x($_POST, 'notimeline-submit'))) { + if (!local_user() || empty($_POST['notimeline-submit'])) { return; } - PConfig::set(local_user(), 'system', 'no_wall_archive_widget', intval($_POST['notimeline'])); - info(L10n::t('No Timeline settings updated.') . EOL); + DI::pConfig()->set(local_user(), 'system', 'no_wall_archive_widget', intval($_POST['notimeline'])); } -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"; + DI::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 = DI::pConfig()->get(local_user(), 'system', 'no_wall_archive_widget', false); $notimeline_checked = (($notimeline) ? ' checked="checked" ' : ''); @@ -53,13 +45,13 @@ function notimeline_settings(&$a,&$s) { /* Add some HTML to the existing form */ $s .= '
'; - $s .= '

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

'; + $s .= '

' . DI::l10n()->t('No Timeline Settings') . '

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