Your IP : 216.73.216.240
<?php
/**
* VouchFor.php
*
* @package Embera
* @author Michael Pratt <yo@michael-pratt.com>
* @link http://www.michael-pratt.com/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Embera\Provider;
use Embera\Url;
/**
* VouchFor Provider
*
* @link https://*.vouchfor.com
*/
class VouchFor extends ProviderAdapter implements ProviderInterface
{
/** inline {@inheritdoc} */
protected $endpoint = 'https://embed.vouchfor.com/v1/oembed?format=json';
/** inline {@inheritdoc} */
protected static $hosts = [
'*.vouchfor.com'
];
/** inline {@inheritdoc} */
protected $allowedParams = [ 'maxwidth', 'maxheight' ];
/** inline {@inheritdoc} */
protected $httpsSupport = true;
/** inline {@inheritdoc} */
protected $responsiveSupport = false;
/** inline {@inheritdoc} */
public function validateUrl(Url $url)
{
return (bool) (preg_match('~vouchfor\.com/([^/]+)~i', (string) $url));
}
}