mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-05 06:22:52 +08:00
29 lines
554 B
PHP
29 lines
554 B
PHP
<?php
|
|
|
|
class CustomAdminSettingsTabPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function Init()
|
|
{
|
|
$this->UseLangs(true); // start use langs folder
|
|
|
|
$this->addJs('js/CustomAdminSettings.js', true); // add js file
|
|
|
|
$this->addAjaxHook('AjaxAdminGetData', 'AjaxAdminGetData');
|
|
|
|
$this->addTemplate('templates/PluginCustomAdminSettingnTab.html', true);
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function AjaxAdminGetData()
|
|
{
|
|
return $this->ajaxResponse(__FUNCTION__, array(
|
|
'PHP' => phpversion()
|
|
));
|
|
}
|
|
}
|
|
|