diff options
author | Brett Profitt <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-26 21:07:39 +0000 |
---|---|---|
committer | Brett Profitt <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-26 21:07:39 +0000 |
commit | a8aa4bceed8e7ad0c5af2646a83d6a2da2e0b23a (patch) | |
tree | bb3e25e40d98a445182632273495357bb28177e4 /world.php | |
parent | ed69694b30a9ab913349a5d17ca0bde94056bac1 (diff) | |
download | elgg-a8aa4bceed8e7ad0c5af2646a83d6a2da2e0b23a.tar.gz elgg-a8aa4bceed8e7ad0c5af2646a83d6a2da2e0b23a.tar.bz2 |
Changed line endings to unix-style for videolist plugin.
Diffstat (limited to 'world.php')
-rw-r--r-- | world.php | 76 |
1 files changed, 38 insertions, 38 deletions
@@ -1,38 +1,38 @@ -<?php
- /**
- * Elgg Video Plugin
- * This plugin allows users to create a library of youtube/vimeo/metacafe videos
- *
- * @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
- */
-// Render the video upload page
- // Load Elgg engine
- require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
- gatekeeper();
-
- // Get the current page's owner
- $page_owner = page_owner_entity();
- if ($page_owner === false || is_null($page_owner)) {
- $page_owner = $_SESSION['user'];
- set_page_owner($_SESSION['guid']);
- }
-
- $title = sprintf(elgg_echo("videolist:search"));
-
- // Get objects
- $area2 = elgg_view_title($title);
- set_input('show_viewtype', 'all');
- $area2 .= list_entities("object","videolist", 0, 10, $fullview=true, $viewtypetoggle=false,$pagination=true);
-
- //$area2 .= elgg_view("staticvideo/index");
-
- set_context('videolist');
- $body = elgg_view_layout('one_column_with_sidebar',$area1. $area2);
-
- // Finally draw the page
- page_draw($title, $body);
-
-?>
+<?php + /** + * Elgg Video Plugin + * This plugin allows users to create a library of youtube/vimeo/metacafe videos + * + * @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 + */ +// Render the video upload page + // Load Elgg engine + require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); + gatekeeper(); + + // Get the current page's owner + $page_owner = page_owner_entity(); + if ($page_owner === false || is_null($page_owner)) { + $page_owner = $_SESSION['user']; + set_page_owner($_SESSION['guid']); + } + + $title = sprintf(elgg_echo("videolist:search")); + + // Get objects + $area2 = elgg_view_title($title); + set_input('show_viewtype', 'all'); + $area2 .= list_entities("object","videolist", 0, 10, $fullview=true, $viewtypetoggle=false,$pagination=true); + + //$area2 .= elgg_view("staticvideo/index"); + + set_context('videolist'); + $body = elgg_view_layout('one_column_with_sidebar',$area1. $area2); + + // Finally draw the page + page_draw($title, $body); + +?> |