‪TYPO3CMS  10.4
Ordering.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 
19 
26 {
30  protected ‪$operand;
31 
35  protected ‪$order;
36 
44  {
45  $this->operand = ‪$operand;
46  $this->order = ‪$order;
47  }
48 
54  public function ‪getOperand()
55  {
56  return ‪$this->operand;
57  }
58 
64  public function ‪getOrder()
65  {
66  return ‪$this->order;
67  }
68 }
‪TYPO3\CMS\Extbase\Persistence\QueryInterface
Definition: QueryInterface.php:29
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\OrderingInterface
Definition: OrderingInterface.php:23
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Ordering\$operand
‪DynamicOperandInterface $operand
Definition: Ordering.php:29
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Ordering\$order
‪string $order
Definition: Ordering.php:33
‪TYPO3\CMS\Extbase\Persistence\QueryInterface\ORDER_ASCENDING
‪const ORDER_ASCENDING
Definition: QueryInterface.php:98
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom
Definition: AndInterface.php:16
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Ordering
Definition: Ordering.php:26
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Ordering\getOperand
‪DynamicOperandInterface getOperand()
Definition: Ordering.php:52
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\DynamicOperandInterface
Definition: DynamicOperandInterface.php:22
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Ordering\__construct
‪__construct(DynamicOperandInterface $operand, $order=QueryInterface::ORDER_ASCENDING)
Definition: Ordering.php:41
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Ordering\getOrder
‪string getOrder()
Definition: Ordering.php:62