source: subversion/trunk/roundcubemail/program/steps/addressbook/func.inc @ 5207

Last change on this file since 5207 was 5207, checked in by alec, 21 months ago
  • Extend rcube_label_exists() to search in loaded plugins localizations
  • Allow use localized addressbook field subtypes from plugins
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 30.8 KB
Line 
1<?php
2
3/*
4 +-----------------------------------------------------------------------+
5 | program/steps/addressbook/func.inc                                    |
6 |                                                                       |
7 | This file is part of the Roundcube Webmail client                     |
8 | Copyright (C) 2005-2007, The Roundcube Dev Team                       |
9 | Licensed under the GNU GPL                                            |
10 |                                                                       |
11 | PURPOSE:                                                              |
12 |   Provide addressbook functionality and GUI objects                   |
13 |                                                                       |
14 +-----------------------------------------------------------------------+
15 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
16 +-----------------------------------------------------------------------+
17
18 $Id$
19
20*/
21
22$SEARCH_MODS_DEFAULT = array('name'=>1, 'firstname'=>1, 'surname'=>1, 'email'=>1, '*'=>1);
23
24// general definition of contact coltypes
25$CONTACT_COLTYPES = array(
26  'name'         => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'limit' => 1, 'label' => rcube_label('name'), 'category' => 'main'),
27  'firstname'    => array('type' => 'text', 'size' => 19, 'maxlength' => 50, 'limit' => 1, 'label' => rcube_label('firstname'), 'category' => 'main'),
28  'surname'      => array('type' => 'text', 'size' => 19, 'maxlength' => 50, 'limit' => 1, 'label' => rcube_label('surname'), 'category' => 'main'),
29  'email'        => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'label' => rcube_label('email'), 'subtypes' => array('home','work','other'), 'category' => 'main'),
30  'middlename'   => array('type' => 'text', 'size' => 19, 'maxlength' => 50, 'limit' => 1, 'label' => rcube_label('middlename'), 'category' => 'main'),
31  'prefix'       => array('type' => 'text', 'size' => 8,  'maxlength' => 20, 'limit' => 1, 'label' => rcube_label('nameprefix'), 'category' => 'main'),
32  'suffix'       => array('type' => 'text', 'size' => 8,  'maxlength' => 20, 'limit' => 1, 'label' => rcube_label('namesuffix'), 'category' => 'main'),
33  'nickname'     => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'limit' => 1, 'label' => rcube_label('nickname'), 'category' => 'main'),
34  'jobtitle'     => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'limit' => 1, 'label' => rcube_label('jobtitle'), 'category' => 'main'),
35  'organization' => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'limit' => 1, 'label' => rcube_label('organization'), 'category' => 'main'),
36  'department'   => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'limit' => 1, 'label' => rcube_label('department'), 'category' => 'main'),
37  'gender'       => array('type' => 'select', 'limit' => 1, 'label' => rcube_label('gender'), 'options' => array('male' => rcube_label('male'), 'female' => rcube_label('female')), 'category' => 'personal'),
38  'maidenname'   => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'limit' => 1, 'label' => rcube_label('maidenname'), 'category' => 'personal'),
39  'phone'        => array('type' => 'text', 'size' => 40, 'maxlength' => 20, 'label' => rcube_label('phone'), 'subtypes' => array('home','home2','work','work2','mobile','main','homefax','workfax','car','pager','video','assistant','other'), 'category' => 'main'),
40  'address'      => array('type' => 'composite', 'label' => rcube_label('address'), 'subtypes' => array('home','work','other'), 'childs' => array(
41    'street'     => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'label' => rcube_label('street'), 'category' => 'main'),
42    'locality'   => array('type' => 'text', 'size' => 28, 'maxlength' => 50, 'label' => rcube_label('locality'), 'category' => 'main'),
43    'zipcode'    => array('type' => 'text', 'size' => 8,  'maxlength' => 15, 'label' => rcube_label('zipcode'), 'category' => 'main'),
44    'region'     => array('type' => 'text', 'size' => 12, 'maxlength' => 50, 'label' => rcube_label('region'), 'category' => 'main'),
45    'country'    => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'label' => rcube_label('country'), 'category' => 'main'),
46  ), 'category' => 'main'),
47  'birthday'     => array('type' => 'date', 'size' => 12, 'maxlength' => 16, 'label' => rcube_label('birthday'), 'limit' => 1, 'render_func' => 'rcmail_format_date_col', 'category' => 'personal'),
48  'anniversary'  => array('type' => 'date', 'size' => 12, 'maxlength' => 16, 'label' => rcube_label('anniversary'), 'limit' => 1, 'render_func' => 'rcmail_format_date_col', 'category' => 'personal'),
49  'website'      => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'label' => rcube_label('website'), 'subtypes' => array('homepage','work','blog','profile','other'), 'category' => 'main'),
50  'im'           => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'label' => rcube_label('instantmessenger'), 'subtypes' => array('aim','icq','msn','yahoo','jabber','skype','other'), 'category' => 'main'),
51  'notes'        => array('type' => 'textarea', 'size' => 40, 'rows' => 15, 'maxlength' => 500, 'label' => rcube_label('notes'), 'limit' => 1),
52  'photo'        => array('type' => 'image', 'limit' => 1, 'category' => 'main'),
53  'assistant'    => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'limit' => 1, 'label' => rcube_label('assistant'), 'category' => 'personal'),
54  'manager'      => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'limit' => 1, 'label' => rcube_label('manager'), 'category' => 'personal'),
55  'spouse'       => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'limit' => 1, 'label' => rcube_label('spouse'), 'category' => 'personal'),
56  // TODO: define fields for vcards like GEO, KEY
57);
58
59
60// Addressbook UI
61if (!$RCMAIL->action && !$OUTPUT->ajax_call) {
62    // add list of address sources to client env
63    $js_list = $RCMAIL->get_address_sources();
64
65    $source = get_input_value('_source', RCUBE_INPUT_GPC);
66
67    // use first directory by default
68    if (!strlen($source) || !isset($js_list[$source]))
69        $source = $js_list[key($js_list)]['id'];
70
71    // count all/writeable sources
72    $writeable = 0;
73    $count = 0;
74    foreach ($js_list as $sid => $s) {
75        $count++;
76        if (!$s['readonly']) {
77            $writeable++;
78        }
79        // unset hidden sources
80        if ($s['hidden']) {
81            unset($js_list[$sid]);
82        }
83    }
84
85    $search_mods = $RCMAIL->config->get('addressbook_search_mods', $SEARCH_MODS_DEFAULT);
86    $OUTPUT->set_env('search_mods', $search_mods);
87    $OUTPUT->set_env('address_sources', $js_list);
88    $OUTPUT->set_env('writable_source', $writeable);
89
90    $OUTPUT->set_pagetitle(rcube_label('addressbook'));
91    $_SESSION['addressbooks_count'] = $count;
92    $_SESSION['addressbooks_count_writeable'] = $writeable;
93
94    if (!strlen($source))
95      $source = strval(key($js_list));
96
97    $CONTACTS = rcmail_contact_source($source, true);
98}
99
100// remove undo information...
101if ($undo = $_SESSION['contact_undo']) {
102    // ...after timeout
103    $undo_time = $RCMAIL->config->get('undo_timeout', 0);
104    if ($undo['ts'] < time() - $undo_time)
105        $RCMAIL->session->remove('contact_undo');
106}
107
108// instantiate a contacts object according to the given source
109function rcmail_contact_source($source=null, $init_env=false, $writable=false)
110{
111    global $RCMAIL, $OUTPUT, $CONFIG, $CONTACT_COLTYPES;
112
113    if (!strlen($source)) {
114        $source = get_input_value('_source', RCUBE_INPUT_GPC);
115    }
116
117    // Get object
118    $CONTACTS = $RCMAIL->get_address_book($source, $writable);
119    $CONTACTS->set_pagesize($CONFIG['pagesize']);
120
121    // set list properties and session vars
122    if (!empty($_GET['_page']))
123        $CONTACTS->set_page(($_SESSION['page'] = intval($_GET['_page'])));
124    else
125        $CONTACTS->set_page(isset($_SESSION['page']) ? $_SESSION['page'] : 1);
126
127    if (!empty($_REQUEST['_gid']))
128        $CONTACTS->set_group(get_input_value('_gid', RCUBE_INPUT_GPC));
129
130    if (!$init_env)
131        return $CONTACTS;
132
133    $OUTPUT->set_env('readonly', $CONTACTS->readonly);
134    $OUTPUT->set_env('source', $source);
135
136    // reduce/extend $CONTACT_COLTYPES with specification from the current $CONTACT object
137    if (is_array($CONTACTS->coltypes)) {
138        // remove cols not listed by the backend class
139        $contact_cols = $CONTACTS->coltypes[0] ? array_flip($CONTACTS->coltypes) : $CONTACTS->coltypes;
140        $CONTACT_COLTYPES = array_intersect_key($CONTACT_COLTYPES, $contact_cols);
141        // add associative coltypes definition
142        if (!$CONTACTS->coltypes[0]) {
143            foreach ($CONTACTS->coltypes as $col => $colprop)
144                $CONTACT_COLTYPES[$col] = $CONTACT_COLTYPES[$col] ? array_merge($CONTACT_COLTYPES[$col], $colprop) : $colprop;
145        }
146    }
147
148    $OUTPUT->set_env('photocol', is_array($CONTACT_COLTYPES['photo']));
149
150    return $CONTACTS;
151}
152
153
154function rcmail_default_source($writable=false)
155{
156    global $RCMAIL;
157
158    // get list of address sources
159    $first = reset($RCMAIL->get_address_sources($writable));
160
161    // use first directory by default
162    return $first['id'];
163}
164
165function rcmail_set_sourcename($abook)
166{
167    global $OUTPUT;
168
169    // get address book name (for display)
170    if ($abook && $_SESSION['addressbooks_count'] > 1) {
171        $name = $abook->get_name();
172        if (!$name && $source == 0) {
173            $name = rcube_label('personaladrbook');
174        }
175        $OUTPUT->set_env('sourcename', $name);
176    }
177}
178
179
180function rcmail_directory_list($attrib)
181{
182    global $RCMAIL, $OUTPUT;
183
184    if (!$attrib['id'])
185        $attrib['id'] = 'rcmdirectorylist';
186
187    $out = '';
188    $local_id = '0';
189    $jsdata = array();
190
191    $line_templ = html::tag('li', array(
192        'id' => 'rcmli%s', 'class' => '%s'),
193        html::a(array('href' => '%s',
194            'rel' => '%s',
195            'onclick' => "return ".JS_OBJECT_NAME.".command('list','%s',this)"), '%s'));
196
197    $sources = (array) $OUTPUT->env['address_sources'];
198    reset($sources);
199
200    // currently selected source
201    $current = get_input_value('_source', RCUBE_INPUT_GPC);
202
203    foreach ($sources as $j => $source) {
204        $id = strval(strlen($source['id']) ? $source['id'] : $j);
205        $js_id = JQ($id);
206
207        // set class name(s)
208        $class_name = 'addressbook';
209        if ($current === $id)
210            $class_name .= ' selected';
211        if ($source['readonly'])
212            $class_name .= ' readonly';
213        if ($source['class_name'])
214            $class_name .= ' ' . $source['class_name'];
215
216        $out .= sprintf($line_templ,
217            html_identifier($id),
218            $class_name,
219            Q(rcmail_url(null, array('_source' => $id))),
220            $source['id'],
221            $js_id, (!empty($source['name']) ? Q($source['name']) : Q($id)));
222
223        $groupdata = array('out' => $out, 'jsdata' => $jsdata, 'source' => $id);
224        if ($source['groups'])
225            $groupdata = rcmail_contact_groups($groupdata);
226        $jsdata = $groupdata['jsdata'];
227        $out = $groupdata['out'];
228    }
229
230    $line_templ = html::tag('li', array(
231        'id' => 'rcmliS%s', 'class' => '%s'),
232        html::a(array('href' => '#', 'rel' => 'S%s',
233            'onclick' => "return ".JS_OBJECT_NAME.".command('listsearch', '%s', this)"), '%s'));
234
235    // Saved searches
236    $sources = $RCMAIL->user->list_searches(rcube_user::SEARCH_ADDRESSBOOK);
237    foreach ($sources as $j => $source) {
238        $id = $source['id'];
239        $js_id = JQ($id);
240
241        // set class name(s)
242        $class_name = 'contactsearch';
243        if ($current === $id)
244            $class_name .= ' selected';
245        if ($source['class_name'])
246            $class_name .= ' ' . $source['class_name'];
247
248        $out .= sprintf($line_templ,
249            html_identifier($id),
250            $class_name,
251            $id,
252            $js_id, (!empty($source['name']) ? Q($source['name']) : Q($id)));
253    }
254
255    $OUTPUT->set_env('contactgroups', $jsdata);
256    $OUTPUT->add_gui_object('folderlist', $attrib['id']);
257    // add some labels to client
258    $OUTPUT->add_label('deletegroupconfirm', 'groupdeleting', 'addingmember', 'removingmember');
259
260    return html::tag('ul', $attrib, $out, html::$common_attrib);
261}
262
263
264function rcmail_contact_groups($args)
265{
266    global $RCMAIL;
267
268    $groups = $RCMAIL->get_address_book($args['source'])->list_groups();
269
270    if (!empty($groups)) {
271        $line_templ = html::tag('li', array(
272            'id' => 'rcmliG%s', 'class' => 'contactgroup'),
273            html::a(array('href' => '#',
274                'rel' => '%s:%s',
275                'onclick' => "return ".JS_OBJECT_NAME.".command('listgroup',{'source':'%s','id':'%s'},this)"), '%s'));
276
277        $jsdata = array();
278        foreach ($groups as $group) {
279            $args['out'] .= sprintf($line_templ,
280                html_identifier($args['source'] . $group['ID']),
281                $args['source'], $group['ID'],
282                $args['source'], $group['ID'], Q($group['name'])
283            );
284            $args['jsdata']['G'.$args['source'].$group['ID']] = array(
285                'source' => $args['source'], 'id' => $group['ID'],
286                'name' => $group['name'], 'type' => 'group');
287        }
288    }
289
290    return $args;
291}
292
293
294// return the contacts list as HTML table
295function rcmail_contacts_list($attrib)
296{
297    global $CONTACTS, $OUTPUT;
298
299    // define list of cols to be displayed
300    $a_show_cols = array('name');
301
302    // add id to message list table if not specified
303    if (!strlen($attrib['id']))
304        $attrib['id'] = 'rcmAddressList';
305
306    // create XHTML table
307    $out = rcube_table_output($attrib, array(), $a_show_cols, $CONTACTS->primary_key);
308
309    // set client env
310    $OUTPUT->add_gui_object('contactslist', $attrib['id']);
311    $OUTPUT->set_env('current_page', (int)$CONTACTS->list_page);
312    $OUTPUT->include_script('list.js');
313
314    // add some labels to client
315    $OUTPUT->add_label('deletecontactconfirm', 'copyingcontact');
316
317    return $out;
318}
319
320
321function rcmail_js_contacts_list($result, $prefix='')
322{
323    global $OUTPUT;
324
325    if (empty($result) || $result->count == 0)
326        return;
327
328    // define list of cols to be displayed
329    $a_show_cols = array('name');
330
331    while ($row = $result->next()) {
332        $a_row_cols = array();
333
334        // build contact ID with source ID
335        if (isset($row['sourceid'])) {
336            $row['ID'] = $row['ID'].'-'.$row['sourceid'];
337        }
338
339        // format each col
340        foreach ($a_show_cols as $col) {
341            $val = $row[$col];
342            if ($val == '' && $col == 'name') {
343                $val = rcube_addressbook::compose_display_name($row, true);
344            }
345
346            $a_row_cols[$col] = Q($val);
347        }
348
349        $OUTPUT->command($prefix.'add_contact_row', $row['ID'], $a_row_cols);
350    }
351}
352
353
354// similar function as /steps/settings/identities.inc::rcmail_identity_frame()
355function rcmail_contact_frame($attrib)
356{
357    global $OUTPUT;
358
359    if (!$attrib['id'])
360        $attrib['id'] = 'rcmcontactframe';
361
362    $attrib['name'] = $attrib['id'];
363
364    $OUTPUT->set_env('contentframe', $attrib['name']);
365    $OUTPUT->set_env('blankpage', $attrib['src'] ? $OUTPUT->abs_url($attrib['src']) : 'program/blank.gif');
366
367    return html::iframe($attrib);
368}
369
370
371function rcmail_rowcount_display($attrib)
372{
373    global $OUTPUT;
374
375    if (!$attrib['id'])
376        $attrib['id'] = 'rcmcountdisplay';
377
378    $OUTPUT->add_gui_object('countdisplay', $attrib['id']);
379
380    return html::span($attrib, rcube_label('loading'));
381}
382
383
384function rcmail_get_rowcount_text($result=null)
385{
386    global $CONTACTS, $CONFIG;
387
388    // read nr of contacts
389    if (!$result) {
390        $result = $CONTACTS->get_result();
391    }
392
393    if ($result->count == 0)
394        $out = rcube_label('nocontactsfound');
395    else
396        $out = rcube_label(array(
397            'name'  => 'contactsfromto',
398            'vars'  => array(
399            'from'  => $result->first + 1,
400            'to'    => min($result->count, $result->first + $CONFIG['pagesize']),
401            'count' => $result->count)
402        ));
403
404    return $out;
405}
406
407
408function rcmail_get_type_label($type)
409{
410    $label = 'type'.$type;
411    if (rcube_label_exists($label, '*', $domain))
412        return rcube_label($label, $domain);
413    else if (preg_match('/\w+(\d+)$/', $label, $m)
414            && ($label = preg_replace('/(\d+)$/', '', $label))
415            && rcube_label_exists($label, '*', $domain))
416        return rcube_label($label, $domain) . ' ' . $m[1];
417
418    return ucfirst($type);
419}
420
421
422function rcmail_contact_form($form, $record, $attrib = null)
423{
424    global $RCMAIL, $CONFIG;
425
426    // Allow plugins to modify contact form content
427    $plugin = $RCMAIL->plugins->exec_hook('contact_form', array(
428        'form' => $form, 'record' => $record));
429
430    $form = $plugin['form'];
431    $record = $plugin['record'];
432    $edit_mode = $RCMAIL->action != 'show';
433    $del_button = $attrib['deleteicon'] ? html::img(array('src' => $CONFIG['skin_path'] . $attrib['deleteicon'], 'alt' => rcube_label('delete'))) : rcube_label('delete');
434    unset($attrib['deleteicon']);
435    $out = '';
436
437    // get default coltypes
438    $coltypes = $GLOBALS['CONTACT_COLTYPES'];
439    $coltype_labels = array();
440
441    foreach ($coltypes as $col => $prop) {
442        if ($prop['subtypes']) {
443            $subtype_names = array_map('rcmail_get_type_label', $prop['subtypes']);
444            $select_subtype = new html_select(array('name' => '_subtype_'.$col.'[]', 'class' => 'contactselectsubtype'));
445            $select_subtype->add($subtype_names, $prop['subtypes']);
446            $coltypes[$col]['subtypes_select'] = $select_subtype->show();
447        }
448        if ($prop['childs']) {
449            foreach ($prop['childs'] as $childcol => $cp)
450                $coltype_labels[$childcol] = array('label' => $cp['label']);
451        }
452    }
453
454    foreach ($form as $section => $fieldset) {
455        // skip empty sections
456        if (empty($fieldset['content']))
457            continue;
458
459        $select_add = new html_select(array('class' => 'addfieldmenu', 'rel' => $section));
460        $select_add->add(rcube_label('addfield'), '');
461
462        // render head section with name fields (not a regular list of rows)
463        if ($section == 'head') {
464            $content = '';
465
466            // unset display name if it is composed from name parts
467            if ($record['name'] == rcube_addressbook::compose_display_name(array('name' => '') + (array)$record))
468              unset($record['name']);
469
470            // group fields
471            $field_blocks = array(
472                'names'    => array('prefix','firstname','middlename','surname','suffix'),
473                'displayname' => array('name'),
474                'nickname' => array('nickname'),
475                'organization' => array('organization'),
476                'department' => array('department'),
477                'jobtitle' => array('jobtitle'),
478            );
479            foreach ($field_blocks as $blockname => $colnames) {
480                $fields = '';
481                foreach ($colnames as $col) {
482                    // skip cols unknown to the backend
483                    if (!$coltypes[$col])
484                        continue;
485
486                    // only string values are expected here
487                    if (is_array($record[$col]))
488                        $record[$col] = join(' ', $record[$col]);
489
490                    if ($RCMAIL->action == 'show') {
491                        if (!empty($record[$col]))
492                            $fields .= html::span('namefield ' . $col, Q($record[$col])) . " ";
493                    }
494                    else {
495                        $colprop = (array)$fieldset['content'][$col] + (array)$coltypes[$col];
496                        $colprop['id'] = 'ff_'.$col;
497                        if (empty($record[$col]) && !$colprop['visible']) {
498                            $colprop['style'] = 'display:none';
499                            $select_add->add($colprop['label'], $col);
500                        }
501                        $fields .= rcmail_get_edit_field($col, $record[$col], $colprop, $colprop['type']);
502                    }
503                }
504                $content .= html::div($blockname, $fields);
505            }
506
507            if ($edit_mode)
508                $content .= html::p('addfield', $select_add->show(null));
509
510            $out .= html::tag('fieldset', $attrib, (!empty($fieldset['name']) ? html::tag('legend', null, Q($fieldset['name'])) : '') . $content) ."\n";
511            continue;
512        }
513
514        $content = '';
515        if (is_array($fieldset['content'])) {
516            foreach ($fieldset['content'] as $col => $colprop) {
517                // remove subtype part of col name
518                list($field, $subtype) = explode(':', $col);
519                if (!$subtype) $subtype = 'home';
520                $fullkey = $col.':'.$subtype;
521
522                // skip cols unknown to the backend
523                if (!$coltypes[$field])
524                    continue;
525
526                // merge colprop with global coltype configuration
527                $colprop += $coltypes[$field];
528                $label = isset($colprop['label']) ? $colprop['label'] : rcube_label($col);
529
530                // prepare subtype selector in edit mode
531                if ($edit_mode && is_array($colprop['subtypes'])) {
532                    $subtype_names = array_map('rcmail_get_type_label', $colprop['subtypes']);
533                    $select_subtype = new html_select(array('name' => '_subtype_'.$col.'[]', 'class' => 'contactselectsubtype'));
534                    $select_subtype->add($subtype_names, $colprop['subtypes']);
535                }
536                else
537                    $select_subtype = null;
538
539                if (!empty($colprop['value'])) {
540                    $values = (array)$colprop['value'];
541                }
542                else {
543                    // iterate over possible subtypes and collect values with their subtype
544                    if (is_array($colprop['subtypes'])) {
545                        $values = $subtypes = array();
546                        foreach ($colprop['subtypes'] as $i => $st) {
547                            $newval = false;
548                            if ($record[$field.':'.$st]) {
549                                $subtypes[count($values)] = $st;
550                                $newval = $record[$field.':'.$st];
551                            }
552                            else if ($i == 0 && $record[$field]) {
553                                $subtypes[count($values)] = $st;
554                                $newval = $record[$field];
555                            }
556                            if ($newval !== false) {
557                                if (is_array($newval) && isset($newval[0]))
558                                    $values = array_merge($values, $newval);
559                                else
560                                    $values[] = $newval;
561                            }
562                        }
563                    }
564                    else {
565                        $values = $record[$fullkey] ? $record[$fullkey] : $record[$field];
566                        $subtypes = null;
567                    }
568                }
569
570                // hack: create empty values array to force this field to be displayed
571                if (empty($values) && $colprop['visible'])
572                    $values[] = '';
573
574                $rows = '';
575                foreach ((array)$values as $i => $val) {
576                    if ($subtypes[$i])
577                        $subtype = $subtypes[$i];
578
579                    // render composite field
580                    if ($colprop['type'] == 'composite') {
581                        $composite = array(); $j = 0;
582                        $template = $RCMAIL->config->get($col . '_template', '{'.join('} {', array_keys($colprop['childs'])).'}');
583                        foreach ($colprop['childs'] as $childcol => $cp) {
584                            $childvalue = $val[$childcol] ? $val[$childcol] : $val[$j];
585
586                            if ($edit_mode) {
587                                if ($colprop['subtypes'] || $colprop['limit'] != 1) $cp['array'] = true;
588                                $composite['{'.$childcol.'}'] = rcmail_get_edit_field($childcol, $childvalue, $cp, $cp['type']) . " ";
589                            }
590                            else {
591                                $childval = $cp['render_func'] ? call_user_func($cp['render_func'], $childvalue, $childcol) : Q($childvalue);
592                                $composite['{'.$childcol.'}'] = html::span('data ' . $childcol, $childval) . " ";
593                            }
594                            $j++;
595                        }
596
597                        $coltypes[$field] += (array)$colprop;
598                        $coltypes[$field]['count']++;
599                        $val = strtr($template, $composite);
600                    }
601                    else if ($edit_mode) {
602                        // call callback to render/format value
603                        if ($colprop['render_func'])
604                            $val = call_user_func($colprop['render_func'], $val, $col);
605
606                        $coltypes[$field] = (array)$colprop + $coltypes[$field];
607
608                        if ($colprop['subtypes'] || $colprop['limit'] != 1)
609                            $colprop['array'] = true;
610
611                        $val = rcmail_get_edit_field($col, $val, $colprop, $colprop['type']);
612                        $coltypes[$field]['count']++;
613                    }
614                    else if ($colprop['render_func'])
615                        $val = call_user_func($colprop['render_func'], $val, $col);
616                    else if (is_array($colprop['options']) && isset($colprop['options'][$val]))
617                        $val = $colprop['options'][$val];
618                    else
619                        $val = Q($val);
620
621                    // use subtype as label
622                    if ($colprop['subtypes'])
623                        $label = rcmail_get_type_label($subtype);
624
625                    // add delete button/link
626                    if ($edit_mode && !($colprop['visible'] && $colprop['limit'] == 1))
627                        $val .= html::a(array('href' => '#del', 'class' => 'contactfieldbutton deletebutton', 'title' => rcube_label('delete'), 'rel' => $col), $del_button);
628
629                    // display row with label
630                    if ($label) {
631                        $rows .= html::div('row',
632                            html::div('contactfieldlabel label', $select_subtype ? $select_subtype->show($subtype) : Q($label)) .
633                            html::div('contactfieldcontent '.$colprop['type'], $val));
634                    }
635                    else   // row without label
636                        $rows .= html::div('row', html::div('contactfield', $val));
637                }
638
639                // add option to the add-field menu
640                if (!$colprop['limit'] || $coltypes[$field]['count'] < $colprop['limit']) {
641                    $select_add->add($colprop['label'], $col);
642                    $select_add->_count++;
643                }
644
645                // wrap rows in fieldgroup container
646                $content .= html::tag('fieldset', array('class' => 'contactfieldgroup ' . ($colprop['subtypes'] ? 'contactfieldgroupmulti ' : '') . 'contactcontroller' . $col, 'style' => ($rows ? null : 'display:none')),
647                  ($colprop['subtypes'] ? html::tag('legend', null, Q($colprop['label'])) : ' ') .
648                  $rows);
649            }
650
651            // also render add-field selector
652            if ($edit_mode)
653                $content .= html::p('addfield', $select_add->show(null, array('style' => $select_add->_count ? null : 'display:none')));
654
655            $content = html::div(array('id' => 'contactsection' . $section), $content);
656        }
657        else {
658            $content = $fieldset['content'];
659        }
660
661        $out .= html::tag('fieldset', null, html::tag('legend', null, Q($fieldset['name'])) . $content) ."\n";
662    }
663
664    if ($edit_mode) {
665      $RCMAIL->output->set_env('coltypes', $coltypes + $coltype_labels);
666      $RCMAIL->output->set_env('delbutton', $del_button);
667      $RCMAIL->output->add_label('delete');
668    }
669
670    return $out;
671}
672
673
674function rcmail_contact_photo($attrib)
675{
676    global $SOURCE_ID, $CONTACTS, $CONTACT_COLTYPES, $RCMAIL, $CONFIG;
677
678    if (!$CONTACT_COLTYPES['photo'])
679        return '';
680
681    if ($result = $CONTACTS->get_result())
682        $record = $result->first();
683
684    $photo_img = $attrib['placeholder'] ? $CONFIG['skin_path'] . $attrib['placeholder'] : 'program/blank.gif';
685    $RCMAIL->output->set_env('photo_placeholder', $photo_img);
686    unset($attrib['placeholder']);
687
688    if (strpos($record['photo'], 'http:') === 0)
689        $photo_img = $record['photo'];
690    else if ($record['photo'])
691        $photo_img = $RCMAIL->url(array('_action' => 'photo', '_cid' => $record['ID'], '_source' => $SOURCE_ID));
692    else
693        $ff_value = '-del-'; // will disable delete-photo action
694
695    $img = html::img(array('src' => $photo_img, 'border' => 1, 'alt' => ''));
696    $content = html::div($attrib, $img);
697
698    if ($RCMAIL->action == 'edit' || $RCMAIL->action == 'add') {
699        $RCMAIL->output->add_gui_object('contactphoto', $attrib['id']);
700        $hidden = new html_hiddenfield(array('name' => '_photo', 'id' => 'ff_photo', 'value' => $ff_value));
701        $content .= $hidden->show();
702    }
703
704    return $content;
705}
706
707
708function rcmail_format_date_col($val)
709{
710    global $RCMAIL;
711    return format_date($val, $RCMAIL->config->get('date_format', 'Y-m-d'));
712}
713
714
715/**
716 * Returns contact ID(s) and source(s) from GET/POST data
717 *
718 * @return array List of contact IDs per-source
719 */
720function rcmail_get_cids()
721{
722    // contact ID (or comma-separated list of IDs) is provided in two
723    // forms. If _source is an empty string then the ID is a string
724    // containing contact ID and source name in form: <ID>-<SOURCE>
725
726    $cid    = get_input_value('_cid', RCUBE_INPUT_GPC);
727    $source = (string) get_input_value('_source', RCUBE_INPUT_GPC);
728
729    if (!preg_match('/^[a-zA-Z0-9\+\/=_-]+(,[a-zA-Z0-9\+\/=_-]+)*$/', $cid)) {
730        return array();
731    }
732
733    $cid        = explode(',', $cid);
734    $got_source = strlen($source);
735    $result     = array();
736
737    // create per-source contact IDs array
738    foreach ($cid as $id) {
739        // if _source is not specified we'll find it from decoded ID
740        if (!$got_source) {
741            list ($c, $s) = explode('-', $id, 2);
742            if (strlen($s)) {
743                $result[(string)$s][] = $c;
744            }
745        }
746        else {
747            $result[$source][] = $id;
748        }
749    }
750
751    return $result;
752}
753
754// register UI objects
755$OUTPUT->add_handlers(array(
756    'directorylist' => 'rcmail_directory_list',
757//  'groupslist' => 'rcmail_contact_groups',
758    'addresslist' => 'rcmail_contacts_list',
759    'addressframe' => 'rcmail_contact_frame',
760    'recordscountdisplay' => 'rcmail_rowcount_display',
761    'searchform' => array($OUTPUT, 'search_form')
762));
763
764// register action aliases
765$RCMAIL->register_action_map(array(
766    'add' => 'edit.inc',
767    'photo' => 'show.inc',
768    'group-create' => 'groups.inc',
769    'group-rename' => 'groups.inc',
770    'group-delete' => 'groups.inc',
771    'group-addmembers' => 'groups.inc',
772    'group-delmembers' => 'groups.inc',
773    'search-create' => 'search.inc',
774    'search-delete' => 'search.inc',
775));
Note: See TracBrowser for help on using the repository browser.