Удаление комментариев
This commit is contained in:
parent
9a2d4b9c67
commit
7159558231
1 changed files with 6 additions and 25 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue