# embedpress/4.4.4/vendor/wpdevelopers/embera/src/Embera/Provider/ItabtechInfosys.php

EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload &amp; Embed PDF documents, version 4.4.4. 57 lines.

- Page: https://pluginprobe.com/plugins/embedpress/4.4.4/code/vendor/wpdevelopers/embera/src/Embera/Provider/ItabtechInfosys.php
- Raw: https://pluginprobe.com/plugins/embedpress/4.4.4/raw/vendor/wpdevelopers/embera/src/Embera/Provider/ItabtechInfosys.php
- Modified: 2025-09-15T07:42:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/embedpress/4.4.4/code/vendor/wpdevelopers/embera/src/Embera/Provider/ItabtechInfosys.php#L10-L20`.

```php
<?php
/**
 * ItabtechInfosys.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;

/**
 * ItabtechInfosys Provider
 *
 * @link https://samay.itabtechinfosys.com
 */
class ItabtechInfosys extends ProviderAdapter implements ProviderInterface
{
    /** inline {@inheritdoc} */
    protected $endpoint = 'https://samay.itabtechinfosys.com/oembed/';

    /** inline {@inheritdoc} */
    protected static $hosts = [
        'samay.itabtechinfosys.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('~samay\.itabtechinfosys\.com/([^/]+)~i', (string) $url));
    }

    /** inline {@inheritdoc} */
    public function normalizeUrl(Url $url)
    {
        $url->convertToHttps();
        $url->removeQueryString();
        $url->removeLastSlash();

        return $url;
    }
}

```
