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

Last change on this file since 5308 was 5308, checked in by thomasb, 21 months ago

Attach jquery UI date pickers to contact fields of type 'date'

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 31.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', 'contactdeleting');
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    static $jqueryui_loaded = 0;
426
427    // Allow plugins to modify contact form content
428    $plugin = $RCMAIL->plugins->exec_hook('contact_form', array(
429        'form' => $form, 'record' => $record));
430
431    $form = $plugin['form'];
432    $record = $plugin['record'];
433    $edit_mode = $RCMAIL->action != 'show';
434    $del_button = $attrib['deleteicon'] ? html::img(array('src' => $CONFIG['skin_path'] . $attrib['deleteicon'], 'alt' => rcube_label('delete'))) : rcube_label('delete');
435    unset($attrib['deleteicon']);
436    $out = '';
437
438    // get default coltypes
439    $coltypes = $GLOBALS['CONTACT_COLTYPES'];
440    $coltype_labels = array();
441
442    foreach ($coltypes as $col => $prop) {
443        if ($prop['subtypes']) {
444            $subtype_names = array_map('rcmail_get_type_label', $prop['subtypes']);
445            $select_subtype = new html_select(array('name' => '_subtype_'.$col.'[]', 'class' => 'contactselectsubtype'));
446            $select_subtype->add($subtype_names, $prop['subtypes']);
447            $coltypes[$col]['subtypes_select'] = $select_subtype->show();
448        }
449        if ($prop['childs']) {
450            foreach ($prop['childs'] as $childcol => $cp)
451                $coltype_labels[$childcol] = array('label' => $cp['label']);
452        }
453    }
454
455    foreach ($form as $section => $fieldset) {
456        // skip empty sections
457        if (empty($fieldset['content']))
458            continue;
459
460        $select_add = new html_select(array('class' => 'addfieldmenu', 'rel' => $section));
461        $select_add->add(rcube_label('addfield'), '');
462
463        // render head section with name fields (not a regular list of rows)
464        if ($section == 'head') {
465            $content = '';
466
467            // unset display name if it is composed from name parts
468            if ($record['name'] == rcube_addressbook::compose_display_name(array('name' => '') + (array)$record))
469              unset($record['name']);
470
471            // group fields
472            $field_blocks = array(
473                'names'    => array('prefix','firstname','middlename','surname','suffix'),
474                'displayname' => array('name'),
475                'nickname' => array('nickname'),
476                'organization' => array('organization'),
477                'department' => array('department'),
478                'jobtitle' => array('jobtitle'),
479            );
480            foreach ($field_blocks as $blockname => $colnames) {
481                $fields = '';
482                foreach ($colnames as $col) {
483                    // skip cols unknown to the backend
484                    if (!$coltypes[$col])
485                        continue;
486
487                    // only string values are expected here
488                    if (is_array($record[$col]))
489                        $record[$col] = join(' ', $record[$col]);
490
491                    if ($RCMAIL->action == 'show') {
492                        if (!empty($record[$col]))
493                            $fields .= html::span('namefield ' . $col, Q($record[$col])) . " ";
494                    }
495                    else {
496                        $colprop = (array)$fieldset['content'][$col] + (array)$coltypes[$col];
497                        $colprop['id'] = 'ff_'.$col;
498                        if (empty($record[$col]) && !$colprop['visible']) {
499                            $colprop['style'] = 'display:none';
500                            $select_add->add($colprop['label'], $col);
501                        }
502                        $fields .= rcmail_get_edit_field($col, $record[$col], $colprop, $colprop['type']);
503                    }
504                }
505                $content .= html::div($blockname, $fields);
506            }
507
508            if ($edit_mode)
509                $content .= html::p('addfield', $select_add->show(null));
510
511            $out .= html::tag('fieldset', $attrib, (!empty($fieldset['name']) ? html::tag('legend', null, Q($fieldset['name'])) : '') . $content) ."\n";
512            continue;
513        }
514
515        $content = '';
516        if (is_array($fieldset['content'])) {
517            foreach ($fieldset['content'] as $col => $colprop) {
518                // remove subtype part of col name
519                list($field, $subtype) = explode(':', $col);
520                if (!$subtype) $subtype = 'home';
521                $fullkey = $col.':'.$subtype;
522
523                // skip cols unknown to the backend
524                if (!$coltypes[$field])
525                    continue;
526
527                // merge colprop with global coltype configuration
528                $colprop += $coltypes[$field];
529                $label = isset($colprop['label']) ? $colprop['label'] : rcube_label($col);
530
531                // prepare subtype selector in edit mode
532                if ($edit_mode && is_array($colprop['subtypes'])) {
533                    $subtype_names = array_map('rcmail_get_type_label', $colprop['subtypes']);
534                    $select_subtype = new html_select(array('name' => '_subtype_'.$col.'[]', 'class' => 'contactselectsubtype'));
535                    $select_subtype->add($subtype_names, $colprop['subtypes']);
536                }
537                else
538                    $select_subtype = null;
539
540                if (!empty($colprop['value'])) {
541                    $values = (array)$colprop['value'];
542                }
543                else {
544                    // iterate over possible subtypes and collect values with their subtype
545                    if (is_array($colprop['subtypes'])) {
546                        $values = $subtypes = array();
547                        foreach ($colprop['subtypes'] as $i => $st) {
548                            $newval = false;
549                            if ($record[$field.':'.$st]) {
550                                $subtypes[count($values)] = $st;
551                                $newval = $record[$field.':'.$st];
552                            }
553                            else if ($i == 0 && $record[$field]) {
554                                $subtypes[count($values)] = $st;
555                                $newval = $record[$field];
556                            }
557                            if ($newval !== false) {
558                                if (is_array($newval) && isset($newval[0]))
559                                    $values = array_merge($values, $newval);
560                                else
561                                    $values[] = $newval;
562                            }
563                        }
564                    }
565                    else {
566                        $values = $record[$fullkey] ? $record[$fullkey] : $record[$field];
567                        $subtypes = null;
568                    }
569                }
570
571                // hack: create empty values array to force this field to be displayed
572                if (empty($values) && $colprop['visible'])
573                    $values[] = '';
574
575                $rows = '';
576                foreach ((array)$values as $i => $val) {
577                    if ($subtypes[$i])
578                        $subtype = $subtypes[$i];
579
580                    // render composite field
581                    if ($colprop['type'] == 'composite') {
582                        $composite = array(); $j = 0;
583                        $template = $RCMAIL->config->get($col . '_template', '{'.join('} {', array_keys($colprop['childs'])).'}');
584                        foreach ($colprop['childs'] as $childcol => $cp) {
585                            $childvalue = $val[$childcol] ? $val[$childcol] : $val[$j];
586
587                            if ($edit_mode) {
588                                if ($colprop['subtypes'] || $colprop['limit'] != 1) $cp['array'] = true;
589                                $composite['{'.$childcol.'}'] = rcmail_get_edit_field($childcol, $childvalue, $cp, $cp['type']) . " ";
590                            }
591                            else {
592                                $childval = $cp['render_func'] ? call_user_func($cp['render_func'], $childvalue, $childcol) : Q($childvalue);
593                                $composite['{'.$childcol.'}'] = html::span('data ' . $childcol, $childval) . " ";
594                            }
595                            $j++;
596                        }
597
598                        $coltypes[$field] += (array)$colprop;
599                        $coltypes[$field]['count']++;
600                        $val = strtr($template, $composite);
601                    }
602                    else if ($edit_mode) {
603                        // call callback to render/format value
604                        if ($colprop['render_func'])
605                            $val = call_user_func($colprop['render_func'], $val, $col);
606
607                        $coltypes[$field] = (array)$colprop + $coltypes[$field];
608
609                        if ($colprop['subtypes'] || $colprop['limit'] != 1)
610                            $colprop['array'] = true;
611
612                        // load jquery UI datepickert for date fields
613                        if ($colprop['type'] == 'date') {
614                            if (!$jqueryui_loaded++) {
615                                $RCMAIL->plugins->load_plugin('jqueryui');
616                                $RCMAIL->output->set_env('date_format', strtr($RCMAIL->config->get('date_format', 'Y-m-d'), array('y'=>'y', 'Y'=>'yy', 'm'=>'mm', 'n'=>'m', 'd'=>'dd', 'j'=>'d')));
617                                foreach (array('jan','feb','mar','apr','may','jun','jul','aug','sep','oct','nov','dec') as $month)
618                                    $month_names[] = rcube_label($month);
619                                $RCMAIL->output->set_env('month_names', $month_names);
620                            }
621                            $colprop['class'] .= ($colprop['class'] ? ' ' : '') . 'datepicker';
622                            $val = format_date($val, $RCMAIL->config->get('date_format', 'Y-m-d'));
623                        }
624
625                        $val = rcmail_get_edit_field($col, $val, $colprop, $colprop['type']);
626                        $coltypes[$field]['count']++;
627                    }
628                    else if ($colprop['render_func'])
629                        $val = call_user_func($colprop['render_func'], $val, $col);
630                    else if (is_array($colprop['options']) && isset($colprop['options'][$val]))
631                        $val = $colprop['options'][$val];
632                    else
633                        $val = Q($val);
634
635                    // use subtype as label
636                    if ($colprop['subtypes'])
637                        $label = rcmail_get_type_label($subtype);
638
639                    // add delete button/link
640                    if ($edit_mode && !($colprop['visible'] && $colprop['limit'] == 1))
641                        $val .= html::a(array('href' => '#del', 'class' => 'contactfieldbutton deletebutton', 'title' => rcube_label('delete'), 'rel' => $col), $del_button);
642
643                    // display row with label
644                    if ($label) {
645                        $rows .= html::div('row',
646                            html::div('contactfieldlabel label', $select_subtype ? $select_subtype->show($subtype) : Q($label)) .
647                            html::div('contactfieldcontent '.$colprop['type'], $val));
648                    }
649                    else   // row without label
650                        $rows .= html::div('row', html::div('contactfield', $val));
651                }
652
653                // add option to the add-field menu
654                if (!$colprop['limit'] || $coltypes[$field]['count'] < $colprop['limit']) {
655                    $select_add->add($colprop['label'], $col);
656                    $select_add->_count++;
657                }
658
659                // wrap rows in fieldgroup container
660                $content .= html::tag('fieldset', array('class' => 'contactfieldgroup ' . ($colprop['subtypes'] ? 'contactfieldgroupmulti ' : '') . 'contactcontroller' . $col, 'style' => ($rows ? null : 'display:none')),
661                  ($colprop['subtypes'] ? html::tag('legend', null, Q($colprop['label'])) : ' ') .
662                  $rows);
663            }
664
665            // also render add-field selector
666            if ($edit_mode)
667                $content .= html::p('addfield', $select_add->show(null, array('style' => $select_add->_count ? null : 'display:none')));
668
669            $content = html::div(array('id' => 'contactsection' . $section), $content);
670        }
671        else {
672            $content = $fieldset['content'];
673        }
674
675        $out .= html::tag('fieldset', null, html::tag('legend', null, Q($fieldset['name'])) . $content) ."\n";
676    }
677
678    if ($edit_mode) {
679      $RCMAIL->output->set_env('coltypes', $coltypes + $coltype_labels);
680      $RCMAIL->output->set_env('delbutton', $del_button);
681      $RCMAIL->output->add_label('delete');
682    }
683
684    return $out;
685}
686
687
688function rcmail_contact_photo($attrib)
689{
690    global $SOURCE_ID, $CONTACTS, $CONTACT_COLTYPES, $RCMAIL, $CONFIG;
691
692    if (!$CONTACT_COLTYPES['photo'])
693        return '';
694
695    if ($result = $CONTACTS->get_result())
696        $record = $result->first();
697
698    $photo_img = $attrib['placeholder'] ? $CONFIG['skin_path'] . $attrib['placeholder'] : 'program/blank.gif';
699    $RCMAIL->output->set_env('photo_placeholder', $photo_img);
700    unset($attrib['placeholder']);
701
702    if (strpos($record['photo'], 'http:') === 0)
703        $photo_img = $record['photo'];
704    else if ($record['photo'])
705        $photo_img = $RCMAIL->url(array('_action' => 'photo', '_cid' => $record['ID'], '_source' => $SOURCE_ID));
706    else
707        $ff_value = '-del-'; // will disable delete-photo action
708
709    $img = html::img(array('src' => $photo_img, 'border' => 1, 'alt' => ''));
710    $content = html::div($attrib, $img);
711
712    if ($RCMAIL->action == 'edit' || $RCMAIL->action == 'add') {
713        $RCMAIL->output->add_gui_object('contactphoto', $attrib['id']);
714        $hidden = new html_hiddenfield(array('name' => '_photo', 'id' => 'ff_photo', 'value' => $ff_value));
715        $content .= $hidden->show();
716    }
717
718    return $content;
719}
720
721
722function rcmail_format_date_col($val)
723{
724    global $RCMAIL;
725    return format_date($val, $RCMAIL->config->get('date_format', 'Y-m-d'));
726}
727
728
729/**
730 * Returns contact ID(s) and source(s) from GET/POST data
731 *
732 * @return array List of contact IDs per-source
733 */
734function rcmail_get_cids()
735{
736    // contact ID (or comma-separated list of IDs) is provided in two
737    // forms. If _source is an empty string then the ID is a string
738    // containing contact ID and source name in form: <ID>-<SOURCE>
739
740    $cid    = get_input_value('_cid', RCUBE_INPUT_GPC);
741    $source = (string) get_input_value('_source', RCUBE_INPUT_GPC);
742
743    if (!preg_match('/^[a-zA-Z0-9\+\/=_-]+(,[a-zA-Z0-9\+\/=_-]+)*$/', $cid)) {
744        return array();
745    }
746
747    $cid        = explode(',', $cid);
748    $got_source = strlen($source);
749    $result     = array();
750
751    // create per-source contact IDs array
752    foreach ($cid as $id) {
753        // if _source is not specified we'll find it from decoded ID
754        if (!$got_source) {
755            list ($c, $s) = explode('-', $id, 2);
756            if (strlen($s)) {
757                $result[(string)$s][] = $c;
758            }
759        }
760        else {
761            $result[$source][] = $id;
762        }
763    }
764
765    return $result;
766}
767
768// register UI objects
769$OUTPUT->add_handlers(array(
770    'directorylist' => 'rcmail_directory_list',
771//  'groupslist' => 'rcmail_contact_groups',
772    'addresslist' => 'rcmail_contacts_list',
773    'addressframe' => 'rcmail_contact_frame',
774    'recordscountdisplay' => 'rcmail_rowcount_display',
775    'searchform' => array($OUTPUT, 'search_form')
776));
777
778// register action aliases
779$RCMAIL->register_action_map(array(
780    'add' => 'edit.inc',
781    'photo' => 'show.inc',
782    'group-create' => 'groups.inc',
783    'group-rename' => 'groups.inc',
784    'group-delete' => 'groups.inc',
785    'group-addmembers' => 'groups.inc',
786    'group-delmembers' => 'groups.inc',
787    'search-create' => 'search.inc',
788    'search-delete' => 'search.inc',
789));
Note: See TracBrowser for help on using the repository browser.