Changeset 394728
- Timestamp:
- 06/08/2011 07:34:07 PM (15 years ago)
- Location:
- wiredrive-player/trunk
- Files:
-
- 4 edited
-
README.TXT (modified) (1 diff)
-
player.php (modified) (1 diff)
-
templates/thumb_loop.php (modified) (1 diff)
-
wiredrive.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wiredrive-player/trunk/README.TXT
r376037 r394728 4 4 Tags: wiredrive, mrss, video, html5 5 5 Requires at least: 3.0.0 6 Tested up to: 3. 1.17 Stable tag: 2.1. 16 Tested up to: 3.2 7 Stable tag: 2.1.2 8 8 9 9 This plug-in allows you to embed Wiredrive video reels and image galleries into your WordPress-powered website. -
wiredrive-player/trunk/player.php
r376037 r394728 5 5 Description: This plug-in allows you to embed Wiredrive video reels and image galleries into your WordPress-powered website. 6 6 Author: Wiredrive, dbaker, Daniel Bondurant 7 Version: 2.1. 17 Version: 2.1.2 8 8 Author URI: http://www.wiredrive.com/ 9 9 */ -
wiredrive-player/trunk/templates/thumb_loop.php
r375765 r394728 34 34 > 35 35 36 <?php37 // var_dump(); die;38 ?>39 40 36 <div class="hover-credits"> 41 37 <span class="wd-title"><?php echo htmlentities($item['title']) ?></span><br /> 42 <span class="wd-credit"><?php echo array_shift($item['credits']) ?></span> 38 <span class="wd-credit"> 39 <?php 40 if( !empty($item['credits']) ) { 41 echo array_shift($item['credits']); 42 } 43 ?> 44 </span> 45 43 46 </div> 44 47 </a> -
wiredrive-player/trunk/wiredrive.php
r373053 r394728 131 131 */ 132 132 extract(shortcode_atts(array( 133 'height' => $options[' wdp_height'] . 'px',134 'width' => $options['w dp_width'] . 'px',133 'height' => $options['height'] . 'px', 134 'width' => $options['width'] . 'px', 135 135 'hidethumbs' => 'off', 136 136 'autoslideshow' => 'off', … … 511 511 private function renderPlayerStart($width, $height, $hidethumbs, $disablethumbs, $autoslideshow, $theme) 512 512 { 513 514 513 $this->template->setTpl('player_start.php') 515 514 ->set('height', $height)
Note: See TracChangeset
for help on using the changeset viewer.