snappymail/plugins/view-ics/index.php

20 lines
377 B
PHP
Raw Normal View History

2023-08-28 19:34:23 +08:00
<?php
class ViewICSPlugin extends \RainLoop\Plugins\AbstractPlugin
{
const
NAME = 'View ICS',
2024-06-30 04:34:42 +08:00
VERSION = '2.2',
RELEASE = '2024-06-29',
2023-08-28 19:34:23 +08:00
CATEGORY = 'Messages',
2024-02-07 02:52:00 +08:00
DESCRIPTION = 'Display ICS attachment or JSON-LD details',
REQUIRED = '2.34.0';
2023-08-28 19:34:23 +08:00
public function Init() : void
{
// $this->UseLangs(true);
$this->addJs('ical.js');
2023-08-28 19:34:23 +08:00
$this->addJs('message.js');
}
}