IT translation update blackout addon THX Sylke Vicious
[friendica-addons.git/.git] / group_text / group_text.php
1 <?php
2 /**
3  * Name: Group Text
4  * Description: Disable images in group edit menu
5  * Version: 1.0
6  * Author: Thomas Willingham <https://kakste.com/profile/beardyunixer>
7  */
8 use Friendica\Core\Hook;
9 use Friendica\Core\Logger;
10 use Friendica\DI;
11
12 function group_text_install() {
13
14         Hook::register('addon_settings', 'addon/group_text/group_text.php', 'group_text_settings');
15         Hook::register('addon_settings_post', 'addon/group_text/group_text.php', 'group_text_settings_post');
16
17         Logger::log("installed group_text");
18 }
19
20 /**
21  *
22  * Callback from the settings post function.
23  * $post contains the $_POST array.
24  * We will make sure we've got a valid user account
25  * and if so set our configuration setting for this person.
26  *
27  */
28
29 function group_text_settings_post($a,$post) {
30         if(! local_user() || empty($_POST['group_text-submit']))
31                 return;
32         DI::pConfig()->set(local_user(),'system','groupedit_image_limit',intval($_POST['group_text']));
33 }
34
35
36 /**
37  *
38  * Called from the Addon Setting form. 
39  * Add our own settings info to the page.
40  *
41  */
42
43
44
45 function group_text_settings(&$a,&$s) {
46
47         if(! local_user())
48                 return;
49
50         /* Add our stylesheet to the page so we can make our settings look nice */
51
52         DI::page()['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . DI::baseUrl()->get() . '/addon/group_text/group_text.css' . '" media="all" />' . "\r\n";
53
54         /* Get the current state of our config variable */
55
56         $enabled = DI::pConfig()->get(local_user(),'system','groupedit_image_limit');
57         $checked = (($enabled) ? ' checked="checked" ' : '');
58
59         /* Add some HTML to the existing form */
60
61         $s .= '<div class="settings-block">';
62         $s .= '<h3>' . DI::l10n()->t('Group Text') . '</h3>';
63         $s .= '<div id="group_text-enable-wrapper">';
64         $s .= '<label id="group_text-enable-label" for="group_text-checkbox">' . DI::l10n()->t('Use a text only (non-image) group selector in the "group edit" menu') . '</label>';
65         $s .= '<input id="group_text-checkbox" type="checkbox" name="group_text" value="1" ' . $checked . '/>';
66         $s .= '</div><div class="clear"></div>';
67
68         /* provide a submit button */
69
70         $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="group_text-submit" class="settings-submit" value="' . DI::l10n()->t('Save Settings') . '" /></div></div>';
71
72 }