mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-29 11:01:34 +08:00
19 lines
339 B
PHP
19 lines
339 B
PHP
|
<?php
|
||
|
|
||
|
class ViewICSPlugin extends \RainLoop\Plugins\AbstractPlugin
|
||
|
{
|
||
|
const
|
||
|
NAME = 'View ICS',
|
||
|
VERSION = '2.0',
|
||
|
RELEASE = '2023-08-28',
|
||
|
CATEGORY = 'Messages',
|
||
|
DESCRIPTION = 'Display ICS attachment details',
|
||
|
REQUIRED = '2.27.0';
|
||
|
|
||
|
public function Init() : void
|
||
|
{
|
||
|
// $this->UseLangs(true);
|
||
|
$this->addJs('message.js');
|
||
|
}
|
||
|
}
|