. /** * diplay info header * * @author Fumi Iseki * @license GNU Public License * @package mod_apply (modified from mod_feedback that by Andreas Grabs) */ defined('MOODLE_INTERNAL') OR die('not allowed'); //echo $OUTPUT->box_start('boxaligncenter boxwidthwide'); //{ if ($apply->time_open) { echo $OUTPUT->box_start('apply_info'); echo ''; echo get_string('time_open', 'apply').': '; echo ''; echo ''; echo userdate($apply->time_open); echo ''; echo $OUTPUT->box_end(); } if ($apply->time_close) { echo $OUTPUT->box_start('apply_info'); echo ''; echo get_string('time_close', 'apply').': '; echo ''; echo ''; echo userdate($apply->time_close); echo ''; echo $OUTPUT->box_end(); } //} //echo $OUTPUT->box_end();