ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.arOrder.php
Go to the documentation of this file.
1 <?php
2 
24 class arOrder extends arStatement
25 {
26  protected string $fieldname = '';
27  protected string $direction = 'ASC';
28 
29  public function asSQLStatement(ActiveRecord $activeRecord, ilDBInterface $db): string
30  {
31  return ' ' . $this->wrapField($this->getFieldname(), $db) . ' ' . $this->getDirection();
32  }
33 
34  public function setDirection(string $direction): void
35  {
36  $this->direction = $direction;
37  }
38 
39  public function getDirection(): string
40  {
41  return $this->direction;
42  }
43 
44  public function setFieldname(string $fieldname): void
45  {
46  $this->fieldname = $fieldname;
47  }
48 
49  public function getFieldname(): string
50  {
51  return $this->fieldname;
52  }
53 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
asSQLStatement(ActiveRecord $activeRecord, ilDBInterface $db)
setDirection(string $direction)
setFieldname(string $fieldname)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $direction
wrapField(string $field, ilDBInterface $db)
string $fieldname
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...