| 1 | <?php |
||
| 14 | final class BeforeCreateContentEvent extends BeforeEvent |
||
| 15 | { |
||
| 16 | public const NAME = 'ezplatform.event.content.create.before'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var \eZ\Publish\API\Repository\Values\Content\ContentCreateStruct |
||
| 20 | */ |
||
| 21 | private $contentCreateStruct; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var array |
||
| 25 | */ |
||
| 26 | private $locationCreateStructs; |
||
| 27 | |||
| 28 | public function __construct( |
||
| 35 | |||
| 36 | public function getContentCreateStruct(): ContentCreateStruct |
||
| 40 | |||
| 41 | public function getLocationCreateStructs(): array |
||
| 45 | } |
||
| 46 |