| Server IP : 85.158.181.41 / Your IP : 216.73.217.12 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/system/classes/accounts/ |
Upload File : |
<?php
/* --------------------------------------------------------------
DeleteGuestAccountsAjaxHandler.inc.php 2018-10-16
Gambio GmbH
http://www.gambio.de
Copyright (c) 2018 Gambio GmbH
Released under the GNU General Public License (Version 2)
[http://www.gnu.org/licenses/gpl-2.0.html]
--------------------------------------------------------------
*/
require_once(DIR_FS_CATALOG . 'gm/classes/JSON.php');
class DeleteGuestAccountsAjaxHandler extends AjaxHandler
{
function get_permission_status($p_customers_id = NULL)
{
return true;
}
function proceed()
{
if($this->get_secure_token() != $this->v_data_array['GET']['token'])
{
return false;
}
$coo_logoff = MainFactory::create_object('LogoffContentControl');
$coo_logoff->delete_unused_guest_accounts();
$this->v_output_buffer = 'true';
// add infobox message, if script is called from backend
if(strpos(gm_get_env_info('SCRIPT_NAME'), DIR_WS_CATALOG . 'admin') !== false)
{
$languageTextManager = MainFactory::create_object('LanguageTextManager', array(), true);
$GLOBALS['messageStack']->add_session($languageTextManager->get_text('guest_accounts_deleted_message',
'admin_info_boxes'), 'success');
}
return true;
}
function get_secure_token()
{
$t_token = LogControl::get_secure_token();
$t_token = md5($t_token);
return $t_token;
}
}