mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-13 11:13:07 +08:00
57 lines
1.3 KiB
PHP
57 lines
1.3 KiB
PHP
<?php
|
|
|
|
class CustomSettingsTabPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function Init()
|
|
{
|
|
$this->UseLangs(true); // start use langs folder
|
|
|
|
$this->addJs('js/CustomUserSettings.js'); // add js file
|
|
|
|
$this->addAjaxHook('AjaxGetCustomUserData', 'AjaxGetCustomUserData');
|
|
$this->addAjaxHook('AjaxSaveCustomUserData', 'AjaxSaveCustomUserData');
|
|
|
|
$this->addTemplate('templates/PluginCustomSettingsTab.html');
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function AjaxGetCustomUserData()
|
|
{
|
|
$aSettings = $this->getUserSettings();
|
|
|
|
$sUserFacebook = isset($aSettings['UserFacebook']) ? $aSettings['UserFacebook'] : '';
|
|
$sUserSkype = isset($aSettings['UserSkype']) ? $aSettings['UserSkype'] : '';
|
|
|
|
// or get user's data from your custom storage ( DB / LDAP / ... ).
|
|
|
|
\sleep(1);
|
|
return $this->ajaxResponse(__FUNCTION__, array(
|
|
'UserFacebook' => $sUserFacebook,
|
|
'UserSkype' => $sUserSkype
|
|
));
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function AjaxSaveCustomUserData()
|
|
{
|
|
$sUserFacebook = $this->ajaxParam('UserFacebook');
|
|
$sUserSkype = $this->ajaxParam('UserSkype');
|
|
|
|
// or put user's data to your custom storage ( DB / LDAP / ... ).
|
|
|
|
\sleep(1);
|
|
return $this->ajaxResponse(__FUNCTION__, $this->saveUserSettings(array(
|
|
'UserFacebook' => $sUserFacebook,
|
|
'UserSkype' => $sUserSkype
|
|
)));
|
|
}
|
|
|
|
}
|
|
|