‪TYPO3CMS  10.4
PropertyValue.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
32 {
36  protected ‪$selectorName;
37 
41  protected ‪$propertyName;
42 
49  public function ‪__construct(‪$propertyName, ‪$selectorName = '')
50  {
51  $this->propertyName = ‪$propertyName;
52  $this->selectorName = ‪$selectorName;
53  }
54 
60  public function ‪getSelectorName()
61  {
63  }
64 
70  public function ‪getPropertyName()
71  {
73  }
74 }
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\PropertyValue
Definition: PropertyValue.php:32
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\PropertyValue\$selectorName
‪string $selectorName
Definition: PropertyValue.php:35
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\PropertyValue\getPropertyName
‪string getPropertyName()
Definition: PropertyValue.php:68
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\PropertyValue\__construct
‪__construct($propertyName, $selectorName='')
Definition: PropertyValue.php:47
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\PropertyValue\getSelectorName
‪string getSelectorName()
Definition: PropertyValue.php:58
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\PropertyValueInterface
Definition: PropertyValueInterface.php:30
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom
Definition: AndInterface.php:16
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\PropertyValue\$propertyName
‪string $propertyName
Definition: PropertyValue.php:39