‪TYPO3CMS  10.4
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 
29 {
35  public function ‪getUid(): ?int;
36 
42  public function ‪setPid(int $pid);
43 
49  public function ‪getPid(): ?int;
50 
57  public function ‪_isNew(): bool;
58 
66  public function ‪_setProperty(string $propertyName, $value);
67 
75  public function ‪_getProperty(string $propertyName);
76 
83  public function ‪_getProperties(): array;
84 
93  public function ‪_getCleanProperty(string $propertyName);
94 }
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\getUid
‪int getUid()
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\getPid
‪int getPid()
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\_setProperty
‪_setProperty(string $propertyName, $value)
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\_isNew
‪bool _isNew()
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\_getProperty
‪mixed _getProperty(string $propertyName)
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface
Definition: DomainObjectInterface.php:29
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\_getProperties
‪array _getProperties()
‪TYPO3\CMS\Extbase\DomainObject
Definition: AbstractDomainObject.php:18
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\setPid
‪setPid(int $pid)
‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface\_getCleanProperty
‪mixed _getCleanProperty(string $propertyName)