20 foreach ($elementIds as $elementId)
25 "targetIblockId" => $targetIblockId,
26 "enumRatio" => $enumRatio,
27 "sectionsRatio" => $sectionsRatio
30 $container->setDictionary($dictionary);
32 $containerCollection[] = $container;
35 return $containerCollection;
80 protected function setQueue(array $queue): void
82 $queueId = (string) current($queue);
83 $this->checkerName = (mb_strpos($this->checkerName, $queueId) ===
false ?
84 $this->checkerName.$queueId : $this->checkerName);
85 $this->baseName = (mb_strpos($this->baseName, $queueId) ===
false ?
86 $this->baseName.$queueId : $this->baseName);
87 $this->errorName = (mb_strpos($this->errorName, $queueId) ===
false ?
88 $this->errorName.$queueId : $this->errorName);
112 $queueId = current($queue);
113 $currentPos = array_search($queueId, $queue);
114 if ($currentPos !==
false)
116 unset($queue[$currentPos]);
117 Option::set(static::$moduleId, $this->queueName, serialize($queue));