diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-10-10 20:15:46 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-10-10 20:15:46 +0000 |
| commit | 4dc279dae5fb66d8210a80c5f7f748b7df86cee9 (patch) | |
| tree | 2ef14884c8184e8bfe9d9919c7df959cca4d1b04 /roundcubemail/program/include/rcube_addressbook.php | |
| parent | 77a043ad524b982dd05ed54343b2361a25829a9b (diff) | |
Contact groups can have direct email addresses => distribution lists; enable 'compose' command for the selected group
git-svn-id: https://svn.roundcube.net/trunk@5328 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_addressbook.php')
| -rw-r--r-- | roundcubemail/program/include/rcube_addressbook.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/roundcubemail/program/include/rcube_addressbook.php b/roundcubemail/program/include/rcube_addressbook.php index 88f0aa900..7270f42fd 100644 --- a/roundcubemail/program/include/rcube_addressbook.php +++ b/roundcubemail/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 |
