- Rename hooks: contact_save -> contact_update, identity_save -> identity_update, delete_identity -> identity_delete
- Print warning to the log about deprecated hook names usage
| | |
| | | 'address_sources' => 'addressbooks_list', |
| | | 'get_address_book' => 'addressbook_get', |
| | | 'create_contact' => 'contact_create', |
| | | 'save_contact' => 'contact_save', |
| | | 'save_contact' => 'contact_update', |
| | | 'contact_save' => 'contact_update', |
| | | 'delete_contact' => 'contact_delete', |
| | | 'manage_folders' => 'folders_list', |
| | | 'list_mailboxes' => 'mailboxes_list', |
| | |
| | | 'list_prefs_sections' => 'preferences_sections_list', |
| | | 'list_identities' => 'identities_list', |
| | | 'create_identity' => 'identity_create', |
| | | 'save_identity' => 'identity_save', |
| | | 'delete_identity' => 'identity_delete', |
| | | 'save_identity' => 'identity_update', |
| | | 'identity_save' => 'identity_update', |
| | | ); |
| | | |
| | | /** |
| | |
| | | { |
| | | 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; |
| | |
| | | // update an existing contact |
| | | if (!empty($cid)) |
| | | { |
| | | $plugin = $RCMAIL->plugins->exec_hook('contact_save', array('id' => $cid, 'record' => $a_record, 'source' => get_input_value('_source', RCUBE_INPUT_GPC))); |
| | | $plugin = $RCMAIL->plugins->exec_hook('contact_update', |
| | | 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))) |
| | |
| | | |
| | | if ($iid && preg_match('/^[0-9]+(,[0-9]+)*$/', $iid)) |
| | | { |
| | | $plugin = $RCMAIL->plugins->exec_hook('delete_identity', array('id' => $iid)); |
| | | $plugin = $RCMAIL->plugins->exec_hook('identity_delete', array('id' => $iid)); |
| | | |
| | | if (!$plugin['abort'] && $USER->delete_identity($iid)) { |
| | | $OUTPUT->show_message('deletedsuccessfully', 'confirmation', null, false); |
| | |
| | | if ($_POST['_iid']) |
| | | { |
| | | $iid = get_input_value('_iid', RCUBE_INPUT_POST); |
| | | $plugin = $RCMAIL->plugins->exec_hook('identity_save', array('id' => $iid, 'record' => $save_data)); |
| | | $plugin = $RCMAIL->plugins->exec_hook('identity_update', array('id' => $iid, 'record' => $save_data)); |
| | | $save_data = $plugin['record']; |
| | | |
| | | if (!$plugin['abort'] && ($updated = $USER->update_identity($iid, $save_data))) |