mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-13 02:55:24 +08:00
14 lines
238 B
PHP
14 lines
238 B
PHP
<?php
|
|
|
|
class ContactGroupExcelPastePlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
const
|
|
NAME = '',
|
|
CATEGORY = 'General',
|
|
DESCRIPTION = '';
|
|
|
|
public function Init() : void
|
|
{
|
|
$this->addJs('js/excel_contact_group.js');
|
|
}
|
|
}
|