Changeset 1944280
- Timestamp:
- 09/20/2018 04:20:50 PM (7 years ago)
- Location:
- interact-quiz-embed
- Files:
-
- 4 edited
- 1 copied
-
tags/3.0.4 (copied) (copied from interact-quiz-embed/trunk)
-
tags/3.0.4/interact-quiz-embed.php (modified) (2 diffs)
-
tags/3.0.4/readme.txt (modified) (2 diffs)
-
trunk/interact-quiz-embed.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
interact-quiz-embed/tags/3.0.4/interact-quiz-embed.php
r1941592 r1944280 5 5 Description: Use this plugin to embed your Interact quiz into your Wordpress site. 6 6 Author: The Quiz Collective Inc. 7 Version: 3.0. 37 Version: 3.0.4 8 8 Author URI: https://www.tryinteract.com 9 9 10 Copyright 201 7The Quiz Collective (email: [email protected])10 Copyright 2018 The Quiz Collective (email: [email protected]) 11 11 12 12 This program is free software; you can redistribute it and/or modify … … 72 72 if(isset($atts['no_cover'])) { $no_cover = 'true'; } else { $no_cover = 'false'; } 73 73 if(isset($atts['mobile'])) { $mobile = $atts['mobile']; } else { $mobile = 'true'; } 74 if(isset($atts['align'])) { $align = $atts['align']; } else { $align = null; } 74 75 75 76 $app_id = $atts['id']; 76 77 $ref = $app_id . md5($app_id . rand()); 77 78 79 if($align) { 80 $align = 'style="text-align:' . $align . ';"'; 81 } 82 83 $container = '<div id="interact-' . $ref . '"' . $align . '></div>'; 84 78 85 return ' 79 <div id="interact-' . $ref . '"></div>86 ' . $container . ' 80 87 <script type="text/javascript"> 81 88 (function(){ -
interact-quiz-embed/tags/3.0.4/readme.txt
r1941592 r1944280 4 4 Requires at least: 3.0.1 5 5 Tested up to: 4.9.8 6 Stable tag: 3.0. 36 Stable tag: 3.0.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 51 51 == Changelog == 52 52 53 = 3.0.4 = 54 * Added shortcode attribute align="left|center|right". 55 53 56 = 3.0.3 = 54 57 * Skipped 3.0.2 due to svn publishing issues, disregard skipped version number -
interact-quiz-embed/trunk/interact-quiz-embed.php
r1941592 r1944280 5 5 Description: Use this plugin to embed your Interact quiz into your Wordpress site. 6 6 Author: The Quiz Collective Inc. 7 Version: 3.0. 37 Version: 3.0.4 8 8 Author URI: https://www.tryinteract.com 9 9 10 Copyright 201 7The Quiz Collective (email: [email protected])10 Copyright 2018 The Quiz Collective (email: [email protected]) 11 11 12 12 This program is free software; you can redistribute it and/or modify … … 72 72 if(isset($atts['no_cover'])) { $no_cover = 'true'; } else { $no_cover = 'false'; } 73 73 if(isset($atts['mobile'])) { $mobile = $atts['mobile']; } else { $mobile = 'true'; } 74 if(isset($atts['align'])) { $align = $atts['align']; } else { $align = null; } 74 75 75 76 $app_id = $atts['id']; 76 77 $ref = $app_id . md5($app_id . rand()); 77 78 79 if($align) { 80 $align = 'style="text-align:' . $align . ';"'; 81 } 82 83 $container = '<div id="interact-' . $ref . '"' . $align . '></div>'; 84 78 85 return ' 79 <div id="interact-' . $ref . '"></div>86 ' . $container . ' 80 87 <script type="text/javascript"> 81 88 (function(){ -
interact-quiz-embed/trunk/readme.txt
r1941592 r1944280 4 4 Requires at least: 3.0.1 5 5 Tested up to: 4.9.8 6 Stable tag: 3.0. 36 Stable tag: 3.0.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 51 51 == Changelog == 52 52 53 = 3.0.4 = 54 * Added shortcode attribute align="left|center|right". 55 53 56 = 3.0.3 = 54 57 * Skipped 3.0.2 due to svn publishing issues, disregard skipped version number
Note: See TracChangeset
for help on using the changeset viewer.