mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 22:17:03 +03:00
Prepare for #1793
This commit is contained in:
parent
28a8e3c157
commit
6f2f40b983
5 changed files with 138 additions and 20 deletions
23
plugins/send-save-in/index.php
Normal file
23
plugins/send-save-in/index.php
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
class SendSaveInPlugin extends \RainLoop\Plugins\AbstractPlugin
|
||||
{
|
||||
// use \MailSo\Log\Inherit;
|
||||
|
||||
const
|
||||
NAME = 'Send Save In',
|
||||
AUTHOR = 'SnappyMail',
|
||||
URL = 'https://snappymail.eu/',
|
||||
VERSION = '0.0',
|
||||
RELEASE = '2024-10-08',
|
||||
REQUIRED = '2.38.1',
|
||||
CATEGORY = 'General',
|
||||
LICENSE = 'MIT',
|
||||
DESCRIPTION = 'When composing a message, select the save folder';
|
||||
|
||||
public function Init() : void
|
||||
{
|
||||
// $this->UseLangs(true); // start use langs folder
|
||||
$this->addJs('savein.js');
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue