Skip to content

Commit

Permalink
New textarea profile field type
Browse files Browse the repository at this point in the history
  • Loading branch information
ikawhero committed Apr 28, 2007
1 parent ce5f457 commit 86e95df
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
23 changes: 23 additions & 0 deletions user/profile/field/textarea/define.class.php
@@ -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 changes: 16 additions & 0 deletions user/profile/field/textarea/field.class.php
@@ -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);
}

}

?>

0 comments on commit 86e95df

Please sign in to comment.