mirror of
https://github.com/moodle/moodle.git
synced 2025-01-31 12:45:04 +01:00
New textarea profile field type
This commit is contained in:
parent
ce5f45783e
commit
86e95dfa9c
23
user/profile/field/textarea/define.class.php
Normal file
23
user/profile/field/textarea/define.class.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php //$Id$
|
||||
|
||||
class profile_define_textarea extends profile_define_base {
|
||||
|
||||
function define_form_specific(&$form) {
|
||||
/// Default data
|
||||
$form->addElement('htmleditor', 'defaultdata', get_string('profiledefaultdata', 'admin'));
|
||||
$form->setType('defaultdata', PARAM_CLEAN);
|
||||
|
||||
/// Param 1 for textarea type is the number of columns
|
||||
$form->addElement('text', 'param1', get_string('profilefieldcolumns', 'admin'), 'size="6"');
|
||||
$form->setDefault('param1', 30);
|
||||
$form->setType('param1', PARAM_INT);
|
||||
|
||||
/// Param 2 for text type is the number of rows
|
||||
$form->addElement('text', 'param2', get_string('profilefieldrows', 'admin'), 'size="6"');
|
||||
$form->setDefault('param2', 10);
|
||||
$form->setType('param2', PARAM_INT);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
16
user/profile/field/textarea/field.class.php
Normal file
16
user/profile/field/textarea/field.class.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php //$Id$
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
Loading…
x
Reference in New Issue
Block a user