![]() |
TYPO3
7.6
|
Public Member Functions | |
exec_SELECTquery_postProcessAction (&$select_fields, &$from_table, &$where_clause, &$groupBy, &$orderBy, &$limit,\TYPO3\CMS\Core\Database\DatabaseConnection $parentObject) | |
exec_INSERTquery_postProcessAction (&$table, array &$fieldsValues, &$noQuoteFields,\TYPO3\CMS\Core\Database\DatabaseConnection $parentObject) | |
exec_INSERTmultipleRows_postProcessAction (&$table, array &$fields, array &$rows, &$noQuoteFields,\TYPO3\CMS\Core\Database\DatabaseConnection $parentObject) | |
exec_UPDATEquery_postProcessAction (&$table, &$where, array &$fieldsValues, &$noQuoteFields,\TYPO3\CMS\Core\Database\DatabaseConnection $parentObject) | |
exec_DELETEquery_postProcessAction (&$table, &$where,\TYPO3\CMS\Core\Database\DatabaseConnection $parentObject) | |
exec_TRUNCATEquery_postProcessAction (&$table,\TYPO3\CMS\Core\Database\DatabaseConnection $parentObject) | |
Interface for classes which hook into and do additional processing after a query has been executed.
Definition at line 21 of file PostProcessQueryHookInterface.php.
exec_DELETEquery_postProcessAction | ( | & | $table, |
& | $where, | ||
\TYPO3\CMS\Core\Database\DatabaseConnection | $parentObject | ||
) |
Post-processor for the exec_DELETEquery method.
string | $table | Database table name |
string | $where | WHERE clause |
\TYPO3\CMS\Core\Database\DatabaseConnection | $parentObject |
exec_INSERTmultipleRows_postProcessAction | ( | & | $table, |
array & | $fields, | ||
array & | $rows, | ||
& | $noQuoteFields, | ||
\TYPO3\CMS\Core\Database\DatabaseConnection | $parentObject | ||
) |
Post-processor for the exec_INSERTmultipleRows method.
string | $table | Database table name |
array | $fields | Field names |
array | $rows | Table rows |
string | array | $noQuoteFields | List/array of keys NOT to quote |
\TYPO3\CMS\Core\Database\DatabaseConnection | $parentObject |
exec_INSERTquery_postProcessAction | ( | & | $table, |
array & | $fieldsValues, | ||
& | $noQuoteFields, | ||
\TYPO3\CMS\Core\Database\DatabaseConnection | $parentObject | ||
) |
Post-processor for the exec_INSERTquery method.
string | $table | Database table name |
array | $fieldsValues | Field values as key => value pairs |
string | array | $noQuoteFields | List/array of keys NOT to quote |
\TYPO3\CMS\Core\Database\DatabaseConnection | $parentObject |
exec_SELECTquery_postProcessAction | ( | & | $select_fields, |
& | $from_table, | ||
& | $where_clause, | ||
& | $groupBy, | ||
& | $orderBy, | ||
& | $limit, | ||
\TYPO3\CMS\Core\Database\DatabaseConnection | $parentObject | ||
) |
Post-processor for the SELECTquery method.
string | $select_fields | Fields to be selected |
string | $from_table | Table to select data from |
string | $where_clause | Where clause |
string | $groupBy | Group by statement |
string | $orderBy | Order by statement |
int | $limit | Database return limit |
\TYPO3\CMS\Core\Database\DatabaseConnection | $parentObject |
exec_TRUNCATEquery_postProcessAction | ( | & | $table, |
\TYPO3\CMS\Core\Database\DatabaseConnection | $parentObject | ||
) |
Post-processor for the exec_TRUNCATEquery method.
string | $table | Database table name |
\TYPO3\CMS\Core\Database\DatabaseConnection | $parentObject |
exec_UPDATEquery_postProcessAction | ( | & | $table, |
& | $where, | ||
array & | $fieldsValues, | ||
& | $noQuoteFields, | ||
\TYPO3\CMS\Core\Database\DatabaseConnection | $parentObject | ||
) |
Post-processor for the exec_UPDATEquery method.
string | $table | Database table name |
string | $where | WHERE clause |
array | $fieldsValues | Field values as key => value pairs |
string | array | $noQuoteFields | List/array of keys NOT to quote |
\TYPO3\CMS\Core\Database\DatabaseConnection | $parentObject |