mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 14:07:04 +03:00
compact-composer plugin v1.0.0
This commit is contained in:
parent
47793ce1cb
commit
57003ab4b8
12 changed files with 5829 additions and 0 deletions
22
plugins/compact-composer/index.php
Normal file
22
plugins/compact-composer/index.php
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
class CompactComposerPlugin extends \RainLoop\Plugins\AbstractPlugin
|
||||
{
|
||||
const
|
||||
NAME = 'Compact Composer',
|
||||
AUTHOR = 'Sergey Mosin',
|
||||
VERSION = '1.0.0',
|
||||
RELEASE = '2024-02-23',
|
||||
REQUIRED = '2.34.0',
|
||||
LICENSE = 'AGPL v3',
|
||||
DESCRIPTION = 'WYSIWYG editor with a compact toolbar';
|
||||
|
||||
public function Init(): void
|
||||
{
|
||||
$this->addTemplate('templates/PopupsCompose.html');
|
||||
$this->addCss('css/composer.css');
|
||||
$this->addJs('js/squire-raw.js');
|
||||
$this->addJs('js/parsel.js');
|
||||
$this->addJs('js/CompactComposer.js');
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue