Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/user/profile/field/checkbox/define.class.php
Go to the documentation of this file.
00001 <?php
00002 
00003 class profile_define_checkbox extends profile_define_base {
00004 
00005     function define_form_specific(&$form) {
00007         $form->addElement('selectyesno', 'defaultdata', get_string('profiledefaultchecked', 'admin'));
00008         $form->setDefault('defaultdata', 0); // defaults to 'no'
00009         $form->setType('defaultdata', PARAM_BOOL);
00010     }
00011 }
00012 
00013 
 All Data Structures Namespaces Files Functions Variables Enumerations