aboutsummaryrefslogtreecommitdiff
path: root/views/default/forms/videolist/labels
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/forms/videolist/labels')
-rw-r--r--views/default/forms/videolist/labels/googlevideos.php27
-rw-r--r--views/default/forms/videolist/labels/metacafe.php27
-rw-r--r--views/default/forms/videolist/labels/vimeo.php27
-rw-r--r--views/default/forms/videolist/labels/youtube.php27
4 files changed, 0 insertions, 108 deletions
diff --git a/views/default/forms/videolist/labels/googlevideos.php b/views/default/forms/videolist/labels/googlevideos.php
deleted file mode 100644
index 9ce2d607c..000000000
--- a/views/default/forms/videolist/labels/googlevideos.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-/**
- * Elgg User Profile Video Plugin
- * This plugin allows users to browse youtube videos
- *
- * @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Prateek Choudhary <synapticfield@gmail.com>
- * @copyright Prateek Choudhary
- */
-
-$body = '<p class="margin_none"><label>'.elgg_echo("videolist:title_search_tube").'</label></p>';
-$body .= "<div class='search_videos clearfloat'>";
-$body .= "<div style='float:left;'>";
-$body .= "<a href=\"http://video.google.com\"><img src='".$vars['url']."mod/videolist/graphics/logo_videos.png' height='30'/></a>";
-$body .= "</div>";
-$body .= "<div style='float:left;'>";
-$body .= "<input type=\"text\" name=\"title_search\" value=\"\" id=\"title_search\" size=\"30\"/>";
-if($error['no-search'] == 0) {
- $body .= '<div class="videolist_error">'.$error_msg['no-search'].'</div>';
-}
-$body .= "</div>";
-$body .= elgg_view('input/submit', array('internalname' => 'submit', 'value' => elgg_echo('videolist:searchTubeVideos:vimeo')));
-$body .= "</div>";
-$body .= '<div id="searchcontrol">Loading...</div>';
-print $body; \ No newline at end of file
diff --git a/views/default/forms/videolist/labels/metacafe.php b/views/default/forms/videolist/labels/metacafe.php
deleted file mode 100644
index 0642153f4..000000000
--- a/views/default/forms/videolist/labels/metacafe.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-/**
- * Elgg Video Plugin
- * This plugin allows users to create a library of youtube/vimeo/metacafe videos
- * @file - load metacafe label
- * @package Elgg
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Prateek Choudhary <synapticfield@gmail.com>
- * @copyright Prateek Choudhary
- */
-
-$body = '<p class="margin_none"><label>'.elgg_echo("videolist:title_search_tube").'</label></p>';
-$body .= "<div class='search_videos clearfloat'>";
-$body .= "<div style='float:left;'>";
-$body .= "<a href=\"http://www.metacafe.com\"><img src='".$vars['url']."mod/videolist/graphics/metacafe.jpg' height='30'/></a>";
-$body .= "</div>";
-$body .= "<div style='float:left;'>";
-$body .= "<input type=\"text\" name=\"title_search\" value=\"\" id=\"title_search\" size=\"30\"/>";
-if($error['no-search'] == 0) {
- $body .= '<div class="videolist_error">'.$error_msg['no-search'].'</div>';
-}
-$body .= "</div>";
-$body .= elgg_view('input/submit', array('internalname' => 'submit', 'value' => elgg_echo('videolist:searchTubeVideos:metacafe')));
-$body .= "</div>";
-
-print $body; \ No newline at end of file
diff --git a/views/default/forms/videolist/labels/vimeo.php b/views/default/forms/videolist/labels/vimeo.php
deleted file mode 100644
index 24a49a1ee..000000000
--- a/views/default/forms/videolist/labels/vimeo.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-/**
- * Elgg Video Plugin
- * This plugin allows users to create a library of youtube/vimeo/metacafe videos
- * @file - load vimeo label
- * @package Elgg
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Prateek Choudhary <synapticfield@gmail.com>
- * @copyright Prateek Choudhary
- */
-
-$body = '<p class="margin_none"><label>'.elgg_echo("videolist:title_search_tube").'</label></p>';
-$body .= "<div class='search_videos clearfloat'>";
-$body .= "<div style='float:left;'>";
-$body .= "<a href=\"http://www.vimeo.com\"><img src='".$vars['url']."mod/videolist/graphics/vimeo_logo.gif' height='30'/></a>";
-$body .= "</div>";
-$body .= "<div style='float:left;'>";
-$body .= "<input type=\"text\" name=\"title_search\" value=\"\" id=\"title_search\" size=\"30\"/>";
-if ($error['no-search'] == 0) {
- $body .= '<div class="videolist_error">'.$error_msg['no-search'].'</div>';
-}
-$body .= "</div>";
-$body .= elgg_view('input/submit', array('internalname' => 'submit', 'value' => elgg_echo('videolist:searchTubeVideos:vimeo')));
-$body .= "</div>";
-
-print $body; \ No newline at end of file
diff --git a/views/default/forms/videolist/labels/youtube.php b/views/default/forms/videolist/labels/youtube.php
deleted file mode 100644
index 4c824f6f3..000000000
--- a/views/default/forms/videolist/labels/youtube.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-/**
- * Elgg Video Plugin
- * This plugin allows users to create a library of youtube/vimeo/metacafe videos
- * @file - load youtube label
- * @package Elgg
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Prateek Choudhary <synapticfield@gmail.com>
- * @copyright Prateek Choudhary
- */
-
-$body = '<p class="margin_none"><label>'.elgg_echo("videolist:title_search_tube").'</label></p>';
-$body .= "<div class='search_videos clearfloat'>";
-$body .= "<div style='float:left;'>";
-$body .= "<a href=\"http://www.youtube.com\"><img src='".$vars['url']."mod/videolist/graphics/badge3.gif' height='30'/></a>";
-$body .= "</div>";
-$body .= "<div style='float:left;'>";
-$body .= "<input type=\"text\" name=\"title_search\" value=\"\" id=\"title_search\" size=\"30\"/>";
-if($error['no-search'] == 0) {
- $body .= '<div class="videolist_error">'.$error_msg['no-search'].'</div>';
-}
-$body .= "</div>";
-$body .= elgg_view('input/submit', array('internalname' => 'submit', 'value' => elgg_echo('videolist:searchTubeVideos')));
-$body .= "</div>";
-
-print $body; \ No newline at end of file