| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 /* 3 * @file 4 * Theme file to handle quicktime output. 5 * 6 * Variables passed. 7 * $video is the video object. 8 * $node is the node object. 9 * 10 * 11 * <script type="text/javascript" src="/sites/all/libraries/quicktime/AC_QuickTime.js"></script> 12 * <script type="text/javascript"> 13 * QT_WriteOBJECT('<?php print $video->files->{$video->player}->url; ?>' , '<?php print $video->width; ?>', '<?php print $video->height; ?>' , ''); 14 * </script> 15 */ 16 ?> 17 <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=7,3,0,0" width="<?php print $video->player_width; ?>" height="<?php print $video->player_height; ?>"> 18 <param name="src" value="<?php print $video->files->{$video->player}->url; ?>" /> 19 <param name="controller" value="true" /> 20 <param name="scale" value="tofit" /> 21 <param name="autoplay" value="<?php print $video->autoplay ? 'true' : 'false'; ?>" /> 22 <param name="pluginurl" value="http://www.apple.com/quicktime/download/" /> 23 <embed src="<?php print $video->files->{$video->player}->url; ?>" 24 type="video/quicktime" 25 pluginspage="http://www.apple.com/quicktime/download/" 26 width="<?php print $video->player_width; ?>" 27 height="<?php print $video->player_height; ?>" 28 autostart="<?php print $video->autoplay ? 'true' : 'false'; ?>" 29 controller="true" > 30 </embed> 31 </object>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |