ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilMailCronOrphanedMailsFolderObject.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 $folder_id = 0;
14 
18  protected $folder_title = '';
19 
23  protected $orphaned_mail_objects = array();
24 
28  public function __construct($folder_id)
29  {
30  $this->setFolderId($folder_id);
31  }
32 
36  public function getFolderId()
37  {
38  return $this->folder_id;
39  }
40 
44  public function setFolderId($folder_id)
45  {
46  $this->folder_id = $folder_id;
47  }
48 
52  public function getFolderTitle()
53  {
54  return $this->folder_title;
55  }
56 
60  public function setFolderTitle($folder_title)
61  {
62  $this->folder_title = $folder_title;
63  }
64 
69  {
70  $this->orphaned_mail_objects[$mail_obj->getMailId()] = $mail_obj;
71  }
72 
76  public function getOrphanedMailObjects()
77  {
79  }
80 }
addMailObject(ilMailCronOrphanedMailsFolderMailObject $mail_obj)