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:08:04 +03:00
parent 6deb27b190
commit e828f6821f
54 changed files with 52 additions and 0 deletions

View file

@ -15,6 +15,7 @@ use Bitrix\Sale\EventActions;
use Bitrix\Sale\Internals\OrderTable;
use Intaro\RetailCrm\Component\ConfigProvider;
use Intaro\RetailCrm\Component\Installer\LoyaltyInstallerTrait;
use Intaro\RetailCrm\Component\Installer\SubscriberInstallerTrait;
use Intaro\RetailCrm\Service\OrderLoyaltyDataService;
use Intaro\RetailCrm\Vendor\Symfony\Component\Process\PhpExecutableFinder;
use RetailCrm\ApiClient;
@ -30,10 +31,12 @@ if (class_exists('intaro_retailcrm')) {
}
include(__DIR__ . '/../lib/component/installer/loyaltyinstallertrait.php');
include (__DIR__ . '/../lib/component/installer/subscriberinstallertrait.php');
class intaro_retailcrm extends CModule
{
use LoyaltyInstallerTrait;
use SubscriberInstallerTrait;
public const V5 = 'v5';
public $MODULE_ID = 'intaro.retailcrm';
@ -252,6 +255,8 @@ class intaro_retailcrm extends CModule
$this->addLPEvents();
$this->addAgreement();
$this->CopyFilesSubscribe();
OrderLoyaltyDataService::createLoyaltyHlBlock();
$service = new OrderLoyaltyDataService();
@ -1094,6 +1099,7 @@ class intaro_retailcrm extends CModule
);
$this->CopyFiles();
$this->CopyFilesSubscribe();
COption::RemoveOption($this->MODULE_ID, $this->CRM_CATALOG_BASE_PRICE);

View file

@ -0,0 +1,46 @@
<?php
namespace Intaro\RetailCrm\Component\Installer;
use Intaro\RetailCrm\Component\Constants;
IncludeModuleLangFile(__FILE__);
trait SubscriberInstallerTrait
{
public function CopyFilesSubscribe(): void
{
$pathFrom = $_SERVER['DOCUMENT_ROOT'] . '/bitrix/modules/' . Constants::MODULE_ID . '/install';
CopyDirFiles(
$pathFrom . '/export',
$_SERVER['DOCUMENT_ROOT'],
true,
true,
false
);
$lpTemplateNames = [
'sale.personal.section'
];
foreach ($lpTemplateNames as $lpTemplateName){
$lpTemplatePath = $_SERVER['DOCUMENT_ROOT']
. '/local/templates/.default/components/bitrix/' . $lpTemplateName . '/default_subscribe10';
if (!file_exists($lpTemplatePath)) {
$pathFrom = $_SERVER['DOCUMENT_ROOT']
. '/bitrix/modules/intaro.retailcrm/install/export/local/components/intaro/'
. $lpTemplateName;
CopyDirFiles(
$pathFrom,
$lpTemplatePath,
true,
true,
false
);
}
}
}
}