field.class.php

来自「很棒的在线教学系统」· PHP 代码 · 共 18 行

PHP
18
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?