snappymail/plugins/view-ics/index.php
2024-06-29 22:34:42 +02:00

19 lines
385 B
PHP

<?php
class ViewICSPlugin extends \RainLoop\Plugins\AbstractPlugin
{
const
NAME = 'View ICS',
VERSION = '2.2',
RELEASE = '2024-06-29',
CATEGORY = 'Messages',
DESCRIPTION = 'Display ICS attachment or JSON-LD details',
REQUIRED = '2.34.0';
public function Init() : void
{
// $this->UseLangs(true);
$this->addJs('message.js');
$this->addJs('windowsZones.js');
}
}