[TYPO3-dev] Re: [TYPO3-DEV] 4.5: How to read constraint(s) in query

Maxime Roussin-Bélanger mroussin at hotmail.com
Fri May 23 21:06:33 CEST 2014


Well I fixed it. The only thing needed to do was :

Tx_Extbase_Persistence_QueryInterface.className = Tx_MyExtension_Persistence_RestQuery

class Tx_MyExtension_Persistence_RestQuery extends Tx_Extbase_Persistence_Query implements Tx_MyExtension_Persistence_RestQueryInterface
{
}


interface Tx_MyExtension_Persistence_RestQueryInterface extends Tx_Extbase_Persistence_QueryInterface 
{
    public function getConstraint();
}



More information about the TYPO3-dev mailing list