source: trunk/www.guidonia.net/wp/wp-content/plugins/tubepress/classes/org/tubepress/embedded/impl/JwFlvEmbeddedPlayerService.class.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 2.4 KB
Line 
1<?php
2/**
3 * Copyright 2006, 2007, 2008, 2009 Eric D. Hough (http://ehough.com)
4 *
5 * This file is part of TubePress (http://tubepress.org)
6 *
7 * TubePress is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * TubePress is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with TubePress. If not, see <http://www.gnu.org/licenses/>.
19 *
20 */
21
22function_exists('tubepress_load_classes')
23 || require(dirname(__FILE__) . '/../../../../tubepress_classloader.php');
24tubepress_load_classes(array('net_php_pear_HTML_Template_IT',
25 'org_tubepress_embedded_impl_AbstractEmbeddedPlayerService',
26 'net_php_pear_Net_URL2'));
27
28/**
29 * Represents an HTML-embeddable JW FLV Player
30 *
31 */
32class org_tubepress_embedded_impl_JwFlvEmbeddedPlayerService extends org_tubepress_embedded_impl_AbstractEmbeddedPlayerService
33{
34 /**
35 * Spits back the text for this embedded player
36 *
37 * @return string The text for this embedded player
38 */
39 public function toString($videoId)
40 {
41 global $tubepress_base_url;
42 $tpl = new net_php_pear_HTML_Template_IT(dirname(__FILE__) . "/../../../../../ui/embedded/longtail/html_templates");
43 if (!$tpl->loadTemplatefile("object.tpl.html", true, true)) {
44 throw new Exception("Couldn't load embedded template");
45 }
46 $tpom = $this->getOptionsManager();
47
48 $link = new net_php_pear_Net_URL2(sprintf("http://www.youtube.com/watch?v=%s", $videoId));
49
50 $link = $link->getURL(true);
51
52 $tpl->setVariable("TUBEPRESS_BASE", $tubepress_base_url);
53 $tpl->setVariable("YOUTUBE_LINK", $link);
54 $tpl->setVariable('AUTOSTART', $tpom->get(org_tubepress_options_category_Embedded::AUTOPLAY) ? 'true' : 'false');
55 $tpl->setVariable('WIDTH', $tpom->get(org_tubepress_options_category_Embedded::EMBEDDED_WIDTH));
56 $tpl->setVariable('HEIGHT', $tpom->get(org_tubepress_options_category_Embedded::EMBEDDED_HEIGHT));
57
58 return $tpl->get();
59 }
60}
Note: See TracBrowser for help on using the repository browser.