TYPO3 CMS  TYPO3_6-2
BlogRepository.php
Go to the documentation of this file.
1 <?php
20 
21  protected $defaultOrderings = array(
22  'crdate' => \TYPO3\CMS\Extbase\Persistence\QueryInterface::ORDER_DESCENDING,
23  'uid' => \TYPO3\CMS\Extbase\Persistence\QueryInterface::ORDER_DESCENDING
24  );
25 
31  public function initializeObject() {
32  /*
33  $querySettings = $this->objectManager->get('\TYPO3\CMS\Extbase\Persistence\Generic\Typo3QuerySettings');
34  $querySettings->setRespectStoragePage(FALSE);
35  $this->setDefaultQuerySettings($querySettings);
36  */
37  }
38 
39 }
40 ?>