mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
44 lines
2.2 KiB
HTML
44 lines
2.2 KiB
HTML
|
<fieldset>
|
||
|
<legend><?php print_string('commontasks', 'calendar'); ?></legend>
|
||
|
<form method="get" action="export_execute.php">
|
||
|
<?php print_string('iwanttoexport', 'calendar'); ?>:
|
||
|
<div class="indent">
|
||
|
<input type="radio" name="preset_what" id="pw_all" value="all" /><label for="pw_all"><?php print_string('eventsall', 'calendar'); ?></label><br />
|
||
|
<input type="radio" name="preset_what" id="pw_course" value="courses" /><label for="pw_course"><?php print_string('eventsrelatedtocourses', 'calendar'); ?></label><br />
|
||
|
</div>
|
||
|
<?php print_string('for', 'calendar'); ?>:
|
||
|
<div class="indent">
|
||
|
<?php if($allowthisweek) { ?>
|
||
|
<input type="radio" name="preset_time" id="pt_wknow" value="weeknow" /><label for="pt_wknow"><?php print_string('weekthis', 'calendar'); ?></label><br />
|
||
|
<?php } ?>
|
||
|
<?php if($allownextweek) { ?>
|
||
|
<input type="radio" name="preset_time" id="pt_wknext" value="weeknext" /><label for="pt_wknext"><?php print_string('weeknext', 'calendar'); ?></label><br />
|
||
|
<?php } ?>
|
||
|
<input type="radio" name="preset_time" id="pt_monnow" value="monthnow" /><label for="pt_monnow"><?php print_string('monththis', 'calendar'); ?></label><br />
|
||
|
<?php if($allownextmonth) { ?>
|
||
|
<input type="radio" name="preset_time" id="pt_monnext" value="monthnext" /><label for="pt_monnext"><?php print_string('monthnext', 'calendar'); ?></label><br />
|
||
|
<?php } ?>
|
||
|
</div>
|
||
|
<div style="text-align: right;">
|
||
|
<input type="hidden" name="cal_d" value="" />
|
||
|
<input type="hidden" name="cal_m" value="" />
|
||
|
<input type="hidden" name="cal_y" value="" />
|
||
|
<input type="hidden" name="action" value="export" />
|
||
|
<input type="submit" value="<?php print_string('exportbutton', 'calendar'); ?>" />
|
||
|
</div>
|
||
|
</form>
|
||
|
</fieldset>
|
||
|
<br />
|
||
|
<fieldset>
|
||
|
<legend><?php print_string('advancedoptions', 'calendar'); ?></legend>
|
||
|
<form method="get" action="export.php">
|
||
|
<?php print_string('advancedoptionsexplain', 'calendar'); ?>
|
||
|
<div style="text-align: right;">
|
||
|
<input type="hidden" name="cal_d" value="" />
|
||
|
<input type="hidden" name="cal_m" value="" />
|
||
|
<input type="hidden" name="cal_y" value="" />
|
||
|
<input type="hidden" name="action" value="advanced" />
|
||
|
<input type="submit" value="<?php print_string('advancedoptions', 'calendar'); ?>" />
|
||
|
</div>
|
||
|
</form>
|
||
|
</fieldset>
|