Sfoglia il codice sorgente

created new Controllers for the backend

jabongwa 2 anni fa
parent
commit
a2d458d94b
1 ha cambiato i file con 13 aggiunte e 0 eliminazioni
  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];
+  }