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