aboutsummaryrefslogtreecommitdiff
path: root/trunk/views/default/event_calendar/review_requests.php
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/views/default/event_calendar/review_requests.php')
-rw-r--r--trunk/views/default/event_calendar/review_requests.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/trunk/views/default/event_calendar/review_requests.php b/trunk/views/default/event_calendar/review_requests.php
new file mode 100644
index 000000000..e1866a32b
--- /dev/null
+++ b/trunk/views/default/event_calendar/review_requests.php
@@ -0,0 +1,25 @@
+<?php
+
+foreach($vars['requests'] as $request) {
+ if ($request instanceof ElggUser) {
+ $icon = elgg_view("profile/icon", array(
+ 'entity' => $request,
+ 'size' => 'small'
+ ));
+ $info = '<a href="' . $request->getURL() . '" >'.$request->name.'</a>';
+ $info .= '<div style="margin-top: 5px;" ></div>';
+ $info .= elgg_view('output/confirmlink',
+ array(
+ 'class' => "cancel_button",
+ 'href' => $vars['url'] . 'action/event_calendar/killrequest?user_guid='.$request->guid.'&event_id=' . $vars['entity']->guid,
+ 'confirm' => elgg_echo('event_calendar:request:remove:check'),
+ 'text' => elgg_echo('delete'),
+ ));
+ $info .= '&nbsp;&nbsp;';
+ $url = elgg_add_action_tokens_to_url("{$vars['url']}action/event_calendar/addtocalendar?user_guid={$request->guid}&event_id={$vars['entity']->guid}");
+ $info .= '<a href="'.$url.'" class="add_topic_button">'.elgg_echo('accept').'</a>';
+ echo elgg_view_listing($icon,$info);
+ }
+}
+
+?>