mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 18:19:22 +03:00
Replaced bare references to the-djmaze/snappymail with nextgen-networks/snappymail/ and updated .git URLs to the new organization. Per user request: - README files are excluded. - URLs with a trailing slash (e.g. issues, pull requests, releases) are left pointing to the original repository to preserve historical context. - Bare web URLs now include the requested trailing slash. - Existing nextgen-networks bare URLs were updated to include the trailing slash. Co-authored-by: nextgen-networks <21206978+nextgen-networks@users.noreply.github.com>
22 lines
538 B
PHP
22 lines
538 B
PHP
<?php
|
|
|
|
class CompactComposerPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
const
|
|
NAME = 'Compact Composer',
|
|
AUTHOR = 'Sergey Mosin',
|
|
URL = 'https://github.com/the-djmaze/snappymail/pull/1466',
|
|
VERSION = '1.0.6',
|
|
RELEASE = '2024-08-08',
|
|
REQUIRED = '2.34.0',
|
|
LICENSE = 'AGPL v3',
|
|
DESCRIPTION = 'WYSIWYG editor with a compact toolbar';
|
|
|
|
public function Init(): void
|
|
{
|
|
$this->addCss('css/composer.css');
|
|
$this->addJs('js/squire-raw.js');
|
|
$this->addJs('js/parsel.js');
|
|
$this->addJs('js/CompactComposer.js');
|
|
}
|
|
}
|