‪TYPO3CMS  ‪main
DomainObjectInterface.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
21 
33 {
34  public function ‪getUid(): ?int;
35 
36  public function ‪setPid(int $pid): void;
37 
38  public function ‪getPid(): ?int;
39 
43  public function ‪_isNew(): bool;
44 
48  public function ‪_hasProperty(string $propertyName): bool;
49 
53  public function ‪_setProperty(string $propertyName, mixed $value);
54 
58  public function ‪_getProperty(string $propertyName): mixed;
59 
63  public function _getProperties(): array;
64 
72  public function _getCleanProperty(string $propertyName): mixed;
73 }
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\_getProperty
‪_getProperty(string $propertyName)
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\getPid
‪getPid()
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\_isNew
‪_isNew()
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface
Definition: DomainObjectInterface.php:33
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\getUid
‪getUid()
‪TYPO3\CMS\Extbase\DomainObject
Definition: AbstractDomainObject.php:18
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\_setProperty
‪_setProperty(string $propertyName, mixed $value)
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\setPid
‪setPid(int $pid)
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\_hasProperty
‪_hasProperty(string $propertyName)
‪TYPO3\CMS\Extbase\Persistence\ObjectMonitoringInterface
Definition: ObjectMonitoringInterface.php:27