mirror of
https://github.com/moodle/moodle.git
synced 2025-02-13 12:34:28 +01:00
28 lines
632 B
PHP
28 lines
632 B
PHP
<?php defined('MOODLE_INTERNAL') or die('Direct access to this script is forbidden.');?>
|
|
|
|
<div class="boxaligncenter">
|
|
<?php
|
|
if (!empty($popup)) {
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
|
|
document.write('<input type="button" value="<?php print_string('closewindow') ?>" '+
|
|
'onclick="javascript: window.opener.location.href=\'view.php?id=<?php echo $cm->id ?>\'; '+
|
|
'window.close();" />');
|
|
//]]>
|
|
</script>
|
|
<noscript>
|
|
<div>
|
|
<?php print_string('closewindow'); ?>
|
|
</div>
|
|
</noscript>
|
|
|
|
<?php
|
|
} else {
|
|
print_single_button("view.php", array( 'id' => $cm->id ), get_string('continue'));
|
|
}
|
|
?>
|
|
</div>
|