+2010-07-17 Xavier Perseguers <typo3@perseguers.ch>
+
+ * Updated PHP documentation
+
2010-07-16 Xavier Perseguers <typo3@perseguers.ch>
* Added unit test for bug #14818: t3lib_db->listQuery() performance
/**
* Quotes the field (and table) names within a where clause with the quote character suitable for the DB being used
*
- * @param string A where clause that can e parsed by parseWhereClause
+ * @param string A where clause that can be parsed by parseWhereClause
* @return string Usable where clause with quoted field/table names
*/
public function quoteWhereClause($where_clause) {
}
/**
- * [Describe function...]
+ * Quotes field names in a SQL GROUP BY clause acccording to DB rules
*
- * @param [type] $$groupBy: ...
- * @return [type] ...
+ * @param array $groupBy The parsed GROUP BY clause to quote
+ * @return array
+ * @see quoteGroupBy()
*/
protected function quoteGroupBy($groupBy) {
if ($groupBy === '') return '';
}
/**
- * [Describe function...]
+ * Quotes the field (and table) names within an order by clause with the quote
+ * character suitable for the DB being used
*
- * @param [type] $$orderBy: ...
- * @return [type] ...
+ * @param string An order by clause that can by parsed by parseFieldList
+ * @return string Usable order by clause with quoted field/table names
*/
protected function quoteOrderBy($orderBy) {
if ($orderBy === '') return '';