# embedpress/3.6.4/vendor/wpdevelopers/embera/src/Embera/Provider/ShowTheWay.php

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

- Page: https://pluginprobe.com/plugins/embedpress/3.6.4/code/vendor/wpdevelopers/embera/src/Embera/Provider/ShowTheWay.php
- Raw: https://pluginprobe.com/plugins/embedpress/3.6.4/raw/vendor/wpdevelopers/embera/src/Embera/Provider/ShowTheWay.php
- Modified: 2021-04-06T09:18:32+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/3.6.4/code/vendor/wpdevelopers/embera/src/Embera/Provider/ShowTheWay.php#L10-L20`.

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

/**
 * ShowTheWay Provider
 * @link https://showtheway.io
 */
class ShowTheWay extends ProviderAdapter implements ProviderInterface
{
    /** inline {@inheritdoc} */
    protected $endpoint = 'https://showtheway.io/oembed?format=json';

    /** inline {@inheritdoc} */
    protected static $hosts = [
        'showtheway.io'
    ];

    /** inline {@inheritdoc} */
    protected $httpsSupport = true;

    /** inline {@inheritdoc} */
    protected $responsiveSupport = true;

    /** inline {@inheritdoc} */
    public function validateUrl(Url $url)
    {
        return (bool) (preg_match('~showtheway\.io/to/([^/]+)~i', (string) $url));
    }

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

        return $url;
    }

}

```
