im a new for PHP and Moodle 2.7.1+ ..., i want to add a field "Number of student" for control limited count of a course.
I did this in moodle\course\edit_form.php:
$mform->addElement('text','CountStudent', get_string('CountStudentcourse'),'maxlength="100" size="10"');
$mform->addHelpButton('CountStudent','CountStudentcourse');
$mform->setType('CountStudent', PARAM_RAW);if(!empty($course->id)and!has_capability('moodle/course:changeCountStudent', $coursecontext)){
$mform->hardFreeze('CountStudent');
$mform->setConstants('CountStudent', $course->CountStudent);}
In the view show: CountStudentcourse and HelpButton Error
have some simple example for it?? thanks for all helps!!