diff options
author | thomascube <thomas@roundcube.net> | 2011-10-10 20:15:46 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-10-10 20:15:46 +0000 |
commit | dc6c4f4a28652f428a507b0335f418749cdbc3bd (patch) | |
tree | 336545f4b595b555631569eb73b34ea5cf0a183f /program/include/rcube_addressbook.php | |
parent | a3148236ebaa7e61177e7186138997d136b88b3e (diff) |
Contact groups can have direct email addresses => distribution lists; enable 'compose' command for the selected group
Diffstat (limited to 'program/include/rcube_addressbook.php')
-rw-r--r-- | program/include/rcube_addressbook.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/program/include/rcube_addressbook.php b/program/include/rcube_addressbook.php index 88f0aa900..7270f42fd 100644 --- a/program/include/rcube_addressbook.php +++ b/program/include/rcube_addressbook.php @@ -296,6 +296,18 @@ abstract class rcube_addressbook } /** + * Get group properties such as name and email address(es) + * + * @param string Group identifier + * @return array Group properties as hash array + */ + function get_group($group_id) + { + /* empty for address books don't supporting groups */ + return null; + } + + /** * Create a contact group with the given name * * @param string The group name |