1
0
Fork 0
mirror of synced 2025-04-05 06:43:32 +03:00

Удаление комментариев

This commit is contained in:
Ivan Chaplygin 2024-12-03 17:44:56 +03:00
parent 9a2d4b9c67
commit 7159558231

View file

@ -149,14 +149,14 @@ class SettingsService
$this->exportProfileId = $profileId ?? '0';
$this->profileCatalogsOptionName = sprintf('exportProfileId_%s_catalogs', $this->exportProfileId);
//$this->setProfileCatalogsOptionName();//Установка названия каталога смысла не вижу от метода
$this->linkNewProfile();
$this->deleteEmptyProfileCatalogs();
$this->deleteUnusedOptions();
$this->customPropList = $this->getNewProps();//получаеют свойства с разделениекм на каталоги. Но не понял при чем custom в названии
$this->defaultPropList = $this->getIblockPropsPreset(); //названия базовых свойств (код свойства для icml - перевод)
$this->actualPropList = $this->getActualPropList();//не пойму смысла объединения что намеренно было разделено - нигде не переиспользуется - изменить???
$this->customPropList = $this->getNewProps();
$this->defaultPropList = $this->getIblockPropsPreset();
$this->actualPropList = $this->getActualPropList();
}
/**
@ -830,11 +830,6 @@ class SettingsService
return $this;
}
private function setProfileCatalogsOptionName(): void
{
$this->profileCatalogsOptionName = sprintf('exportProfileId_%s_catalogs', $this->exportProfileId);
}
private function getCustomProps(): ?array
{
$props = unserialize(COption::GetOptionString(self::MODULE_ID, $this->catalogCustomPropsOptionName));
@ -876,13 +871,12 @@ class SettingsService
public function saveCustomProps(array $newProps): void
{
$currentProps = $this->getCustomProps();//проверка сущестования комбинации профиля и категории
$currentProps = $this->getCustomProps();
if (is_null($currentProps)) {
$this->setCustomProps($newProps);
} else {
$updatedProps = array_merge($currentProps, $newProps);//TODO также только добавляет но не удаляет, проверить как работает
//$this->updateProfileCatalogs($catalogId);
$updatedProps = array_merge($currentProps, $newProps);
$this->updateCustomProps($updatedProps);
}
}
@ -904,16 +898,6 @@ class SettingsService
$this->setOptionEntry($this->profileCatalogsOptionName, $catalogs);
}
private function updateProfileCatalogs(string $catalogId): void //TODO Возможно метод для удаления, проверить
{
$currentCatalogs = $this->getProfileCatalogs();
if (!in_array($catalogId, $currentCatalogs)) {//TODO: только добавляет но не удаляет исправить
$updatedCatalogs = serialize(array_merge($currentCatalogs, [$catalogId])); // только здесь объединение каталогов в профиль
$this->updateOptionEntry($this->profileCatalogsOptionName, $updatedCatalogs);
}
}
private function deleteProfileCatalog(string $catalogId): void
{
$currentCatalogs = $this->getProfileCatalogs();
@ -954,9 +938,6 @@ class SettingsService
private function linkNewProfile(): void
{
$this->profileCatalogsOptionName; // профиль со списокм каталогов
$this->exportProfileId; // id профиля
$currentProfileCatalogs = unserialize(COption::GetOptionString(self::MODULE_ID, $this->profileCatalogsOptionName));
if (!$currentProfileCatalogs) {