Changeset 1713691
- Timestamp:
- 08/15/2017 05:00:17 PM (9 years ago)
- Location:
- wp-quiz-importer
- Files:
-
- 3 added
- 4 edited
-
assets/icon-128x128.png (added)
-
assets/icon-256x256.png (added)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/admin/helpers/class-learndash-helper.php (added)
-
trunk/admin/partials/wp-quiz-importer-admin-display.php (modified) (1 diff)
-
trunk/includes/class-wp-quiz-importer.php (modified) (1 diff)
-
trunk/wp-quiz-importer.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-quiz-importer/trunk/README.txt
r1712655 r1713691 2 2 Contributors: tdevip 3 3 Donate link: http://www.tdevip.com/ 4 Tags: import, quiz, questions, MSWord5 Requires at least: 3.0.14 Tags: wp-pro-quiz, learnpress, learndash, import, quiz, questions, MSWord 5 Requires at least: 4.0 6 6 Tested up to: 4.8 7 7 Stable tag: 1.0.1 … … 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 This is a wordpress plugin to import MSWord quiz questions into wordpress quiz providers. An MSWord template is provided to prepare quiz questions. A macro in the word file can be used to create an xml file. This file along with the plugin can be used to import quiz questions into wordpress. Currently WpProQuiz and LearnPress quiz providers are supported and in future providers such as LearnDash, Watu, Sensei and many more will be supported. Quiz questions can contain equations in LaTex format (which can be done using MathType editor in word). It also accepts HTML tags and images can be placed in questions.12 WP Quiz Importer plugin can import MS Word quiz questions into wordpress quiz providers such as WpProQuiz, LearnPress and LearnDash. 13 13 14 14 == Description == 15 15 16 This is a plugin to import MSWord quiz questions into wordpress quiz providers. Using the provided MSWord template prepare quiz questions. Use the macro in the word file to create an XML file. Upload this XML file (using the plugin) and import quiz questions into wordpress quiz provder. Currently WpProQuiz and LearnPress quiz providers are supported and in future providers such as LearnDash, Watu, Sensei and many more will be supported. Various types of quiz questions are supported (see MSWord template for more details). Quiz questions can contain equations in LaTex format (which can be done using MathType editor in MSWord). They may also contain HTML tags and images. The basic features of plugin are: 17 1. Quiz questions and answers can be prepared in an MSWord file 18 2. Various types of questions (depending on quiz provider) can be imported. 19 3. Questions can contain LaTex equations and html tags. 20 4. WpProQuiz and LearnPress quiz providers are supported. 16 This is a plugin to import MSWord quiz questions into wordpress quiz providers. Using the provided MSWord template prepare quiz questions. Use macro in the word template to create an XML file. Upload this XML file (using the plugin) and import quiz questions into wordpress quiz provder. Currently WpProQuiz, LearnPress and LearnDash quiz providers are supported. In future other providers such as Watu, Sensei and many more will be supported. Various types of quiz questions are supported (see provided MSWord template for more details). Quiz questions can contain equations in LaTex format (which can be done using MathType editor in MSWord). They may also contain HTML tags and images. 17 18 The basic features of plugin are: 19 * 1. Quiz questions and answers can be prepared in an MSWord file 20 * 2. Various types of questions (depending on quiz provider) can be imported. 21 * 3. Questions can contain LaTex equations and html tags. 22 * 4. WpProQuiz, LearnPress and LearnDash quiz providers are supported. 21 23 22 24 The premiun version supports: 23 1. Message when correct answer is selected24 2. Message to display when incorrect answer is selected25 3. Hint to disply for each question26 4. Different marks depending on answer selected27 5. Additional question types28 6. Additional quiz providers25 * 1. Message when correct answer is selected 26 * 2. Message to display when incorrect answer is selected 27 * 3. Hint to disply for each question 28 * 4. Different marks depending on answer selected 29 * 5. Additional question types 30 * 6. Additional quiz providers 29 31 30 NOTE:Some of the above features are dependent on quiz providers.32 **NOTE:** Some of the above features are dependent on quiz providers. 31 33 32 34 == Installation == 33 35 34 This section describes how to install the plugin and get it working. 36 How to Install this plugin: 35 37 36 e.g. 38 * 1. Copy the folder `wp-quiz-importer` and its contents to the `/wp-content/plugins/` directory. 39 * 2. Activate the plugin through the 'Plugins' menu in WordPress. 40 * 3. A sub-menu called "Quiz Importer" will be created under wordpress settings menu. 37 41 38 1. Upload `wp-quiz-importer.php` to the `/wp-content/plugins/` directory39 1. Activate the plugin through the 'Plugins' menu in WordPress40 1. Place `<?php do_action('plugin_name_hook'); ?>` in your templates41 42 42 43 == Frequently Asked Questions == … … 44 45 = How to import quiz questions? = 45 46 46 Upload the XML file created using MSWord template provided along with the plugin. From the uploaded file import questions.47 Upload the XML file created using MSWord template (provided along with this plugin) and click import button. 47 48 48 49 == Screenshots == 49 50 50 1. This screen shot description corresponds to screenshot-1.(png|jpg|jpeg|gif). 51 2. This is the second screen shot 51 * Quiz Importer page screenshot-1.png. 52 52 53 53 == Changelog == 54 =1.0.1= 55 * LearnDash quiz questions can be imported. 56 54 57 =1.0.0= 55 1.New plugin created.58 * New plugin created. 56 59 57 == Arbitrary section ==58 59 You may provide arbitrary sections, in the same format as the ones above. This may be of use for extremely complicated60 plugins where more information needs to be conveyed that doesn't fit into the categories of "description" or61 "installation." Arbitrary sections will be shown below the built-in sections outlined above. -
wp-quiz-importer/trunk/admin/partials/wp-quiz-importer-admin-display.php
r1712653 r1713691 40 40 <span><?php esc_attr_e( 'LearnPress', 'wp-quiz-importer' ); ?></span> 41 41 </label> 42 <label title='g:i a' class="quiz-import-radio"> 43 <input type="radio" name="wp_quiz_provider" value="learndash" /> 44 <span><?php esc_attr_e( 'LearnDash', 'wp-quiz-importer' ); ?></span> 45 </label> 42 46 </fieldset> 43 47 </td> -
wp-quiz-importer/trunk/includes/class-wp-quiz-importer.php
r1712653 r1713691 70 70 71 71 $this->plugin_name = 'wp-quiz-importer'; 72 $this->version = '1.0. 0';72 $this->version = '1.0.1'; 73 73 74 74 $this->load_dependencies(); -
wp-quiz-importer/trunk/wp-quiz-importer.php
r1712653 r1713691 17 17 * Plugin URI: http://www.tdevip.com/wp-quiz-importer 18 18 * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area. 19 * Version: 1.0. 019 * Version: 1.0.1 20 20 * Author: Prasad Tumula 21 21 * Author URI: http://www.tdevip.com/
Note: See TracChangeset
for help on using the changeset viewer.