-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
39 lines (39 loc) · 1.32 KB
/
index.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
<?php
Kirby::plugin('msenkpiel/iframe', [
'options' => [
'label' => 'iFrame',
'icon' => 'box',
'title' => 'iFrame',
'url' => '',
'breakpoints' => [
0 => 500
]
],
'areas' => [
'msenkpiel.iframe' => function ($kirby) {
return [
'label' => option('msenkpiel.iframe.label'),
'icon' => option('msenkpiel.iframe.icon'),
'disabled' => false,
'menu' => true,
'link' => 'ms-iframe',
'views' => [
[
'pattern' => 'ms-iframe',
'action' => function () use ($kirby) {
return [
'component' => 'msenkpiel.iframe',
'title' => option('msenkpiel.iframe.title'),
'props' => [
'title' => option('msenkpiel.iframe.title'),
'url' => option('msenkpiel.iframe.url'),
'breakpoints' => option('msenkpiel.iframe.breakpoints')
],
];
}
]
]
];
}
]
]);