Blame view

sources/apps/calendar/lib/hooks.php 958 Bytes
d1bafeea1   Kload   [fix] Upgrade to ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  <?php
  /**
   * Copyright (c) 2011 Jakob Sack <mail@jakobsack.de>
   * This file is licensed under the Affero General Public License version 3 or
   * later.
   * See the COPYING-README file.
   */
  
  /**
   * This class contains all hooks.
   */
  class OC_Calendar_Hooks{
  	/**
  	 * @brief Creates default calendar for a user
  	 * @param paramters parameters from postCreateUser-Hook
  	 * @return array
  	 */
  	public static function createUser($parameters) {
  		OC_Calendar_Calendar::addDefaultCalendars($parameters['uid']);
  
  		return true;
  	}
  
  	/**
  	 * @brief Deletes all calendars of a certain user
  	 * @param paramters parameters from postDeleteUser-Hook
  	 * @return array
  	 */
  	public static function deleteUser($parameters) {
  		$calendars = OC_Calendar_Calendar::allCalendars($parameters['uid']);
  
  		foreach($calendars as $calendar) {
  			if($parameters['uid'] === $calendar['userid']) {
  				OC_Calendar_Calendar::deleteCalendar($calendar['id']);
  			}
  		}
  
  		return true;
  	}
  }