PluginProbe
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents / 3.3.5
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents v3.3.5
4.6.5 4.6.4 4.6.3 4.6.2 4.6.1 4.6.0 4.5.6 4.5.5 4.5.4 4.5.3 4.5.2 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 All 189 releases
embedpress / vendor / wpdevelopers / embera / src / Embera / Provider / GeographDE.php
GeographDE.php
32 lines 709 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * GeographDE.php
4 *
5 * @package Embera
6 * @author Michael Pratt <yo@michael-pratt.com>
7 * @link http://www.michael-pratt.com/
8 *
9 * For the full copyright and license information, please view the LICENSE
10 * file that was distributed with this source code.
11 */
12
13 namespace Embera\Provider;
14
15 /**
16 * GeographDE Provider
17 * @link https://geo-en.hlipp.de
18 */
19 class GeographDE extends GeographUk
20 {
21 /** inline {@inheritdoc} */
22 protected $endpoint = 'https://geo.hlipp.de/restapi.php/api/oembed?format=json';
23
24 /** inline {@inheritdoc} */
25 protected static $hosts = [
26 '*.hlipp.de', 'germany.geograph.org'
27 ];
28
29 /** inline {@inheritdoc} */
30 protected $httpsSupport = true;
31 }
32