adding some strings
[moodle-linuxchix.git] / user / profile / field / textarea / define.class.php
blobf35f6dedc99eb6a45a78685bcea8564896a2f2af
1 <?php //$Id$
3 class profile_define_textarea extends profile_define_base {
5 function define_form_specific(&$form) {
6 /// Default data
7 $form->addElement('htmleditor', 'defaultdata', get_string('profiledefaultdata', 'admin'));
8 $form->setType('defaultdata', PARAM_CLEAN);
10 /// Param 1 for textarea type is the number of columns
11 $form->addElement('text', 'param1', get_string('profilefieldcolumns', 'admin'), 'size="6"');
12 $form->setDefault('param1', 30);
13 $form->setType('param1', PARAM_INT);
15 /// Param 2 for text type is the number of rows
16 $form->addElement('text', 'param2', get_string('profilefieldrows', 'admin'), 'size="6"');
17 $form->setDefault('param2', 10);
18 $form->setType('param2', PARAM_INT);