block_vedio.php
1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: block_vedio.php 25525 2011-11-14 04:39:11Z zhangguosheng $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
require_once libfile('commonblock_html', 'class/block/html');
class block_vedio extends commonblock_html {
function block_vedio() {}
function name() {
return lang('blockclass', 'blockclass_html_script_vedio');
}
function getsetting() {
global $_G;
$settings = array(
'url' => array(
'title' => 'vedio_url',
'type' => 'text',
'default' => 'http://'
),
'width' => array(
'title' => 'vedio_width',
'type' => 'text',
'default' => ''
),
'height' => array(
'title' => 'vedio_height',
'type' => 'text',
'default' => ''
),
);
return $settings;
}
function getdata($style, $parameter) {
require_once libfile('function/discuzcode');
$parameter['width'] = !empty($parameter['width']) ? intval($parameter['width']) : 'auto';
$parameter['height'] = !empty($parameter['height']) ? intval($parameter['height']) : 'auto';
$parameter['url'] = addslashes($parameter['url']);
$return = parseflv($parameter['url'], $parameter['width'], $parameter['height']);
if($return == false) {
$return = $parameter['url'];
}
return array('html' => $return, 'data' => null);
}
}
?>