LLMS_Query_Quiz_Attempt::preprare_query()
Prepare the SQL for the query.
Contents
Return Return
(string)
Source Source
File: includes/class.llms.query.quiz.attempt.php
* @return string
*/
protected function prepare_query() {
global $wpdb;
$from = "FROM {$wpdb->prefix}lifterlms_quiz_attempts qa";
$joins = $this->sql_joins();
$where = $this->sql_where();
if ( $this->get( 'count_only' ) ) {
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.16.0 | Introduced. |