1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
AfterCreateEvent.php
См. документацию.
1<?php
2
4
7
9{
10 public function __construct(string $entityType, Result $createResult)
11 {
12 parent::__construct($entityType, ['createResult' => $createResult]);
13 }
14
15 public function getCreateResult(): Result
16 {
17 return $this->parameters['createResult'];
18 }
19
20 protected function getActionName(): string
21 {
22 return 'AfterCreate';
23 }
24}
__construct(string $entityType, Result $createResult)
Определения AfterCreateEvent.php:10
Определения result.php:20