mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-02 21:12:02 +08:00
12 lines
193 B
PHP
12 lines
193 B
PHP
<?php
|
|
|
|
class ParseExcelListPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function Init()
|
|
{
|
|
$this->addJs('js/parse_excel_list.js'); // add js file
|
|
}
|
|
}
|