| | |
| | | $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 |