Changeset 729508
- Timestamp:
- 06/21/2013 05:43:38 PM (13 years ago)
- Location:
- multi-video-box/tags/1.5.2
- Files:
-
- 1 edited
- 21 copied
-
. (copied) (copied from multi-video-box/trunk)
-
classes/class.group_form.php (copied) (copied from multi-video-box/trunk/classes/class.group_form.php)
-
classes/class.video.php (copied) (copied from multi-video-box/trunk/classes/class.video.php)
-
classes/class.video_embed.php (copied) (copied from multi-video-box/trunk/classes/class.video_embed.php)
-
classes/class.video_form.php (copied) (copied from multi-video-box/trunk/classes/class.video_form.php)
-
css/mvob_style_compressed.css (copied) (copied from multi-video-box/trunk/css/mvob_style_compressed.css)
-
functions/functions_ajax.php (copied) (copied from multi-video-box/trunk/functions/functions_ajax.php)
-
functions/functions_shortcodes.php (copied) (copied from multi-video-box/trunk/functions/functions_shortcodes.php)
-
images/down-arrow.png (copied) (copied from multi-video-box/trunk/images/down-arrow.png)
-
images/left-arrow.png (copied) (copied from multi-video-box/trunk/images/left-arrow.png)
-
images/right-arrow.png (copied) (copied from multi-video-box/trunk/images/right-arrow.png)
-
images/up-arrow.png (copied) (copied from multi-video-box/trunk/images/up-arrow.png)
-
js/mvob_public_ajax.js (copied) (copied from multi-video-box/trunk/js/mvob_public_ajax.js)
-
js/mvob_scripts.js (copied) (copied from multi-video-box/trunk/js/mvob_scripts.js)
-
models/database.php (copied) (copied from multi-video-box/trunk/models/database.php)
-
multi-video-box.php (copied) (copied from multi-video-box/trunk/multi-video-box.php) (2 diffs)
-
readme.txt (copied) (copied from multi-video-box/trunk/readme.txt) (3 diffs)
-
views/common/instructions.php (copied) (copied from multi-video-box/trunk/views/common/instructions.php)
-
views/common/instructions_shortcode.php (modified) (2 diffs)
-
views/group/add_videos_to_group.php (copied) (copied from multi-video-box/trunk/views/group/add_videos_to_group.php)
-
views/video/add_video.php (copied) (copied from multi-video-box/trunk/views/video/add_video.php)
-
views/video/add_video_to_groups.php (copied) (copied from multi-video-box/trunk/views/video/add_video_to_groups.php)
Legend:
- Unmodified
- Added
- Removed
-
multi-video-box/tags/1.5.2/multi-video-box.php
r729494 r729508 4 4 Plugin URI: http://www.nuttymango.com/multi-video-box/ 5 5 Description: "Multi Video Box" gives you the capability to output numerous videos on a single page, but only take up the space of a single video. Uses tabbed navigation to switch videos. 6 Version: 1.5. 16 Version: 1.5.2 7 7 Author: Scott Kustes 8 8 Author URI: http://www.nuttymango.com/ … … 25 25 // Constants for MVOB definition 26 26 if ( !defined( 'MVOB_DB_VERS' ) ) 27 define( 'MVOB_DB_VERS' , '1.5. 1' );27 define( 'MVOB_DB_VERS' , '1.5.2' ); 28 28 if ( !defined( 'MVOB_PLUGIN_URL' ) ) 29 29 define( 'MVOB_PLUGIN_URL' , plugin_dir_url( __FILE__ ) ); -
multi-video-box/tags/1.5.2/readme.txt
r729494 r729508 5 5 Requires at least: 3.3 6 6 Tested up to: 3.5.1 7 Stable tag: 1.5. 17 Stable tag: 1.5.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 35 35 36 36 == Changelog == 37 38 = 1.5.2 = 39 * Updated instructions for shortcode 37 40 38 41 = 1.5.1 = … … 72 75 If you want to custom tailor the output of your Videos, the [mvob] shortcode gives you several options. You can use any or all of these when you call the [mvob] shortcode. 73 76 74 * tab _side- Which side of the Video display do you want the tabs on? Accepts: top (default), left, bottom, and right. This parameter is ignored if you're only outputting a single Video.75 * title _output - Where do you want the title of the Video displayed? Accepts: top (default) or bottom76 * description _output - Where do you want the description of the Video displayed? Accepts: top (default) or bottom77 * tab - Which side of the Video display do you want the tabs on? Accepts: top (default), left, bottom, and right. This parameter is ignored if you're only outputting a single Video. 78 * title - Where do you want the title of the Video displayed? Accepts: top (default), bottom, or none 79 * description - Where do you want the description of the Video displayed? Accepts: top (default), bottom, or none 77 80 78 81 == Shortcode Examples == 79 82 * [mvob group=1] Outputs the videos for Group #1 with default settings 80 * [mvob group=12 tab _side="left" title_output="bottom"] Outputs videos for Group #12 with tabs on the left and the title below the video. Description remains above the video (per default setting).81 * [mvob video=2 tab _side="left" description_output="bottom"] Outputs Video #2 with the title above the video (per default setting) and description below the video. tab_sideis ignored because there is only one Video being output.83 * [mvob group=12 tab="left" title="bottom"] Outputs videos for Group #12 with tabs on the left and the title below the video. Description remains above the video (per default setting). 84 * [mvob video=2 tab="left" description="bottom"] Outputs Video #2 with the title above the video (per default setting) and description below the video. tab setting is ignored because there is only one Video being output. -
multi-video-box/tags/1.5.2/views/common/instructions_shortcode.php
r717783 r729508 12 12 If you want to custom tailor the output of your Videos, the [mvob] shortcode gives you several options. You can use any or all of these when you call the [mvob] shortcode. 13 13 <ul> 14 <li><strong>tab _side</strong> - Which side of the Video display do you want the tabs on? Accepts: top (default), left, bottom, and right. This parameter is ignored if you're only outputting a single Video.</li>15 <li><strong>title _output</strong> - Where do you want the title of the Video displayed? Accepts: top (default) or bottom</li>16 <li><strong>description _output</strong> - Where do you want the description of the Video displayed? Accepts: top (default) or bottom</li>14 <li><strong>tab</strong> - Which side of the Video display do you want the tabs on? Accepts: top (default), left, bottom, and right. This parameter is ignored if you're only outputting a single Video.</li> 15 <li><strong>title</strong> - Where do you want the title of the Video displayed? Accepts: top (default), bottom, or none</li> 16 <li><strong>description</strong> - Where do you want the description of the Video displayed? Accepts: top (default), bottom, or none</li> 17 17 </ul> 18 18 … … 20 20 <ul> 21 21 <li><strong>[mvob group=1]</strong>:<br/>Outputs the videos for Group #1 with default settings</li> 22 <li><strong>[mvob group=12 tab _side="left" title_output="bottom"]</strong>:<br/>Outputs videos for Group #12 with tabs on the left and the title below the video. Description remains above the video (per default setting).</li>23 <li><strong>[mvob video=2 tab _side="left" description_output="bottom"]</strong>:<br/>Outputs Video #2 with the title above the video (per default setting) and description below the video. tab_sideis ignored because there is only one Video being output.</li>22 <li><strong>[mvob group=12 tab="left" title="bottom"]</strong>:<br/>Outputs videos for Group #12 with tabs on the left and the title below the video. Description remains above the video (per default setting).</li> 23 <li><strong>[mvob video=2 tab="left" description="bottom"]</strong>:<br/>Outputs Video #2 with the title above the video (per default setting) and description below the video. tab setting is ignored because there is only one Video being output.</li> 24 24 </ul> 25 25 </div>
Note: See TracChangeset
for help on using the changeset viewer.