2012-07-27 23:26:14 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: Group Text
|
|
|
|
* Description: Disable images in group edit menu
|
|
|
|
* Version: 1.0
|
|
|
|
* Author: Thomas Willingham <https://kakste.com/profile/beardyunixer>
|
|
|
|
*/
|
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-07-27 23:26:14 +00:00
|
|
|
|
|
|
|
function group_text_install() {
|
|
|
|
|
2018-12-26 07:28:16 +00:00
|
|
|
Hook::register('addon_settings', 'addon/group_text/group_text.php', 'group_text_settings');
|
|
|
|
Hook::register('addon_settings_post', 'addon/group_text/group_text.php', 'group_text_settings_post');
|
2012-07-27 23:26:14 +00:00
|
|
|
|
2021-10-21 06:04:27 +00:00
|
|
|
Logger::notice("installed group_text");
|
2012-07-27 23:26:14 +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 group_text_settings_post(App $a, $post) {
|
2018-11-30 14:11:56 +00:00
|
|
|
if(! local_user() || empty($_POST['group_text-submit']))
|
2012-07-27 23:26:14 +00:00
|
|
|
return;
|
2020-01-18 15:54:49 +00:00
|
|
|
DI::pConfig()->set(local_user(),'system','groupedit_image_limit',intval($_POST['group_text']));
|
2012-07-27 23:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2018-01-20 13:57:41 +00:00
|
|
|
* Called from the Addon Setting form.
|
2012-07-27 23:26:14 +00:00
|
|
|
* Add our own settings info to the page.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-11-20 09:56:55 +00:00
|
|
|
function group_text_settings(App &$a, array &$data)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2012-07-27 23:26:14 +00:00
|
|
|
return;
|
2021-11-20 09:56:55 +00:00
|
|
|
}
|
2012-07-27 23:26:14 +00:00
|
|
|
|
2020-01-18 15:50:56 +00:00
|
|
|
$enabled = DI::pConfig()->get(local_user(),'system','groupedit_image_limit');
|
2012-07-27 23:26:14 +00:00
|
|
|
|
2021-11-20 09:56:55 +00:00
|
|
|
$t = Renderer::getMarkupTemplate('settings.tpl', 'addon/group_text/');
|
|
|
|
$html = Renderer::replaceMacros($t, [
|
|
|
|
'$enabled' => ['group_text', DI::l10n()->t('Use a text only (non-image) group selector in the "group edit" menu'), $enabled],
|
|
|
|
]);
|
2012-07-27 23:26:14 +00:00
|
|
|
|
2021-11-20 09:56:55 +00:00
|
|
|
$data = [
|
|
|
|
'addon' => 'group_text',
|
|
|
|
'title' => DI::l10n()->t('Group Text'),
|
|
|
|
'html' => $html,
|
|
|
|
];
|
2012-07-27 23:26:14 +00:00
|
|
|
}
|