-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathContactList.php
More file actions
83 lines (68 loc) · 1.27 KB
/
ContactList.php
File metadata and controls
83 lines (68 loc) · 1.27 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
/**
* @author Tomáš Blatný
*/
namespace greeny\MailLibrary;
use Iterator;
use Countable;
class ContactList implements Iterator, Countable
{
/** @var Contact[] */
protected $contacts = [];
protected $builtContacts = [];
public function addContact($mailbox = NULL, $host = NULL, $personal = NULL, $adl = NULL)
{
$this->contacts[] = new Contact($mailbox,$host,$personal,$adl);
}
public function build()
{
$return = array();
foreach($this->contacts as $contact) {
$return[] = $contact->__toString();
}
$this->builtContacts = $return;
}
public function getContacts()
{
return $this->builtContacts;
}
/**
* @return array
*/
public function getContactsObjects()
{
return $this->contacts;
}
public function __toString()
{
return implode(', ', $this->builtContacts);
}
public function current()
{
return current($this->builtContacts);
}
public function next()
{
next($this->builtContacts);
}
public function key()
{
return key($this->builtContacts);
}
public function valid()
{
$key = key($this->builtContacts);
return ($key !== NULL && $key !== FALSE);
}
public function rewind()
{
reset($this->builtContacts);
}
/**
* @return int
*/
public function count()
{
return count($this->builtContacts);
}
}