diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-07-30 06:34:02 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-07-30 06:34:02 +0000 |
| commit | 009b6c1c0c9d62d338c57e53fd3a25f3cd22a50b (patch) | |
| tree | e43662f9bc267a6c9bfe656d748eafefdfce9a80 /roundcubemail/program/steps/settings/func.inc | |
| parent | 800068fe5247352bcb1b3c086af78af40eb992af (diff) | |
- Unify hooks names, see rcube_plugin_api::deprecated_hooks for complete list (old names are supported without errors nor warnings)
git-svn-id: https://svn.roundcube.net/trunk@3840 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/settings/func.inc')
| -rw-r--r-- | roundcubemail/program/steps/settings/func.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/steps/settings/func.inc b/roundcubemail/program/steps/settings/func.inc index d71714b64..b611e66f9 100644 --- a/roundcubemail/program/steps/settings/func.inc +++ b/roundcubemail/program/steps/settings/func.inc @@ -75,7 +75,7 @@ function rcmail_identities_list($attrib) $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'))); @@ -131,7 +131,7 @@ function rcmail_user_prefs($current=null) $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']; @@ -676,7 +676,7 @@ function rcmail_user_prefs($current=null) 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 |
