mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-06-27 00:36:44 +03:00
19 lines
385 B
PHP
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');
|
|
}
|
|
}
|