‪TYPO3CMS  10.4
UpperCase.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 
30 {
34  protected ‪$operand;
35 
42  {
43  $this->operand = ‪$operand;
44  }
45 
51  public function ‪getOperand()
52  {
53  return ‪$this->operand;
54  }
55 
61  public function ‪getSelectorName()
62  {
63  return $this->operand->getSelectorName();
64  }
65 
71  public function ‪getPropertyName()
72  {
73  return 'UPPER' . $this->operand->getPropertyName();
74  }
75 }
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\UpperCase\$operand
‪PropertyValueInterface $operand
Definition: UpperCase.php:33
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\UpperCase\getOperand
‪PropertyValueInterface getOperand()
Definition: UpperCase.php:50
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\UpperCase\__construct
‪__construct(PropertyValueInterface $operand)
Definition: UpperCase.php:40
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\PropertyValueInterface
Definition: PropertyValueInterface.php:30
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\UpperCase
Definition: UpperCase.php:30
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom
Definition: AndInterface.php:16
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\UpperCaseInterface
Definition: UpperCaseInterface.php:28
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\UpperCase\getSelectorName
‪string getSelectorName()
Definition: UpperCase.php:60
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\UpperCase\getPropertyName
‪string getPropertyName()
Definition: UpperCase.php:70