PageRenderTime 36ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/user/profile/field/text/define.class.php

https://bitbucket.org/synergylearning/campusconnect
PHP | 42 lines | 26 code | 10 blank | 6 comment | 0 complexity | 90b060e02d5f37ba3e0a6b3f7a2e58b9 MD5 | raw file
Possible License(s): MPL-2.0-no-copyleft-exception, LGPL-3.0, GPL-3.0, LGPL-2.1, Apache-2.0, BSD-3-Clause, AGPL-3.0
  1. <?php
  2. class profile_define_text extends profile_define_base {
  3. function define_form_specific($form) {
  4. /// Default data
  5. $form->addElement('text', 'defaultdata', get_string('profiledefaultdata', 'admin'), 'size="50"');
  6. $form->setType('defaultdata', PARAM_TEXT);
  7. /// Param 1 for text type is the size of the field
  8. $form->addElement('text', 'param1', get_string('profilefieldsize', 'admin'), 'size="6"');
  9. $form->setDefault('param1', 30);
  10. $form->setType('param1', PARAM_INT);
  11. /// Param 2 for text type is the maxlength of the field
  12. $form->addElement('text', 'param2', get_string('profilefieldmaxlength', 'admin'), 'size="6"');
  13. $form->setDefault('param2', 2048);
  14. $form->setType('param2', PARAM_INT);
  15. /// Param 3 for text type detemines if this is a password field or not
  16. $form->addElement('selectyesno', 'param3', get_string('profilefieldispassword', 'admin'));
  17. $form->setDefault('param3', 0); // defaults to 'no'
  18. $form->setType('param3', PARAM_INT);
  19. /// Param 4 for text type contains a link
  20. $form->addElement('text', 'param4', get_string('profilefieldlink', 'admin'));
  21. $form->setType('param4', PARAM_URL);
  22. $form->addHelpButton('param4', 'profilefieldlink', 'admin');
  23. /// Param 5 for text type contains link target
  24. $targetoptions = array( '' => get_string('linktargetnone', 'editor'),
  25. '_blank' => get_string('linktargetblank', 'editor'),
  26. '_self' => get_string('linktargetself', 'editor'),
  27. '_top' => get_string('linktargettop', 'editor')
  28. );
  29. $form->addElement('select', 'param5', get_string('profilefieldlinktarget', 'admin'), $targetoptions);
  30. $form->setType('param5', PARAM_RAW);
  31. }
  32. }