mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-05 06:22:52 +08:00
13 lines
193 B
PHP
13 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
|
||
|
}
|
||
|
}
|