Help with WP plugin

Hello guys, can anyone help me to fix this wordpress plugin?
Thanks in advance

<?php class Twitch { public function getApiUri($type) { $apiUrl = "https://api.twitch.tv/kraken"; $apiCalls = array( "streams" => $apiUrl."/streams/", "search" => $apiUrl."/search/", "channel" => $apiUrl."/channels/", "user" => $apiUrl."/user/", "teams" => $apiUrl."/teams/", "games" => $apiUrl."/games/top", "search" => $APIURL."/search/" ); return $apiCalls[$type]; } public function getFeatured($game) { $s = file_get_contents($this->getApiUri("streams")."?game=".urlencode($game)."&limit=1&offset=0"); $activeStreams = json_decode($s, true); $streams = $activeStreams["streams"]; foreach($streams as $stream) { return $stream["channel"]["name"]; } } public function getGames($amt) { $s = file_get_contents($this->getApiUri("games")."?limit=$amt&offset=0"); $activeGames = json_decode($s, true); $games = $activeGames["top"]; return $games; } public function getStreams($game, $page, $limit, $dopg) { $offset = ($page-1)*$limit; $total = floor($activeStreams["_total"]/$limit); //Pagination $nextPage = $page+1; $paginate = ""; if($page>1) { $prevPage = $page-1; $pageinate .= "< Previous Page"; } $pageinate .= "Next Page >"; //Streams $s = file_get_contents($this->getApiUri("streams")."?game=".urlencode($game)."&limit=$limit&offset=$offset"); $activeStreams = json_decode($s, true); $streams = $activeStreams["streams"]; $final = ""; foreach($streams as $stream) { $imgsm = $stream["preview"]["small"]; $imgmed = $stream["preview"]["medium"]; $viewers = $stream["viewers"]; $channel = $stream["channel"]; $status = substr($channel["status"],0,40)."[...]"; $twitchName = $channel["name"]; $twitchDisplay = $channel["display_name"]; $twitchLink = $channel["url"]; $final .= "$twitchDisplay's Stream$viewers viewers"; } if($dopg) { $final .="
".$pageinate."
"; } return $final; } public function getUserStreams2($channels, $showOffline) { //Pull Stream Data $stream = file_get_contents($this->getApiUri("streams")."?channel=".$channels); $streamData = json_decode($stream, true); $online = array(); $channelArray = explode(",", $channels); if($streamData["_total"] > 0) { foreach($streamData["streams"] as $key=>$value){ $name = strtolower($value["channel"]["name"]); //Set Channel to Online $online[$name]["stream"] = $value; } } foreach ($channelArray as $channel) { $oc = $online[$channel]; if($oc) { $imgsm = $oc["stream"]["preview"]["small"]; $imgmed = $oc["stream"]["preview"]["medium"]; $viewers = $oc["stream"]["viewers"]; $ch = $oc["stream"]["channel"]; $status = substr($ch["status"],0,40)."[...]"; $twitchName = $ch["name"]; $twitchDisplay = $ch["display_name"]; $twitchLink = $ch["url"]; //$final.=json_encode($oc); $final .= "$twitchDisplay's Stream $viewers viewers"; } else { if($showOffline=="true") { $final .= "$channel's Stream Offline"; } } } //return json_encode($channelArray); return $final; } public function getUserStreams($channels, $showOffline) { //Streams $final = ""; $offline = array(); foreach($channels as $channel) { $stream = file_get_contents($this->getApiUri("streams").$channel); $streamData = json_decode($stream, true); if(is_null($streamData["stream"])) { array_push($offline, $channel); continue; } else { $imgsm = $streamData["stream"]["preview"]["small"]; $imgmed = $streamData["stream"]["preview"]["medium"]; $viewers = $streamData["stream"]["viewers"]; $ch = $streamData["stream"]["channel"]; $status = substr($ch["status"],0,40)."[...]"; $twitchName = $ch["name"]; $twitchDisplay = $ch["display_name"]; $twitchLink = $ch["url"]; $final .= "$twitchDisplay's Stream $viewers viewers"; } } if($showOffline=="true") { foreach($offline as $channel) { $cdata = file_get_contents($this->getApiUri("channel").$channel); $ch = json_decode($cdata, true); $status = substr($ch["status"],0,40)."[...]"; $twitchName = $ch["name"]; $twitchDisplay = $ch["display_name"]; $twitchLink = $ch["url"]; $imgmed = $ch["logo"]; $followers = $ch["followers"]; $final .= "
$twitchDisplay's Stream $followers followers
"; } } return $final; } public function getChannel($channel) { $c = file_get_contents($this->getApiUri("channel").$channel); $channelData = json_decode($c, true); return $channelData; } public function getFollowers($channel) { $f = file_get_contents($this->getApiUri("channel").$channel."/follows"); $followData = json_decode($f, true); return $followData["_total"]; } public function isLive($channel) { $s = file_get_contents($this->getApiUri("streams").$channel); $streamData = json_decode($s, true); if(is_null($streamData["stream"])) { return false; } else { return true; } return true; } public function getChannelStream($channel) { $s = file_get_contents($this->getApiUri("streams").$channel); $streamData = json_decode($s, true); return $streamData; } } ?>

This exact same plugin is discussed here along with multiple ways to fix it: Client ID Update - Updating old plugin - Help

Thanks <3

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.