1
0
Fork 0
mirror of synced 2025-04-04 14:23:33 +03:00

ref #91040 Обновлена вёрстка, добавлен метод регистрации событий

This commit is contained in:
Ivan Chaplygin 2023-07-12 17:32:47 +03:00
parent e828f6821f
commit cae1f14bab
3 changed files with 50 additions and 4 deletions

View file

@ -115,10 +115,10 @@ use Bitrix\Main\Localization\Loc;
?>
</div>
</div>
<div class="form-group row">
<label class="col-sm-4 col-md-3 col-form-label main-profile-form-label" for="main-profile-subscribe"><?=Loc::getMessage('SUBSCRIBE_EMAIL')?></label>
<div class="form-check row">
<div class="col-sm-8 col-md-9">
<input class="form-control" type="checkbox" name="SUBSCRIBE_CUSTOM" id="main-profile-subscribe" <?if($arResult["arUser"]["SUBSCRIBE"] === "Y") echo "checked";?>/>
<input class="form-check-input" type="checkbox" name="SUBSCRIBE_CUSTOM" id="main-profile-subscribe" <?if($arResult["arUser"]["SUBSCRIBE"] === "Y") echo "checked";?>/>
<label class="form-check-label" for="main-profile-subscribe"><?=Loc::getMessage('SUBSCRIBE_EMAIL')?></label>
</div>
</div>
</div>

View file

@ -103,5 +103,9 @@ class Constants
['EVENT_NAME' => 'OnSaleComponentOrderResultPrepared', 'FROM_MODULE' => 'sale'],
['EVENT_NAME' => 'OnAfterUserRegister', 'FROM_MODULE' => 'main'],
];
public const SUBSCRIBE_EVENTS = [
['EVENT_NAME' => 'OnAfterUserRegister', 'FROM_MODULE' => 'main'],
['EVENT_NAME' => 'OnAfterUserUpdate', 'FROM_MODULE' => 'main']
];
public const SITES_AVAILABLE = 'sites_available';
}

View file

@ -3,11 +3,53 @@
namespace Intaro\RetailCrm\Component\Installer;
use Intaro\RetailCrm\Component\Constants;
use Bitrix\Main\EventManager;
use Intaro\RetailCrm\Component\Handlers\EventsHandlers;
use Intaro\RetailCrm\Repository\ToModuleRepository;
use Bitrix\Main\SystemException;
use Bitrix\Main\ObjectPropertyException;
use Bitrix\Main\ArgumentException;
use RCrmActions;
IncludeModuleLangFile(__FILE__);
trait SubscriberInstallerTrait
{
public function addSubscribeEvents(): void
{
$eventManager = EventManager::getInstance();
foreach (Constants::SUBSCRIBE_EVENTS as $event) {
try {
$events = ToModuleRepository::getCollectionByWhere(
['ID'],
[
['from_module_id', '=', $event['FROM_MODULE']],
['to_module_id', '=', Constants::MODULE_ID],
['to_method', '=', $event['EVENT_NAME'] . 'Handler'],
['to_class', '=', EventsHandlers::class],
]
);
if ($events !== null && count($events) === 0) {
$eventManager->registerEventHandler(
$event['FROM_MODULE'],
$event['EVENT_NAME'],
Constants::MODULE_ID,
EventsHandlers::class,
$event['EVENT_NAME'] . 'Handler'
);
}
} catch (ObjectPropertyException | ArgumentException | SystemException $exception) {
RCrmActions::eventLog(
'intaro.retailcrm/install/index.php',
'RetailCrm\SubscriberInstallerTrait::addSubscribeEvents',
$exception->getMessage()
);
}
}
}
public function CopyFilesSubscribe(): void
{
$pathFrom = $_SERVER['DOCUMENT_ROOT'] . '/bitrix/modules/' . Constants::MODULE_ID . '/install';
@ -26,7 +68,7 @@ trait SubscriberInstallerTrait
foreach ($lpTemplateNames as $lpTemplateName){
$lpTemplatePath = $_SERVER['DOCUMENT_ROOT']
. '/local/templates/.default/components/bitrix/' . $lpTemplateName . '/default_subscribe10';
. '/local/templates/.default/components/bitrix/' . $lpTemplateName . '/default_subscribe12';
if (!file_exists($lpTemplatePath)) {
$pathFrom = $_SERVER['DOCUMENT_ROOT']