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); } } ?>