inc_ppexameditor.php
来自「PPExam 是一个通用的在线考试系统」· PHP 代码 · 共 12 行
PHP
12 行
<?php
Iimport('FCKeditor');
class PPExamEditor extends FCKeditor {
function __construct($instanceName,$value='',$action='') {
parent::__construct($instanceName,$value,$action);
$this->BasePath = $GLOBALS['base_config']['exam_root'].'fckeditor/';
}
function PPExamEditor($instanceName,$value='',$action='') {
$this->__construct($instanceName,$value,$action);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?