- Unify hooks names, see rcube_plugin_api::deprecated_hooks for complete list (old names are supported without errors nor warnings)
| | |
| | | $ldap_config = (array)$this->config->get('ldap_public'); |
| | | $abook_type = strtolower($this->config->get('address_book_type')); |
| | | |
| | | $plugin = $this->plugins->exec_hook('get_address_book', array('id' => $id, 'writeable' => $writeable)); |
| | | $plugin = $this->plugins->exec_hook('addressbook_get', array('id' => $id, 'writeable' => $writeable)); |
| | | |
| | | // plugin returned instance of a rcube_addressbook |
| | | if ($plugin['instance'] instanceof rcube_addressbook) { |
| | |
| | | ); |
| | | } |
| | | |
| | | $plugin = $this->plugins->exec_hook('address_sources', array('sources' => $list)); |
| | | $plugin = $this->plugins->exec_hook('addressbooks_list', array('sources' => $list)); |
| | | $list = $plugin['sources']; |
| | | |
| | | if ($writeable && !empty($list)) { |
| | |
| | | */ |
| | | public function kill_session() |
| | | { |
| | | $this->plugins->exec_hook('kill_session'); |
| | | $this->plugins->exec_hook('session_destroy'); |
| | | |
| | | $this->session->remove(); |
| | | $_SESSION = array('language' => $this->user->language, 'auth_time' => time(), 'temp' => true); |
| | |
| | | $a_defaults = $a_out = array(); |
| | | |
| | | // Give plugins a chance to provide a list of mailboxes |
| | | $data = rcmail::get_instance()->plugins->exec_hook('list_mailboxes', |
| | | $data = rcmail::get_instance()->plugins->exec_hook('mailboxes_list', |
| | | array('root' => $root, 'filter' => $filter, 'mode' => 'LSUB')); |
| | | |
| | | if (isset($data['folders'])) { |
| | |
| | | function list_unsubscribed($root='', $filter='*') |
| | | { |
| | | // Give plugins a chance to provide a list of mailboxes |
| | | $data = rcmail::get_instance()->plugins->exec_hook('list_mailboxes', |
| | | $data = rcmail::get_instance()->plugins->exec_hook('mailboxes_list', |
| | | array('root' => $root, 'filter' => $filter, 'mode' => 'LIST')); |
| | | |
| | | if (isset($data['folders'])) { |
| | |
| | | private $required_plugins = array('filesystem_attachments'); |
| | | private $active_hook = false; |
| | | |
| | | // Deprecated names of hooks, will be removed after 0.5-stable release |
| | | private $deprecated_hooks = array( |
| | | 'create_user' => 'user_create', |
| | | 'kill_session' => 'session_destroy', |
| | | 'upload_attachment' => 'attachment_upload', |
| | | 'save_attachment' => 'attachment_save', |
| | | 'get_attachment' => 'attachment_get', |
| | | 'cleanup_attachments' => 'attachments_cleanup', |
| | | 'display_attachment' => 'attachment_display', |
| | | 'remove_attachment' => 'attachment_delete', |
| | | 'outgoing_message_headers' => 'message_outgoing_headers', |
| | | 'outgoing_message_body' => 'message_outgoing_body', |
| | | 'address_sources' => 'addressbooks_list', |
| | | 'get_address_book' => 'addressbook_get', |
| | | 'create_contact' => 'contact_create', |
| | | 'save_contact' => 'contact_save', |
| | | 'delete_contact' => 'contact_delete', |
| | | 'manage_folders' => 'folders_list', |
| | | 'list_mailboxes' => 'mailboxes_list', |
| | | 'save_preferences' => 'preferences_save', |
| | | 'user_preferences' => 'preferences_list', |
| | | 'list_prefs_sections' => 'preferences_sections_list', |
| | | 'list_identities' => 'identities_list', |
| | | 'create_identity' => 'identity_create', |
| | | 'save_identity' => 'identity_save', |
| | | ); |
| | | |
| | | /** |
| | | * This implements the 'singleton' design pattern |
| | | * |
| | |
| | | */ |
| | | public function register_hook($hook, $callback) |
| | | { |
| | | if (is_callable($callback)) |
| | | if (is_callable($callback)) { |
| | | if (isset($this->deprecated_hooks[$hook])) { |
| | | /* Uncoment after 0.4-stable release |
| | | raise_error(array('code' => 522, 'type' => 'php', |
| | | 'file' => __FILE__, 'line' => __LINE__, |
| | | 'message' => "Deprecated hook name. ".$hook.' -> '.$this->deprecated_hooks[$hook]), true, false); |
| | | */ |
| | | $hook = $this->deprecated_hooks[$hook]; |
| | | } |
| | | $this->handlers[$hook][] = $callback; |
| | | } |
| | | else |
| | | raise_error(array('code' => 521, 'type' => 'php', |
| | | 'file' => __FILE__, 'line' => __LINE__, |
| | |
| | | $user_email = is_array($email_list[0]) ? $email_list[0]['email'] : $email_list[0]; |
| | | } |
| | | |
| | | $data = $rcmail->plugins->exec_hook('create_user', |
| | | $data = $rcmail->plugins->exec_hook('user_create', |
| | | array('user'=>$user, 'user_name'=>$user_name, 'user_email'=>$user_email)); |
| | | |
| | | // plugin aborted this operation |
| | |
| | | $record['user_id'] = $user_id; |
| | | $record['standard'] = $standard; |
| | | |
| | | $plugin = $rcmail->plugins->exec_hook('create_identity', |
| | | $plugin = $rcmail->plugins->exec_hook('identity_create', |
| | | array('login' => true, 'record' => $record)); |
| | | |
| | | if (!$plugin['abort'] && $plugin['record']['email']) { |
| | |
| | | $ids = array(); |
| | | |
| | | foreach ($arr_cids as $cid) { |
| | | $plugin = $RCMAIL->plugins->exec_hook('create_contact', array( |
| | | $plugin = $RCMAIL->plugins->exec_hook('contact_create', array( |
| | | 'record' => $CONTACTS->get_record($cid, true), |
| | | 'source' => $target, |
| | | 'group' => $target_group, |
| | |
| | | ($cid = get_input_value('_cid', RCUBE_INPUT_POST)) && |
| | | preg_match('/^[a-zA-Z0-9\+\/=_-]+(,[a-zA-Z0-9\+\/=_-]+)*$/', $cid) |
| | | ) { |
| | | $plugin = $RCMAIL->plugins->exec_hook('delete_contact', array('id' => $cid, 'source' => get_input_value('_source', RCUBE_INPUT_GPC))); |
| | | $plugin = $RCMAIL->plugins->exec_hook('contact_delete', array('id' => $cid, 'source' => get_input_value('_source', RCUBE_INPUT_GPC))); |
| | | |
| | | $deleted = !$plugin['abort'] ? $CONTACTS->delete($cid) : false; |
| | | if (!$deleted) |
| | |
| | | 'vcard' => $vcard->export(), |
| | | ); |
| | | |
| | | $plugin = $RCMAIL->plugins->exec_hook('create_contact', array('record' => $a_record, 'source' => null)); |
| | | $plugin = $RCMAIL->plugins->exec_hook('contact_create', array('record' => $a_record, 'source' => null)); |
| | | $a_record = $plugin['record']; |
| | | |
| | | // insert record and send response |
| | |
| | | // update an existing contact |
| | | if (!empty($cid)) |
| | | { |
| | | $plugin = $RCMAIL->plugins->exec_hook('save_contact', array('id' => $cid, 'record' => $a_record, 'source' => get_input_value('_source', RCUBE_INPUT_GPC))); |
| | | $plugin = $RCMAIL->plugins->exec_hook('contact_save', array('id' => $cid, 'record' => $a_record, 'source' => get_input_value('_source', RCUBE_INPUT_GPC))); |
| | | $a_record = $plugin['record']; |
| | | |
| | | if (!$plugin['abort'] && ($result = $CONTACTS->update($cid, $a_record))) |
| | |
| | | return; |
| | | } |
| | | |
| | | $plugin = $RCMAIL->plugins->exec_hook('create_contact', array('record' => $a_record, 'source' => get_input_value('_source', RCUBE_INPUT_GPC))); |
| | | $plugin = $RCMAIL->plugins->exec_hook('contact_create', array('record' => $a_record, 'source' => get_input_value('_source', RCUBE_INPUT_GPC))); |
| | | $a_record = $plugin['record']; |
| | | |
| | | // insert record and send response |
| | |
| | | $OUTPUT->show_message('contactexists', 'warning'); |
| | | else |
| | | { |
| | | $plugin = $RCMAIL->plugins->exec_hook('create_contact', array('record' => $contact, 'source' => null)); |
| | | $plugin = $RCMAIL->plugins->exec_hook('contact_create', array('record' => $contact, 'source' => null)); |
| | | $contact = $plugin['record']; |
| | | |
| | | if (!$plugin['abort'] && ($done = $CONTACTS->insert($contact))) |
| | |
| | | if (preg_match('/^rcmfile(\w+)$/', $_POST['_file'], $regs)) |
| | | $id = $regs[1]; |
| | | if ($attachment = $_SESSION['compose']['attachments'][$id]) |
| | | $attachment = $RCMAIL->plugins->exec_hook('remove_attachment', $attachment); |
| | | $attachment = $RCMAIL->plugins->exec_hook('attachment_delete', $attachment); |
| | | if ($attachment['status']) { |
| | | if (is_array($_SESSION['compose']['attachments'][$id])) { |
| | | unset($_SESSION['compose']['attachments'][$id]); |
| | |
| | | if (preg_match('/^rcmfile(\w+)$/', $_GET['_file'], $regs)) |
| | | $id = $regs[1]; |
| | | if ($attachment = $_SESSION['compose']['attachments'][$id]) |
| | | $attachment = $RCMAIL->plugins->exec_hook('display_attachment', $attachment); |
| | | $attachment = $RCMAIL->plugins->exec_hook('attachment_display', $attachment); |
| | | |
| | | if ($attachment['status']) { |
| | | if (empty($attachment['size'])) |
| | |
| | | 'mimetype' => rc_mime_content_type($filepath, $_FILES['_attachments']['name'][$i], $_FILES['_attachments']['type'][$i]) |
| | | ); |
| | | |
| | | $attachment = $RCMAIL->plugins->exec_hook('upload_attachment', $attachment); |
| | | $attachment = $RCMAIL->plugins->exec_hook('attachment_upload', $attachment); |
| | | |
| | | if ($attachment['status'] && !$attachment['abort']) { |
| | | $id = $attachment['id']; |
| | |
| | | |
| | | // save attachment if valid |
| | | if (($attachment['data'] && $attachment['name']) || ($attachment['path'] && file_exists($attachment['path']))) { |
| | | $attachment = rcmail::get_instance()->plugins->exec_hook('save_attachment', $attachment); |
| | | $attachment = rcmail::get_instance()->plugins->exec_hook('attachment_save', $attachment); |
| | | } |
| | | |
| | | if ($attachment['status'] && !$attachment['abort']) { |
| | |
| | | 'size' => $path ? filesize($path) : strlen($data), |
| | | ); |
| | | |
| | | $attachment = rcmail::get_instance()->plugins->exec_hook('save_attachment', $attachment); |
| | | $attachment = rcmail::get_instance()->plugins->exec_hook('attachment_save', $attachment); |
| | | |
| | | if ($attachment['status']) { |
| | | unset($attachment['data'], $attachment['status'], $attachment['content_id'], $attachment['abort']); |
| | |
| | | 'size' => strlen($data), |
| | | ); |
| | | |
| | | $attachment = rcmail::get_instance()->plugins->exec_hook('save_attachment', $attachment); |
| | | $attachment = rcmail::get_instance()->plugins->exec_hook('attachment_save', $attachment); |
| | | |
| | | if ($attachment['status']) { |
| | | unset($attachment['data'], $attachment['status'], $attachment['content_id'], $attachment['abort']); |
| | |
| | | return; |
| | | |
| | | $rcmail = rcmail::get_instance(); |
| | | $rcmail->plugins->exec_hook('cleanup_attachments',array()); |
| | | $rcmail->plugins->exec_hook('attachments_cleanup', array()); |
| | | $rcmail->session->remove('compose'); |
| | | } |
| | | |
| | |
| | | $headers['User-Agent'] = $CONFIG['useragent']; |
| | | |
| | | // exec hook for header checking and manipulation |
| | | $data = $RCMAIL->plugins->exec_hook('outgoing_message_headers', array('headers' => $headers)); |
| | | $data = $RCMAIL->plugins->exec_hook('message_outgoing_headers', array('headers' => $headers)); |
| | | |
| | | // sending aborted by plugin |
| | | if ($data['abort'] && !$savedraft) { |
| | |
| | | // the HTML part and the plain-text part |
| | | |
| | | if ($isHtml) { |
| | | $plugin = $RCMAIL->plugins->exec_hook('outgoing_message_body', |
| | | $plugin = $RCMAIL->plugins->exec_hook('message_outgoing_body', |
| | | array('body' => $message_body, 'type' => 'html', 'message' => $MAIL_MIME)); |
| | | |
| | | $MAIL_MIME->setHTMLBody($plugin['body']); |
| | |
| | | $plainTextPart = preg_replace('/\r?\n/', "\r\n", $plainTextPart); |
| | | } |
| | | |
| | | $plugin = $RCMAIL->plugins->exec_hook('outgoing_message_body', |
| | | $plugin = $RCMAIL->plugins->exec_hook('message_outgoing_body', |
| | | array('body' => $plainTextPart, 'type' => 'alternative', 'message' => $MAIL_MIME)); |
| | | |
| | | $MAIL_MIME->setTXTBody($plugin['body']); |
| | |
| | | $message_body = rcmail_fix_emoticon_paths($MAIL_MIME); |
| | | } |
| | | else { |
| | | $plugin = $RCMAIL->plugins->exec_hook('outgoing_message_body', |
| | | $plugin = $RCMAIL->plugins->exec_hook('message_outgoing_body', |
| | | array('body' => $message_body, 'type' => 'plain', 'message' => $MAIL_MIME)); |
| | | |
| | | $message_body = $plugin['body']; |
| | |
| | | { |
| | | foreach ($_SESSION['compose']['attachments'] as $id => $attachment) { |
| | | // This hook retrieves the attachment contents from the file storage backend |
| | | $attachment = $RCMAIL->plugins->exec_hook('get_attachment', $attachment); |
| | | $attachment = $RCMAIL->plugins->exec_hook('attachment_get', $attachment); |
| | | |
| | | $dispurl = '/\ssrc\s*=\s*[\'"]*\S+display-attachment\S+file=rcmfile' . preg_quote($attachment['id']) . '[\s\'"]*/'; |
| | | $message_body = $MAIL_MIME->getHTMLBody(); |
| | |
| | | $list[$idx]['mail'] = trim($row['name'] . ' <' . $row['email'] .'>'); |
| | | |
| | | // get all identites from DB and define list of cols to be displayed |
| | | $plugin = $RCMAIL->plugins->exec_hook('list_identities', array( |
| | | $plugin = $RCMAIL->plugins->exec_hook('identities_list', array( |
| | | 'list' => $list, |
| | | 'cols' => array('mail'))); |
| | | |
| | |
| | | $sections['server'] = array('id' => 'server', 'section' => rcube_label('serversettings')); |
| | | |
| | | // hook + define list cols |
| | | $plugin = $RCMAIL->plugins->exec_hook('list_prefs_sections', |
| | | $plugin = $RCMAIL->plugins->exec_hook('preferences_sections_list', |
| | | array('list' => $sections, 'cols' => array('section'))); |
| | | |
| | | $sections = $plugin['list']; |
| | |
| | | break; |
| | | } |
| | | |
| | | $data = $RCMAIL->plugins->exec_hook('user_preferences', array('section' => $sect['id'], 'blocks' => $blocks)); |
| | | $data = $RCMAIL->plugins->exec_hook('preferences_list', array('section' => $sect['id'], 'blocks' => $blocks)); |
| | | $found = false; |
| | | |
| | | // create output |
| | |
| | | $a_js_folders['rcmrow'.$idx] = array($folder_utf8, $display_folder, $protected || $folder['virtual']); |
| | | } |
| | | |
| | | rcmail::get_instance()->plugins->exec_hook('manage_folders', array('table'=>$table)); |
| | | rcmail::get_instance()->plugins->exec_hook('folders_list', array('table'=>$table)); |
| | | |
| | | $OUTPUT->add_gui_object('subscriptionlist', $attrib['id']); |
| | | $OUTPUT->set_env('subscriptionrows', $a_js_folders); |
| | |
| | | if ($_POST['_iid']) |
| | | { |
| | | $iid = get_input_value('_iid', RCUBE_INPUT_POST); |
| | | $plugin = $RCMAIL->plugins->exec_hook('save_identity', array('id' => $iid, 'record' => $save_data)); |
| | | $plugin = $RCMAIL->plugins->exec_hook('identity_save', array('id' => $iid, 'record' => $save_data)); |
| | | $save_data = $plugin['record']; |
| | | |
| | | if (!$plugin['abort'] && ($updated = $USER->update_identity($iid, $save_data))) |
| | |
| | | if (IDENTITIES_LEVEL == 1) |
| | | $save_data['email'] = $RCMAIL->user->get_username(); |
| | | |
| | | $plugin = $RCMAIL->plugins->exec_hook('create_identity', array('record' => $save_data)); |
| | | $plugin = $RCMAIL->plugins->exec_hook('identity_create', array('record' => $save_data)); |
| | | $save_data = $plugin['record']; |
| | | |
| | | if (!$plugin['abort'] && $save_data['email'] && ($insert_id = $USER->insert_identity($save_data))) |
| | |
| | | break; |
| | | } |
| | | |
| | | $data = rcmail::get_instance()->plugins->exec_hook('save_preferences', |
| | | $data = rcmail::get_instance()->plugins->exec_hook('preferences_save', |
| | | array('prefs' => $a_user_prefs, 'section' => $CURR_SECTION)); |
| | | |
| | | $a_user_prefs = $data['prefs']; |