aboutsummaryrefslogtreecommitdiff
path: root/mod/groups
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-03-07 12:02:48 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-03-07 12:02:48 +0000
commit3361c73a30ff20eae69a736dab0f9bc573cb540a (patch)
treea4ea21675b91d68db83f6b98d7efb0f756b6fd1e /mod/groups
parent42e7211d7bf482a1d37e5cc561b5a97f881de0b5 (diff)
downloadelgg-3361c73a30ff20eae69a736dab0f9bc573cb540a.tar.gz
elgg-3361c73a30ff20eae69a736dab0f9bc573cb540a.tar.bz2
Closes #843: Introducing intermediary invite action to establish invite relationship but ask a user to join
git-svn-id: https://code.elgg.org/elgg/trunk@3124 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups')
-rw-r--r--mod/groups/actions/invite.php66
-rw-r--r--mod/groups/languages/en.php3
-rw-r--r--mod/groups/start.php3
-rw-r--r--mod/groups/views/default/forms/groups/invite.php2
4 files changed, 71 insertions, 3 deletions
diff --git a/mod/groups/actions/invite.php b/mod/groups/actions/invite.php
new file mode 100644
index 000000000..3820ffb15
--- /dev/null
+++ b/mod/groups/actions/invite.php
@@ -0,0 +1,66 @@
+<?php
+
+ /**
+ * Invite a user to join a group
+ *
+ * @package ElggGroups
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008-2009
+ * @link http://elgg.com/
+ */
+
+ // Load configuration
+ global $CONFIG;
+
+ gatekeeper();
+
+ $user_guid = get_input('user_guid');
+ if (!is_array($user_guid))
+ $user_guid = array($user_guid);
+ $group_guid = get_input('group_guid');
+
+ if (sizeof($user_guid))
+ {
+ foreach ($user_guid as $u_id)
+ {
+ $user = get_entity($u_id);
+ $group = get_entity($group_guid);
+
+ if ( $user && $group) {
+
+ if (get_loggedin_userid() == $group->owner_guid)
+ {
+ if (!check_entity_relationship($group->guid, 'invited', $user->guid))
+ {
+ if ($user->isFriend())
+ {
+
+ // Create relationship
+ add_entity_relationship($group->guid, 'invited', $user->guid);
+
+ // Send email
+ if (notify_user($user->getGUID(), $group->owner_guid,
+ sprintf(elgg_echo('groups:invite:subject'), $user->name, $group->name),
+ sprintf(elgg_echo('groups:invite:body'), $user->name, $group->name, "{$CONFIG->url}action/groups/join?user_guid={$user->guid}&group_guid={$group->guid}"),
+ NULL))
+ system_message(elgg_echo("groups:userinvited"));
+ else
+ register_error(elgg_echo("groups:usernotinvited"));
+
+ }
+ else
+ register_error(elgg_echo("groups:usernotinvited"));
+ }
+ else
+ register_error(elgg_echo("groups:useralreadyinvited"));
+ }
+ else
+ register_error(elgg_echo("groups:notowner"));
+ }
+ }
+ }
+
+ forward($_SERVER['HTTP_REFERER']);
+
+?> \ No newline at end of file
diff --git a/mod/groups/languages/en.php b/mod/groups/languages/en.php
index 95cad18ed..0a8367b90 100644
--- a/mod/groups/languages/en.php
+++ b/mod/groups/languages/en.php
@@ -134,7 +134,8 @@
'groups:notowner' => 'Sorry, you are not the owner of this group.',
'groups:alreadymember' => 'You are already a member of this group!',
'groups:userinvited' => 'User has been invited.',
- 'groups:usernotinvited' => 'User could not be invited.',
+ 'groups:usernotinvited' => 'User could not be invited.',
+ 'groups:useralreadyinvited' => 'User has already been invited',
'groups:updated' => "Last comment",
'groups:invite:subject' => "%s you have been invited to join %s!",
'groups:started' => "Started by",
diff --git a/mod/groups/start.php b/mod/groups/start.php
index e8ef1af11..29f96785d 100644
--- a/mod/groups/start.php
+++ b/mod/groups/start.php
@@ -46,7 +46,8 @@
register_action("groups/leave",false, $CONFIG->pluginspath . "groups/actions/leave.php");
register_action("groups/joinrequest",false, $CONFIG->pluginspath . "groups/actions/joinrequest.php");
register_action("groups/killrequest",false,$CONFIG->pluginspath . "groups/actions/groupskillrequest.php");
- register_action("groups/addtogroup",false, $CONFIG->pluginspath . "groups/actions/addtogroup.php");
+ register_action("groups/addtogroup",false, $CONFIG->pluginspath . "groups/actions/addtogroup.php");
+ register_action("groups/invite",false, $CONFIG->pluginspath . "groups/actions/invite.php");
// Use group widgets
use_widgets('groups');
diff --git a/mod/groups/views/default/forms/groups/invite.php b/mod/groups/views/default/forms/groups/invite.php
index ac75e6a49..b92ffc208 100644
--- a/mod/groups/views/default/forms/groups/invite.php
+++ b/mod/groups/views/default/forms/groups/invite.php
@@ -16,7 +16,7 @@
?>
<div class="contentWrapper">
-<form action="<?php echo $vars['url']; ?>action/groups/addtogroup" method="post">
+<form action="<?php echo $vars['url']; ?>action/groups/invite" method="post">
<?php