This commit is contained in:
the-djmaze 2024-10-08 17:49:21 +02:00
parent 28a8e3c157
commit 6f2f40b983
5 changed files with 138 additions and 20 deletions

View 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');
}
}