Explorar el Código

created new Controllers for the backend

jabongwa hace 2 años
padre
commit
a2d458d94b
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  1. 13 0
      Classes/Domain/Repository/TermRepository.php

+ 13 - 0
Classes/Domain/Repository/TermRepository.php

@@ -0,0 +1,13 @@
+<?php 
+
+  declare(strict_types=1);
+
+  namespace Meramo\Begriffmgt\Domain\Repository;
+
+  use TYPO3\CMS\Extbase\Persistence\Repository;
+  use TYPO3\CMS\Extbase\Persistence\QueryInterface;
+
+  class TermRepository extends Repository
+  { 
+    protected $defaultOrderings = ['uid' => QueryInterface::ORDER_ASCENDING];
+  }