PluginProbe
Watu Quiz / trunk
Watu Quiz vtrunk
3.4.8 trunk 3.4.2 3.4.3 3.4.4 3.4.5 3.4.5.1 3.4.5.2 3.4.5.3 3.4.6 3.4.7
watu / views / import.html.php

import.html.php in Watu Quiz trunk, at views/import.html.php

36 lines 2.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div class="wrap watu-wrap">
2 <h1><?php _e("Questions Import", 'watu')?></h1>
3
4 <h2><?php printf(__('%1$s: %2$s', 'watu'), ucfirst(WATU_QUIZ_WORD), stripslashes($quiz->name))?></h2>
5
6 <p><a href="admin.php?page=watu_questions&quiz=<?php echo $quiz->ID?>"><?php _e('Back to manage questions', 'watu')?></a></p>
7
8 <?php if(!empty($_POST['watu_import'])):
9 // output error/success message ?>
10 <h2 style="color:green;"><?php echo $result ? __('The questions were imported.', 'watu') : __('There was an error importing your questions.', 'watu')?></h2>
11 <?php
12 if(!empty($non_utf8_error)):
13 echo "<p style='color:red;'>".sprintf(__('The imported file was not UTF-8 encoded. If it contains non-English (non-ASCII) characters there may be problems with the imported questions. If you notice such problems you will have to delete your questions, <a href="%s" target="_blank">convert your file to UTF-8</a> and import it then.', 'watu'),
14 'https://www.ablebits.com/office-addins-blog/2014/04/24/convert-excel-csv/')."</p>";
15 endif;
16 endif;?>
17
18 <form method="post" enctype="multipart/form-data">
19 <div class="inside watu">
20 <p><?php printf(__('Your CSV file should follow exactly the format <a href="%s" target="_blank">described here</a>.','watu'), 'http://blog.calendarscripts.info/import-questions-in-the-free-watu-plugin/');?></p>
21 <p><label><?php _e('Upload file:', 'watu')?></label> <input type="file" name="csv"><br />
22 <b><?php _e('Note: if you are uploading file containing non-English characters you should make sure the file is in Unicode format (UTF-8 encoded).', 'watu');?></b></p>
23
24 <p><label><?php _e('Fields Delimiter:', 'watu')?></label> <select name="delimiter">
25 <option value=","><?php _e('Comma', 'watu')?></option>
26 <option value="tab"><?php _e('Tab', 'watu')?></option>
27 <option value=";"><?php _e('Semicolon', 'watu')?></option>
28 </select></p>
29 <p><input type="checkbox" name="skip_title_row" value="1" checked> <?php _e('Skip title row', 'watu')?></p>
30 <p><?php _e('If you have problems importing files with foreign characters, please', 'watu')?> <input type="checkbox" name="import_fails" value="1"> <?php _e('check this checkbox and try again.', 'watu')?></p>
31
32 <p><input type="submit" name="watu_import" value="<?php _e('Import Questions', 'watu')?>" class="button-primary"></p>
33 </div>
34 <?php wp_nonce_field('watu_import_questions');?>
35 </form>
36 </div>