Your IP : 18.222.127.152


Current Path : /home/bitrix/ext_www/easy-comfort.com.ua/bitrix/components/bitrix/mail.client.home/
Upload File :
Current File : /home/bitrix/ext_www/easy-comfort.com.ua/bitrix/components/bitrix/mail.client.home/class.php

<?php

use Bitrix\Main\Localization\Loc;

if (!defined('B_PROLOG_INCLUDED') || B_PROLOG_INCLUDED !== true) die();

class CMailClientHomeComponent extends CBitrixComponent
{

	public function executeComponent()
	{
		global $USER, $APPLICATION;

		$APPLICATION->setTitle(Loc::getMessage('MAIL_CLIENT_HOME_TITLE'));

		if (!is_object($USER) || !$USER->isAuthorized())
		{
			$APPLICATION->authForm('');
			return;
		}

		\Bitrix\Main\Loader::includeModule('mail');

		$mailboxes = \Bitrix\Mail\MailboxTable::getUserMailboxes();
		if (!empty($mailboxes))
		{
			$previousSeenMailboxId = \CUserOptions::getOption('mail', 'previous_seen_mailbox_id', null);

			$mailbox = $previousSeenMailboxId > 0 && !empty($mailboxes[$previousSeenMailboxId])
				? $mailboxes[$previousSeenMailboxId]
				: reset($mailboxes);
		}

		if (!empty($mailbox))
		{
			localRedirect(
				\CComponentEngine::makePathFromTemplate(
					$this->arParams['PATH_TO_MAIL_MSG_LIST'],
					array('id' => $mailbox['ID'])
				),
				true
			);
		}
		else
		{
			localRedirect(
				\CComponentEngine::makePathFromTemplate(
					$this->arParams['PATH_TO_MAIL_CONFIG'],
					array('act' => '')
				),
				true
			);
		}

		$this->includeComponentTemplate();
	}

}