mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-14 19:00:57 +08:00
18 lines
350 B
PHP
18 lines
350 B
PHP
<?php
|
|
|
|
class ViewICSPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
const
|
|
NAME = 'View ICS',
|
|
VERSION = '2.1',
|
|
RELEASE = '2024-02-06',
|
|
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');
|
|
}
|
|
}
|