: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
namespace EmbedPress\Providers;
use Embera\Provider\ProviderAdapter;
use Embera\Provider\ProviderInterface;
(defined('ABSPATH') && defined('EMBEDPRESS_IS_LOADED')) or die("No direct script access allowed.");
* Entity responsible to support NRKRadio embeds.
* @subpackage EmbedPress/Providers
* @author EmbedPress <help@embedpress.com>
* @copyright Copyright (C) 2023 WPDeveloper. All rights reserved.
* @license GPLv3 or later
class NRKRadio extends ProviderAdapter implements ProviderInterface
/** inline {@inheritdoc} */
protected static $hosts = ["radio.nrk.no"];
* Method that verifies if the embed URL belongs to NRKRadio.
public function validateUrl(Url $url)
return (bool) preg_match(
"/^https?:\/\/radio\.nrk\.no/i",
public function validateNRKRadio($url)
return (bool) preg_match(
"/^https?:\/\/radio\.nrk\.no/i",
* This method fakes an Oembed response.
public function fakeResponse()
$src_url = urldecode($this->url);
// Check if the url is already converted to the embed format
if ($this->validateNRKRadio($src_url)) {
$width = isset($this->config['maxwidth']) ? $this->config['maxwidth'] : 600;
$height = isset($this->config['maxheight']) ? $this->config['maxheight'] : 350;
'provider_name' => 'NRK Radio',
'provider_url' => 'https://radio.nrk.no',
'title' => 'Unknown title',
'html' => '<iframe title="" width="' . esc_attr($width) . '" height="' . esc_attr($height) . '" src="' . esc_url($iframeSrc) . '" ></iframe>',
/** inline @inheritDoc */
public function modifyResponse(array $response = [])
return $this->fakeResponse();