|
@@ 1127-1134 (lines=8) @@
|
| 1124 |
|
// Flash |
| 1125 |
|
if ($handler === 'flash') |
| 1126 |
|
{ |
| 1127 |
|
if ($native) |
| 1128 |
|
{ |
| 1129 |
|
$embed .= "<embed src=\"" . $this->get_link() . "\" pluginspage=\"http://adobe.com/go/getflashplayer\" type=\"$type\" quality=\"high\" width=\"$width\" height=\"$height\" bgcolor=\"$bgcolor\" loop=\"$loop\"></embed>"; |
| 1130 |
|
} |
| 1131 |
|
else |
| 1132 |
|
{ |
| 1133 |
|
$embed .= "<script type='text/javascript'>embed_flash('$bgcolor', '$width', '$height', '" . $this->get_link() . "', '$loop', '$type');</script>"; |
| 1134 |
|
} |
| 1135 |
|
} |
| 1136 |
|
|
| 1137 |
|
// Flash Media Player file types. |
|
@@ 1159-1166 (lines=8) @@
|
| 1156 |
|
$height += 16; |
| 1157 |
|
if ($native) |
| 1158 |
|
{ |
| 1159 |
|
if ($placeholder !== '') |
| 1160 |
|
{ |
| 1161 |
|
$embed .= "<embed type=\"$type\" style=\"cursor:hand; cursor:pointer;\" href=\"" . $this->get_link() . "\" src=\"$placeholder\" width=\"$width\" height=\"$height\" autoplay=\"false\" target=\"myself\" controller=\"false\" loop=\"$loop\" scale=\"aspect\" bgcolor=\"$bgcolor\" pluginspage=\"http://apple.com/quicktime/download/\"></embed>"; |
| 1162 |
|
} |
| 1163 |
|
else |
| 1164 |
|
{ |
| 1165 |
|
$embed .= "<embed type=\"$type\" style=\"cursor:hand; cursor:pointer;\" src=\"" . $this->get_link() . "\" width=\"$width\" height=\"$height\" autoplay=\"false\" target=\"myself\" controller=\"true\" loop=\"$loop\" scale=\"aspect\" bgcolor=\"$bgcolor\" pluginspage=\"http://apple.com/quicktime/download/\"></embed>"; |
| 1166 |
|
} |
| 1167 |
|
} |
| 1168 |
|
else |
| 1169 |
|
{ |