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

📄 field.class.php

📁 很棒的在线教学系统
💻 PHP
字号:
<?php //$Id: field.class.php,v 1.6.2.1 2007/12/21 08:17:36 scyrma Exp $class profile_field_text extends profile_field_base {    function edit_field_add(&$mform) {        $size = $this->field->param1;        $maxlength = $this->field->param2;        $fieldtype = ($this->field->param3 == 1 ? 'password' : 'text');        /// Create the form field        $mform->addElement($fieldtype, $this->inputname, format_string($this->field->name), 'maxlength="'.$maxlength.'" size="'.$size.'" ');        $mform->setType($this->inputname, PARAM_MULTILANG);    }}?>

⌨️ 快捷键说明

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