- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/Service/WebForm/Scenario/DependencyScenario/DependencyUnrelatedScenario.php
- Класс: Bitrix\Crm\Service\WebForm\Scenario\DependencyScenario\DependencyUnrelatedScenario
- Вызов: DependencyUnrelatedScenario::getDependencies
public function getDependencies(): array
{
$dependencyItems = [
DependencyListItem::of(
DependencyAction::of('COMPANY_ADDRESS', 'show'),
DependencyCondition::of('change', 'any', 'COMPANY_TITLE')
),
DependencyListItem::of(
DependencyAction::of('COMPANY_REG_ADDRESS', 'show'),
DependencyCondition::of('change', 'any', 'COMPANY_TITLE')
),
DependencyListItem::of(
DependencyAction::of('COMPANY_PHONE', 'show'),
DependencyCondition::of('change', 'any', 'COMPANY_TITLE')
),
DependencyListItem::of(
DependencyAction::of('COMPANY_EMAIL', 'show'),
DependencyCondition::of('change', 'any', 'COMPANY_TITLE')
),
];
return [
DependencyItem::of($dependencyItems),
];
}