Example #1
0
 /**
  * Build a query based on the given options
  * @param array $arrOptions The options array
  * @return string The query string
  * @deprecated this is only for BC with Contao 3.2
  */
 protected static function buildFindQuery(array $arrOptions)
 {
     if (version_compare(VERSION, '3.3', '<')) {
         return \Model\QueryBuilder::find($arrOptions);
     }
     return parent::buildFindQuery($arrOptions);
 }