Changeset 719538
- Timestamp:
- 05/28/2013 07:34:51 PM (13 years ago)
- File:
-
- 1 edited
-
mtouch-quiz/trunk/mtouchquiz.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mtouch-quiz/trunk/mtouchquiz.php
r668002 r719538 4 4 Plugin URI: http://gmichaelguy.com/quizplugin/ 5 5 Description: Create a multiple choice quiz (or exam). This plugin was written with learning and mobility in mind. The quiz interface is touch friendly. You can: specify hints based on answer selection; give a detailed explanation of the solution; choose multiple correct answers; specify when the correct answers are displayed; specify if a question may be attempted only once or many times; specify point values for each question; include customized start and finish screens; randomly order questions and/or answers; and more. This plugin was built by pillaging the Quizzin plugin written by Binny V A, but please do not blame him for my ruining his plugin! 6 Version: 3.0. 56 Version: 3.0.6 7 7 Author: G. Michael Guy 8 8 Author URI: http://gmichaelguy.com … … 12 12 ?> 13 13 <?php 14 /* Copyright 201 0G. Michael Guy (email : Michael (Put-AN-AT) gmichaelguy.com)14 /* Copyright 2013 G. Michael Guy (email : Michael (Put-AN-AT) gmichaelguy.com) 15 15 16 16 This program is free software; you can redistribute it and/or modify … … 33 33 */ 34 34 35 define( 'mtq_VERSION', '3.0. 5' );35 define( 'mtq_VERSION', '3.0.6' ); 36 36 define( 'mtq_URL','http://gmichaelguy.com/quizplugin/'); 37 37 define( 'mtq_DISPLAY_NAME','mTouch Quiz'); … … 60 60 add_action('init', 'mtq_init'); 61 61 function mtq_init() { 62 load_plugin_textdomain('mtouchquiz', 'wp-content/plugins/mtouch-quiz/lang/' );62 load_plugin_textdomain('mtouchquiz', false, dirname(plugin_basename( __FILE__ )).'/lang/' ); 63 63 add_action('admin_menu', 'mtq_menu'); 64 64 $installed_db = get_option('mtouchquiz_db_version');
Note: See TracChangeset
for help on using the changeset viewer.