⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 field.class.php

📁 很棒的在线教学系统
💻 PHP
字号:
<?php //$Id: field.class.php,v 1.2 2007/10/08 08:10:46 ikawhero Exp $class profile_field_textarea extends profile_field_base {    function edit_field_add(&$mform) {        $cols = $this->field->param1;        $rows = $this->field->param2;        /// Create the form field        $mform->addElement('htmleditor', $this->inputname, format_string($this->field->name), array('cols'=>$cols, 'rows'=>$rows));        $mform->setType($this->inputname, PARAM_CLEAN);    }    /// Overwrite base class method, data in this field type is potentially too large to be    /// included in the user object    function is_user_object_data() {        return false;    }}?>

⌨️ 快捷键说明

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