identities.inc

来自「开源邮件管理系统」· INC 代码 · 共 48 行

INC
48
字号
<?php/* +-----------------------------------------------------------------------+ | program/steps/settings/identities.inc                                 | |                                                                       | | This file is part of the RoundCube Webmail client                     | | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 | | Licensed under the GNU GPL                                            | |                                                                       | | PURPOSE:                                                              | |   Manage identities of a user account                                 | |                                                                       | +-----------------------------------------------------------------------+ | Author: Thomas Bruederli <roundcube@gmail.com>                        | +-----------------------------------------------------------------------+ $Id: identities.inc 1412 2008-05-21 07:45:54Z alec $*/$OUTPUT->set_pagetitle(rcube_label('identities'));$OUTPUT->include_script('list.js');// similar function as /steps/addressbook/func.inc::rcmail_contact_frame()function rcmail_identity_frame($attrib)  {  global $OUTPUT;  if (!$attrib['id'])    $attrib['id'] = 'rcmIdentityFrame';  $attrib['name'] = $attrib['id'];  $OUTPUT->set_env('contentframe', $attrib['name']);  $attrib_str = create_attrib_string($attrib, array('name', 'id', 'class', 'style', 'src', 'width', 'height', 'frameborder'));  $out = '<iframe'. $attrib_str . '></iframe>';  return $out;  }$OUTPUT->add_handler('identityframe', 'rcmail_identity_frame');$OUTPUT->send('identities');?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?