make dropdown menu work with single event sharing

remotes/origin/stable4
Georg Ehrke 13 years ago
parent 97d216c94d
commit 5a4237a31d
  1. 26
      apps/calendar/templates/share.dropdown.php

@ -1,13 +1,19 @@
<?php <?php
$sharedcalendars = OC_Calendar_Share::allUsersSharedwith($_['calid'], OC_Calendar_Share::CALENDAR); if(array_key_exists('calid', $_)){
$id = $_['calid'];
$sharedelements = OC_Calendar_Share::allUsersSharedwith($_['calid'], OC_Calendar_Share::CALENDAR);
}else{
$sharedelements = OC_Calendar_Share::allUsersSharedwith($_['eventid'], OC_Calendar_Share::EVENT);
$id = $_['eventid'];
}
$users = array();$groups = array();$public = array(); $users = array();$groups = array();$public = array();
foreach($sharedcalendars as $sharedcalendar){ foreach($sharedelements as $sharedelement){
if($sharedcalendar['sharetype'] == 'user'){ if($sharedelement['sharetype'] == 'user'){
$users[] = $sharedcalendar; $users[] = $sharedelement;
}elseif($sharedcalendar['sharetype'] == 'group'){ }elseif($sharedelement['sharetype'] == 'group'){
$groups[] = $sharedcalendar; $groups[] = $sharedelement;
}elseif($sharedcalendar['sharetype'] == 'public'){ }elseif($sharedelement['sharetype'] == 'public'){
$public = $sharedcalendar; $public = $sharedelement;
} }
} }
?> ?>
@ -31,7 +37,7 @@ echo html_select_options($allusers, array());
<script> <script>
$('#sharewithuser_<?php echo $user['share']; ?> > img').click(function(){ $('#sharewithuser_<?php echo $user['share']; ?> > img').click(function(){
$('#share_user option[value="<?php echo $user['share']; ?>"]').removeAttr('disabled'); $('#share_user option[value="<?php echo $user['share']; ?>"]').removeAttr('disabled');
Calendar.UI.Share.unshare(<?php echo $_['calid']; ?>, 'calendar', '<?php echo $user['share']; ?>', 'user'); Calendar.UI.Share.unshare(<?php echo $id; ?>, 'calendar', '<?php echo $user['share']; ?>', 'user');
$('#sharewithuser_<?php echo $user['share']; ?>').remove(); $('#sharewithuser_<?php echo $user['share']; ?>').remove();
$("#share_user").trigger("liszt:updated"); $("#share_user").trigger("liszt:updated");
}); });
@ -57,7 +63,7 @@ echo html_select_options($allgroups, array());
<script> <script>
$('#sharewithgroup_<?php echo $group['share']; ?> > img').click(function(){ $('#sharewithgroup_<?php echo $group['share']; ?> > img').click(function(){
$('#share_group option[value="<?php echo $group['share']; ?>"]').removeAttr('disabled'); $('#share_group option[value="<?php echo $group['share']; ?>"]').removeAttr('disabled');
Calendar.UI.Share.unshare(<?php echo $_['calid']; ?>, 'calendar', '<?php echo $group['share']; ?>', 'group'); Calendar.UI.Share.unshare(<?php echo $id; ?>, 'calendar', '<?php echo $group['share']; ?>', 'group');
$('#sharewithgroup_<?php echo $group['share']; ?>').remove(); $('#sharewithgroup_<?php echo $group['share']; ?>').remove();
$("#share_group").trigger("liszt:updated"); $("#share_group").trigger("liszt:updated");
}); });

Loading…
Cancel
Save