| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
- <script>
- function setDownloading()
- {
- if(navigator.userAgent.toLowerCase().indexOf("opera") > -1) return true; // Opera don't support, omit it.
- $.cookie('downloading', 0);
- time = setInterval("closeWindow()", 300);
- return true;
- }
- function closeWindow()
- {
- if($.cookie('downloading') == 1)
- {
- parent.$.closeModal();
- $.cookie('downloading', null);
- clearInterval(time);
- }
- }
- </script>
- <main id="main">
- <div class="container">
- <div id="mainContent" class='main-content load-indicator'>
- <div class='main-header'>
- <h2><?php echo $lang->export;?></h2>
- </div>
- <form method='post' target='hiddenwin' onsubmit='setDownloading();' style='margin: 10px -20px 0;'>
- <table class='table table-form' style='padding:30px'>
- <tr>
- <th class='w-80px'><?php echo $lang->setFileName;?></th>
- <td><?php echo html::input('fileName', $name, "class='form-control'");?></td>
- <td class='w-100px'>
- <?php
- unset($lang->exportFileTypeList['csv']);
- unset($lang->exportFileTypeList['xml']);
- echo html::select('fileType', $lang->exportFileTypeList, '', 'class="form-control"');
- ?>
- </td>
- <td class='w-80px'><?php echo html::submitButton('', '', 'btn btn-primary btn-block');?></td>
- </tr>
- </table>
- </form>
- </div>
- </div>
- </main>
- <?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>
|