Blame view

generator/pages/mods/extra_swfplayer.inc.php 678 Bytes
4253cbec   root   first commit
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
  <?php
  
  $site_url = $grab_parameters['xs_initurl'];
  
  if(!function_exists('xml_extra_video_step1'))
  {
  function xml_extra_video_step1(&$ent, $cn, &$imlist)
  {
     	preg_match_all('#(?:<param name="movie"|new SWFObject)[^>]*?(/player\.swf).*?file=([^&"\'><]*\.flv)#is', 
     		$cn, $aima, PREG_SET_ORDER);
     	foreach($aima as $im)
     	{
     		if(!$imlist[$im[2]]++)
     		$ent['v'][] = array($im[1],$im[2]);
     	}
  }
  
  function xml_extra_video_step2(&$varr, $params)
  {
  	global $site_url;
  
    	if(preg_match('#^/player#',$varr['playerloc']))
    	{
    		$cl = $varr['vid'];
    		if(!strstr($cl, '://'))$cl = $site_url . $cl;
    		$varr['contentloc'] = $cl ;
    		$varr['playerloc'] = '';
  	}
  }
  
  
  }