2 /***************************************************************
5 * (c) 2009 Jochen Rau <jochen.rau@typoplanet.de>
8 * This class is a backport of the corresponding class of FLOW3.
9 * All credits go to the v5 team.
11 * This script is part of the TYPO3 project. The TYPO3 project is
12 * free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * The GNU General Public License can be found at
18 * http://www.gnu.org/copyleft/gpl.html.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
29 * TYPO3 Query settings interface. This interfaceis NOT part of the FLOW3 API.
30 * It reflects the settings unique to TYPO3 4.x.
33 * @subpackage Persistence
37 interface Tx_Extbase_Persistence_Typo3QuerySettingsInterface
extends Tx_Extbase_Persistence_QuerySettingsInterface
{
40 * Sets the flag if the storage page should be respected for the query.
42 * @param $respectStoragePage If TRUE the storage page ID will be determined and the statement will be extended accordingly.
43 * @return $this (fluent interface)
46 public function setRespectStoragePage($respectStoragePage);
49 * Sets the flag if the visibility in the frontend should be respected.
51 * @param $respectEnableFields TRUE if the visibility in the frontend should be respected. If TRUE, the "enable fields" of TYPO3 will be added to the query statement.
52 * @return $this (fluent interface)
55 public function setRespectEnableFields($respectEnableFields);
58 * Sets the flag if if the sys language should be respected.
60 * @param $respectSysLanguage TRUE if the sys language should be respected.
61 * @return $this (fluent interface)
64 public function setRespectSysLanguage($respectSysLanguage);
67 * Returns the state, if the sys language should be respected.
69 * @return boolean TRUE, if the sys language should be respected; otherwise FALSE.
71 public function getRespectSysLanguage();
75 * Sets the state, if the QueryResult should be returned unmapped.
77 * @return boolean TRUE, if the QueryResult should be returned unmapped; otherwise FALSE.
80 public function setReturnRawQueryResult($returnRawQueryResult);
83 * Returns the state, if the QueryResult should be returned unmapped.
85 * @return boolean TRUE, if the QueryResult should be returned unmapped; otherwise FALSE.
88 public function getReturnRawQueryResult();