Example #1
0
 /**
  * The constructor. Creates a bag that contains test records and allows to iterate over them.
  *
  * @param string $queryParameters
  *        string that will be prepended to the WHERE clause using AND, e.g. 'pid=42'
  *        (the AND and the enclosing spaces are not necessary for this parameter)
  * @param string $additionalTableNames
  *        comma-separated names of additional DB tables used for JOINs, may be empty
  * @param string $groupBy
  *        GROUP BY clause (may be empty), must already be safeguarded against SQL injection
  * @param string $orderBy
  *        ORDER BY clause (may be empty), must already be safeguarded against SQL injection
  * @param string $limit
  *        LIMIT clause (may be empty), must already be safeguarded against SQL injection
  * @param int $showHiddenRecords
  *        If $showHiddenRecords is set (0/1), any hidden fields in records are ignored.
  */
 public function __construct($queryParameters = '1=1', $additionalTableNames = '', $groupBy = '', $orderBy = 'uid', $limit = '', $showHiddenRecords = -1)
 {
     parent::__construct('tx_seminars_speakers', $queryParameters, $additionalTableNames, $groupBy, $orderBy, $limit, $showHiddenRecords);
 }
Example #2
0
 /**
  * The constructor. Creates a bag that contains test records and allows to iterate over them.
  *
  * @param string $queryParameters
  *        string that will be prepended to the WHERE clause using AND, e.g. 'pid=42'
  *        (the AND and the enclosing spaces are not necessary for this parameter)
  * @param string $additionalTableNames
  *        comma-separated names of additional DB tables used for JOINs, may be empty
  * @param string $groupBy
  *        GROUP BY clause (may be empty), must already be safeguarded against SQL injection
  * @param string $orderBy
  *        ORDER BY clause (may be empty), must already be safeguarded against SQL injection
  * @param string $limit
  *        LIMIT clause (may be empty), must already be safeguarded against SQL injection
  * @param int $showHiddenRecords
  *        If $showHiddenRecords is set (0/1), any hidden fields in records are ignored.
  * @param bool $ignoreTimingOfRecords
  *        If $ignoreTimingOfRecords is TRUE the timing of records is ignored.
  */
 public function __construct($queryParameters = '1=1', $additionalTableNames = '', $groupBy = '', $orderBy = 'uid', $limit = '', $showHiddenRecords = -1, $ignoreTimingOfRecords = FALSE)
 {
     parent::__construct('tx_seminars_test', $queryParameters, $additionalTableNames, $groupBy, $orderBy, $limit, $showHiddenRecords, $ignoreTimingOfRecords);
 }
Example #3
0
 /**
  * The constructor. Creates a bag that contains test records and allows to iterate over them.
  *
  * @param string $queryParameters
  *        string that will be prepended to the WHERE clause using AND, e.g. 'pid=42'
  *        (the AND and the enclosing spaces are not necessary for this parameter)
  * @param string $additionalTableNames
  *        comma-separated names of additional DB tables used for JOINs, may be empty
  * @param string $groupBy
  *        GROUP BY clause (may be empty), must already be safeguarded against SQL injection
  * @param string $orderBy
  *        ORDER BY clause (may be empty), must already be safeguarded against SQL injection
  * @param string $limit
  *        LIMIT clause (may be empty), must already be safeguarded against SQL injection
  */
 public function __construct($queryParameters = '1=1', $additionalTableNames = '', $groupBy = '', $orderBy = 'uid', $limit = '')
 {
     parent::__construct('tx_seminars_organizers', $queryParameters, $additionalTableNames, $groupBy, $orderBy, $limit);
 }
Example #4
0
 /**
  * The constructor. Creates a bag that contains test records and allows to iterate over them.
  *
  * @param string $queryParameters
  *        string that will be prepended to the WHERE clause using AND, e.g. 'pid=42'
  *        (the AND and the enclosing spaces are not necessary for this parameter)
  * @param string $additionalTableNames
  *        comma-separated names of additional DB tables used for JOINs, may be empty
  * @param string $groupBy
  *        GROUP BY clause (may be empty), must already be safeguarded against SQL injection
  * @param string $orderBy
  *        ORDER BY clause (may be empty), must already be safeguarded against SQL injection
  * @param string $limit
  *        LIMIT clause (may be empty), must already be safeguarded against SQL injection
  * @param int $showHiddenRecords
  *        If $showHiddenRecords is set (0/1), any hidden fields in records are ignored.
  */
 public function __construct($queryParameters = '1=1', $additionalTableNames = '', $groupBy = '', $orderBy = 'uid', $limit = '', $showHiddenRecords = -1)
 {
     $this->cObj = t3lib_div::makeInstance('tslib_cObj');
     parent::__construct('tx_seminars_attendances', $queryParameters, $additionalTableNames, $groupBy, $orderBy, $limit, $showHiddenRecords);
 }