Core/Executor/UserGroupManager.php 1 location
|
@@ 233-240 (lines=8) @@
|
| 230 |
|
return true; |
| 231 |
|
} |
| 232 |
|
|
| 233 |
|
protected function setSection(Content $content, $sectionKey) |
| 234 |
|
{ |
| 235 |
|
$sectionKey = $this->referenceResolver->resolveReference($sectionKey); |
| 236 |
|
$section = $this->sectionMatcher->matchOneByKey($sectionKey); |
| 237 |
|
|
| 238 |
|
$sectionService = $this->repository->getSectionService(); |
| 239 |
|
$sectionService->assignSection($content->contentInfo, $section); |
| 240 |
|
} |
| 241 |
|
} |
| 242 |
|
|
Core/Executor/ContentManager.php 1 location
|
@@ 373-380 (lines=8) @@
|
| 370 |
|
} |
| 371 |
|
} |
| 372 |
|
|
| 373 |
|
protected function setSection(Content $content, $sectionKey) |
| 374 |
|
{ |
| 375 |
|
$sectionKey = $this->referenceResolver->resolveReference($sectionKey); |
| 376 |
|
$section = $this->sectionMatcher->matchOneByKey($sectionKey); |
| 377 |
|
|
| 378 |
|
$sectionService = $this->repository->getSectionService(); |
| 379 |
|
$sectionService->assignSection($content->contentInfo, $section); |
| 380 |
|
} |
| 381 |
|
|
| 382 |
|
protected function setObjectStates(Content $content, array $stateKeys) |
| 383 |
|
{ |