2012-02-12 02:44:20 -05: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 04:56:55 -05:00
|
|
|
|
|
|
|
use Friendica\App;
|
2018-12-26 02:28:16 -05:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 19:40:18 -04:00
|
|
|
use Friendica\Core\Logger;
|
2021-11-20 04:56:55 -05:00
|
|
|
use Friendica\Core\Renderer;
|
2019-12-29 21:55:10 -05:00
|
|
|
use Friendica\DI;
|
2012-02-12 02:44:20 -05:00
|
|
|
|
|
|
|
function numfriends_install() {
|
|
|
|
|
2018-12-26 02:28:16 -05: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 02:44:20 -05:00
|
|
|
|
2021-10-21 02:04:27 -04:00
|
|
|
Logger::notice("installed numfriends");
|
2012-02-12 02:44:20 -05: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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
function numfriends_settings_post($a,$post) {
|
2018-11-30 09:11:56 -05:00
|
|
|
if(! local_user() || empty($_POST['numfriends-submit']))
|
2012-02-12 02:44:20 -05:00
|
|
|
return;
|
|
|
|
|
2020-01-18 10:54:49 -05:00
|
|
|
DI::pConfig()->set(local_user(),'system','display_friend_count',intval($_POST['numfriends']));
|
2012-02-12 02:44:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2018-01-20 08:57:41 -05:00
|
|
|
* Called from the Addon Setting form.
|
2012-02-12 02:44:20 -05:00
|
|
|
* Add our own settings info to the page.
|
|
|
|
*
|
|
|
|
*/
|
2021-11-20 04:56:55 -05:00
|
|
|
function numfriends_settings(App &$a, array &$data)
|
2017-12-06 16:27:55 -05:00
|
|
|
{
|
|
|
|
if (! local_user()) {
|
2012-02-12 02:44:20 -05:00
|
|
|
return;
|
2017-12-06 16:27:55 -05:00
|
|
|
}
|
2012-02-12 02:44:20 -05:00
|
|
|
|
2020-01-18 10:50:56 -05:00
|
|
|
$numfriends = DI::pConfig()->get(local_user(), 'system', 'display_friend_count', 24);
|
2012-02-12 02:44:20 -05:00
|
|
|
|
2021-11-20 04:56:55 -05: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 02:44:20 -05:00
|
|
|
}
|