]> git.mxchange.org Git - friendica.git/blobdiff - mod/group.php
Docs: add a note on adding `use` on theme.php
[friendica.git] / mod / group.php
index 7d7ac0dcec61ccee935625b3166a54d489c11520..870025074c91b34b220c8d51ec1c5e8b5a39efee 100644 (file)
@@ -33,7 +33,7 @@ function group_post(App $a) {
                $name = notags(trim($_POST['groupname']));
                $r = Group::create(local_user(), $name);
                if ($r) {
-                       info(t('Group created.') . EOL);
+                       info(L10n::t('Group created.') . EOL);
                        $r = Group::getIdByName(local_user(), $name);
                        if ($r) {
                                goaway(System::baseUrl() . '/group/' . $r);
@@ -67,7 +67,7 @@ function group_post(App $a) {
                        );
 
                        if ($r) {
-                               info(t('Group name changed.') . EOL);
+                               info(L10n::t('Group name changed.') . EOL);
                        }
                }
 
@@ -94,13 +94,13 @@ function group_content(App $a) {
        $tpl = get_markup_template('group_edit.tpl');
 
        $context = [
-                       '$submit' => t('Save Group'),
+                       '$submit' => L10n::t('Save Group'),
        ];
 
        if (($a->argc == 2) && ($a->argv[1] === 'new')) {
                return replace_macros($tpl, $context + [
-                       '$title' => t('Create a group of contacts/friends.'),
-                       '$gname' => ['groupname', t('Group Name: '), '', ''],
+                       '$title' => L10n::t('Create a group of contacts/friends.'),
+                       '$gname' => ['groupname', L10n::t('Group Name: '), '', ''],
                        '$gid' => 'new',
                        '$form_security_token' => get_form_security_token("group_edit"),
                ]);
@@ -124,7 +124,7 @@ function group_content(App $a) {
                        }
 
                        if ($result) {
-                               info(t('Group removed.') . EOL);
+                               info(L10n::t('Group removed.') . EOL);
                        } else {
                                notice(L10n::t('Unable to remove group.') . EOL);
                        }
@@ -146,7 +146,6 @@ function group_content(App $a) {
        }
 
        if (($a->argc > 1) && (intval($a->argv[1]))) {
-               require_once 'include/acl_selectors.php';
                require_once 'mod/contacts.php';
 
                $r = q("SELECT * FROM `group` WHERE `id` = %d AND `uid` = %d AND `deleted` = 0 LIMIT 1",
@@ -190,18 +189,18 @@ function group_content(App $a) {
                $drop_tpl = get_markup_template('group_drop.tpl');
                $drop_txt = replace_macros($drop_tpl, [
                        '$id' => $group['id'],
-                       '$delete' => t('Delete Group'),
+                       '$delete' => L10n::t('Delete Group'),
                        '$form_security_token' => get_form_security_token("group_drop"),
                ]);
 
 
                $context = $context + [
-                       '$title' => t('Group Editor'),
-                       '$gname' => ['groupname', t('Group Name: '), $group['name'], ''],
+                       '$title' => L10n::t('Group Editor'),
+                       '$gname' => ['groupname', L10n::t('Group Name: '), $group['name'], ''],
                        '$gid' => $group['id'],
                        '$drop' => $drop_txt,
                        '$form_security_token' => get_form_security_token('group_edit'),
-                       '$edit_name' => t('Edit Group Name')
+                       '$edit_name' => L10n::t('Edit Group Name')
                ];
 
        }
@@ -211,10 +210,10 @@ function group_content(App $a) {
        }
 
        $groupeditor = [
-               'label_members' => t('Members'),
+               'label_members' => L10n::t('Members'),
                'members' => [],
-               'label_contacts' => t('All Contacts'),
-               'group_is_empty' => t('Group is empty'),
+               'label_contacts' => L10n::t('All Contacts'),
+               'group_is_empty' => L10n::t('Group is empty'),
                'contacts' => [],
        ];
 
@@ -227,7 +226,7 @@ function group_content(App $a) {
                        $entry['label'] = 'members';
                        $entry['photo_menu'] = '';
                        $entry['change_member'] = [
-                               'title'     => t("Remove Contact"),
+                               'title'     => L10n::t("Remove Contact"),
                                'gid'       => $group['id'],
                                'cid'       => $member['id'],
                                'sec_token' => $sec_token
@@ -251,7 +250,7 @@ function group_content(App $a) {
                                $entry['label'] = 'contacts';
                                $entry['photo_menu'] = '';
                                $entry['change_member'] = [
-                                       'title'     => t("Add Contact"),
+                                       'title'     => L10n::t("Add Contact"),
                                        'gid'       => $group['id'],
                                        'cid'       => $member['id'],
                                        'sec_token' => $sec_token
@@ -263,7 +262,7 @@ function group_content(App $a) {
        }
 
        $context['$groupeditor'] = $groupeditor;
-       $context['$desc'] = t('Click on a contact to add or remove.');
+       $context['$desc'] = L10n::t('Click on a contact to add or remove.');
 
        // If there are to many contacts we could provide an alternative view mode
        $total = count($groupeditor['members']) + count($groupeditor['contacts']);