-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextend.php
More file actions
15 lines (14 loc) · 912 Bytes
/
extend.php
File metadata and controls
15 lines (14 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
use Flarum\Extend;
use s9e\TextFormatter\Configurator;
return (new Extend\Formatter)
->configure(function (Configurator $config){
$config->BBCodes->addCustom(
'[covid-dash]',
'<iframe name=covid-dash frameborder="0" scrolling="auto" width="100%" height=600 οnlοad="document.all[\'covid-dash\'].style.width=myframe.document.body.scrollWidth" src="https://www.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6"></iframe>'
);
$config->BBCodes->addCustom(
'[covid-mobile]',
'<iframe name=covid-mobile frameborder="0" scrolling="auto" width="100%" height=600 οnlοad="document.all[\'covid-mobile\'].style.width=myframe.document.body.scrollWidth" src="https://www.arcgis.com/apps/opsdashboard/index.html#/85320e2ea5424dfaaa75ae62e5c06e61"></iframe>'
);
});