New textarea profile field type

This commit is contained in:
ikawhero 2007-04-28 03:07:43 +00:00
parent ce5f45783e
commit 86e95dfa9c
2 changed files with 39 additions and 0 deletions

View 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);
}
}
?>

View 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);
}
}
?>