ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilMailCronOrphanedMailsNotificationCollectionObj.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2015 ILIAS open source, Extended GPL, see docs/LICENSE */
3
9{
13 protected $user_id = 0;
14
18 protected $folder_objects = array();
19
23 public function __construct($user_id)
24 {
25 $this->setUserId($user_id);
26 }
27
31 public function getUserId()
32 {
33 return $this->user_id;
34 }
35
39 public function setUserId($user_id)
40 {
41 $this->user_id = $user_id;
42 }
43
48 {
49 $this->folder_objects[$folder_obj->getFolderId()] = $folder_obj;
50 }
51
56 public function getFolderObjectById($folder_id)
57 {
58 return $this->folder_objects[$folder_id];
59 }
60
64 public function getFolderObjects()
65 {
67 }
68}