📄 admin.php
字号:
<?php
$GLOBALS['fc_config']['layouts'][ROLE_ADMIN] = array(
'allowBan' => true,
'allowInvite' => true,
'allowIgnore' => true,
'allowProfile' => true,
'allowCreateRoom' => true,
'allowFileShare' => true,//file sharing user menu
'allowCustomBackground' => true, //if false, "effects" tab "Custom" button disappears
'showOptionPanel' => true,
'showInputBox' => true,
'showPrivateLog' => false,
'showPublicLog' => true,
'showUserList' => true,
'showLogout' => true,
'isSingleRoomMode' => false, //if true room drop-down is visible
'allowPrivateMessage' => true,
'showAddressee' => true,
'toolbar' => array(
'status' => true,
'skin' => true,
'color' => true,
'save' => true,
'help' => true,
'smilies' => true,
'clear' => false,
'bell' => false,
),
//which tabs to show in the options panel ('About' tab cannot be hidden)
'optionPanel' => array(
'themes' => true,
'sounds' => true,
'effects' => true,
'text' => true,
),
// UI config
'constraints' => array(
'userList' => array(
'minWidth' => 50, //minimal width of user list view, pixels
'width' => -1, //exact width of userlist, pixels
'relWidth' => 30, //relative width of userlist, percent
'dockWidth' => 75, //relative width of docked userlist, percent
'dockHeight' => 50, //relative height of docked userlist, percent
'position' => RIGHT //position on the stage p.v. is RIGHT or LEFT
),
'publicLog' => array(
'minHeight' => 35, //minimal height of public log, pixels
'height' => -1, //exact height of public log, pixels
'relHeight' => 66, //relative height of public log, percent
),
'privateLog' => array(
'minHeight' => 35,
'height' => -1,
'relHeight' => 25,
),
'inputBox' => array(
'minHeight' => 35,
'height' => -1,
'relHeight' => 8,
'position' => BOTTOM //position on the stage p.v. is BOTTOM or TOP
),
)
);
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -