2012-02-12 07:44:20 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: Numfriends
|
|
|
|
* Description: Change number of contacts shown of profile sidebar
|
|
|
|
* Version: 1.0
|
|
|
|
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
|
|
|
*/
|
2021-11-20 09:56:55 +00:00
|
|
|
|
|
|
|
use Friendica\App;
|
2018-12-26 07:28:16 +00:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 23:40:18 +00:00
|
|
|
use Friendica\Core\Logger;
|
2021-11-20 09:56:55 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2019-12-30 02:55:10 +00:00
|
|
|
use Friendica\DI;
|
2012-02-12 07:44:20 +00:00
|
|
|
|
|
|
|
function numfriends_install() {
|
|
|
|
|
2018-12-26 07:28:16 +00:00
|
|
|
Hook::register('addon_settings', 'addon/numfriends/numfriends.php', 'numfriends_settings');
|
|
|
|
Hook::register('addon_settings_post', 'addon/numfriends/numfriends.php', 'numfriends_settings_post');
|
2012-02-12 07:44:20 +00:00
|
|
|
|
2021-10-21 06:04:27 +00:00
|
|
|
Logger::notice("installed numfriends");
|
2012-02-12 07:44:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Callback from the settings post function.
|
|
|
|
* $post contains the $_POST array.
|
|
|
|
* We will make sure we've got a valid user account
|
|
|
|
* and if so set our configuration setting for this person.
|
|
|
|
*
|
|
|
|
*/
|
2022-06-23 05:16:22 +00:00
|
|
|
function numfriends_settings_post(App $a, $post) {
|
2022-10-20 21:51:49 +00:00
|
|
|
if (! DI::userSession()->getLocalUserId() || empty($_POST['numfriends-submit'])) {
|
2012-02-12 07:44:20 +00:00
|
|
|
return;
|
2022-06-23 05:16:22 +00:00
|
|
|
}
|
2012-02-12 07:44:20 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'system', 'display_friend_count', intval($_POST['numfriends']));
|
2012-02-12 07:44:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2018-01-20 13:57:41 +00:00
|
|
|
* Called from the Addon Setting form.
|
2012-02-12 07:44:20 +00:00
|
|
|
* Add our own settings info to the page.
|
|
|
|
*
|
|
|
|
*/
|
2021-11-20 09:56:55 +00:00
|
|
|
function numfriends_settings(App &$a, array &$data)
|
2017-12-06 21:27:55 +00:00
|
|
|
{
|
2022-10-20 21:51:49 +00:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2012-02-12 07:44:20 +00:00
|
|
|
return;
|
2017-12-06 21:27:55 +00:00
|
|
|
}
|
2012-02-12 07:44:20 +00:00
|
|
|
|
2022-10-20 21:51:49 +00:00
|
|
|
$numfriends = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'display_friend_count', 24);
|
2012-02-12 07:44:20 +00:00
|
|
|
|
2021-11-20 09:56:55 +00:00
|
|
|
$t = Renderer::getMarkupTemplate('settings.tpl', 'addon/numfriends/');
|
|
|
|
$html = Renderer::replaceMacros($t, [
|
|
|
|
'$numfriends' => ['numfriends', DI::l10n()->t('How many contacts to display on profile sidebar'), $numfriends],
|
|
|
|
]);
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'addon' => 'numfriends',
|
|
|
|
'title' => DI::l10n()->t('Numfriends Settings'),
|
|
|
|
'html' => $html,
|
|
|
|
];
|
2012-02-12 07:44:20 +00:00
|
|
|
}
|