clipbucket/upload/actions/embed_form_verifier.php
Arslan Hassan c85412a330 Added : File based language system, now language will be loaded from file instead of database, each time
Added : Remote Play option
Added : Youtube Url Import to frontend
Removed : Background command in upload.php, now all things will be process in 1 place
Update : Upload form
Fixed : Multiple forms at once..
Update : Improved emebd form
Added : Functions for curl check and snatch file
Updated : common.php to load language from file
Added : Refresh lang file option in admin area
Updated: get_form in file_uploader.php
2010-12-29 09:41:11 +00:00

53 lines
No EOL
1.2 KiB
PHP

<?php
/**
* This file is used to verify embed form
* @author : Arslan Hassan
*/
include("../includes/config.inc.php");
$mode = $_POST['mode'];
switch($mode)
{
case "remote_play":
{
$duration = $_POST['duration'];
$thumb_file = $_POST['thumb_file'];
$url = $_POST['remote_play_url'];
$ext = strtolower(getExt($thumb_file));
validate_duration($duration);
check_remote_play_link($url);
if(empty($thumb_file) || ( $ext != 'jpg' && $ext != 'png' && $ext !='gif'))
e(lang("pelase_select_img_file_for_vdo"));
if(count($eh->error_list>0))
$array['err'] = $eh->error_list[0];
echo json_encode($array);
}
break;
case "embed":
default:
{
$embed_code = $_POST['embed_code'];
$duration = $_POST['duration'];
$thumb_file = $_POST['thumb_file'];
$ext = strtolower(getExt($thumb_file));
validate_embed_code($embed_code);
validate_duration($duration);
if(empty($thumb_file) || ( $ext != 'jpg' && $ext != 'png' && $ext !='gif'))
e(lang("pelase_select_img_file_for_vdo"));
if(count($eh->error_list>0))
$array['err'] = $eh->error_list[0];
echo json_encode($array);
}
}
?>