tra('MySpace'), 'documentation' => 'PluginMySpace', 'description' => tra('Display a MySpace Flash mp3 playlist'), 'prefs' => [ 'wikiplugin_myspace' ], 'iconname' => 'music', 'introduced' => 3, 'params' => [ 'page' => [ 'required' => true, 'name' => tra('MySpace Page'), 'description' => tra('MySpace page name.'), 'since' => '3.0', 'default' => '', 'filter' => 'text', ] ] ]; } function wikiplugin_myspace($data, $params) { extract($params, EXTR_SKIP); if (! isset($page)) { return "error page parameter requested"; } $ch = curl_init("http://www.myspace.com/$page"); //$ch = curl_init("http://www.google.com/"); //curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $data = curl_exec($ch); curl_close($ch); if (! $data) { return "pas d'chance"; } $a = stripos($data, ''); $data = substr($data, 0, $a + strlen('')); $data = str_replace("\n", " ", $data); $data = str_replace("\r", " ", $data); return $data; }