當前位置: 首頁>>代碼示例>>PHP>>正文


PHP calendar::unsubscribe_event方法代碼示例

本文整理匯總了PHP中calendar::unsubscribe_event方法的典型用法代碼示例。如果您正苦於以下問題:PHP calendar::unsubscribe_event方法的具體用法?PHP calendar::unsubscribe_event怎麽用?PHP calendar::unsubscribe_event使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在calendar的用法示例。


在下文中一共展示了calendar::unsubscribe_event方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: calendar

         }
     }
 }
 if (!isset($feedback)) {
     //enter the event in all selected calendars
     $cal2 = new calendar();
     $cal->get_authorised_calendars($GO_SECURITY->user_id);
     while ($cal->next_record()) {
         if ($GO_SECURITY->has_permission($GO_SECURITY->user_id, $cal->f('acl_write'))) {
             if (in_array($cal->f('id'), $_POST['calendars'])) {
                 if (!$cal2->event_is_subscribed($event_id, $cal->f('id'))) {
                     $cal2->subscribe_event($event_id, $cal->f('id'));
                 }
             } else {
                 if ($cal2->event_is_subscribed($event_id, $cal->f('id'))) {
                     $cal2->unsubscribe_event($event_id, $cal->f('id'));
                 }
             }
         }
     }
     //set the reminder
     if ($_POST['reminder'] > 0) {
         $next_recurrence_time = $cal->get_next_recurrence_time($event_id);
         $remind_time = $next_recurrence_time - $_POST['reminder'];
         $cal->insert_reminder($GO_SECURITY->user_id, $event_id, $remind_time);
     }
     if (trim($_POST['to']) != '' && $send_invitation) {
         //remove participants and add them if invitation is sent succesfully
         $cal->remove_participants($event_id);
         $send_invitation = false;
         //send an invitation mail to all participants
開發者ID:BackupTheBerlios,項目名稱:hpt-obm-svn,代碼行數:31,代碼來源:event.php

示例2: header

     		{
     			$return_to = $query_str['return_to'];
     		}
     	}*/
     header('Location: ' . $return_to);
     exit;
     break;
 case 'unsubscribe':
     if ($calendar['write_permission']) {
         if ($cal->get_event_subscribtions($event_id) < 2) {
             if ($cal->delete_event($event_id)) {
                 $GO_SECURITY->delete_acl($event['acl_read']);
                 $GO_SECURITY->delete_acl($event['acl_write']);
             }
         } else {
             $cal->unsubscribe_event($event_id, $calendar_id);
         }
     }
     /*$return_to_url = $GO_MODULES->url;
     		if ($return_to_url = parse_url($return_to))
     		{
     			if (isset($return_to_url['query']))
     			{
     				parse_str($return_to_url['query'], $query_str);
     				if (isset($query_str['return_to']))
     				{
     					$return_to = $query_str['return_to'];
     				}
     			}
     		}*/
     header('Location: ' . $return_to);
開發者ID:BackupTheBerlios,項目名稱:hpt-obm-svn,代碼行數:31,代碼來源:delete_event.php


注:本文中的calendar::unsubscribe_event方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。