|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00002 00003 class profile_define_textarea extends profile_define_base { 00004 00005 function define_form_specific(&$form) { 00007 $form->addElement('editor', 'defaultdata', get_string('profiledefaultdata', 'admin')); 00008 $form->setType('defaultdata', PARAM_RAW); // we have to trust person with capability to edit this default description 00009 } 00010 00011 function define_editors() { 00012 return array('defaultdata'); 00013 } 00014 00015 } 00016 00017