clipbucket/upload/plugins/editors_pick/get_ep_video.php

29 lines
504 B
PHP
Raw Normal View History

<?php
/**
* FIle used to display editor
* pick video in HTML format
* that will be passed to JS code
* and then will be inserted into DIV
* using JQuery
*/
include("../../includes/config.inc.php");
if(isset($_POST['vid']))
{
$vid = $_POST['vid'];
$vdetails = get_video_details($vid);
if($vdetails)
{
assign('video',$vdetails);
Template("blocks/editor_pick/video_block.html");
}else{
echo "<em>No Video</em>";
}
}else{
header("location:".BASEURL);
}
?>