-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.php
42 lines (35 loc) · 1.11 KB
/
Plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php namespace Publipresse\TwigExtensions;
use System\Classes\PluginBase;
use Dusterio\LinkPreview\Client as LinkPreview;
class Plugin extends PluginBase
{
public function registerMarkupTags()
{
return [
'filters' => [
'linkpreview' => [$this, 'linkPreview'],
'imagewidth' => [$this, 'imageWidth'],
'imageweight' => [$this, 'imageHeight'],
'imagedimensions' => [$this, 'imageDimensions'],
],
];
}
public function linkPreview($url, $parser = null) {
$client = new LinkPreview($url);
if(!$parser) {
$preview = $client->getPreviews();
} else {
$preview = $client->getPreview($parser)->toArray();
}
return $preview;
}
public function imageWidth($url) {
return !empty($url)? @getimagesize($url)[0] : null;
}
public function imageHeight($url) {
return !empty($url)? @getimagesize($url)[1] : null;
}
public function imageDimensions($url) {
return !empty($url)? @getimagesize($url)[3] : null;
}
}