| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php include '../../../common/view/header.modal.html.php';?>
- <div id="mainContent" class='load-indicator'>
- <div class='main-header'>
- <h2><?php echo $lang->export;?></h2>
- </div>
- <form class="main-form" target='hiddenwin' method='post'>
- <table class='table table-form'>
- <tr>
- <th class='w-100px'><?php echo $lang->setFileName;?></th>
- <td><?php echo html::input('fileName', $fileName, "class='form-control'")?></td>
- </tr>
- <tr>
- <th><?php echo $lang->doc->export->range; ?></th>
- <td><?php echo html::select('range', $chapters, 0, "class='form-control chosen'")?></td>
- </tr>
- <tr>
- <th><?php echo $lang->doc->export->fileType?></th>
- <td><?php echo html::select('fileType', array('word'), 0, "class='form-control' disabled")?></td>
- </tr>
- <tr>
- <th><?php echo $lang->doc->export->encode?></th>
- <td><?php echo html::select('encode', array('UTF-8'), 0, "class='form-control' disabled")?></td>
- </tr>
- <tr>
- <th><?php echo $lang->doc->export->format?></th>
- <td><?php echo html::hidden('format', 'doc') . $lang->doc->export->formatList['doc'];?></td>
- </tr>
- <tr>
- <td colspan='2' class='text-center'><?php echo html::submitButton($lang->export, "onclick='setDownloading();'");?></td>
- </tr>
- </table>
- </form>
- </div>
- <script>
- function setDownloading()
- {
- if(navigator.userAgent.toLowerCase().indexOf("opera") > -1) return true; // Opera don't support, omit it.
- var $fileName = $('#fileName');
- if($fileName.val() === '') $fileName.val('<?php echo $lang->file->untitled;?>');
- $.cookie('downloading', 0);
- time = setInterval("closeWindow()", 300);
- $('#mainContent').addClass('loading');
- return true;
- }
- function closeWindow()
- {
- if($.cookie('downloading') == 1)
- {
- $('#mainContent').removeClass('loading');
- $.closeModal();
- $.cookie('downloading', null);
- clearInterval(time);
- }
- }
- </script>
- <iframe name='hiddenwin' class='hidden'></iframe>
- <?php include '../../../common/view/footer.modal.html.php';?>
|