ref #91040 Перенос шаблона, перемещение шаблона при установке модуля
Before Width: | Height: | Size: 574 B After Width: | Height: | Size: 574 B |
Before Width: | Height: | Size: 566 B After Width: | Height: | Size: 566 B |
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 8.7 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
|
@ -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);
|
||||
|
||||
|
|
|
@ -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
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|