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