mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-06-28 06:46:27 +00:00
23 lines
524 B
PHP
23 lines
524 B
PHP
<?php
|
|
|
|
class ICSViewerPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
const
|
|
NAME = 'ICS Viewer',
|
|
AUTHOR = 'PhieF',
|
|
VERSION = '1.0',
|
|
RELEASE = '2024-09-17',
|
|
CATEGORY = 'Messages',
|
|
DESCRIPTION = 'Display ICS attachment using ical lib, or JSON-LD details, based on viewICS',
|
|
REQUIRED = '2.34.0';
|
|
|
|
public function Init() : void
|
|
{
|
|
// $this->UseLangs(true);
|
|
$this->addJs('message.js');
|
|
$this->addJs('windowsZones.js');
|
|
// Load https://github.com/kewisch/ical.js/releases
|
|
$this->addJs('ical.js');
|
|
}
|
|
}
|