| | |
| | | $OUTPUT->include_script('list.js'); |
| | | |
| | | // add some labels to client |
| | | rcube_add_label('deletecontactconfirm'); |
| | | $OUTPUT->add_label('deletecontactconfirm'); |
| | | |
| | | return $out; |
| | | } |
| | |
| | | $attrib['id'] = 'rcmcontactframe'; |
| | | |
| | | $attrib['name'] = $attrib['id']; |
| | | $attrib_str = create_attrib_string($attrib, array('name', 'id', 'class', 'style', 'src', 'width', 'height', 'frameborder')); |
| | | |
| | | $OUTPUT->set_env('contentframe', $attrib['name']); |
| | | $OUTPUT->set_env('blankpage', $attrib['src'] ? $OUTPUT->abs_url($attrib['src']) : 'program/blank.gif'); |
| | | return '<iframe'. $attrib_str . '></iframe>'; |
| | | |
| | | return html::iframe($attrib); |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | $OUTPUT->add_gui_object('countdisplay', $attrib['id']); |
| | | |
| | | // allow the following attributes to be added to the <span> tag |
| | | $attrib_str = create_attrib_string($attrib, array('style', 'class', 'id')); |
| | | |
| | | $out = '<span' . $attrib_str . '>'; |
| | | $out .= rcmail_get_rowcount_text(); |
| | | $out .= '</span>'; |
| | | return $out; |
| | | return html::span($attrib, rcmail_get_rowcount_text()); |
| | | } |
| | | |
| | | |
| | |
| | | return $out; |
| | | } |
| | | |
| | | |
| | | $OUTPUT->set_pagetitle(rcube_label('addressbook')); |
| | | |
| | | // register UI objects |